diff --git a/.gitignore b/.gitignore index 3c9c13b..e7b86bf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,5 @@ +.vs bin/ obj/ *.user -_ReSharper* -*.resharper *.suo -build/ -/.paket/paket.exe -/.paket/.store -/.vs -/src/.vs -/src/UpgradeLog.htm -/src/UpgradeLog2.htm -/src/**/paket.template \ No newline at end of file diff --git a/LICENSE b/LICENSE index 9536984..817814b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,7 @@ -Software Licenses that apply to the DotNetZip library and tools +Software Licenses that apply to the ProDotNetZip library and tools -As DotNetZip includes work derived from other projects, you are required to comply with the terms and conditions for each of them. These licenses include BSD, Apache, and zlib. +As ProDotNetZip includes work derived from other projects, you are required to comply with the terms and conditions for each of them. +These licenses include BSD, Apache, and zlib. To use the software, you must accept the licenses. If you do not accept the licenses, do not use the software. diff --git a/ProDotNetZip.sln b/ProDotNetZip.sln new file mode 100644 index 0000000..956c810 --- /dev/null +++ b/ProDotNetZip.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.9.34622.214 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProDotNetZipNetStandard", "src\ProDotNetZipNetStandard.csproj", "{464DEB5F-6AE5-4203-BE9D-EED7F9E216C5}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProDotNetZipNetStandardTest", "test\ProDotNetZipNetStandardTest.csproj", "{C0DF8C64-AF38-46A7-BD5D-FA1D70055365}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {464DEB5F-6AE5-4203-BE9D-EED7F9E216C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {464DEB5F-6AE5-4203-BE9D-EED7F9E216C5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {464DEB5F-6AE5-4203-BE9D-EED7F9E216C5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {464DEB5F-6AE5-4203-BE9D-EED7F9E216C5}.Release|Any CPU.Build.0 = Release|Any CPU + {C0DF8C64-AF38-46A7-BD5D-FA1D70055365}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C0DF8C64-AF38-46A7-BD5D-FA1D70055365}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C0DF8C64-AF38-46A7-BD5D-FA1D70055365}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C0DF8C64-AF38-46A7-BD5D-FA1D70055365}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {B6F9976A-F845-4DE3-A89F-0F5C9A9FC0A1} + EndGlobalSection +EndGlobal diff --git a/README.md b/README.md index 1df8db3..9982c0a 100644 --- a/README.md +++ b/README.md @@ -1,189 +1,40 @@ -Introducing the DotNetZip Library and Tools -------------------------------------------- - -## Maintainers wanted – ping @haf to talk +ProDotNetZip - NET Standard part of DotNetZip / Ionic's Zip Library +------------------------------------------------------------------- DotNetZip is the name of an open-source project that delivers a .NET library for handling ZIP files, and some associated tools. +ProDotNetZip is rip off the original code with limitation to NET standard subset. + - The library allows .NET programmers to build applications that read, create and modify ZIP files. - The tools are .NET programs that rely on the library, and can be used by anyone on any Windows machine to build or extract ZIP files. +Original library: https://github.com/DinoChiesa/DotNetZip +SemVer updated library: https://github.com/haf/DotNetZip.Semverd -## How to build? - -`bundle && rake` - -CI: https://ci.appveyor.com/project/haf/dotnetzip-semverd - -Why DotNetZip? ---------------------------------- +Namespace was left untouched as `Ionic.Zip`. -The Microsoft .NET Framework base class library lacks a good set of -built-in classes for creating and reading ZIP files, and Windows itself -lacks full-powered built-in ZIP tools. DotNetZip fills those needs. -There are other ZIP libraries available, but some of them have licenses -that may be unfriendly, some of them are too hard to use or not powerful -enough, and some of them are too expensive (not free). DotNetZip -provides one more alternative. The goals for this alternative: - - - easy to adopt - low cost (Free), and a friendly license - - fully-featured - - good performance - in speed and compression - - easy to use. - - - -DotNetZip background ---------------------------------- +## How to build? -Many people seem to think, incorrectly, that the classes in the -System.IO.Compression namespace, like GZipStream or DeflateStream, can -create or read zip files. Not true. - -The System.IO.Compression namespace, available starting with .NET v2.0 -for the desktop Framework and v3.5 for the Compact Framework, includes -base class libraries supporting compression within streams - both the -Deflate and Gzip formats are supported. But these classes are not -directly useful for creating compressed ZIP archives. GZIP is not -ZIP. Deflate is not ZIP. The GZipStream in System.IO.Compression is -able to read and write GZIP streams, but that is not the same as reading -or writing a zip file. Also, these classes deliver poor compression in -practice, especially with binary data, or previously-compressed data. - - -Yes, it is possible to read and write zip files, using the classes in -the .NET Framework. - - - You can do it with the System.IO.Packaging.ZipPackage class, added - in .NET v3.0. Actually this class lets you create a package file, - which is a zipfile with a particular internal structure. It includes - a manifest and some other things. But the interface is odd and - confusing if all you want is a regular-old ZIP file. Also, the - classes in this namespace do not provide control for things like - passwords, comments, AES encryption, ZIP64, Unicode, and so on. - - - You can also create and read zip files with the J# runtime. This - also has its drawbacks. First, J# is going out of support, or may - be out of support now. Second, the J# runtime is huge, and you have - to swallow the whole thing, even if all you want is zip file - capability. Also, the J# runtime is based on the java.util.zip - classes from Java v1.4, dating from 1998. The runtime hasn't been - updated in years and still includes bugs in zip file handling. It - lacks support for AES, for ZIP64, and Unicode. It is not accessible - from COM. Finally, the zip classes in the J# runtime are decidedly - un-dotnet. There's no support for events, or enumerators to let you - do things like For Each in VB, or foreach in C#. The interface is - clunky. It does not feel like a .NET class library, because it isn't - a .NET class library. So for all those reasons, J# isn't ideal. - - - You can also rely on P/Invoke to the shell32.dll, and the - ShellClass. This works in a limited fashion. The drawbacks here: it - isn't documented. It isn't a very intuitive or powerful programming - interface. There are no events, so embedding it into a Winforms app - with a progress bar would be difficult. Again it lacks an easy way - to use or access many ZIP features, like encryption or ZIP64 or - self-extracting archives. Also, the shell32.dll is designed for use - within Windows Explorer, and presumes a user interface. In fact in - some cases, calling into this DLL to perform a ZIP extraction can - display a dialog box, so it may not be suitable for use within - server or "headless" applications. - - -There are other libraries out there than do zip files for .NET. But -there are compromises with each one. Some are commercial and expensive. -Some are slow. Some are complicated to use. Some of these options lack -features. Some of them have more than one of these drawbacks. - -DotNetZip provides another option. It's a very simple-to-use class -library that provides good ZIP file support. Using this library, you -can write .NET applications that read and write zip-format files, -including files with passwords, Unicode filenames, ZIP64, AES -encryption, and comments. The library also supports self-extracting -archives. It is well documented and provides good performance. - -Though DotNetZip is implemented in .NET and was originally intended to -provide a managed-code library for ZIP files, you can now use it library -from any COM environment, including Javascript, VBScript, VB6, VBA, PHP, -Perl, and others. Using DotNetZip, you could generate an AES-encrypted -zip file from within the code of a macro running in MS-Excel, for example. - -DotNetZip works with applications running on PCs with Windows. There is a -version of this library available for the .NET Compact Framework, too. - -I have not tested DotNetZip for use with Mono, but I've heard reports -that people use the binary releases with Mono successfully, without -change. +`dotnet build` License -------- This software is open source. It is released under the Microsoft Public -License of October 2006. The use of the "Microsoft Public License" does -not mean it is licensed by Microsoft. See the License.txt file for -details. +License of October 2006. See the License.txt file for details. DotNetZip is derived in part from ZLIB, the C-language library by Mark -Adler and Jean-loup Gailly . See the License.ZLIB.txt file included in +Adler and Jean-loup Gailly . See the License.ZLIB.txt file included in the DotNetZip download for details. -What is DotNetZip? and How is it packaged? ---------------------------------------------- - -DotNetZip is primarily a managed library for dealing with ZIP files. - -It is packaged as a DLL that your application must reference: -Ionic.Zip.dll. In the "developer's kit" package, there is -documentation, code examples, and debug versions of the DLL. - -The ZIP library depends on a set of supporting classes for doing -compression and decompression; these are exposed in other namespaces. - -The classes in the ZIP library reside in these namespaces: - - namespace interesting classes - ------------------------------------------------------------ - Ionic.Zip ZipFile, ZipEntry, ZipOutputStream, and - ZipInputStream. - - Ionic.Zlib DeflateStream, GZipStream, ZlibStream - - Ionic.BZip2 BZip2InputStream, BZip2OutputStream - - Ionic.Crc CRC32 - - -If you want only ZLIB (raw compression and decompression, RFC 1950, -1951, and 1952), the ZLIB classes are packaged independently, in -Ionic.Zlib.dll. Likewise, if you want to do BZIP2 compression, outside -the scope of a zip file, you can use the Ionic.BZip2.dll assembly. - -If you want ZIP, or both ZIP and ZLIB, then your application should -depend soly on Ionic.Zip.dll; this assembly includes a superset of the -classes in Ionic.Zlib.dll and Ionic.BZip2.dll. - -For each DLL, there is a version for the regular .NET Framework and -another for the Compact Framework. - -DotNetZip also includes command-line and GUI tools for manipulating zip -files; these can be helpful to developers when building applications -that create or manipulate zip files. They also can be helpful as -end-user tools. - -There are other downloads for DotNetZip - the source package, the -runtime-only package (DLLs and no helpfile or tools), the -documentation-only package, etc. - - - - Using the Zip Class Library: The Basics ---------------------------------------- @@ -204,20 +55,13 @@ other for your application. The simplest way to create a ZIP file in C# looks like this: - using(ZipFile zip= new ZipFile()) + using (ZipFile zip = new ZipFile()) { zip.AddFile(filename); zip.Save(NameOfZipFileTocreate); } -Or in VB.NET, like this: - - Using zip As ZipFile = New ZipFile - zip.AddFile(filename) - zip.Save("MyZipFile.zip") - End Using - The using clause is important; don't leave it out. @@ -241,24 +85,10 @@ But you could also do something like this: } -Or in VB, extraction would be like this: - Using zip As ZipFile = ZipFile.Read(NameOfExistingZipFile) - zip.ExtractAll - End Using - -Or this: - Using zip As ZipFile = ZipFile.Read(NameOfExistingZipFile) - Dim e As ZipEntry - For Each e In zip - e.Extract - Next - End Using - - That covers the basics. -Notice that a using clause is always employed. DOn't forget this. Don't -leave it off. If you don't understand what it is, don't just skip it. +Notice that a using clause is always employed. Don't forget this. +Don't leave it off. If you don't understand what it is, don't just skip it. It's important. There are a number of other options for using the class library. For @@ -282,7 +112,7 @@ properties of the entry within the zip file, using that object. For example, the following code adds a file as an entry into a ZipFile, then renames the entry within the zip file: - using(ZipFile zip= new ZipFile()) + using (ZipFile zip = new ZipFile()) { ZipEntry e = zip.AddFile(filename); e.FileName = "RenamedFile.txt"; @@ -321,7 +151,7 @@ reading zip files; the latter is for writing them. About Directory Paths --------------------------------- -One important note: the ZipFile.AddXxx methods add the file or +One important note: the `ZipFile.AddXxx` methods add the file or directory you specify, including the directory. In other words, logic like this: ZipFile zip = new ZipFile(); @@ -334,13 +164,13 @@ extract that file from the zip, either using this Zip library or winzip or the built-in zip support in Windows, or some other package, all those directories will be created, and the file will be written into that directory hierarchy. At extraction time, if you were to extract that -file into a directory like c:\documents, then resulting file would be -named c:\documents\a\b\c\Hello.doc . +file into a directory like `c:\documents`, then resulting file would be +named `c:\documents\a\b\c\Hello.doc`. This is by design. If you don't want that directory information in your archive, -then you need to use the overload of the AddFile() method that +then you need to use the overload of the `AddFile()` method that allows you to explicitly specify the directory used for the entry within the archive: @@ -355,28 +185,32 @@ If you extract that file into a directory e:\documents, then the resulting file will be called e:\documents\files\Hello.doc . If you want no directory at all, specify "" (the empty string). -Specifying null (Nothing in VB) will include all the directory hierarchy +Specifying null will include all the directory hierarchy in the filename, as in the orginal case. -Pre-requisites to run Applications that use DotNetZip +Pre-requisites to run Applications that use ProDotNetZip ----------------------------------------------------- -To run desktop applications that depend on DotNetZip: - .NET Framework 4.0 or later +ProDotNetZip contains only subset of original DotNetZip +library that is compilable in .NET Standard 2.0, therefore +usable in .NET Framework, .NET Core, .NET. +Assembly should be possible to use in eg. + * .NET Framework 4.8 + * NET 6 LTS + * NET 8 LTS + * NET 9 - - -In more detail: The Zip Class Library +In more detail: ProDotNetZip Class Library ---------------------------------------------- -The Zip class library is packaged as Ionic.Zip.DLL for the regular .NET -Framework and Ionic.Zip.CF.dll for the Compact Framework. The Zip -library allows applications to create, read, and update zip files. +## Zip Library + +The Zip library allows applications to create, read, and update zip files. This library uses the DeflateStream class to compress file data, and extends it to support reading and writing of the metadata - @@ -401,28 +235,13 @@ supporting classes as well. Typically, 80% of apps will use just the ZipFile class, and will not need to directly interact with these other classes. But they are there if you need them. -If you want to create or read zip files, the Ionic.Zip.DLL assembly is -the one you want. - -When building applications that do zip stuff, you need to add a reference to -the Ionic.Zip.dll in Visual Studio, or specify Ionic.Zip.dll with the -/R flag on the CSC.exe or VB.exe compiler line. - - - - -In more detail: The Zlib Class Library ------------------------------------------ +## ZLIB Library -The Zlib class library is packaged as Ionic.Zlib.DLL for the regular .NET -Framework and Ionic.Zlib.CF.dll for the Compact Framework. The ZLIB -library does compression and decompression according to IETF RFC's 1950 (ZLIB), +The ZLIB library does compression and decompression according to IETF RFC's 1950 (ZLIB), 1951 (Deflate), and 1952 (GZIP). -See http://www.ietf.org/rfc/rfc1950.txt - http://www.ietf.org/rfc/rfc1951.txt - and http://www.ietf.org/rfc/rfc1952.txt - +See http://www.ietf.org/rfc/rfc1950.txt, http://www.ietf.org/rfc/rfc1951.txt +and http://www.ietf.org/rfc/rfc1952.txt The key classes are: @@ -442,41 +261,25 @@ The key classes are: streams. -If you want to simply compress (deflate) raw block or stream data, this -library is the thing you want. - -When building applications that do zlib things, you need to add a reference to -the Ionic.Zlib.dll in Visual Studio, or specify Ionic.Zlib.dll with the -/R flag on the CSC.exe or VB.exe compiler line. - -NB: If your application does both Zlib and Zip stuff, you need only add -a reference to Ionic.Zip.dll. Ionic.Zip.dll includes all the capability -in Ionic.Zlib.dll. Ionic.Zip.dll is a superset. - - - -In more detail: The BZip2 Class Library ------------------------------------------ +## BZIP2 Library -The BZip2 class library is packaged as Ionic.BZip2.DLL for the regular .NET -Framework and Ionic.BZip2.CF.dll for the Compact Framework. The BZip2 -library does compression according to the bzip2 format created by -Julian Seward. -See http://en.wikipedia.org/wiki/Bzip2 +The BZip2 library does compression according to the bzip2 format created by +Julian Seward. See http://en.wikipedia.org/wiki/Bzip2 -NB: If your application does a combination of BZip2, Zlib and Zip stuff, -you need only add a reference to Ionic.Zip.dll. Ionic.Zip.dll includes -all the capability in Ionic.Zlib.dll and Ionic.BZip2.dll. Ionic.Zip.dll -is a superset. -If you try to link to more than one of these, you will get compiler -warnings about "duplicate types". +## Summary +If you want to create or read zip files, the ProDotNetZip.dll assembly is +the one you want. -Namespace changes for DotNetZip +Namespace changes for ProDotNetZip ----------------------------------------- +ProDotNetZip has the same classes and namespaces as DotNetZip. +You can use it as clean replacement. + +Detailed information about namespace in DotNetZip are as follow: The namespace for the DotNetZip classes is Ionic.Zip. Classes are like: Ionic.Zip.ZipFile @@ -484,8 +287,6 @@ Classes are like: Ionic.Zip.ZipException etc -(check the .chm file for the full list) - For the versions prior to v1.7, the namespace DotNetZip was Ionic.Utils.Zip. The classes were like so: Ionic.Utils.Zip.ZipFile @@ -505,62 +306,25 @@ for v1.7). For Zlib, the classes are like this: Ionic.Zlib.ZlibCodec ... -(again, check the .chm file for the full list) - For v1.9.1.6, the CRC class moved from the Ionic.Zlib namespace to the Ionic.Crc namespace. - Dependencies --------------------------------- -Originally, this library was designed to depend upon the built-in -System.IO.Compression.DeflateStream class for the compression. This -proved to be less than satisfactory because the built-in compression -library did not support compression levels and also was not available on -.NET CF 2.0. - -As of v1.7, the library includes a managed code version of zlib, the -library that produces RFC1950 and RFC1951 compressed streams. Within -that version of zlib, there is also a DeflateStream class which is -similar to the built-in System.IO.Compression.DeflateStream, but more -flexible, and often more effective as well. - +ProDotNetZip package is dependent upon NET Standard 2.0 library and +two other libraries: + * System.Security.Permissions + * System.Text.Encoding.CodePages The Documentation -------------------------------------------- -There is a single set of developer reference documentation for all of -the DotNetZip library features, including Zip and Zlib stuff. It is -packaged in two ways: As a .chm file, and as a Help Viewer 1.0 resource. -The latter is the new format suitable for viewing within VS2010. - -If you only use the Zlib stuff, then you should focus on the doc in the -Ionic.Zlib namespace. Likewise BZip2. If you are building apps for -mobile devices running the Compact Framework, then ignore the pieces -that deal with SaveSelfExtractor() and AES. - -Consult the help file for more specifics here. - -In some cases, upon opening the .chm file for DotNetZip, the help -items tree loads, but the contents are empty. You may see an error: -"This program cannot display the webpage." or, "Address is invalid." -If this happens, it's likely that you've encountered a problem with Windows -protection of files downloaded from less trusted locations. To work around -this, within Windows Explorer, right-click on the CHM file, select properties, -and Unblock it, using the button in lower part of properties window. - -The help is also packaged in a format that you can integrate into Visual -Studio 2008, or Visual Studio 2010. VS2008 requires MS Help 2.0, while -VS2010 requires a different, newer format, sometimes called MS Help 3, -and sometimes (confusingly) called "MS Help Viewer 1.0 format". - -The DotNetZip "devkit" download includes help in all these formats. - +Use documentation for DotNetZip as relevant source of information at the moment. The Zip Format @@ -568,148 +332,24 @@ The Zip Format The zip format is described by PKWare, at http://www.pkware.com/business_and_developers/developer/popups/appnote.txt -Every valid zipfile conforms to this specification. For example, the -spec says that for each compressed file contained in the zip archive, -the zipfile contains a byte array of compressed data. (The byte array -is something the DeflateStream class can produce directly.) But the -zipfile also contains header and "directory" information - you might -call this "metadata". In other words, the zipfile must contain a list -of all the compressed files in the archive. The zipfile also contains -CRC checksums, and can also contain comments, and other optional -attributes for each file. These are things the DeflateStream class - -either the one included in the .NET Framework Class Library, or the one -embedded in this library - does not read or write. - -Managing the metadata in a zip file is most of what DotNetZip does. - - -Which DLL to use? --------------------------------- -The binary releases of DotNetZip include multiple distinct DLLs or -assemblies. Which one should you use? - -The likely answer is: use Ionic.Zip.dll. - -That's the mainstream library, the full library, and it includes all the -capability. If you have particular requirements, like you want a -smaller library, or you want to exclude the Self-Extracting stuff, or -you only want the ZLIB capability, then you may want to choose a -different assembly. - -Here's a summary of the options. - - -Usage scenario Reference this DLL ------------------------------------------------------------------- -reading or writing Zip files Ionic.Zip.dll - -raw block or stream compression, ZLIB, GZIP, Ionic.Zlib.dll - or DEFLATE - -raw block or stream compression, BZIP2 Ionic.BZip2.dll - -both raw compression as well as reading Ionic.Zip.dll - or writing Zip files - -reading or writing Zip files, using desktop Ionic.Zip.Reduced.dll - .NET framework but never creating a - self-extracting archive - - -Never reference both Ionic.Zlib.dll and Ionic.Zip.dll, or both -Ionic.BZip2.dll and Ionic.Zip.dll in the same application. If your -application does both Zlib and Zip stuff, you need only add a reference -to Ionic.Zip.dll. Ionic.Zip.dll includes all the capability in -Ionic.Zlib.dll and Ionic.BZip2.dll You always need to reference only a -single Ionic DLL, regardless whether you use Zlib or BZip2 or Zip or -some combination. - - - Self-Extracting Archive support -------------------------------- -The Self-Extracting Archive (SFX) support in the library allows you to -create a self-extracting zip archive. An SFX is both a standard EXE -file *and* a ZIP file. The exe contains boilerplate program logic to -unzip the embedded zip file. When the user executes the SFX runs, the -boilerplate application logic just reads the zip content and -then unzips itself. You can open an SFX in WinZip and other zip tools, -as well, if you want to view it. - -Running the SFX (unpacking from the SFX) requires the .NET Framework -installed on the machine, but does not require the DotNetZip library. - -There are two versions of the SFX - one that presents a GUI form, and -another that runs as a console (command line) application. - -NB: Creation of SFX is not supported in the Compact Framework version of -the library. - -Also, there is no way, currently, to produce an SFX file that can run on -the .NET Compact Framework. - - - - -The Reduced ZIP library --------------------------------- - -The full DotNetZip library is currently about 400k in size. The SFX -(Self-Extracting Archive) support is responsible for more than half the -total size of the library. Some deployments may wish to omit the SFX -support in order to get a smaller DLL. For that you can rely on the -Ionic.Zip.Reduced.dll. It provides everything the normal library does, -except the SaveSelfExtractor() method on the ZipFile class. - -For size comparisons...these approximate figures are for v1.9.1.6 of the -library: - - -#### Desktop Framework: -``` - assembly ~size comment - ------------------------------------------------------- - Ionic.Zlib.dll 100k {Deflate,GZip,Zlib}Stream and ZlibCodec - - Ionic.BZip2.dll 57k BZip2{Input,Output}Stream - - Ionic.Zip.dll 460k includes ZLIB and BZIP2 compression, - SFX, selector logic, WinZIP AES encryption, - and the ComHelper class - - Ionic.Zip.Reduced.dll 250k includes everything in the main ZIP - library except SFX. (ability to save - Self-extracting archives) -``` - - - - - +The Self-Extracting Archive (SFX) is **not supported** in NET Standard version. Support -------------------------------------------- -There is no official support for this library. I try to make a good -effort to answer questions and monitor the work items raised on the -project portal at: - - http://DotNetZip.codeplex.com. - - +There is no official support for this library. About Intellectual Property --------------------------------- -I am no lawyer, but before using this library in your app, it -may be worth reviewing the various licenses. - The specification for the zip format, which PKWARE owns, includes a paragraph that reads: @@ -721,10 +361,10 @@ paragraph that reads: strong encryption or patching, requires a license from PKWARE. Please contact PKWARE with regard to acquiring a license. -Contact pkware at: zipformat@pkware.com +Contact pkware at: zipformat@pkware.com This library does not do strong encryption as described by PKWare, nor -does it do patching. But again... I am no lawyer. +does it do patching. This library uses a ZLIB implementation that is based on a conversion of @@ -740,274 +380,24 @@ DotNetZip, specifically in the sources for the BZip2 module. - Limitations --------------------------------- -There are a few limitations to this library: - - It does not do strong encryption. - - The GUI tool for creating zips is functional but basic. This isn't a limitation - of the library per se. - - ...and, I'm sure, many others - -But it is a good basic library for reading and writing zipfiles -in .NET applications. - - - - -Building the Library -============================================ - -This section is mostly interesting to developers who will work on or -view the source code of DotNetZip, to extend or re-purpose it. If you -only plan to use DotNetZip in applications of your own, you probably -don't need to concern yourself with the information that follows. - - - - - -Pre-requisites to build DotNetZip ---------------------------------- - -.NET Framework 4.0 SDK or later - -or- -Visual Studio 2010 or later - - -and- - -ILMerge - a tool from Microsoft that combines -multiple managed assemblies into a single DLL or image. It is in -similar in some respects to the lib tool in C toolkits. - -You can get it here: - http://www.microsoft.com/downloads/details.aspx?familyid=22914587-b4ad-4eae-87cf-b14ae6a939b0&displaylang=en - - - - - -Building DotNetZip with the .NET SDK -------------------------------------- - -To build the library using the .NET Framework SDK v4.0, - -1. extract the contents of the source zip into a new directory. - -2. be sure the .NET 4.0 SDK and runtime directories are on your - path. - -3. Modify the .csproj files in Zip and ZLIB and BZip2 to eliminate - mention of the Ionic.pfx and Ionic.snk files. - - The various DLLs (Zip Partial, ZLIB, etc.) are signed with my private - key. You will want to remove the mention of the private key in the - project files. I cannot distribute my private key, so don't ask me! - That would be silly. So you have to modify the project in order to - build without the key. - - -4. open a CMD prompt and CD to the DotNetZip directory. - - -5. msbuild - - Be sure you are using the .NET 3.5 version of MSBuild. - This builds the "Debug" version of the library. To build the - "Release" version, do this: - - msbuild /t:Release - - -6. to clean and rebuild, do - msbuild /t:clean - msbuild - - -7. There are two setup directories, which contain the projects necessary - to build the MSI file. Unfortunately msbuild does not include - support for building setup projects (vdproj). You need Visual Studio - to build the setup directories. - - I am in the process of converting these from .vdproj to .wixproj, so - they can be built from the command line using msbuild. . - - - - -Building DotNetZip with Visual Studio -------------------------------------- - -To build DotNetZip using Visual Studio 2010, - -1. Open the DotNetZip.sln file in VS2010. - -2. If necessary, Remove the dependencies on Ionic.pfx and Ionic.snk. - - (References to these will have already been removed from the zipped - source distributions, but if you get your source from the TFS server, - then you will have to remove references to the keyfiles manually) - - The various DLLs (Zip, ZLIB, etc.) are signed with my (Dino - Chiesa's) private key. I do not distribute that key for anyone - else's use. If you build the DotNetZip library from source, You will - want to remove the mention of the private key in the project files. I - will not distribute my private key, that would be silly. So don't - ask me! - -3. Press F6 to build everything. - - - - -The Project Structure and Build approach ----------------------------------------------------- - -The function here is grouped into three basic sets: Zip, -ZLIB/Deflate/GZIP, and BZip2. The Zip group is a superset of the ZLIB -and BZIP2 groups. - -Each group of functionality is packaged into various assemblies, one -assembly per "platform". The platforms supported are: .NET (Desktop). - -There is also a special "Zip Reduced" library, available only on the -Desktop platform; it is a reduced-function version of the regular -Desktop Framework zip library. It provides an option of using a smaller -library for those zip-handling applications that don't produce -Self-extracting archives. - -In a previous guise, DotNetZip relied on the ILMerge tool to combine -distinct DLLs into a single package. This is no longer the case. - -Because the ZIP projects include the ZLIB and BZIP2 function, the -appropriate source modules for the ZLIB and Bzip2 are "linked" into each -of the ZIP projects (Desktop). - - - - -Regarding the missing Ionic.pfx and Ionic.snk files -------------------------------------------------------------------------- - -The binary DLLs shipped in the codeplex project are signed by me, Dino -Chiesa. This provides a "strong name" for the assembly, which itself -provides some assurance as to the integrity of the library, and also -allows it to be run within restricted sites, like apps running inside -web hosters. - -For more on strong names, see this article: -http://msdn.microsoft.com/en-gb/magazine/cc163583.aspx - -Signing is done automatically at build time in the Visual Studio project or in -the msbuild build. There -is a .pfx file that holds the crypto stuff for signing the assembly, and -that pfx file is itself protected by a password. There is also an -Ionic.snk file which is referenced by the project, but which I do not -distribute. - -People opening the project ask me: what's the password to this .pfx -file? Where's the .snk file? - -Here's the problem; those files contain my private key. if I give -everyone the password to the PFX file or the .snk file, then anyone can -go and build a modified Ionic.Zip.dll, and sign it with my key, and -apply any version number they like. This means there could be multiple -distinct assemblies with the same signature. This is obviously not -good. - -Since I don't release the ability to sign DLLs with my key, the DLL -signed with my key is guaranteed to be produced by me only, which is in -fact the exact intent of code signing in .NET. - -If anyone wants to modify the project and re-compile it, they have a -couple options: - - - sign the assembly themselves, using their own key. - - produce a modified, unsigned assembly - -In either case it is not the same as the assembly I am shipping, -therefore it should not be signed with the same key. - -All clear? - -As for those options above, here is some more detail: - - 1. If you want a strong-named assembly, then create your own PFX file - and .snk file and modify the appropriate projects to use those new - files. - - 2. If you don't need a strong-named assembly, then remove all the - signing from the various projects. - -In either case, you will need to modify the "Zip", BZip, and the "Zlib" -projects. - - - - -Building the Documentation --------------------------------------------- - -The documentation files are built using the Sandcastle Helpfile Builder -tool, also available on CodePlex at http://www.codeplex.com/SHFB . It -is built from in-code xml documentation, augmented with some additional -out-of-band html documentation. - -If you want to build the help files yourself, you will need to have -Sandcastle from May 2008 (or later, I guess), and SHFB, from February -2009. Both are free tools available from http://codeplex.com . I think -you can get a package download of both of these by installing v1.9.3.0 -of SHFB . - -The helpfile projects are: - - HtmlHelp1.shfbproj - to build the .chm file - MSHelp2.shfbproj - to build the MS Help 2.0 content - HelpViewer.shfbproj - to build the MS Help Viewer 1.0 content - - (The MSHelp2 project is broken at the moment.) - -To build the documentation in any of these formats, first build the "zip -Full DLL" project in the source (Ionic.Zip.dll), then run: - - msbuild HtmlHelp1.shfbproj - - -or- - - msbuild HelpViewer.shfbproj - - -The Help Viewer 1.0 content can be viewed in the help viewer that is -integrated into VS 2010, or in an alternative viewer, such as -H3Viewer.exe. See http://mshcmigrate.helpmvp.com/viewer . - +All issues that DotNetZip have this package also probably have, so use it at AS IS. Examples -------------------------------------------- -The source solution also includes a number of example applications -showing how to use the DotNetZip library and all its features - creating -ZIPs, using Unicode, passwords, comments, streams, and so on. Most of -these will be built when you build the solution. Some of them do not - -you will need to build them independently. +Currently removed, use Examples from DotNetZip is neccessary. Tests -------------------------------------------- -There are two source projects in the VS Solution that contain Unit -Tests: one for the zlib library, one for the bzip2 library, and another -for the Zip library. If you develop any new tests for DotNetZip, I'd be -glad to look at them. - - +Tests are bundled to one test project, all tests must be green before releasing. diff --git a/old/.gitattributes b/old/.gitattributes new file mode 100644 index 0000000..cfd07fb --- /dev/null +++ b/old/.gitattributes @@ -0,0 +1,19 @@ +# Custom for Visual Studio +*.cs diff=csharp +*.sln merge=union +*.csproj merge=union +*.vbproj merge=union +*.fsproj merge=union +*.dbproj merge=union + +# Standard to msysgit +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain diff --git a/old/.gitignore b/old/.gitignore new file mode 100644 index 0000000..bbbb550 --- /dev/null +++ b/old/.gitignore @@ -0,0 +1,14 @@ +bin/ +obj/ +*.user +_ReSharper* +*.resharper +*.suo +build/ +/.paket/paket.exe +/.paket/.store +/.vs +/src/.vs +/src/UpgradeLog.htm +/src/UpgradeLog2.htm +/src/**/paket.template \ No newline at end of file diff --git a/.paket/Paket.Restore.targets b/old/.paket/Paket.Restore.targets similarity index 98% rename from .paket/Paket.Restore.targets rename to old/.paket/Paket.Restore.targets index 0ec2816..8d37e28 100644 --- a/.paket/Paket.Restore.targets +++ b/old/.paket/Paket.Restore.targets @@ -1,494 +1,494 @@ - - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - $(MSBuildVersion) - 15.0.0 - false - true - - true - $(MSBuildThisFileDirectory) - $(MSBuildThisFileDirectory)..\ - $(PaketRootPath)paket-files\paket.restore.cached - $(PaketRootPath)paket.lock - classic - proj - assembly - native - /Library/Frameworks/Mono.framework/Commands/mono - mono - - - $(PaketRootPath)paket.bootstrapper.exe - $(PaketToolsPath)paket.bootstrapper.exe - $([System.IO.Path]::GetDirectoryName("$(PaketBootStrapperExePath)"))\ - - "$(PaketBootStrapperExePath)" - $(MonoPath) --runtime=v4.0.30319 "$(PaketBootStrapperExePath)" - - - - - true - true - - - True - - - False - - $(BaseIntermediateOutputPath.TrimEnd('\').TrimEnd('\/')) - - - - - - - - - $(PaketRootPath)paket - $(PaketToolsPath)paket - - - - - - $(PaketRootPath)paket.exe - $(PaketToolsPath)paket.exe - - - - - - <_DotnetToolsJson Condition="Exists('$(PaketRootPath)/.config/dotnet-tools.json')">$([System.IO.File]::ReadAllText("$(PaketRootPath)/.config/dotnet-tools.json")) - <_ConfigContainsPaket Condition=" '$(_DotnetToolsJson)' != ''">$(_DotnetToolsJson.Contains('"paket"')) - <_ConfigContainsPaket Condition=" '$(_ConfigContainsPaket)' == ''">false - - - - - - - - - - - <_PaketCommand>dotnet paket - - - - - - $(PaketToolsPath)paket - $(PaketBootStrapperExeDir)paket - - - paket - - - - - <_PaketExeExtension>$([System.IO.Path]::GetExtension("$(PaketExePath)")) - <_PaketCommand Condition=" '$(_PaketCommand)' == '' AND '$(_PaketExeExtension)' == '.dll' ">dotnet "$(PaketExePath)" - <_PaketCommand Condition=" '$(_PaketCommand)' == '' AND '$(OS)' != 'Windows_NT' AND '$(_PaketExeExtension)' == '.exe' ">$(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)" - <_PaketCommand Condition=" '$(_PaketCommand)' == '' ">"$(PaketExePath)" - - - - - - - - - - - - - - - - - - - - - true - $(NoWarn);NU1603;NU1604;NU1605;NU1608 - false - true - - - - - - - - - $([System.IO.File]::ReadAllText('$(PaketRestoreCacheFile)')) - - - - - - - $([System.Text.RegularExpressions.Regex]::Split(`%(Identity)`, `": "`)[0].Replace(`"`, ``).Replace(` `, ``)) - $([System.Text.RegularExpressions.Regex]::Split(`%(Identity)`, `": "`)[1].Replace(`"`, ``).Replace(` `, ``)) - - - - - %(PaketRestoreCachedKeyValue.Value) - %(PaketRestoreCachedKeyValue.Value) - - - - - true - false - true - - - - - true - - - - - - - - - - - - - - - - - - - $(PaketIntermediateOutputPath)\$(MSBuildProjectFile).paket.references.cached - - $(MSBuildProjectFullPath).paket.references - - $(MSBuildProjectDirectory)\$(MSBuildProjectName).paket.references - - $(MSBuildProjectDirectory)\paket.references - - false - true - true - references-file-or-cache-not-found - - - - - $([System.IO.File]::ReadAllText('$(PaketReferencesCachedFilePath)')) - $([System.IO.File]::ReadAllText('$(PaketOriginalReferencesFilePath)')) - references-file - false - - - - - false - - - - - true - target-framework '$(TargetFramework)' or '$(TargetFrameworks)' files @(PaketResolvedFilePaths) - - - - - - - - - - - false - true - - - - - - - - - - - $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',').Length) - $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[0]) - $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[1]) - $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[4]) - $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[5]) - - - %(PaketReferencesFileLinesInfo.PackageVersion) - All - runtime - runtime - true - true - - - - - $(PaketIntermediateOutputPath)/$(MSBuildProjectFile).paket.clitools - - - - - - - - - $([System.String]::Copy('%(PaketCliToolFileLines.Identity)').Split(',')[0]) - $([System.String]::Copy('%(PaketCliToolFileLines.Identity)').Split(',')[1]) - - - %(PaketCliToolFileLinesInfo.PackageVersion) - - - - - - - - - - false - - - - - - <_NuspecFilesNewLocation Include="$(PaketIntermediateOutputPath)\$(Configuration)\*.nuspec"/> - - - - - - $(MSBuildProjectDirectory)/$(MSBuildProjectFile) - true - false - true - false - true - false - true - false - true - $(PaketIntermediateOutputPath)\$(Configuration) - $(PaketIntermediateOutputPath) - - - - <_NuspecFiles Include="$(AdjustedNuspecOutputPath)\*.$(PackageVersion.Split(`+`)[0]).nuspec"/> - - - - - - - - - - - - - - - - - - - - - + + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + $(MSBuildVersion) + 15.0.0 + false + true + + true + $(MSBuildThisFileDirectory) + $(MSBuildThisFileDirectory)..\ + $(PaketRootPath)paket-files\paket.restore.cached + $(PaketRootPath)paket.lock + classic + proj + assembly + native + /Library/Frameworks/Mono.framework/Commands/mono + mono + + + $(PaketRootPath)paket.bootstrapper.exe + $(PaketToolsPath)paket.bootstrapper.exe + $([System.IO.Path]::GetDirectoryName("$(PaketBootStrapperExePath)"))\ + + "$(PaketBootStrapperExePath)" + $(MonoPath) --runtime=v4.0.30319 "$(PaketBootStrapperExePath)" + + + + + true + true + + + True + + + False + + $(BaseIntermediateOutputPath.TrimEnd('\').TrimEnd('\/')) + + + + + + + + + $(PaketRootPath)paket + $(PaketToolsPath)paket + + + + + + $(PaketRootPath)paket.exe + $(PaketToolsPath)paket.exe + + + + + + <_DotnetToolsJson Condition="Exists('$(PaketRootPath)/.config/dotnet-tools.json')">$([System.IO.File]::ReadAllText("$(PaketRootPath)/.config/dotnet-tools.json")) + <_ConfigContainsPaket Condition=" '$(_DotnetToolsJson)' != ''">$(_DotnetToolsJson.Contains('"paket"')) + <_ConfigContainsPaket Condition=" '$(_ConfigContainsPaket)' == ''">false + + + + + + + + + + + <_PaketCommand>dotnet paket + + + + + + $(PaketToolsPath)paket + $(PaketBootStrapperExeDir)paket + + + paket + + + + + <_PaketExeExtension>$([System.IO.Path]::GetExtension("$(PaketExePath)")) + <_PaketCommand Condition=" '$(_PaketCommand)' == '' AND '$(_PaketExeExtension)' == '.dll' ">dotnet "$(PaketExePath)" + <_PaketCommand Condition=" '$(_PaketCommand)' == '' AND '$(OS)' != 'Windows_NT' AND '$(_PaketExeExtension)' == '.exe' ">$(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)" + <_PaketCommand Condition=" '$(_PaketCommand)' == '' ">"$(PaketExePath)" + + + + + + + + + + + + + + + + + + + + + true + $(NoWarn);NU1603;NU1604;NU1605;NU1608 + false + true + + + + + + + + + $([System.IO.File]::ReadAllText('$(PaketRestoreCacheFile)')) + + + + + + + $([System.Text.RegularExpressions.Regex]::Split(`%(Identity)`, `": "`)[0].Replace(`"`, ``).Replace(` `, ``)) + $([System.Text.RegularExpressions.Regex]::Split(`%(Identity)`, `": "`)[1].Replace(`"`, ``).Replace(` `, ``)) + + + + + %(PaketRestoreCachedKeyValue.Value) + %(PaketRestoreCachedKeyValue.Value) + + + + + true + false + true + + + + + true + + + + + + + + + + + + + + + + + + + $(PaketIntermediateOutputPath)\$(MSBuildProjectFile).paket.references.cached + + $(MSBuildProjectFullPath).paket.references + + $(MSBuildProjectDirectory)\$(MSBuildProjectName).paket.references + + $(MSBuildProjectDirectory)\paket.references + + false + true + true + references-file-or-cache-not-found + + + + + $([System.IO.File]::ReadAllText('$(PaketReferencesCachedFilePath)')) + $([System.IO.File]::ReadAllText('$(PaketOriginalReferencesFilePath)')) + references-file + false + + + + + false + + + + + true + target-framework '$(TargetFramework)' or '$(TargetFrameworks)' files @(PaketResolvedFilePaths) + + + + + + + + + + + false + true + + + + + + + + + + + $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',').Length) + $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[0]) + $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[1]) + $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[4]) + $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[5]) + + + %(PaketReferencesFileLinesInfo.PackageVersion) + All + runtime + runtime + true + true + + + + + $(PaketIntermediateOutputPath)/$(MSBuildProjectFile).paket.clitools + + + + + + + + + $([System.String]::Copy('%(PaketCliToolFileLines.Identity)').Split(',')[0]) + $([System.String]::Copy('%(PaketCliToolFileLines.Identity)').Split(',')[1]) + + + %(PaketCliToolFileLinesInfo.PackageVersion) + + + + + + + + + + false + + + + + + <_NuspecFilesNewLocation Include="$(PaketIntermediateOutputPath)\$(Configuration)\*.nuspec"/> + + + + + + $(MSBuildProjectDirectory)/$(MSBuildProjectFile) + true + false + true + false + true + false + true + false + true + $(PaketIntermediateOutputPath)\$(Configuration) + $(PaketIntermediateOutputPath) + + + + <_NuspecFiles Include="$(AdjustedNuspecOutputPath)\*.$(PackageVersion.Split(`+`)[0]).nuspec"/> + + + + + + + + + + + + + + + + + + + + + diff --git a/.semver b/old/.semver similarity index 100% rename from .semver rename to old/.semver diff --git a/Gemfile b/old/Gemfile similarity index 100% rename from Gemfile rename to old/Gemfile diff --git a/Gemfile.lock b/old/Gemfile.lock similarity index 100% rename from Gemfile.lock rename to old/Gemfile.lock diff --git a/old/LICENSE b/old/LICENSE new file mode 100644 index 0000000..c494536 --- /dev/null +++ b/old/LICENSE @@ -0,0 +1,114 @@ +Software Licenses that apply to the DotNetZip library and tools + +As DotNetZip includes work derived from other projects, you are required to comply with the terms and conditions for each of them. These licenses include BSD, Apache, and zlib. + +To use the software, you must accept the licenses. If you do not accept the licenses, do not use the software. + +Original intellectual property in DotNetZip is provided under the Ms-PL: + + Copyright (c) 2006 - 2011 Dino Chiesa + Copyright (c) 2006, 2007, 2008, 2009 Dino Chiesa and Microsoft Corporation. + + Microsoft Public License (Ms-PL) + + This license governs use of the accompanying software, the DotNetZip library ("the software"). If you use the software, you accept this license. If you do not accept the license, do not use the software. + + 1. Definitions + + The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. + + A "contribution" is the original software, or any additions or changes to the software. + + A "contributor" is any person that distributes its contribution under this license. + + "Licensed patents" are a contributor's patent claims that read directly on its contribution. + + 2. Grant of Rights + + (A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. + + (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. + + 3. Conditions and Limitations + + (A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. + + (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. + + (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. + + (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. + + (E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. + +-------------------------------------------------------------- + +The managed ZLIB code included in Ionic.Zlib.dll and Ionic.Zip.dll is derived from jzlib. + +jzlib ( https://github.com/ymnk/jzlib ) is provided under a BSD-style (3 clause) + + Copyright (c) 2000,2001,2002,2003 ymnk, JCraft, Inc. + + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + 3. The names of the authors may not be used to endorse or promote products derived from this software without specific prior written permission. + THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------- + +The jzlib library, itself, is a re-implementation of ZLIB v1.1.3 in pure Java. + +zlib is provided under the zlib license: + + Copyright (C) 1995-2004 Jean-loup Gailly and Mark Adler + The ZLIB software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. + Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: + 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + Jean-loup Gailly jloup@gzip.org
 Mark Adler madler@alumni.caltech.edu + +-------------------------------------------------------------- + +The managed BZIP2 code included in Ionic.BZip2.dll and Ionic.Zip.dll is modified code, based on Java code in the Apache commons compress library. + +Apache Commons Compress ( http://commons.apache.org/proper/commons-compress/ ) is provided under the Apache 2 license: + Apache Commons Compress + Copyright 2002-2014 The Apache Software Foundation + + Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + +Many thanks to Julian Seward for the original C implementation of BZip2 ( http://www.bzip.org/ ). + +-------------------------------------------------------------- + +The managed Deflate64 code included Ionic.Zip.dll is modified code, based on C# code in the .NET Core Libraries (CoreFX) (System.IO.Compression/DeflateManaged). + +Code is provided under MIT licence: + + The MIT License (MIT) + + Copyright (c) .NET Foundation and Contributors + + All rights reserved. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. diff --git a/old/NOTICE b/old/NOTICE new file mode 100644 index 0000000..f05fc34 --- /dev/null +++ b/old/NOTICE @@ -0,0 +1,12 @@ +DotNetZip - Copyright (c) 2006 - 2011 Dino Chiesa +DotNetZip - Copyright (c) 2006, 2007, 2008, 2009 Dino Chiesa and Microsoft Corporation. + +jzlib - Copyright (c) 2000,2001,2002,2003 ymnk, JCraft, Inc. +zlib - Copyright (c) 1995-2004 Jean-loup Gailly and Mark Adler + +Apache Commons Compress - Copyright 2002-2014 The Apache Software Foundation +This product includes software developed at The Apache Software Foundation (http://www.apache.org/). +The files in the package org.apache.commons.compress.archivers.sevenz were derived from the LZMA SDK, version 9.20 (C/ and CPP/7zip/), which has been placed in the public domain: +"LZMA SDK is placed in the public domain." (http://www.7-zip.org/sdk.html) + +Many thanks to Tim Endres, Keiron Liddle, and (for libbzip2), Julian Seward at bzip.org. diff --git a/old/README.md b/old/README.md new file mode 100644 index 0000000..0ffe031 --- /dev/null +++ b/old/README.md @@ -0,0 +1,1042 @@ +Introducing the DotNetZip Library and Tools +------------------------------------------- + +## Maintainers wanted – ping @haf to talk + +DotNetZip is the name of an open-source project that delivers a .NET +library for handling ZIP files, and some associated tools. + + - The library allows .NET programmers to build applications + that read, create and modify ZIP files. + + - The tools are .NET programs that rely on the library, and can be used + by anyone on any Windows machine to build or extract ZIP files. + + +## How to build? + +`bundle && rake` + +CI: https://ci.appveyor.com/project/haf/dotnetzip-semverd + +Why DotNetZip? +--------------------------------- + +The Microsoft .NET Framework base class library lacks a good set of +built-in classes for creating and reading ZIP files, and Windows itself +lacks full-powered built-in ZIP tools. DotNetZip fills those needs. + +There are other ZIP libraries available, but some of them have licenses +that may be unfriendly, some of them are too hard to use or not powerful +enough, and some of them are too expensive (not free). DotNetZip +provides one more alternative. The goals for this alternative: + + - easy to adopt - low cost (Free), and a friendly license + - fully-featured + - good performance - in speed and compression + - easy to use. + + + +DotNetZip background +--------------------------------- + +Many people seem to think, incorrectly, that the classes in the +System.IO.Compression namespace, like GZipStream or DeflateStream, can +create or read zip files. Not true. + +The System.IO.Compression namespace, available starting with .NET v2.0 +for the desktop Framework and v3.5 for the Compact Framework, includes +base class libraries supporting compression within streams - both the +Deflate and Gzip formats are supported. But these classes are not +directly useful for creating compressed ZIP archives. GZIP is not +ZIP. Deflate is not ZIP. The GZipStream in System.IO.Compression is +able to read and write GZIP streams, but that is not the same as reading +or writing a zip file. Also, these classes deliver poor compression in +practice, especially with binary data, or previously-compressed data. + + +Yes, it is possible to read and write zip files, using the classes in +the .NET Framework. + + - You can do it with the System.IO.Packaging.ZipPackage class, added + in .NET v3.0. Actually this class lets you create a package file, + which is a zipfile with a particular internal structure. It includes + a manifest and some other things. But the interface is odd and + confusing if all you want is a regular-old ZIP file. Also, the + classes in this namespace do not provide control for things like + passwords, comments, AES encryption, ZIP64, Unicode, and so on. + + - You can also create and read zip files with the J# runtime. This + also has its drawbacks. First, J# is going out of support, or may + be out of support now. Second, the J# runtime is huge, and you have + to swallow the whole thing, even if all you want is zip file + capability. Also, the J# runtime is based on the java.util.zip + classes from Java v1.4, dating from 1998. The runtime hasn't been + updated in years and still includes bugs in zip file handling. It + lacks support for AES, for ZIP64, and Unicode. It is not accessible + from COM. Finally, the zip classes in the J# runtime are decidedly + un-dotnet. There's no support for events, or enumerators to let you + do things like For Each in VB, or foreach in C#. The interface is + clunky. It does not feel like a .NET class library, because it isn't + a .NET class library. So for all those reasons, J# isn't ideal. + + - You can also rely on P/Invoke to the shell32.dll, and the + ShellClass. This works in a limited fashion. The drawbacks here: it + isn't documented. It isn't a very intuitive or powerful programming + interface. There are no events, so embedding it into a Winforms app + with a progress bar would be difficult. Again it lacks an easy way + to use or access many ZIP features, like encryption or ZIP64 or + self-extracting archives. Also, the shell32.dll is designed for use + within Windows Explorer, and presumes a user interface. In fact in + some cases, calling into this DLL to perform a ZIP extraction can + display a dialog box, so it may not be suitable for use within + server or "headless" applications. + + +There are other libraries out there than do zip files for .NET. But +there are compromises with each one. Some are commercial and expensive. +Some are slow. Some are complicated to use. Some of these options lack +features. Some of them have more than one of these drawbacks. + +DotNetZip provides another option. It's a very simple-to-use class +library that provides good ZIP file support. Using this library, you +can write .NET applications that read and write zip-format files, +including files with passwords, Unicode filenames, ZIP64, AES +encryption, and comments. The library also supports self-extracting +archives. It is well documented and provides good performance. + +Though DotNetZip is implemented in .NET and was originally intended to +provide a managed-code library for ZIP files, you can now use it library +from any COM environment, including Javascript, VBScript, VB6, VBA, PHP, +Perl, and others. Using DotNetZip, you could generate an AES-encrypted +zip file from within the code of a macro running in MS-Excel, for example. + +DotNetZip works with applications running on PCs with Windows. There is a +version of this library available for the .NET Compact Framework, too. + +I have not tested DotNetZip for use with Mono, but I've heard reports +that people use the binary releases with Mono successfully, without +change. + + +License +-------- + +This software is open source. It is released under the Microsoft Public +License of October 2006. The use of the "Microsoft Public License" does +not mean it is licensed by Microsoft. See the License.txt file for +details. + +DotNetZip is derived in part from ZLIB, the C-language library by Mark +Adler and Jean-loup Gailly . See the License.ZLIB.txt file included in +the DotNetZip download for details. + + + +What is DotNetZip? and How is it packaged? +--------------------------------------------- + +DotNetZip is primarily a managed library for dealing with ZIP files. + +It is packaged as a DLL that your application must reference: +Ionic.Zip.dll. In the "developer's kit" package, there is +documentation, code examples, and debug versions of the DLL. + +The ZIP library depends on a set of supporting classes for doing +compression and decompression; these are exposed in other namespaces. + +The classes in the ZIP library reside in these namespaces: + + namespace interesting classes + ------------------------------------------------------------ + Ionic.Zip ZipFile, ZipEntry, ZipOutputStream, and + ZipInputStream. + + Ionic.Zlib DeflateStream, GZipStream, ZlibStream + + Ionic.BZip2 BZip2InputStream, BZip2OutputStream + + Ionic.Crc CRC32 + + +If you want only ZLIB (raw compression and decompression, RFC 1950, +1951, and 1952), the ZLIB classes are packaged independently, in +Ionic.Zlib.dll. Likewise, if you want to do BZIP2 compression, outside +the scope of a zip file, you can use the Ionic.BZip2.dll assembly. + +If you want ZIP, or both ZIP and ZLIB, then your application should +depend soly on Ionic.Zip.dll; this assembly includes a superset of the +classes in Ionic.Zlib.dll and Ionic.BZip2.dll. + +For each DLL, there is a version for the regular .NET Framework and +another for the Compact Framework. + +DotNetZip also includes command-line and GUI tools for manipulating zip +files; these can be helpful to developers when building applications +that create or manipulate zip files. They also can be helpful as +end-user tools. + +There are other downloads for DotNetZip - the source package, the +runtime-only package (DLLs and no helpfile or tools), the +documentation-only package, etc. + + + + +Using the Zip Class Library: The Basics +---------------------------------------- + +The examples here provide just the basics. + +There are many other examples available: some are included in the source +package, some in the class reference documentation in the help file, and +others on the web. Those examples provide many illustrate how to read +and write zip files, taking advantage of all the various features of zip +files exposed by the library. For a full set of examples, your best bet +is to see the documentation. Here's a basic primer: + +The main type you will use to fiddle with zip files is the ZipFile +class. Full name: Ionic.Zip.ZipFile. You use this to create, read, or +update zip files. There is also a ZipOutputStream class, which offers a +Stream metaphor, for those who want it. You should choose one or the +other for your application. + +The simplest way to create a ZIP file in C# looks like this: + + using(ZipFile zip= new ZipFile()) + { + zip.AddFile(filename); + zip.Save(NameOfZipFileTocreate); + } + + +Or in VB.NET, like this: + + Using zip As ZipFile = New ZipFile + zip.AddFile(filename) + zip.Save("MyZipFile.zip") + End Using + + +The using clause is important; don't leave it out. + + +The simplest way to Extract all the entries from a zipfile looks +like this: + + using (ZipFile zip = ZipFile.Read(NameOfExistingZipFile)) + { + zip.ExtractAll(args[1]); + } + +But you could also do something like this: + + using (ZipFile zip = ZipFile.Read(NameOfExistingZipFile)) + { + foreach (ZipEntry e in zip) + { + e.Extract(); + } + } + + +Or in VB, extraction would be like this: + Using zip As ZipFile = ZipFile.Read(NameOfExistingZipFile) + zip.ExtractAll + End Using + +Or this: + Using zip As ZipFile = ZipFile.Read(NameOfExistingZipFile) + Dim e As ZipEntry + For Each e In zip + e.Extract + Next + End Using + + +That covers the basics. + +Notice that a using clause is always employed. DOn't forget this. Don't +leave it off. If you don't understand what it is, don't just skip it. +It's important. + +There are a number of other options for using the class library. For +example, you can read zip archives from streams, or you can create +(write) zip archives to streams, or you can extract into streams. You +can apply passwords for weak encryption. You can specify a code page +for the filenames and metadata of entries in an archive. You can rename +entries in archives, and you can add or remove entries from archives. +You can set up save and read progress events. You can do LINQ queries on +the Entries collection. Check the documentation for complete +information, or use Visual Studio's intellisense to explore some of the +properties and methods on the ZipFile class. + +Another type you will use is ZipEntry. This represents a single entry - +either a file or a directory - within a ZipFile. To add an entry to a +zip file, you call one of the AddEntry (or AddFile) methods on the +ZipFile class. You never directly instantiate a ZipEntry type. The +AddEntry/AddFile returns a ZipEntry type; you can then modify the +properties of the entry within the zip file, using that object. + +For example, the following code adds a file as an entry into a ZipFile, +then renames the entry within the zip file: + + using(ZipFile zip= new ZipFile()) + { + ZipEntry e = zip.AddFile(filename); + e.FileName = "RenamedFile.txt"; + zip.Save(NameOfZipFileTocreate); + } + +Extracting a zip file that was created in this way will produce a file +called "RenamedFile.txt", regardless of the name of the file originally +added to the ZipFile. + + +As an alternative to using ZipFile type to create a zip file, you can +use the ZipOutputStream type to create zip files . To do so, wrap it +around a stream, and write to it. + + using (var fs = File.Create(filename)) + { + using(var s = new ZipOutputStream(fs)) + { + s.PutNextEntry("entry1.txt"); + byte[] buffer = Encoding.ASCII.GetBytes("This is the content for entry #1."); + s.Write(buffer, 0, buffer.Length); + } + } + +Unlike the ZipFile class, the ZipOutputStream class can only create zip +files. It cannot read or update zip files. + +If you want to read zip files using a streaming metaphor, you can use +ZipInputStream. Think of ZipInputStream and ZipOutputStream as +alternatives to using ZipFile to manipulate zip files. The former is for +reading zip files; the latter is for writing them. + + + +About Directory Paths +--------------------------------- + +One important note: the ZipFile.AddXxx methods add the file or +directory you specify, including the directory. In other words, +logic like this: + ZipFile zip = new ZipFile(); + zip.AddFile("c:\\a\\b\\c\\Hello.doc"); + zip.Save(); + +...will produce a zip archive that contains a single entry, or file, and +that file is stored with the relative directory information. When you +extract that file from the zip, either using this Zip library or winzip +or the built-in zip support in Windows, or some other package, all those +directories will be created, and the file will be written into that +directory hierarchy. At extraction time, if you were to extract that +file into a directory like c:\documents, then resulting file would be +named c:\documents\a\b\c\Hello.doc . + +This is by design. + +If you don't want that directory information in your archive, +then you need to use the overload of the AddFile() method that +allows you to explicitly specify the directory used for the entry +within the archive: + + zip.AddFile("c:\\a\\b\\c\\Hello.doc", "files"); + zip.Save(); + +This will create an archive with an entry called "files\Hello.doc", +which contains the contents of the on-disk file located at +c:\a\b\c\Hello.doc . + +If you extract that file into a directory e:\documents, then the +resulting file will be called e:\documents\files\Hello.doc . + +If you want no directory at all, specify "" (the empty string). +Specifying null (Nothing in VB) will include all the directory hierarchy +in the filename, as in the orginal case. + + + + +Pre-requisites to run Applications that use DotNetZip +----------------------------------------------------- + +To run desktop applications that depend on DotNetZip: + .NET Framework 4.0 or later + + + + + +In more detail: The Zip Class Library +---------------------------------------------- + +The Zip class library is packaged as Ionic.Zip.DLL for the regular .NET +Framework and Ionic.Zip.CF.dll for the Compact Framework. The Zip +library allows applications to create, read, and update zip files. + +This library uses the DeflateStream class to compress file data, +and extends it to support reading and writing of the metadata - +the header, CRC, and other optional data - defined or required +by the zip format spec. + +The key object in the class library is the ZipFile class. Some of the +important methods on it: + + - AddItem - adds a file or a directory to a zip archive + - AddDirectory - adds a directory to a zip archive + - AddFile - adds a file to a zip archive + - AddFiles - adds a set of files to a zip archive + - Extract - extract a single element from a zip file + - Read - static methods to read in an existing zipfile, for + later extraction + - Save - save a zipfile to disk + +There is also a supporting class, called ZipEntry. Applications can +enumerate the entries in a ZipFile, via ZipEntry. There are other +supporting classes as well. Typically, 80% of apps will use just the +ZipFile class, and will not need to directly interact with these other +classes. But they are there if you need them. + +If you want to create or read zip files, the Ionic.Zip.DLL assembly is +the one you want. + +When building applications that do zip stuff, you need to add a reference to +the Ionic.Zip.dll in Visual Studio, or specify Ionic.Zip.dll with the +/R flag on the CSC.exe or VB.exe compiler line. + + + + +In more detail: The Zlib Class Library +----------------------------------------- + +The Zlib class library is packaged as Ionic.Zlib.DLL for the regular .NET +Framework and Ionic.Zlib.CF.dll for the Compact Framework. The ZLIB +library does compression and decompression according to IETF RFC's 1950 (ZLIB), +1951 (Deflate), and 1952 (GZIP). + +See http://www.ietf.org/rfc/rfc1950.txt + http://www.ietf.org/rfc/rfc1951.txt + and http://www.ietf.org/rfc/rfc1952.txt + + +The key classes are: + + ZlibCodec - a class for Zlib (RFC1950/1951/1952) encoding and decoding. + This low-level class does deflation and inflation on buffers. + + DeflateStream - patterned after the DeflateStream in + System.IO.Compression, this class supports compression + levels and other options. + + GZipStream - patterned after the GZipStream in + System.IO.Compression, this class supports compression + levels and other options. + + ZlibStream - similar to the GZipStream in + System.IO.Compression, this class generates or consumes raw ZLIB + streams. + + +If you want to simply compress (deflate) raw block or stream data, this +library is the thing you want. + +When building applications that do zlib things, you need to add a reference to +the Ionic.Zlib.dll in Visual Studio, or specify Ionic.Zlib.dll with the +/R flag on the CSC.exe or VB.exe compiler line. + +NB: If your application does both Zlib and Zip stuff, you need only add +a reference to Ionic.Zip.dll. Ionic.Zip.dll includes all the capability +in Ionic.Zlib.dll. Ionic.Zip.dll is a superset. + + + +In more detail: The BZip2 Class Library +----------------------------------------- + +The BZip2 class library is packaged as Ionic.BZip2.DLL for the regular .NET +Framework and Ionic.BZip2.CF.dll for the Compact Framework. The BZip2 +library does compression according to the bzip2 format created by +Julian Seward. +See http://en.wikipedia.org/wiki/Bzip2 + +NB: If your application does a combination of BZip2, Zlib and Zip stuff, +you need only add a reference to Ionic.Zip.dll. Ionic.Zip.dll includes +all the capability in Ionic.Zlib.dll and Ionic.BZip2.dll. Ionic.Zip.dll +is a superset. + +If you try to link to more than one of these, you will get compiler +warnings about "duplicate types". + + + +Namespace changes for DotNetZip +----------------------------------------- + +The namespace for the DotNetZip classes is Ionic.Zip. +Classes are like: + Ionic.Zip.ZipFile + Ionic.Zip.ZipEntry + Ionic.Zip.ZipException + etc + +(check the .chm file for the full list) + +For the versions prior to v1.7, the namespace DotNetZip was Ionic.Utils.Zip. +The classes were like so: + Ionic.Utils.Zip.ZipFile + Ionic.Utils.Zip.ZipEntry + etc + +If you have code that depends on an older version of the library, with +classes in the Ionic.Utils.Zip namespace), a simple namespace +replacement will allow your code to compile against the new version of +the library. + + +In addition to the Zip capability, DotNetZip includes capability (new +for v1.7). For Zlib, the classes are like this: + Ionic.Zlib.DeflateStream + Ionic.Zlib.ZlibStream + Ionic.Zlib.ZlibCodec + ... + +(again, check the .chm file for the full list) + +For v1.9.1.6, the CRC class moved from the Ionic.Zlib namespace to the +Ionic.Crc namespace. + + + + +Dependencies +--------------------------------- + +Originally, this library was designed to depend upon the built-in +System.IO.Compression.DeflateStream class for the compression. This +proved to be less than satisfactory because the built-in compression +library did not support compression levels and also was not available on +.NET CF 2.0. + +As of v1.7, the library includes a managed code version of zlib, the +library that produces RFC1950 and RFC1951 compressed streams. Within +that version of zlib, there is also a DeflateStream class which is +similar to the built-in System.IO.Compression.DeflateStream, but more +flexible, and often more effective as well. + + + + +The Documentation +-------------------------------------------- + +There is a single set of developer reference documentation for all of +the DotNetZip library features, including Zip and Zlib stuff. It is +packaged in two ways: As a .chm file, and as a Help Viewer 1.0 resource. +The latter is the new format suitable for viewing within VS2010. + +If you only use the Zlib stuff, then you should focus on the doc in the +Ionic.Zlib namespace. Likewise BZip2. If you are building apps for +mobile devices running the Compact Framework, then ignore the pieces +that deal with SaveSelfExtractor() and AES. + +Consult the help file for more specifics here. + +In some cases, upon opening the .chm file for DotNetZip, the help +items tree loads, but the contents are empty. You may see an error: +"This program cannot display the webpage." or, "Address is invalid." +If this happens, it's likely that you've encountered a problem with Windows +protection of files downloaded from less trusted locations. To work around +this, within Windows Explorer, right-click on the CHM file, select properties, +and Unblock it, using the button in lower part of properties window. + +The help is also packaged in a format that you can integrate into Visual +Studio 2008, or Visual Studio 2010. VS2008 requires MS Help 2.0, while +VS2010 requires a different, newer format, sometimes called MS Help 3, +and sometimes (confusingly) called "MS Help Viewer 1.0 format". + +The DotNetZip "devkit" download includes help in all these formats. + + + +The Zip Format +--------------------------------- +The zip format is described by PKWare, at + http://www.pkware.com/business_and_developers/developer/popups/appnote.txt + +Every valid zipfile conforms to this specification. For example, the +spec says that for each compressed file contained in the zip archive, +the zipfile contains a byte array of compressed data. (The byte array +is something the DeflateStream class can produce directly.) But the +zipfile also contains header and "directory" information - you might +call this "metadata". In other words, the zipfile must contain a list +of all the compressed files in the archive. The zipfile also contains +CRC checksums, and can also contain comments, and other optional +attributes for each file. These are things the DeflateStream class - +either the one included in the .NET Framework Class Library, or the one +embedded in this library - does not read or write. + +Managing the metadata in a zip file is most of what DotNetZip does. + + +Which DLL to use? +-------------------------------- +The binary releases of DotNetZip include multiple distinct DLLs or +assemblies. Which one should you use? + +The likely answer is: use Ionic.Zip.dll. + +That's the mainstream library, the full library, and it includes all the +capability. If you have particular requirements, like you want a +smaller library, or you want to exclude the Self-Extracting stuff, or +you only want the ZLIB capability, then you may want to choose a +different assembly. + +Here's a summary of the options. + + +Usage scenario Reference this DLL +------------------------------------------------------------------ +reading or writing Zip files Ionic.Zip.dll + +raw block or stream compression, ZLIB, GZIP, Ionic.Zlib.dll + or DEFLATE + +raw block or stream compression, BZIP2 Ionic.BZip2.dll + +both raw compression as well as reading Ionic.Zip.dll + or writing Zip files + +reading or writing Zip files, using desktop Ionic.Zip.Reduced.dll + .NET framework but never creating a + self-extracting archive + + +Never reference both Ionic.Zlib.dll and Ionic.Zip.dll, or both +Ionic.BZip2.dll and Ionic.Zip.dll in the same application. If your +application does both Zlib and Zip stuff, you need only add a reference +to Ionic.Zip.dll. Ionic.Zip.dll includes all the capability in +Ionic.Zlib.dll and Ionic.BZip2.dll You always need to reference only a +single Ionic DLL, regardless whether you use Zlib or BZip2 or Zip or +some combination. + + + + +Self-Extracting Archive support +-------------------------------- + +The Self-Extracting Archive (SFX) support in the library allows you to +create a self-extracting zip archive. An SFX is both a standard EXE +file *and* a ZIP file. The exe contains boilerplate program logic to +unzip the embedded zip file. When the user executes the SFX runs, the +boilerplate application logic just reads the zip content and +then unzips itself. You can open an SFX in WinZip and other zip tools, +as well, if you want to view it. + +Running the SFX (unpacking from the SFX) requires the .NET Framework +installed on the machine, but does not require the DotNetZip library. + +There are two versions of the SFX - one that presents a GUI form, and +another that runs as a console (command line) application. + +NB: Creation of SFX is not supported in the Compact Framework version of +the library. + +Also, there is no way, currently, to produce an SFX file that can run on +the .NET Compact Framework. + + + + +The Reduced ZIP library +-------------------------------- + +The full DotNetZip library is currently about 400k in size. The SFX +(Self-Extracting Archive) support is responsible for more than half the +total size of the library. Some deployments may wish to omit the SFX +support in order to get a smaller DLL. For that you can rely on the +Ionic.Zip.Reduced.dll. It provides everything the normal library does, +except the SaveSelfExtractor() method on the ZipFile class. + +For size comparisons...these approximate figures are for v1.9.1.6 of the +library: + + +#### Desktop Framework: +``` + assembly ~size comment + ------------------------------------------------------- + Ionic.Zlib.dll 100k {Deflate,GZip,Zlib}Stream and ZlibCodec + + Ionic.BZip2.dll 57k BZip2{Input,Output}Stream + + Ionic.Zip.dll 460k includes ZLIB and BZIP2 compression, + SFX, selector logic, WinZIP AES encryption, + and the ComHelper class + + Ionic.Zip.Reduced.dll 250k includes everything in the main ZIP + library except SFX. (ability to save + Self-extracting archives) +``` + + + + + + + + +Support +-------------------------------------------- + +There is no official support for this library. I try to make a good +effort to answer questions and monitor the work items raised on the +project portal at: + + http://DotNetZip.codeplex.com. + + + + + +About Intellectual Property +--------------------------------- + +I am no lawyer, but before using this library in your app, it +may be worth reviewing the various licenses. + +The specification for the zip format, which PKWARE owns, includes a +paragraph that reads: + + PKWARE is committed to the interoperability and advancement of the + .ZIP format. PKWARE offers a free license for certain technological + aspects described above under certain restrictions and conditions. + However, the use or implementation in a product of certain technological + aspects set forth in the current APPNOTE, including those with regard to + strong encryption or patching, requires a license from PKWARE. Please + contact PKWARE with regard to acquiring a license. + +Contact pkware at: zipformat@pkware.com + +This library does not do strong encryption as described by PKWare, nor +does it do patching. But again... I am no lawyer. + + +This library uses a ZLIB implementation that is based on a conversion of +the jzlib project http://www.jcraft.com/jzlib/. The license and +disclaimer required by the jzlib source license is referenced in the +relevant source files of DotNetZip, specifically in the sources for the +Zlib module. + +This library uses a BZip2 implementation that is based on a conversion +of the bzip2 implementation in the Apache Commons compression library. +The Apache license is referenced in the relevant source files of +DotNetZip, specifically in the sources for the BZip2 module. + + + + +Limitations +--------------------------------- + +There are a few limitations to this library: + + It does not do strong encryption. + + The GUI tool for creating zips is functional but basic. This isn't a limitation + of the library per se. + + ...and, I'm sure, many others + +But it is a good basic library for reading and writing zipfiles +in .NET applications. + + + + +Building the Library +============================================ + +This section is mostly interesting to developers who will work on or +view the source code of DotNetZip, to extend or re-purpose it. If you +only plan to use DotNetZip in applications of your own, you probably +don't need to concern yourself with the information that follows. + + + + + +Pre-requisites to build DotNetZip +--------------------------------- + +.NET Framework 4.0 SDK or later + -or- +Visual Studio 2010 or later + + -and- + +ILMerge - a tool from Microsoft that combines +multiple managed assemblies into a single DLL or image. It is in +similar in some respects to the lib tool in C toolkits. + +You can get it here: + http://www.microsoft.com/downloads/details.aspx?familyid=22914587-b4ad-4eae-87cf-b14ae6a939b0&displaylang=en + + + + + +Building DotNetZip with the .NET SDK +------------------------------------- + +To build the library using the .NET Framework SDK v4.0, + +1. extract the contents of the source zip into a new directory. + +2. be sure the .NET 4.0 SDK and runtime directories are on your + path. + +3. Modify the .csproj files in Zip and ZLIB and BZip2 to eliminate + mention of the Ionic.pfx and Ionic.snk files. + + The various DLLs (Zip Partial, ZLIB, etc.) are signed with my private + key. You will want to remove the mention of the private key in the + project files. I cannot distribute my private key, so don't ask me! + That would be silly. So you have to modify the project in order to + build without the key. + + +4. open a CMD prompt and CD to the DotNetZip directory. + + +5. msbuild + + Be sure you are using the .NET 3.5 version of MSBuild. + This builds the "Debug" version of the library. To build the + "Release" version, do this: + + msbuild /t:Release + + +6. to clean and rebuild, do + msbuild /t:clean + msbuild + + +7. There are two setup directories, which contain the projects necessary + to build the MSI file. Unfortunately msbuild does not include + support for building setup projects (vdproj). You need Visual Studio + to build the setup directories. + + I am in the process of converting these from .vdproj to .wixproj, so + they can be built from the command line using msbuild. . + + + + +Building DotNetZip with Visual Studio +------------------------------------- + +To build DotNetZip using Visual Studio 2010, + +1. Open the DotNetZip.sln file in VS2010. + +2. If necessary, Remove the dependencies on Ionic.pfx and Ionic.snk. + + (References to these will have already been removed from the zipped + source distributions, but if you get your source from the TFS server, + then you will have to remove references to the keyfiles manually) + + The various DLLs (Zip, ZLIB, etc.) are signed with my (Dino + Chiesa's) private key. I do not distribute that key for anyone + else's use. If you build the DotNetZip library from source, You will + want to remove the mention of the private key in the project files. I + will not distribute my private key, that would be silly. So don't + ask me! + +3. Press F6 to build everything. + + + + +The Project Structure and Build approach +---------------------------------------------------- + +The function here is grouped into three basic sets: Zip, +ZLIB/Deflate/GZIP, and BZip2. The Zip group is a superset of the ZLIB +and BZIP2 groups. + +Each group of functionality is packaged into various assemblies, one +assembly per "platform". The platforms supported are: .NET (Desktop). + +There is also a special "Zip Reduced" library, available only on the +Desktop platform; it is a reduced-function version of the regular +Desktop Framework zip library. It provides an option of using a smaller +library for those zip-handling applications that don't produce +Self-extracting archives. + +In a previous guise, DotNetZip relied on the ILMerge tool to combine +distinct DLLs into a single package. This is no longer the case. + +Because the ZIP projects include the ZLIB and BZIP2 function, the +appropriate source modules for the ZLIB and Bzip2 are "linked" into each +of the ZIP projects (Desktop). + + + + +Regarding the missing Ionic.pfx and Ionic.snk files +------------------------------------------------------------------------- + +The binary DLLs shipped in the codeplex project are signed by me, Dino +Chiesa. This provides a "strong name" for the assembly, which itself +provides some assurance as to the integrity of the library, and also +allows it to be run within restricted sites, like apps running inside +web hosters. + +For more on strong names, see this article: +http://msdn.microsoft.com/en-gb/magazine/cc163583.aspx + +Signing is done automatically at build time in the Visual Studio project or in +the msbuild build. There +is a .pfx file that holds the crypto stuff for signing the assembly, and +that pfx file is itself protected by a password. There is also an +Ionic.snk file which is referenced by the project, but which I do not +distribute. + +People opening the project ask me: what's the password to this .pfx +file? Where's the .snk file? + +Here's the problem; those files contain my private key. if I give +everyone the password to the PFX file or the .snk file, then anyone can +go and build a modified Ionic.Zip.dll, and sign it with my key, and +apply any version number they like. This means there could be multiple +distinct assemblies with the same signature. This is obviously not +good. + +Since I don't release the ability to sign DLLs with my key, the DLL +signed with my key is guaranteed to be produced by me only, which is in +fact the exact intent of code signing in .NET. + +If anyone wants to modify the project and re-compile it, they have a +couple options: + + - sign the assembly themselves, using their own key. + - produce a modified, unsigned assembly + +In either case it is not the same as the assembly I am shipping, +therefore it should not be signed with the same key. + +All clear? + +As for those options above, here is some more detail: + + 1. If you want a strong-named assembly, then create your own PFX file + and .snk file and modify the appropriate projects to use those new + files. + + 2. If you don't need a strong-named assembly, then remove all the + signing from the various projects. + +In either case, you will need to modify the "Zip", BZip, and the "Zlib" +projects. + + + + +Building the Documentation +-------------------------------------------- + +The documentation files are built using the Sandcastle Helpfile Builder +tool, also available on CodePlex at http://www.codeplex.com/SHFB . It +is built from in-code xml documentation, augmented with some additional +out-of-band html documentation. + +If you want to build the help files yourself, you will need to have +Sandcastle from May 2008 (or later, I guess), and SHFB, from February +2009. Both are free tools available from http://codeplex.com . I think +you can get a package download of both of these by installing v1.9.3.0 +of SHFB . + +The helpfile projects are: + + HtmlHelp1.shfbproj - to build the .chm file + MSHelp2.shfbproj - to build the MS Help 2.0 content + HelpViewer.shfbproj - to build the MS Help Viewer 1.0 content + + (The MSHelp2 project is broken at the moment.) + +To build the documentation in any of these formats, first build the "zip +Full DLL" project in the source (Ionic.Zip.dll), then run: + + msbuild HtmlHelp1.shfbproj + + -or- + + msbuild HelpViewer.shfbproj + + +The Help Viewer 1.0 content can be viewed in the help viewer that is +integrated into VS 2010, or in an alternative viewer, such as +H3Viewer.exe. See http://mshcmigrate.helpmvp.com/viewer . + + + + +Examples +-------------------------------------------- + +The source solution also includes a number of example applications +showing how to use the DotNetZip library and all its features - creating +ZIPs, using Unicode, passwords, comments, streams, and so on. Most of +these will be built when you build the solution. Some of them do not - +you will need to build them independently. + + + +Tests +-------------------------------------------- + +There are two source projects in the VS Solution that contain Unit +Tests: one for the zlib library, one for the bzip2 library, and another +for the Zip library. If you develop any new tests for DotNetZip, I'd be +glad to look at them. + + + + + + +Origins +============================================ + +This library is mostly original code. + +There is a GPL-licensed library called SharpZipLib that writes zip +files, it can be found at +http://www.sharpdevelop.net/OpenSource/SharpZipLib/Default.aspx + +This library is not based on SharpZipLib. + +I think there may be a Zip library shipped as part of the Mono +project. This library is also not based on that. + +Now that the Java class library is open source, there is at least one +open-source Java implementation for zip. This implementation is not +based on a port of Sun's JDK code. + +There is a zlib.net project from ComponentAce.com. This library is not +based on that code. + +This library is all new code, written by me, with these exceptions: + + - the CRC32 class - see above for credit. + - the zlib library - see above for credit. + - the bzip2 compressor - see above for credit. + + diff --git a/Rakefile b/old/Rakefile similarity index 100% rename from Rakefile rename to old/Rakefile diff --git a/appveyor.yml b/old/appveyor.yml similarity index 100% rename from appveyor.yml rename to old/appveyor.yml diff --git a/buildscripts/environment.rb b/old/buildscripts/environment.rb similarity index 96% rename from buildscripts/environment.rb rename to old/buildscripts/environment.rb index 0311f5a..df22ac6 100644 --- a/buildscripts/environment.rb +++ b/old/buildscripts/environment.rb @@ -1,172 +1,172 @@ -require "buildscripts/paths" -require "buildscripts/project_details" -require 'semver' - -namespace :env do - - task :common do - # version management - fv = version SemVer.find.to_s - revision = (!fv[3] || fv[3] == 0) ? (ENV['BUILD_NUMBER'] || Time.now.strftime('%j%H')) : fv[3] # (day of year 0-265)(hour 00-24) - - ENV['BUILD_VERSION'] = BUILD_VERSION = "#{ SemVer.new(fv[0], fv[1], fv[2]).format "%M.%m.%p" }.#{revision}" - puts "Assembly Version: #{BUILD_VERSION}." - puts "##teamcity[buildNumber '#{BUILD_VERSION}']" # tell teamcity our decision - - # .net/mono configuration management - ENV['FRAMEWORK'] = FRAMEWORK = ENV['FRAMEWORK'] || (Rake::Win32::windows? ? "net40" : "mono28") - puts "Framework: #{FRAMEWORK}" - end - - # configure the output directories - task :configure, [:str] do |_, args| - ENV['CONFIGURATION'] = CONFIGURATION = args[:str] - FOLDERS[:binaries] = File.join(FOLDERS[:build], FRAMEWORK, args[:str].downcase) - CLEAN.include(File.join(FOLDERS[:binaries], "*")) - end - - task :set_dirs do - - - FOLDERS[:bzip][:out] = File.join(FOLDERS[:src], PROJECTS[:bzip][:dir], 'bin', CONFIGURATION) - CLEAN.include(FOLDERS[:bzip][:out]) - - # for tests - FOLDERS[:bzip][:test_out] = File.join(FOLDERS[:src], PROJECTS[:bzip][:test_dir], 'bin', CONFIGURATION) - FILES[:bzip][:test] = File.join(FOLDERS[:bzip][:test_out], "#{PROJECTS[:bzip][:test_dir]}.dll") - CLEAN.include(FOLDERS[:test_out]) - - - FOLDERS[:zip][:out] = File.join(FOLDERS[:src], PROJECTS[:zip][:dir], 'bin', CONFIGURATION) - CLEAN.include(FOLDERS[:zip][:out]) - - # for tests - FOLDERS[:zip][:test_out] = File.join(FOLDERS[:src], PROJECTS[:zip][:test_dir], 'bin', CONFIGURATION) - FILES[:zip][:test] = File.join(FOLDERS[:zip][:test_out], "#{PROJECTS[:zip][:test_dir]}.dll") - CLEAN.include(FOLDERS[:test_out]) - - - FOLDERS[:zipfull][:out] = File.join(FOLDERS[:src], PROJECTS[:zipfull][:dir], 'bin', CONFIGURATION) - CLEAN.include(FOLDERS[:zipfull][:out]) - - # for tests - FOLDERS[:zipfull][:test_out] = File.join(FOLDERS[:src], PROJECTS[:zipfull][:test_dir], 'bin', CONFIGURATION) - FILES[:zipfull][:test] = File.join(FOLDERS[:zipfull][:test_out], "#{PROJECTS[:zipfull][:test_dir]}.dll") - CLEAN.include(FOLDERS[:test_out]) - - - FOLDERS[:zipred][:out] = File.join(FOLDERS[:src], PROJECTS[:zipred][:dir], 'bin', CONFIGURATION) - CLEAN.include(FOLDERS[:zipred][:out]) - - # for tests - FOLDERS[:zipred][:test_out] = File.join(FOLDERS[:src], PROJECTS[:zipred][:test_dir], 'bin', CONFIGURATION) - FILES[:zipred][:test] = File.join(FOLDERS[:zipred][:test_out], "#{PROJECTS[:zipred][:test_dir]}.dll") - CLEAN.include(FOLDERS[:test_out]) - - - FOLDERS[:zlib][:out] = File.join(FOLDERS[:src], PROJECTS[:zlib][:dir], 'bin', CONFIGURATION) - CLEAN.include(FOLDERS[:zlib][:out]) - - # for tests - FOLDERS[:zlib][:test_out] = File.join(FOLDERS[:src], PROJECTS[:zlib][:test_dir], 'bin', CONFIGURATION) - FILES[:zlib][:test] = File.join(FOLDERS[:zlib][:test_out], "#{PROJECTS[:zlib][:test_dir]}.dll") - CLEAN.include(FOLDERS[:test_out]) - - end - - task :dir_tasks do - all_dirs = [] - - [:build, :tools, :tests, :nuget, :nuspec].each do |dir| - directory FOLDERS[dir] - all_dirs << FOLDERS[dir] - end - - [:out, :nuspec, :test_out].each do |dir| - [:bzip, :zip, :zipfull, :zipred, :zlib].each{ |k| - directory FOLDERS[k][dir] - all_dirs << FOLDERS[k][dir] - } - end - - all_dirs.each do |d| - Rake::Task[d].invoke - end - end - - # DEBUG/RELEASE - - desc "set debug environment variables" - task :debug => [:common] do - Rake::Task["env:configure"].invoke('Debug') - Rake::Task["env:set_dirs"].invoke - Rake::Task["env:dir_tasks"].invoke - end - - desc "set release environment variables" - task :release => [:common] do - Rake::Task["env:configure"].invoke('Release') - Rake::Task["env:set_dirs"].invoke - Rake::Task["env:dir_tasks"].invoke - end - - # FRAMEWORKS - - desc "set net40 framework" - task :net40 do - ENV['FRAMEWORK'] = 'net40' - end - - desc "set net35 framework" - task :net35 do - ENV['FRAMEWORK'] = 'net35' - end - - desc "set net20 framework" - task :net20 do - ENV['FRAMEWORK'] = 'net20' - end - - desc "set mono28 framework" - task :mono28 do - ENV['FRAMEWORK'] = 'mono28' - end - - desc "set mono30 framework" - task :net30 do - ENV['FRAMEWORK'] = 'mono30' - end - - # ENVIRONMENT VARS FOR PRODUCT RELEASES - - desc "set GA envionment variables" - task :ga do - puts "##teamcity[progressMessage 'Setting environment variables for GA']" - ENV['OFFICIAL_RELEASE'] = OFFICIAL_RELEASE = "4000" - end - - desc "set release candidate environment variables" - task :rc, [:number] do |t, args| - puts "##teamcity[progressMessage 'Setting environment variables for Release Candidate']" - arg_num = args[:number].to_i - num = arg_num != 0 ? arg_num : 1 - ENV['OFFICIAL_RELEASE'] = OFFICIAL_RELEASE = "#{3000 + num}" - end - - desc "set beta-environment variables" - task :beta, [:number] do |t, args| - puts "##teamcity[progressMessage 'Setting environment variables for Beta']" - arg_num = args[:number].to_i - num = arg_num != 0 ? arg_num : 1 - ENV['OFFICIAL_RELEASE'] = OFFICIAL_RELEASE = "#{2000 + num}" - end - - desc "set alpha environment variables" - task :alpha, [:number] do |t, args| - puts "##teamcity[progressMessage 'Setting environment variables for Alpha']" - arg_num = args[:number].to_i - num = arg_num != 0 ? arg_num : 1 - - ENV['OFFICIAL_RELEASE'] = OFFICIAL_RELEASE = "#{1000 + num}" - end -end +require "buildscripts/paths" +require "buildscripts/project_details" +require 'semver' + +namespace :env do + + task :common do + # version management + fv = version SemVer.find.to_s + revision = (!fv[3] || fv[3] == 0) ? (ENV['BUILD_NUMBER'] || Time.now.strftime('%j%H')) : fv[3] # (day of year 0-265)(hour 00-24) + + ENV['BUILD_VERSION'] = BUILD_VERSION = "#{ SemVer.new(fv[0], fv[1], fv[2]).format "%M.%m.%p" }.#{revision}" + puts "Assembly Version: #{BUILD_VERSION}." + puts "##teamcity[buildNumber '#{BUILD_VERSION}']" # tell teamcity our decision + + # .net/mono configuration management + ENV['FRAMEWORK'] = FRAMEWORK = ENV['FRAMEWORK'] || (Rake::Win32::windows? ? "net40" : "mono28") + puts "Framework: #{FRAMEWORK}" + end + + # configure the output directories + task :configure, [:str] do |_, args| + ENV['CONFIGURATION'] = CONFIGURATION = args[:str] + FOLDERS[:binaries] = File.join(FOLDERS[:build], FRAMEWORK, args[:str].downcase) + CLEAN.include(File.join(FOLDERS[:binaries], "*")) + end + + task :set_dirs do + + + FOLDERS[:bzip][:out] = File.join(FOLDERS[:src], PROJECTS[:bzip][:dir], 'bin', CONFIGURATION) + CLEAN.include(FOLDERS[:bzip][:out]) + + # for tests + FOLDERS[:bzip][:test_out] = File.join(FOLDERS[:src], PROJECTS[:bzip][:test_dir], 'bin', CONFIGURATION) + FILES[:bzip][:test] = File.join(FOLDERS[:bzip][:test_out], "#{PROJECTS[:bzip][:test_dir]}.dll") + CLEAN.include(FOLDERS[:test_out]) + + + FOLDERS[:zip][:out] = File.join(FOLDERS[:src], PROJECTS[:zip][:dir], 'bin', CONFIGURATION) + CLEAN.include(FOLDERS[:zip][:out]) + + # for tests + FOLDERS[:zip][:test_out] = File.join(FOLDERS[:src], PROJECTS[:zip][:test_dir], 'bin', CONFIGURATION) + FILES[:zip][:test] = File.join(FOLDERS[:zip][:test_out], "#{PROJECTS[:zip][:test_dir]}.dll") + CLEAN.include(FOLDERS[:test_out]) + + + FOLDERS[:zipfull][:out] = File.join(FOLDERS[:src], PROJECTS[:zipfull][:dir], 'bin', CONFIGURATION) + CLEAN.include(FOLDERS[:zipfull][:out]) + + # for tests + FOLDERS[:zipfull][:test_out] = File.join(FOLDERS[:src], PROJECTS[:zipfull][:test_dir], 'bin', CONFIGURATION) + FILES[:zipfull][:test] = File.join(FOLDERS[:zipfull][:test_out], "#{PROJECTS[:zipfull][:test_dir]}.dll") + CLEAN.include(FOLDERS[:test_out]) + + + FOLDERS[:zipred][:out] = File.join(FOLDERS[:src], PROJECTS[:zipred][:dir], 'bin', CONFIGURATION) + CLEAN.include(FOLDERS[:zipred][:out]) + + # for tests + FOLDERS[:zipred][:test_out] = File.join(FOLDERS[:src], PROJECTS[:zipred][:test_dir], 'bin', CONFIGURATION) + FILES[:zipred][:test] = File.join(FOLDERS[:zipred][:test_out], "#{PROJECTS[:zipred][:test_dir]}.dll") + CLEAN.include(FOLDERS[:test_out]) + + + FOLDERS[:zlib][:out] = File.join(FOLDERS[:src], PROJECTS[:zlib][:dir], 'bin', CONFIGURATION) + CLEAN.include(FOLDERS[:zlib][:out]) + + # for tests + FOLDERS[:zlib][:test_out] = File.join(FOLDERS[:src], PROJECTS[:zlib][:test_dir], 'bin', CONFIGURATION) + FILES[:zlib][:test] = File.join(FOLDERS[:zlib][:test_out], "#{PROJECTS[:zlib][:test_dir]}.dll") + CLEAN.include(FOLDERS[:test_out]) + + end + + task :dir_tasks do + all_dirs = [] + + [:build, :tools, :tests, :nuget, :nuspec].each do |dir| + directory FOLDERS[dir] + all_dirs << FOLDERS[dir] + end + + [:out, :nuspec, :test_out].each do |dir| + [:bzip, :zip, :zipfull, :zipred, :zlib].each{ |k| + directory FOLDERS[k][dir] + all_dirs << FOLDERS[k][dir] + } + end + + all_dirs.each do |d| + Rake::Task[d].invoke + end + end + + # DEBUG/RELEASE + + desc "set debug environment variables" + task :debug => [:common] do + Rake::Task["env:configure"].invoke('Debug') + Rake::Task["env:set_dirs"].invoke + Rake::Task["env:dir_tasks"].invoke + end + + desc "set release environment variables" + task :release => [:common] do + Rake::Task["env:configure"].invoke('Release') + Rake::Task["env:set_dirs"].invoke + Rake::Task["env:dir_tasks"].invoke + end + + # FRAMEWORKS + + desc "set net40 framework" + task :net40 do + ENV['FRAMEWORK'] = 'net40' + end + + desc "set net35 framework" + task :net35 do + ENV['FRAMEWORK'] = 'net35' + end + + desc "set net20 framework" + task :net20 do + ENV['FRAMEWORK'] = 'net20' + end + + desc "set mono28 framework" + task :mono28 do + ENV['FRAMEWORK'] = 'mono28' + end + + desc "set mono30 framework" + task :net30 do + ENV['FRAMEWORK'] = 'mono30' + end + + # ENVIRONMENT VARS FOR PRODUCT RELEASES + + desc "set GA envionment variables" + task :ga do + puts "##teamcity[progressMessage 'Setting environment variables for GA']" + ENV['OFFICIAL_RELEASE'] = OFFICIAL_RELEASE = "4000" + end + + desc "set release candidate environment variables" + task :rc, [:number] do |t, args| + puts "##teamcity[progressMessage 'Setting environment variables for Release Candidate']" + arg_num = args[:number].to_i + num = arg_num != 0 ? arg_num : 1 + ENV['OFFICIAL_RELEASE'] = OFFICIAL_RELEASE = "#{3000 + num}" + end + + desc "set beta-environment variables" + task :beta, [:number] do |t, args| + puts "##teamcity[progressMessage 'Setting environment variables for Beta']" + arg_num = args[:number].to_i + num = arg_num != 0 ? arg_num : 1 + ENV['OFFICIAL_RELEASE'] = OFFICIAL_RELEASE = "#{2000 + num}" + end + + desc "set alpha environment variables" + task :alpha, [:number] do |t, args| + puts "##teamcity[progressMessage 'Setting environment variables for Alpha']" + arg_num = args[:number].to_i + num = arg_num != 0 ? arg_num : 1 + + ENV['OFFICIAL_RELEASE'] = OFFICIAL_RELEASE = "#{1000 + num}" + end +end diff --git a/buildscripts/paths.rb b/old/buildscripts/paths.rb similarity index 96% rename from buildscripts/paths.rb rename to old/buildscripts/paths.rb index ec39cd3..34714b2 100644 --- a/buildscripts/paths.rb +++ b/old/buildscripts/paths.rb @@ -1,90 +1,90 @@ -root_folder = File.expand_path("#{File.dirname(__FILE__)}/..") -require "buildscripts/project_details" - -# The folders array denoting where to place build artifacts - -folders = { - :root => root_folder, - :src => "src", - :build => "build", - :binaries => "placeholder - environment.rb sets this depending on target", - :tools => "tools", - :tests => "build/tests", - :nuget => "build/nuget", - :nuspec => "build/nuspec" -} - -FOLDERS = folders.merge({ - - :bzip => { - :test_dir => 'BZip2 Tests', - :nuspec => "#{File.join(folders[:nuspec], PROJECTS[:bzip][:nuget_key])}", - :out => 'placeholder - environment.rb will sets this', - :test_out => 'placeholder - environment.rb sets this' - }, - - :zip => { - :test_dir => '', - :nuspec => "#{File.join(folders[:nuspec], PROJECTS[:zip][:nuget_key])}", - :out => 'placeholder - environment.rb will sets this', - :test_out => 'placeholder - environment.rb sets this' - }, - - :zipfull => { - :test_dir => '', - :nuspec => "#{File.join(folders[:nuspec], PROJECTS[:zipfull][:nuget_key])}", - :out => 'placeholder - environment.rb will sets this', - :test_out => 'placeholder - environment.rb sets this' - }, - - :zipred => { - :test_dir => '', - :nuspec => "#{File.join(folders[:nuspec], PROJECTS[:zipred][:nuget_key])}", - :out => 'placeholder - environment.rb will sets this', - :test_out => 'placeholder - environment.rb sets this' - }, - - :zlib => { - :test_dir => 'Zlib Tests', - :nuspec => "#{File.join(folders[:nuspec], PROJECTS[:zlib][:nuget_key])}", - :out => 'placeholder - environment.rb will sets this', - :test_out => 'placeholder - environment.rb sets this' - }, - -}) - -FILES = { - :sln => "src/DotNetZip.sln", - - :bzip => { - :nuspec => File.join(FOLDERS[:bzip][:nuspec], "#{PROJECTS[:bzip][:nuget_key]}.nuspec") - }, - - :zip => { - :nuspec => File.join(FOLDERS[:zip][:nuspec], "#{PROJECTS[:zip][:nuget_key]}.nuspec") - }, - - :zipfull => { - :nuspec => File.join(FOLDERS[:zipfull][:nuspec], "#{PROJECTS[:zipfull][:nuget_key]}.nuspec") - }, - - :zipred => { - :nuspec => File.join(FOLDERS[:zipred][:nuspec], "#{PROJECTS[:zipred][:nuget_key]}.nuspec") - }, - - :zlib => { - :nuspec => File.join(FOLDERS[:zlib][:nuspec], "#{PROJECTS[:zlib][:nuget_key]}.nuspec") - }, - -} - -COMMANDS = { - :nuget => File.join(FOLDERS[:tools], "NuGet.exe"), - :ilmerge => File.join(FOLDERS[:tools], "ILMerge.exe") - # nunit etc -} - -URIS = { - :nuget_offical => "http://packages.nuget.org/v1/", - :nuget_symbolsource => "http://nuget.gw.symbolsource.org/Public/Nuget" +root_folder = File.expand_path("#{File.dirname(__FILE__)}/..") +require "buildscripts/project_details" + +# The folders array denoting where to place build artifacts + +folders = { + :root => root_folder, + :src => "src", + :build => "build", + :binaries => "placeholder - environment.rb sets this depending on target", + :tools => "tools", + :tests => "build/tests", + :nuget => "build/nuget", + :nuspec => "build/nuspec" +} + +FOLDERS = folders.merge({ + + :bzip => { + :test_dir => 'BZip2 Tests', + :nuspec => "#{File.join(folders[:nuspec], PROJECTS[:bzip][:nuget_key])}", + :out => 'placeholder - environment.rb will sets this', + :test_out => 'placeholder - environment.rb sets this' + }, + + :zip => { + :test_dir => '', + :nuspec => "#{File.join(folders[:nuspec], PROJECTS[:zip][:nuget_key])}", + :out => 'placeholder - environment.rb will sets this', + :test_out => 'placeholder - environment.rb sets this' + }, + + :zipfull => { + :test_dir => '', + :nuspec => "#{File.join(folders[:nuspec], PROJECTS[:zipfull][:nuget_key])}", + :out => 'placeholder - environment.rb will sets this', + :test_out => 'placeholder - environment.rb sets this' + }, + + :zipred => { + :test_dir => '', + :nuspec => "#{File.join(folders[:nuspec], PROJECTS[:zipred][:nuget_key])}", + :out => 'placeholder - environment.rb will sets this', + :test_out => 'placeholder - environment.rb sets this' + }, + + :zlib => { + :test_dir => 'Zlib Tests', + :nuspec => "#{File.join(folders[:nuspec], PROJECTS[:zlib][:nuget_key])}", + :out => 'placeholder - environment.rb will sets this', + :test_out => 'placeholder - environment.rb sets this' + }, + +}) + +FILES = { + :sln => "src/DotNetZip.sln", + + :bzip => { + :nuspec => File.join(FOLDERS[:bzip][:nuspec], "#{PROJECTS[:bzip][:nuget_key]}.nuspec") + }, + + :zip => { + :nuspec => File.join(FOLDERS[:zip][:nuspec], "#{PROJECTS[:zip][:nuget_key]}.nuspec") + }, + + :zipfull => { + :nuspec => File.join(FOLDERS[:zipfull][:nuspec], "#{PROJECTS[:zipfull][:nuget_key]}.nuspec") + }, + + :zipred => { + :nuspec => File.join(FOLDERS[:zipred][:nuspec], "#{PROJECTS[:zipred][:nuget_key]}.nuspec") + }, + + :zlib => { + :nuspec => File.join(FOLDERS[:zlib][:nuspec], "#{PROJECTS[:zlib][:nuget_key]}.nuspec") + }, + +} + +COMMANDS = { + :nuget => File.join(FOLDERS[:tools], "NuGet.exe"), + :ilmerge => File.join(FOLDERS[:tools], "ILMerge.exe") + # nunit etc +} + +URIS = { + :nuget_offical => "http://packages.nuget.org/v1/", + :nuget_symbolsource => "http://nuget.gw.symbolsource.org/Public/Nuget" } \ No newline at end of file diff --git a/buildscripts/project_details.rb b/old/buildscripts/project_details.rb similarity index 99% rename from buildscripts/project_details.rb rename to old/buildscripts/project_details.rb index 27617ec..147a6ce 100644 --- a/buildscripts/project_details.rb +++ b/old/buildscripts/project_details.rb @@ -1,13 +1,13 @@ -PROJECTS = { - - :bzip => {:title=>"BZip2", :id=>"BZip2", :dir=>"BZip2", :test_dir=>"BZip2 Tests", :description=>"BZip algo", :authors=>"Dino Chiesa", :company=>"Dino Chiesa", :copyright=>"Dino Chiesa 2008", :nuget_key=>"BZip2", :ruby_key=>"bzip", :guid=>"ec366baa-b4b5-4899-be44-57f97955dbb5", :dependencies=>[], :create_package=>true}, - - :zip => {:title=>"Zip", :id=>"Zip", :dir=>"Zip", :test_dir=>"", :description=>"Ordinary zip algo", :authors=>"Dino Chiesa", :company=>"Dino Chiesa", :copyright=>"Dino Chiesa", :nuget_key=>"zip", :ruby_key=>"zip", :guid=>"0df8176e-5fd1-4912-9fb6-0e9c26185f9d", :dependencies=>[], :create_package=>true}, - - :zipfull => {:title=>"Zip Full DLL", :id=>"Zip Full DLL", :dir=>"Zip Full DLL", :test_dir=>"", :description=>"Full zip", :authors=>"Dino Chiesa", :company=>"Dino Chiesa", :copyright=>"Dino Chiesa", :nuget_key=>"DotNetZip.Semverd", :ruby_key=>"zipfull", :guid=>"2cd0aaed-53f6-4111-a6bc-76ccf6dcfbe4", :dependencies=>[], :create_package=>true}, - - :zipred => {:title=>"Zip Reduced", :id=>"Zip Reduced", :dir=>"Zip Reduced", :test_dir=>"", :description=>"Reduced zip", :authors=>"Dino Chiesa", :company=>"Dino Chiesa", :copyright=>"Dino Chiesa", :nuget_key=>"", :ruby_key=>"zipred", :guid=>"4ecfd149-700b-43e0-a1ae-9aa380b5f069", :dependencies=>[], :create_package=>false}, - - :zlib => {:title=>"Zlib", :id=>"Zlib", :dir=>"Zlib", :test_dir=>"Zlib Tests", :description=>"ZLib algo", :authors=>"Dino Chiesa", :company=>"Dino Chiesa", :copyright=>"Dino Chiesa", :nuget_key=>"zlib", :ruby_key=>"zlib", :guid=>"44cc65c2-7c6f-4066-9816-f4d8f30fc9b9", :dependencies=>[], :create_package=>true}, - +PROJECTS = { + + :bzip => {:title=>"BZip2", :id=>"BZip2", :dir=>"BZip2", :test_dir=>"BZip2 Tests", :description=>"BZip algo", :authors=>"Dino Chiesa", :company=>"Dino Chiesa", :copyright=>"Dino Chiesa 2008", :nuget_key=>"BZip2", :ruby_key=>"bzip", :guid=>"ec366baa-b4b5-4899-be44-57f97955dbb5", :dependencies=>[], :create_package=>true}, + + :zip => {:title=>"Zip", :id=>"Zip", :dir=>"Zip", :test_dir=>"", :description=>"Ordinary zip algo", :authors=>"Dino Chiesa", :company=>"Dino Chiesa", :copyright=>"Dino Chiesa", :nuget_key=>"zip", :ruby_key=>"zip", :guid=>"0df8176e-5fd1-4912-9fb6-0e9c26185f9d", :dependencies=>[], :create_package=>true}, + + :zipfull => {:title=>"Zip Full DLL", :id=>"Zip Full DLL", :dir=>"Zip Full DLL", :test_dir=>"", :description=>"Full zip", :authors=>"Dino Chiesa", :company=>"Dino Chiesa", :copyright=>"Dino Chiesa", :nuget_key=>"DotNetZip.Semverd", :ruby_key=>"zipfull", :guid=>"2cd0aaed-53f6-4111-a6bc-76ccf6dcfbe4", :dependencies=>[], :create_package=>true}, + + :zipred => {:title=>"Zip Reduced", :id=>"Zip Reduced", :dir=>"Zip Reduced", :test_dir=>"", :description=>"Reduced zip", :authors=>"Dino Chiesa", :company=>"Dino Chiesa", :copyright=>"Dino Chiesa", :nuget_key=>"", :ruby_key=>"zipred", :guid=>"4ecfd149-700b-43e0-a1ae-9aa380b5f069", :dependencies=>[], :create_package=>false}, + + :zlib => {:title=>"Zlib", :id=>"Zlib", :dir=>"Zlib", :test_dir=>"Zlib Tests", :description=>"ZLib algo", :authors=>"Dino Chiesa", :company=>"Dino Chiesa", :copyright=>"Dino Chiesa", :nuget_key=>"zlib", :ruby_key=>"zlib", :guid=>"44cc65c2-7c6f-4066-9816-f4d8f30fc9b9", :dependencies=>[], :create_package=>true}, + } \ No newline at end of file diff --git a/buildscripts/utils.rb b/old/buildscripts/utils.rb similarity index 96% rename from buildscripts/utils.rb rename to old/buildscripts/utils.rb index 9bcc0cc..c87368b 100644 --- a/buildscripts/utils.rb +++ b/old/buildscripts/utils.rb @@ -1,42 +1,42 @@ -require 'fileutils' - -def commit_data - begin - commit = `git log -1 --pretty=format:%H` - git_date = `git log -1 --date=iso --pretty=format:%ad` - commit_date = DateTime.parse( git_date ).strftime("%Y-%m-%d %H%M%S") - rescue - commit = "git unavailable" - commit_date = Time.new.strftime("%Y-%m-%d %H%M%S") - end - [commit, commit_date] -end - - # copy from the key's data using the glob pattern -def nuspec_copy(key, glob) - puts "key: #{key}, glob: #{glob}, proj dir: #{PROJECTS[key][:dir]}" - FileList[File.join(FOLDERS[:binaries], PROJECTS[key][:dir], glob)].collect{ |f| - to = File.join( FOLDERS[:"#{key}"][:nuspec], "lib", FRAMEWORK ) - FileUtils.mkdir_p to - cp f, to - # return the file name and its extension: - File.join(FRAMEWORK, File.basename(f)) - } -end - -def copy_files(from_dir, file_pattern, out_dir) - puts "copying from #{out_dir}" - FileUtils.mkdir_p out_dir unless FileTest.exists?(out_dir) - Dir.glob(File.join(from_dir, file_pattern)){|file| - copy(file, out_dir) if File.file?(file) - } -end - -def versions(str) - str.split(/\r\n|\n/).map{|s|version(s)}.compact.sort -end - -def version(str) - ver = /v?(\d+)\.(\d+)\.(\d+)\.?(\d+)?/i.match(str).to_a() - ver[1,4].map{|s|s.to_i} unless ver == nil or ver.empty? -end +require 'fileutils' + +def commit_data + begin + commit = `git log -1 --pretty=format:%H` + git_date = `git log -1 --date=iso --pretty=format:%ad` + commit_date = DateTime.parse( git_date ).strftime("%Y-%m-%d %H%M%S") + rescue + commit = "git unavailable" + commit_date = Time.new.strftime("%Y-%m-%d %H%M%S") + end + [commit, commit_date] +end + + # copy from the key's data using the glob pattern +def nuspec_copy(key, glob) + puts "key: #{key}, glob: #{glob}, proj dir: #{PROJECTS[key][:dir]}" + FileList[File.join(FOLDERS[:binaries], PROJECTS[key][:dir], glob)].collect{ |f| + to = File.join( FOLDERS[:"#{key}"][:nuspec], "lib", FRAMEWORK ) + FileUtils.mkdir_p to + cp f, to + # return the file name and its extension: + File.join(FRAMEWORK, File.basename(f)) + } +end + +def copy_files(from_dir, file_pattern, out_dir) + puts "copying from #{out_dir}" + FileUtils.mkdir_p out_dir unless FileTest.exists?(out_dir) + Dir.glob(File.join(from_dir, file_pattern)){|file| + copy(file, out_dir) if File.file?(file) + } +end + +def versions(str) + str.split(/\r\n|\n/).map{|s|version(s)}.compact.sort +end + +def version(str) + ver = /v?(\d+)\.(\d+)\.(\d+)\.?(\d+)?/i.match(str).to_a() + ver[1,4].map{|s|s.to_i} unless ver == nil or ver.empty? +end diff --git a/paket.dependencies b/old/paket.dependencies similarity index 96% rename from paket.dependencies rename to old/paket.dependencies index c8140cc..2b7e770 100644 --- a/paket.dependencies +++ b/old/paket.dependencies @@ -1,11 +1,11 @@ -source https://api.nuget.org/v3/index.json - -framework: auto-detect -storage: none -content: none - -nuget System.Runtime.CompilerServices.Unsafe !~> 4.7 -nuget System.Security.AccessControl !~> 4.7 -nuget System.Security.Permissions !~> 4.7 -nuget System.Security.Principal.Windows !~> 4.7 -nuget System.Text.Encoding.CodePages !~> 4.7 +source https://api.nuget.org/v3/index.json + +framework: auto-detect +storage: none +content: none + +nuget System.Runtime.CompilerServices.Unsafe !~> 4.7 +nuget System.Security.AccessControl !~> 4.7 +nuget System.Security.Permissions !~> 4.7 +nuget System.Security.Principal.Windows !~> 4.7 +nuget System.Text.Encoding.CodePages !~> 4.7 diff --git a/paket.lock b/old/paket.lock similarity index 97% rename from paket.lock rename to old/paket.lock index 4683021..c0208c4 100644 --- a/paket.lock +++ b/old/paket.lock @@ -1,13 +1,13 @@ -STORAGE: NONE -CONTENT: NONE -RESTRICTION: == netstandard2.0 -NUGET - remote: https://api.nuget.org/v3/index.json - System.Runtime.CompilerServices.Unsafe (4.7.1) - System.Security.AccessControl (4.7) - System.Security.Principal.Windows (>= 4.7) - System.Security.Permissions (4.7) - System.Security.AccessControl (>= 4.7) - System.Security.Principal.Windows (4.7) - System.Text.Encoding.CodePages (4.7.1) - System.Runtime.CompilerServices.Unsafe (>= 4.7.1) +STORAGE: NONE +CONTENT: NONE +RESTRICTION: == netstandard2.0 +NUGET + remote: https://api.nuget.org/v3/index.json + System.Runtime.CompilerServices.Unsafe (4.7.1) + System.Security.AccessControl (4.7) + System.Security.Principal.Windows (>= 4.7) + System.Security.Permissions (4.7) + System.Security.AccessControl (>= 4.7) + System.Security.Principal.Windows (4.7) + System.Text.Encoding.CodePages (4.7.1) + System.Runtime.CompilerServices.Unsafe (>= 4.7.1) diff --git a/src/.tfs-ignore b/old/src/.tfs-ignore similarity index 97% rename from src/.tfs-ignore rename to old/src/.tfs-ignore index 120e0b7..278ac78 100644 --- a/src/.tfs-ignore +++ b/old/src/.tfs-ignore @@ -1,32 +1,32 @@ - - bin - obj - TestResults - notused - _UpgradeReport_Files - Backup - UpgradeLog.XML - CodePlex-Readme.txt - License.rtf - FixProps.ps1 - makeSrcZip.bat - MakeReleaseZips.bat - clean.ps1 - AppNote.txt - Todo.txt - MakeZipUtils.ps1 - SetVersion.ps1 - Help - LastBuild.log - _Resharper* - Debug - Release - *.resharper - *.cache - *.suo - *.user - #*.*# - *.*~ - *.zip - + + bin + obj + TestResults + notused + _UpgradeReport_Files + Backup + UpgradeLog.XML + CodePlex-Readme.txt + License.rtf + FixProps.ps1 + makeSrcZip.bat + MakeReleaseZips.bat + clean.ps1 + AppNote.txt + Todo.txt + MakeZipUtils.ps1 + SetVersion.ps1 + Help + LastBuild.log + _Resharper* + Debug + Release + *.resharper + *.cache + *.suo + *.user + #*.*# + *.*~ + *.zip + \ No newline at end of file diff --git a/src/AppNote.iz.txt b/old/src/AppNote.iz.txt similarity index 97% rename from src/AppNote.iz.txt rename to old/src/AppNote.iz.txt index eed5663..362f31f 100644 --- a/src/AppNote.iz.txt +++ b/old/src/AppNote.iz.txt @@ -1,3686 +1,3686 @@ -[Info-ZIP note, 20040528: this file is based on PKWARE's appnote.txt of - 15 February 1996, taking into account PKWARE's revised appnote.txt - version 6.2.0 of 26 April 2004. It has been unofficially corrected - and extended by Info-ZIP without explicit permission by PKWARE. - Although Info-ZIP believes the information to be accurate and complete, - it is provided under a disclaimer similar to the PKWARE disclaimer below, - differing only in the substitution of "Info-ZIP" for "PKWARE". In other - words, use this information at your own risk, but we think it's correct. - - Specification info from PKWARE that was obviously wrong has been corrected - silently (e.g. missing structure fields, wrong numbers). - As of PKZIPW 2.50, two new incompatibilities have been introduced by PKWARE; - they are noted below. Note that the "NTFS tag" conflict is currently not - real; PKZIPW 2.50 actually tags NTFS files as having come from a FAT - file system, too.] - -File: APPNOTE.TXT - .ZIP File Format Specification -Version: 6.2.0 - NOTIFICATION OF CHANGE -Revised: 04/26/2004 [2004-05-28 Info-ZIP] -Copyright (c) 1989 - 2004 PKWARE Inc., All Rights Reserved. - -I. Purpose ----------- - -This specification is intended to define a cross-platform, -interoperable file format. Since its first publication -in 1989, PKWARE has remained committed to ensuring the -interoperability of the .ZIP file format through this -specification. We trust that all .ZIP compatible vendors -and application developers that have adopted this format -will share and support this commitment. - - -II. Disclaimer --------------- - -Although PKWARE will attempt to supply current and accurate -information relating to its file formats, algorithms, and the -subject programs, the possibility of error or omission can not -be eliminated. PKWARE therefore expressly disclaims any warranty -that the information contained in the associated materials relating -to the subject programs and/or the format of the files created or -accessed by the subject programs and/or the algorithms used by -the subject programs, or any other matter, is current, correct or -accurate as delivered. Any risk of damage due to any possible -inaccurate information is assumed by the user of the information. -Furthermore, the information relating to the subject programs -and/or the file formats created or accessed by the subject -programs and/or the algorithms used by the subject programs is -subject to change without notice. - -If the version of this file is marked as a NOTIFICATION OF CHANGE, -the content defines an Early Feature Specification (EFS) change -to the .ZIP file format that may be subject to modification prior -to publication of the Final Feature Specification (FFS). This -document may also contain information on Planned Feature -Specifications (PFS) defining recognized future extensions. - - -III. Change Log ---------------- - -Version Change Description Date -------- ------------------ ---------- -5.2 -Single Password Symmetric Encryption 06/02/2003 - storage - -6.1.0 -Smart Card compatibility 01/20/2004 - -Documentation on certificate storage - -6.2.0 -Introduction of Central Directory 04/26/2004 - Encryption for encrypting metadata - -Added OS/X to Version Made By values - - -IV. General Format of a .ZIP file ---------------------------------- - - Files stored in arbitrary order. Large .ZIP files can span multiple - diskette media or be split into user-defined segment sizes. [The - minimum user-defined segment size for a split .ZIP file is 64K. - (removed by PKWare 2003-06-01)] - - Overall .ZIP file format: - - [local file header 1] - [file data 1] - [data descriptor 1] - . - . - . - [local file header n] - [file data n] - [data descriptor n] - [archive decryption header] (EFS) - [archive extra data record] (EFS) - [central directory] - [zip64 end of central directory record] - [zip64 end of central directory locator] - [end of central directory record] - - - A. Local file header: - - local file header signature 4 bytes (0x04034b50) - version needed to extract 2 bytes - general purpose bit flag 2 bytes - compression method 2 bytes - last mod file time 2 bytes - last mod file date 2 bytes - crc-32 4 bytes - compressed size 4 bytes - uncompressed size 4 bytes - file name length 2 bytes - extra field length 2 bytes - - file name (variable size) - extra field (variable size) - - - B. File data - - Immediately following the local header for a file - is the compressed or stored data for the file. - The series of [local file header][file data][data - descriptor] repeats for each file in the .ZIP archive. - - - C. Data descriptor: - - [Info-ZIP discrepancy: - The Info-ZIP zip program starts the data descriptor with a 4-byte - PK-style signature. Despite the specification, none of the PKWARE - programs supports the data descriptor. PKZIP 4.0 -fix function - (and PKZIPFIX 2.04) ignores the data descriptor info even when bit 3 - of the general purpose bit flag is set. - data descriptor signature 4 bytes (0x08074b50) - ] - crc-32 4 bytes - compressed size 4 bytes - uncompressed size 4 bytes - - This descriptor exists only if bit 3 of the general - purpose bit flag is set (see below). It is byte aligned - and immediately follows the last byte of compressed data. - This descriptor is used only when it was not possible to - seek in the output .ZIP file, e.g., when the output .ZIP file - was standard output or a non seekable device. For Zip64 format - archives, the compressed and uncompressed sizes are 8 bytes each. - - - D. Archive decryption header: (EFS) - - The Archive Decryption Header is introduced in version 6.2 - of the ZIP format specification. This record exists in support - of the Central Directory Encryption Feature implemented as part of - the Strong Encryption Specification as described in this document. - When the Central Directory Structure is encrypted, this decryption - header will precede the encrypted data segment. The encrypted - data segment will consist of the Archive extra data record (if - present) and the encrypted Central Directory Structure data. - The format of this data record is identical to the Decryption - header record preceding compressed file data. If the central - directory structure is encrypted, the location of the start of - this data record is determined using the Start of Central Directory - field in the Zip64 End of Central Directory record. Refer to the - section on the Strong Encryption Specification for information - on the fields used in the Archive Decryption Header record. - - - E. Archive extra data record: (EFS) - - archive extra data signature 4 bytes (0x08064b50) - extra field length 4 bytes - extra field data (variable size) - - The Archive Extra Data Record is introduced in version 6.2 - of the ZIP format specification. This record exists in support - of the Central Directory Encryption Feature implemented as part of - the Strong Encryption Specification as described in this document. - When present, this record immediately precedes the central - directory data structure. The size of this data record will be - included in the Size of the Central Directory field in the - End of Central Directory record. If the central directory structure - is compressed, but not encrypted, the location of the start of - this data record is determined using the Start of Central Directory - field in the Zip64 End of Central Directory record. - - - F. Central directory structure: - - [file header 1] - . - . - . - [file header n] - [digital signature] - - File header: - - central file header signature 4 bytes (0x02014b50) - version made by 2 bytes - version needed to extract 2 bytes - general purpose bit flag 2 bytes - compression method 2 bytes - last mod file time 2 bytes - last mod file date 2 bytes - crc-32 4 bytes - compressed size 4 bytes - uncompressed size 4 bytes - file name length 2 bytes - extra field length 2 bytes - file comment length 2 bytes - disk number start 2 bytes - internal file attributes 2 bytes - external file attributes 4 bytes - relative offset of local header 4 bytes - - file name (variable size) - extra field (variable size) - file comment (variable size) - - Digital signature: - - header signature 4 bytes (0x05054b50) - size of data 2 bytes - signature data (variable size) - - With the introduction of the Central Directory Encryption - feature in version 6.2 of this specification, the Central - Directory Structure may be stored both compressed and encrypted. - Although not required, it is assumed when encrypting the - Central Directory Structure, that it will be compressed - for greater storage efficiency. Information on the - Central Directory Encryption feature can be found in the section - describing the Strong Encryption Specification. The Digital - Signature record will be neither compressed nor encrypted. - - - G. Zip64 end of central directory record - - zip64 end of central dir - signature 4 bytes (0x06064b50) - size of zip64 end of central - directory record 8 bytes - version made by 2 bytes - version needed to extract 2 bytes - number of this disk 4 bytes - number of the disk with the - start of the central directory 4 bytes - total number of entries in the - central directory on this disk 8 bytes - total number of entries in the - central directory 8 bytes - size of the central directory 8 bytes - offset of start of central - directory with respect to - the starting disk number 8 bytes - zip64 extensible data sector (variable size) - - The above record structure defines Version 1 of the - Zip64 end of central directory record. Version 1 was - implemented in versions of this specification preceding - 6.2 in support of the ZIP64(tm) large file feature. The - introduction of the Central Directory Encryption feature - implemented in version 6.2 as part of the Strong Encryption - Specification defines Version 2 of this record structure. - Refer to the section describing the Strong Encryption - Specification for details on the version 2 format for - this record. - - - H. Zip64 end of central directory locator - - zip64 end of central dir locator - signature 4 bytes (0x07064b50) - number of the disk with the - start of the zip64 end of - central directory 4 bytes - relative offset of the zip64 - end of central directory record 8 bytes - total number of disks 4 bytes - - - I. End of central directory record: - - end of central dir signature 4 bytes (0x06054b50) - number of this disk 2 bytes - number of the disk with the - start of the central directory 2 bytes - total number of entries in the - central directory on this disk 2 bytes - total number of entries in - the central directory 2 bytes - size of the central directory 4 bytes - offset of start of central - directory with respect to - the starting disk number 4 bytes - .ZIP file comment length 2 bytes - .ZIP file comment (variable size) - - - J. Explanation of fields: - - version made by (2 bytes) - - [PKWARE describes "OS made by" now (since 1998) as follows: - The upper byte indicates the compatibility of the file - attribute information. If the external file attributes - are compatible with MS-DOS and can be read by PKZIP for - DOS version 2.04g then this value will be zero. If these - attributes are not compatible, then this value will - identify the host system on which the attributes are - compatible.] - The upper byte indicates the host system (OS) for the - file. Software can use this information to determine - the line record format for text files etc. The current - mappings are: - - 0 - FAT file system (DOS, OS/2, NT) + PKWARE 2.50+ VFAT, NTFS - 1 - Amiga - 2 - OpenVMS - 3 - Unix - 4 - VM/CMS - 5 - Atari ST - 6 - HPFS file system (OS/2, NT 3.x) - 7 - Macintosh - 8 - Z-System - 9 - CP/M - --------------------------------------------------------------------- - PKWARE assignment | Info-ZIP assignment - -----------------------------------|--------------------------------- - 10 - Windows NTFS | TOPS-20 - (since PKZIPW 2.50, but | (assigned Oct-1992, - not used by any PKWARE prog) | no longer used) - 11 - MVS | NTFS file system (WinNT) - | (actively used by Info-ZIP's - | Zip for NT since Sep-1993) - 12 - VSE | SMS/QDOS - --------------------------------------------------------------------- - 13 - Acorn RISC OS - 14 - VFAT file system (Win95, NT) [Info-ZIP reservation, unused] - 15 - MVS [PKWARE describes this assignment as "alternate MVS"] - 16 - BeOS (BeBox or PowerMac) - 17 - Tandem - 18 - OS/400 (IBM) | THEOS - 19 - OS/X (Darwin) - 20 thru 29 - unused - 30 - AtheOS/Syllable - 31 thru 255 - unused - - The lower byte indicates the ZIP specification version - (the version of this document) supported by the software - used to encode the file. The value/10 indicates the major - version number, and the value mod 10 is the minor version - number. - - version needed to extract (2 bytes) - - The minimum supported ZIP specification version needed to - extract the file, mapped as above. This value is based on - the specific format features a ZIP program must support to - be able to extract the file. If multiple features are - applied to a file, the minimum version should be set to the - feature having the highest value. New features or feature - changes affecting the published format specification will be - implemented using higher version numbers than the last - published value to avoid conflict. - - Current minimum feature versions are as defined below: - - 1.0 - Default value - 1.1 - File is a volume label - 2.0 - File is a folder (directory) - 2.0 - File is compressed using Deflate compression - 2.0 - File is encrypted using traditional PKWARE encryption - 2.1 - File is compressed using Deflate64(tm) - 2.5 - File is compressed using PKWARE DCL Implode - 2.7 - File is a patch data set - 4.5 - File uses ZIP64 format extensions - 4.6 - File is compressed using BZIP2 compression* - 5.0 - File is encrypted using DES - 5.0 - File is encrypted using 3DES - 5.0 - File is encrypted using original RC2 encryption - 5.0 - File is encrypted using RC4 encryption - 5.1 - File is encrypted using AES encryption - 5.1 - File is encrypted using corrected RC2 encryption** - 5.2 - File is encrypted using corrected RC2-64 encryption** - 6.1 - File is encrypted using non-OAEP key wrapping*** - 6.2 - Central directory encryption - - - * Early 7.x (pre-7.2) versions of PKZIP incorrectly set the - version needed to extract for BZIP2 compression to be 50 - when it should have been 46. - - ** Refer to the section on Strong Encryption Specification - for additional information regarding RC2 corrections. - - *** Certificate encryption using non-OAEP key wrapping is the - intended mode of operation for all versions beginning with 6.1. - Support for OAEP key wrapping should only be used for - backward compatibility when sending ZIP files to be opened by - versions of PKZIP older than 6.1 (5.0 or 6.0). - - When using ZIP64 extensions, the corresponding value in the - Zip64 end of central directory record should also be set. - This field currently supports only the value 45 to indicate - ZIP64 extensions are present. - - general purpose bit flag: (2 bytes) - - Bit 0: If set, indicates that the file is encrypted. - - (For Method 6 - Imploding) - Bit 1: If the compression method used was type 6, - Imploding, then this bit, if set, indicates - an 8K sliding dictionary was used. If clear, - then a 4K sliding dictionary was used. - Bit 2: If the compression method used was type 6, - Imploding, then this bit, if set, indicates - 3 Shannon-Fano trees were used to encode the - sliding dictionary output. If clear, then 2 - Shannon-Fano trees were used. - - (For Methods 8 and 9 - Deflating) - Bit 2 Bit 1 - 0 0 Normal (-en) compression option was used. - 0 1 Maximum (-exx/-ex) compression option was used. - 1 0 Fast (-ef) compression option was used. - 1 1 Super Fast (-es) compression option was used. - - Note: Bits 1 and 2 are undefined if the compression - method is any other. - - Bit 3: If this bit is set, the fields crc-32, compressed - size and uncompressed size are set to zero in the - local header. The correct values are put in the - data descriptor immediately following the compressed - data. (Note: PKZIP version 2.04g for DOS only - recognizes this bit for method 8 compression, newer - versions of PKZIP recognize this bit for any - compression method.) - [Info-ZIP note: This bit was introduced by PKZIP 2.04 for - DOS. In general, this feature can only be reliably used - together with compression methods that allow intrinsic - detection of the "end-of-compressed-data" condition. From - the set of compression methods described in this Zip archive - specification, only "deflate" and "bzip2" fulfill this - requirement. - Especially, the method STORED does not work! - The Info-ZIP tools recognize this bit regardless of the - compression method; but, they rely on correctly set - "compressed size" information in the central directory entry.] - - Bit 4: Reserved for use with method 8, for enhanced - deflating. - - Bit 5: If this bit is set, this indicates that the file is - compressed patched data. (Note: Requires PKZIP - version 2.70 or greater) - - Bit 6: Strong encryption. If this bit is set, you should - set the version needed to extract value to at least - 50 and you must also set bit 0. If AES encryption - is used, the version needed to extract value must - be at least 51. - - Bit 7: Currently unused. - - Bit 8: Currently unused. - - Bit 9: Currently unused. - - Bit 10: Currently unused. - - Bit 11: Currently unused. - - Bit 12: Reserved by PKWARE for enhanced compression. - - Bit 13: Used when encrypting the Central Directory to indicate - selected data values in the Local Header are masked to - hide their actual values. See the section describing - the Strong Encryption Specification for details. - - Bit 14: Reserved by PKWARE. - - Bit 15: Reserved by PKWARE. - - compression method: (2 bytes) - - (see accompanying documentation for algorithm - descriptions) - - 0 - The file is stored (no compression) - 1 - The file is Shrunk - 2 - The file is Reduced with compression factor 1 - 3 - The file is Reduced with compression factor 2 - 4 - The file is Reduced with compression factor 3 - 5 - The file is Reduced with compression factor 4 - 6 - The file is Imploded - 7 - Reserved for Tokenizing compression algorithm - 8 - The file is Deflated - 9 - Enhanced Deflating using Deflate64(tm) - 10 - PKWARE Data Compression Library Imploding - 11 - Reserved by PKWARE - 12 - File is compressed using BZIP2 algorithm - - date and time fields: (2 bytes each) - - The date and time are encoded in standard MS-DOS format. - If input came from standard input, the date and time are - those at which compression was started for this data. - If encrypting the central directory and general purpose bit - flag 13 is set indicating masking, the value stored in the - Local Header will be zero. - - CRC-32: (4 bytes) - - The CRC-32 algorithm was generously contributed by - David Schwaderer and can be found in his excellent - book "C Programmers Guide to NetBIOS" published by - Howard W. Sams & Co. Inc. The 'magic number' for - the CRC is 0xdebb20e3. The proper CRC pre and post - conditioning is used, meaning that the CRC register - is pre-conditioned with all ones (a starting value - of 0xffffffff) and the value is post-conditioned by - taking the one's complement of the CRC residual. - If bit 3 of the general purpose flag is set, this - field is set to zero in the local header and the correct - value is put in the data descriptor and in the central - directory. If encrypting the central directory and general - purpose bit flag 13 is set indicating masking, the value - stored in the Local Header will be zero. - - compressed size: (4 bytes) - uncompressed size: (4 bytes) - - The size of the file compressed and uncompressed, - respectively. If bit 3 of the general purpose bit flag - is set, these fields are set to zero in the local header - and the correct values are put in the data descriptor and - in the central directory. If an archive is in zip64 format - and the value in this field is 0xFFFFFFFF, the size will be - in the corresponding 8 byte zip64 extended information - extra field. If encrypting the central directory and general - purpose bit flag 13 is set indicating masking, the value stored - for the uncompressed size in the Local Header will be zero. - - file name length: (2 bytes) - extra field length: (2 bytes) - file comment length: (2 bytes) - - The length of the file name, extra field, and comment - fields respectively. The combined length of any - directory record and these three fields should not - generally exceed 65,535 bytes. If input came from standard - input, the file name length is set to zero. - - [Info-ZIP note: - This feature is not yet supported by any PKWARE version of ZIP - (at least not in PKZIP for DOS and PKZIP for Windows/WinNT). - The Info-ZIP programs handle standard input differently: - If input came from standard input, the filename is set to "-" - (length one).] - - - disk number start: (2 bytes) - - The number of the disk on which this file begins. If an - archive is in zip64 format and the value in this field is - 0xFFFF, the size will be in the corresponding 4 byte zip64 - extended information extra field. - - internal file attributes: (2 bytes) - - Bits 1 and 2 are reserved for use by PKWARE. - - The lowest bit of this field indicates, if set, that - the file is apparently an ASCII or text file. If not - set, that the file apparently contains binary data. - The remaining bits are unused in version 1.0. - - The 0x0002 bit of this field indicates, if set, that a - 4 byte variable record length control field precedes each - logical record indicating the length of the record. This - flag is independent of text control characters, and if used - in conjunction with text data, includes any control - characters in the total length of the record. This value is - provided for mainframe data transfer support. - - external file attributes: (4 bytes) - - The mapping of the external attributes is - host-system dependent (see 'version made by'). For - MS-DOS, the low order byte is the MS-DOS directory - attribute byte. If input came from standard input, this - field is set to zero. - - relative offset of local header: (4 bytes) - - This is the offset from the start of the first disk on - which this file appears, to where the local header should - be found. If an archive is in zip64 format and the value - in this field is 0xFFFFFFFF, the size will be in the - corresponding 8 byte zip64 extended information extra field. - - file name: (Variable) - - The name of the file, with optional relative path. - The path stored should not contain a drive or - device letter, or a leading slash. All slashes - should be forward slashes '/' as opposed to - backwards slashes '\' for compatibility with Amiga - and Unix file systems etc. If input came from standard - input, there is no file name field. If encrypting - the central directory and general purpose bit flag 13 is set - indicating masking, the file name stored in the Local Header - will not be the actual file name. A masking value consisting - of a unique hexadecimal value will be stored. This value will - be sequentially incremented for each file in the archive. See - the section on the Strong Encryption Specification for details - on retrieving the encrypted file name. - [Info-ZIP discrepancy: - If input came from standard input, the file name is set - to "-" (without the quotes). - As far as we know, the PKWARE specification for "input from - stdin" is not supported by PKZIP/PKUNZIP for DOS, OS/2, Windows - Windows NT.] - - extra field: (Variable) - - This is for expansion. If additional information - needs to be stored for special needs or for specific - platforms, it should be stored here. Earlier versions - of the software can then safely skip this file, and - find the next file or header. This field will be 0 - length in version 1.0. - - In order to allow different programs and different types - of information to be stored in the 'extra' field in .ZIP - files, the following structure should be used for all - programs storing data in this field: - - header1+data1 + header2+data2 . . . - - Each header should consist of: - - Header ID - 2 bytes - Data Size - 2 bytes - - Note: all fields stored in Intel low-byte/high-byte order. - - The Header ID field indicates the type of data that is in - the following data block. - - Header ID's of 0 thru 31 are reserved for use by PKWARE. - The remaining ID's can be used by third party vendors for - proprietary usage. - - The current Header ID mappings defined by PKWARE are: - - 0x0001 ZIP64 extended information extra field - 0x0007 AV Info - 0x0008 Reserved for future Unicode file name data (PFS) - 0x0009 OS/2 extended attributes (also Info-ZIP) - 0x000a NTFS (Win9x/WinNT FileTimes) - 0x000c OpenVMS (also Info-ZIP) - 0x000d Unix - 0x000e Reserved for file stream and fork descriptors - 0x000f Patch Descriptor - 0x0014 PKCS#7 Store for X.509 Certificates - 0x0015 X.509 Certificate ID and Signature for - individual file - 0x0016 X.509 Certificate ID for Central Directory - 0x0017 Strong Encryption Header - 0x0018 Record Management Controls - 0x0019 PKCS#7 Encryption Recipient Certificate List - 0x0065 IBM S/390 (Z390), AS/400 (I400) attributes - - uncompressed - 0x0066 Reserved for IBM S/390 (Z390), AS/400 (I400) - attributes - compressed - - The Header ID mappings defined by Info-ZIP and third parties are: - - 0x07c8 Info-ZIP Macintosh (old, J. Lee) - 0x2605 ZipIt Macintosh (first version) - 0x2705 ZipIt Macintosh v 1.3.5 and newer (w/o full filename) - 0x2805 ZipIt Macintosh 1.3.5+ - 0x334d Info-ZIP Macintosh (new, D. Haase's 'Mac3' field) - 0x4154 Tandem NSK - 0x4341 Acorn/SparkFS (David Pilling) - 0x4453 Windows NT security descriptor (binary ACL) - 0x4704 VM/CMS - 0x470f MVS - 0x4854 Theos, old inofficial port - 0x4b46 FWKCS MD5 (see below) - 0x4c41 OS/2 access control list (text ACL) - 0x4d49 Info-ZIP OpenVMS (obsolete) - 0x4d63 Macintosh SmartZIP, by Macro Bambini - 0x4f4c Xceed original location extra field - 0x5356 AOS/VS (binary ACL) - 0x5455 extended timestamp - 0x554e Xceed unicode extra field - 0x5855 Info-ZIP Unix (original; also OS/2, NT, etc.) - 0x6542 BeOS (BeBox, PowerMac, etc.) - 0x6854 Theos - 0x7441 AtheOS (AtheOS/Syllable attributes) - 0x756e ASi Unix - 0x7855 Info-ZIP Unix (new) - 0xfb4a SMS/QDOS - - Detailed descriptions of Extra Fields defined by third - party mappings will be documented as information on - these data structures is made available to PKWARE. - PKWARE does not guarantee the accuracy of any published - third party data. - - The Data Size field indicates the size of the following - data block. Programs can use this value to skip to the - next header block, passing over any data blocks that are - not of interest. - - Note: As stated above, the size of the entire .ZIP file - header, including the file name, comment, and extra - field should not exceed 64K in size. - - In case two different programs should appropriate the same - Header ID value, it is strongly recommended that each - program place a unique signature of at least two bytes in - size (and preferably 4 bytes or bigger) at the start of - each data area. Every program should verify that its - unique signature is present, in addition to the Header ID - value being correct, before assuming that it is a block of - known type. - - In the following descriptions, note that "Short" means two bytes, - "Long" means four bytes, and "Long-Long" means eight bytes, - regardless of their native sizes. Unless specifically noted, all - integer fields should be interpreted as unsigned (non-negative) - numbers. - - - -ZIP64 Extended Information Extra Field (0x0001): - =============================================== - - The following is the layout of the ZIP64 extended - information "extra" block. If one of the size or - offset fields in the Local or Central directory - record is too small to hold the required data, - a ZIP64 extended information record is created. - The order of the fields in the ZIP64 extended - information record is fixed, but the fields will - only appear if the corresponding Local or Central - directory record field is set to 0xFFFF or 0xFFFFFFFF. - - Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - (ZIP64) 0x0001 2 bytes Tag for this "extra" block type - Size 2 bytes Size of this "extra" block - Original - Size 8 bytes Original uncompressed file size - Compressed - Size 8 bytes Size of compressed data - Relative Header - Offset 8 bytes Offset of local header record - Disk Start - Number 4 bytes Number of the disk on which - this file starts - - This entry in the Local header must include BOTH original - and compressed file sizes. - - - -OS/2 Extended Attributes Extra Field (0x0009): - ============================================= - - The following is the layout of the OS/2 extended attributes "extra" - block. (Last Revision 19960922) - - Note: all fields stored in Intel low-byte/high-byte order. - - Local-header version: - - Value Size Description - ----- ---- ----------- - (OS/2) 0x0009 Short tag for this extra block type - TSize Short total data size for this block - BSize Long uncompressed EA data size - CType Short compression type - EACRC Long CRC value for uncompressed EA data - (var.) variable compressed EA data - - Central-header version: - - Value Size Description - ----- ---- ----------- - (OS/2) 0x0009 Short tag for this extra block type - TSize Short total data size for this block (4) - BSize Long size of uncompressed local EA data - - The value of CType is interpreted according to the "compression - method" section above; i.e., 0 for stored, 8 for deflated, etc. - - The OS/2 extended attribute structure (FEA2LIST) is - compressed and then stored in its entirety within this - structure. There will only ever be one "block" of data in - the variable-length field. - - - -OS/2 Access Control List Extra Field: - ==================================== - - The following is the layout of the OS/2 ACL extra block. - (Last Revision 19960922) - - Local-header version: - - Value Size Description - ----- ---- ----------- - (ACL) 0x4c41 Short tag for this extra block type ("AL") - TSize Short total data size for this block - BSize Long uncompressed ACL data size - CType Short compression type - EACRC Long CRC value for uncompressed ACL data - (var.) variable compressed ACL data - - Central-header version: - - Value Size Description - ----- ---- ----------- - (ACL) 0x4c41 Short tag for this extra block type ("AL") - TSize Short total data size for this block (4) - BSize Long size of uncompressed local ACL data - - The value of CType is interpreted according to the "compression - method" section above; i.e., 0 for stored, 8 for deflated, etc. - - The uncompressed ACL data consist of a text header of the form - "ACL1:%hX,%hd\n", where the first field is the OS/2 ACCINFO acc_attr - member and the second is acc_count, followed by acc_count strings - of the form "%s,%hx\n", where the first field is acl_ugname (user - group name) and the second acl_access. This block type will be - extended for other operating systems as needed. - - - -Windows NT Security Descriptor Extra Field (0x4453): - =================================================== - - The following is the layout of the NT Security Descriptor (another - type of ACL) extra block. (Last Revision 19960922) - - Local-header version: - - Value Size Description - ----- ---- ----------- - (SD) 0x4453 Short tag for this extra block type ("SD") - TSize Short total data size for this block - BSize Long uncompressed SD data size - Version Byte version of uncompressed SD data format - CType Short compression type - EACRC Long CRC value for uncompressed SD data - (var.) variable compressed SD data - - Central-header version: - - Value Size Description - ----- ---- ----------- - (SD) 0x4453 Short tag for this extra block type ("SD") - TSize Short total data size for this block (4) - BSize Long size of uncompressed local SD data - - The value of CType is interpreted according to the "compression - method" section above; i.e., 0 for stored, 8 for deflated, etc. - Version specifies how the compressed data are to be interpreted - and allows for future expansion of this extra field type. Currently - only version 0 is defined. - - For version 0, the compressed data are to be interpreted as a single - valid Windows NT SECURITY_DESCRIPTOR data structure, in self-relative - format. - - - -PKWARE Win95/WinNT Extra Field (0x000a): - ======================================= - - The following description covers PKWARE's "NTFS" attributes - "extra" block, introduced with the release of PKZIP 2.50 for - Windows. (Last Revision 20001118) - - (Note: At this time the Mtime, Atime and Ctime values may - be used on any WIN32 system.) - [Info-ZIP note: In the current implementations, this field has - a fixed total data size of 32 bytes and is only stored as local - extra field.] - - Value Size Description - ----- ---- ----------- - (NTFS) 0x000a Short Tag for this "extra" block type - TSize Short Total Data Size for this block - Reserved Long for future use - Tag1 Short NTFS attribute tag value #1 - Size1 Short Size of attribute #1, in bytes - (var.) SubSize1 Attribute #1 data - . - . - . - TagN Short NTFS attribute tag value #N - SizeN Short Size of attribute #N, in bytes - (var.) SubSizeN Attribute #N data - - For NTFS, values for Tag1 through TagN are as follows: - (currently only one set of attributes is defined for NTFS) - - Tag Size Description - ----- ---- ----------- - 0x0001 2 bytes Tag for attribute #1 - Size1 2 bytes Size of attribute #1, in bytes (24) - Mtime 8 bytes 64-bit NTFS file last modification time - Atime 8 bytes 64-bit NTFS file last access time - Ctime 8 bytes 64-bit NTFS file creation time - - The total length for this block is 28 bytes, resulting in a - fixed size value of 32 for the TSize field of the NTFS block. - - The NTFS filetimes are 64-bit unsigned integers, stored in Intel - (least significant byte first) byte order. They determine the - number of 1.0E-07 seconds (1/10th microseconds!) past WinNT "epoch", - which is "01-Jan-1601 00:00:00 UTC". - - - -PKWARE OpenVMS Extra Field (0x000c): - =================================== - - The following is the layout of PKWARE's OpenVMS attributes - "extra" block. (Last Revision 12/17/91) - - Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - (VMS) 0x000c Short Tag for this "extra" block type - TSize Short Total Data Size for this block - CRC Long 32-bit CRC for remainder of the block - Tag1 Short OpenVMS attribute tag value #1 - Size1 Short Size of attribute #1, in bytes - (var.) Size1 Attribute #1 data - . - . - . - TagN Short OpenVMS attribute tage value #N - SizeN Short Size of attribute #N, in bytes - (var.) SizeN Attribute #N data - - Rules: - - 1. There will be one or more of attributes present, which - will each be preceded by the above TagX & SizeX values. - These values are identical to the ATR$C_XXXX and - ATR$S_XXXX constants which are defined in ATR.H under - OpenVMS C. Neither of these values will ever be zero. - - 2. No word alignment or padding is performed. - - 3. A well-behaved PKZIP/OpenVMS program should never produce - more than one sub-block with the same TagX value. Also, - there will never be more than one "extra" block of type - 0x000c in a particular directory record. - - - -Info-ZIP VMS Extra Field: - ======================== - - The following is the layout of Info-ZIP's VMS attributes extra - block for VAX or Alpha AXP. The local-header and central-header - versions are identical. (Last Revision 19960922) - - Value Size Description - ----- ---- ----------- - (VMS2) 0x4d49 Short tag for this extra block type ("JM") - TSize Short total data size for this block - ID Long block ID - Flags Short info bytes - BSize Short uncompressed block size - Reserved Long (reserved) - (var.) variable compressed VMS file-attributes block - - The block ID is one of the following unterminated strings: - - "VFAB" struct FAB - "VALL" struct XABALL - "VFHC" struct XABFHC - "VDAT" struct XABDAT - "VRDT" struct XABRDT - "VPRO" struct XABPRO - "VKEY" struct XABKEY - "VMSV" version (e.g., "V6.1"; truncated at hyphen) - "VNAM" reserved - - The lower three bits of Flags indicate the compression method. The - currently defined methods are: - - 0 stored (not compressed) - 1 simple "RLE" - 2 deflated - - The "RLE" method simply replaces zero-valued bytes with zero-valued - bits and non-zero-valued bytes with a "1" bit followed by the byte - value. - - The variable-length compressed data contains only the data corre- - sponding to the indicated structure or string. Typically multiple - VMS2 extra fields are present (each with a unique block type). - - - -Info-ZIP Macintosh Extra Field: - ============================== - - The following is the layout of the (old) Info-ZIP resource-fork extra - block for Macintosh. The local-header and central-header versions - are identical. (Last Revision 19960922) - - Value Size Description - ----- ---- ----------- - (Mac) 0x07c8 Short tag for this extra block type - TSize Short total data size for this block - "JLEE" beLong extra-field signature - FInfo 16 bytes Macintosh FInfo structure - CrDat beLong HParamBlockRec fileParam.ioFlCrDat - MdDat beLong HParamBlockRec fileParam.ioFlMdDat - Flags beLong info bits - DirID beLong HParamBlockRec fileParam.ioDirID - VolName 28 bytes volume name (optional) - - All fields but the first two are in native Macintosh format - (big-endian Motorola order, not little-endian Intel). The least - significant bit of Flags is 1 if the file is a data fork, 0 other- - wise. In addition, if this extra field is present, the filename - has an extra 'd' or 'r' appended to indicate data fork or resource - fork. The 28-byte VolName field may be omitted. - - - -ZipIt Macintosh Extra Field (long): - ================================== - - The following is the layout of the ZipIt extra block for Macintosh. - The local-header and central-header versions are identical. - (Last Revision 19970130) - - Value Size Description - ----- ---- ----------- - (Mac2) 0x2605 Short tag for this extra block type - TSize Short total data size for this block - "ZPIT" beLong extra-field signature - FnLen Byte length of FileName - FileName variable full Macintosh filename - FileType Byte[4] four-byte Mac file type string - Creator Byte[4] four-byte Mac creator string - - - -ZipIt Macintosh Extra Field (short, for files): - ============================================== - - The following is the layout of a shortened variant of the - ZipIt extra block for Macintosh (without "full name" entry). - This variant is used by ZipIt 1.3.5 and newer for entries of - files (not directories) that do not have a MacBinary encoded - file. The local-header and central-header versions are identical. - (Last Revision 20030602) - - Value Size Description - ----- ---- ----------- - (Mac2b) 0x2705 Short tag for this extra block type - TSize Short total data size for this block (min. 12) - "ZPIT" beLong extra-field signature - FileType Byte[4] four-byte Mac file type string - Creator Byte[4] four-byte Mac creator string - fdFlags beShort attributes from FInfo.frFlags, - may be omitted - 0x0000 beShort reserved, may be omitted - - - -ZipIt Macintosh Extra Field (short, for directories): - ==================================================== - - The following is the layout of a shortened variant of the - ZipIt extra block for Macintosh used only for directory - entries. This variant is used by ZipIt 1.3.5 and newer to - save some optional Mac-specific information about directories. - The local-header and central-header versions are identical. - - Value Size Description - ----- ---- ----------- - (Mac2c) 0x2805 Short tag for this extra block type - TSize Short total data size for this block (12) - "ZPIT" beLong extra-field signature - frFlags beShort attributes from DInfo.frFlags, may - be omitted - View beShort ZipIt view flag, may be omitted - - - The View field specifies ZipIt-internal settings as follows: - - Bits of the Flags: - bit 0 if set, the folder is shown expanded (open) - when the archive contents are viewed in ZipIt. - bits 1-15 reserved, zero; - - - -Info-ZIP Macintosh Extra Field (new): - ==================================== - - The following is the layout of the (new) Info-ZIP extra - block for Macintosh, designed by Dirk Haase. - All values are in little-endian. - (Last Revision 19981005) - - Local-header version: - - Value Size Description - ----- ---- ----------- - (Mac3) 0x334d Short tag for this extra block type ("M3") - TSize Short total data size for this block - BSize Long uncompressed finder attribute data size - Flags Short info bits - fdType Byte[4] Type of the File (4-byte string) - fdCreator Byte[4] Creator of the File (4-byte string) - (CType) Short compression type - (CRC) Long CRC value for uncompressed MacOS data - Attribs variable finder attribute data (see below) - - - Central-header version: - - Value Size Description - ----- ---- ----------- - (Mac3) 0x334d Short tag for this extra block type ("M3") - TSize Short total data size for this block - BSize Long uncompressed finder attribute data size - Flags Short info bits - fdType Byte[4] Type of the File (4-byte string) - fdCreator Byte[4] Creator of the File (4-byte string) - - The third bit of Flags in both headers indicates whether - the LOCAL extra field is uncompressed (and therefore whether CType - and CRC are omitted): - - Bits of the Flags: - bit 0 if set, file is a data fork; otherwise unset - bit 1 if set, filename will be not changed - bit 2 if set, Attribs is uncompressed (no CType, CRC) - bit 3 if set, date and times are in 64 bit - if zero date and times are in 32 bit. - bit 4 if set, timezone offsets fields for the native - Mac times are omitted (UTC support deactivated) - bits 5-15 reserved; - - - Attributes: - - Attribs is a Mac-specific block of data in little-endian format with - the following structure (if compressed, uncompress it first): - - Value Size Description - ----- ---- ----------- - fdFlags Short Finder Flags - fdLocation.v Short Finder Icon Location - fdLocation.h Short Finder Icon Location - fdFldr Short Folder containing file - - FXInfo 16 bytes Macintosh FXInfo structure - FXInfo-Structure: - fdIconID Short - fdUnused[3] Short unused but reserved 6 bytes - fdScript Byte Script flag and number - fdXFlags Byte More flag bits - fdComment Short Comment ID - fdPutAway Long Home Dir ID - - FVersNum Byte file version number - may be not used by MacOS - ACUser Byte directory access rights - - FlCrDat ULong date and time of creation - FlMdDat ULong date and time of last modification - FlBkDat ULong date and time of last backup - These time numbers are original Mac FileTime values (local time!). - Currently, date-time width is 32-bit, but future version may - support be 64-bit times (see flags) - - CrGMTOffs Long(signed!) difference "local Creat. time - UTC" - MdGMTOffs Long(signed!) difference "local Modif. time - UTC" - BkGMTOffs Long(signed!) difference "local Backup time - UTC" - These "local time - UTC" differences (stored in seconds) may be - used to support timestamp adjustment after inter-timezone transfer. - These fields are optional; bit 4 of the flags word controls their - presence. - - Charset Short TextEncodingBase (Charset) - valid for the following two fields - - FullPath variable Path of the current file. - Zero terminated string (C-String) - Currently coded in the native Charset. - - Comment variable Finder Comment of the current file. - Zero terminated string (C-String) - Currently coded in the native Charset. - - - -SmartZIP Macintosh Extra Field: - ==================================== - - The following is the layout of the SmartZIP extra - block for Macintosh, designed by Marco Bambini. - - Local-header version: - - Value Size Description - ----- ---- ----------- - 0x4d63 Short tag for this extra block type ("cM") - TSize Short total data size for this block (64) - "dZip" beLong extra-field signature - fdType Byte[4] Type of the File (4-byte string) - fdCreator Byte[4] Creator of the File (4-byte string) - fdFlags beShort Finder Flags - fdLocation.v beShort Finder Icon Location - fdLocation.h beShort Finder Icon Location - fdFldr beShort Folder containing file - CrDat beLong HParamBlockRec fileParam.ioFlCrDat - MdDat beLong HParamBlockRec fileParam.ioFlMdDat - frScroll.v Byte vertical pos. of folder's scroll bar - fdScript Byte Script flag and number - frScroll.h Byte horizontal pos. of folder's scroll bar - fdXFlags Byte More flag bits - FileName Byte[32] full Macintosh filename (pascal string) - - All fields but the first two are in native Macintosh format - (big-endian Motorola order, not little-endian Intel). - The extra field size is fixed to 64 bytes. - The local-header and central-header versions are identical. - - - -Acorn SparkFS Extra Field: - ========================= - - The following is the layout of David Pilling's SparkFS extra block - for Acorn RISC OS. The local-header and central-header versions are - identical. (Last Revision 19960922) - - Value Size Description - ----- ---- ----------- - (Acorn) 0x4341 Short tag for this extra block type ("AC") - TSize Short total data size for this block (20) - "ARC0" Long extra-field signature - LoadAddr Long load address or file type - ExecAddr Long exec address - Attr Long file permissions - Zero Long reserved; always zero - - The following bits of Attr are associated with the given file - permissions: - - bit 0 user-writable ('W') - bit 1 user-readable ('R') - bit 2 reserved - bit 3 locked ('L') - bit 4 publicly writable ('w') - bit 5 publicly readable ('r') - bit 6 reserved - bit 7 reserved - - - -VM/CMS Extra Field: - ================== - - The following is the layout of the file-attributes extra block for - VM/CMS. The local-header and central-header versions are - identical. (Last Revision 19960922) - - Value Size Description - ----- ---- ----------- - (VM/CMS) 0x4704 Short tag for this extra block type - TSize Short total data size for this block - flData variable file attributes data - - flData is an uncompressed fldata_t struct. - - - -MVS Extra Field: - =============== - - The following is the layout of the file-attributes extra block for - MVS. The local-header and central-header versions are identical. - (Last Revision 19960922) - - Value Size Description - ----- ---- ----------- - (MVS) 0x470f Short tag for this extra block type - TSize Short total data size for this block - flData variable file attributes data - - flData is an uncompressed fldata_t struct. - - - -PKWARE Unix Extra Field (0x000d): - ================================ - - The following is the layout of PKWARE's Unix "extra" block. - It was introduced with the release of PKZIP for Unix 2.50. - Note: all fields are stored in Intel low-byte/high-byte order. - (Last Revision 19980901) - - This field has a minimum data size of 12 bytes and is only stored - as local extra field. - - Value Size Description - ----- ---- ----------- - (Unix0) 0x000d Short Tag for this "extra" block type - TSize Short Total Data Size for this block - AcTime Long time of last access (UTC/GMT) - ModTime Long time of last modification (UTC/GMT) - UID Short Unix user ID - GID Short Unix group ID - (var) variable Variable length data field - - The variable length data field will contain file type - specific data. Currently the only values allowed are - the original "linked to" file names for hard or symbolic - links, and the major and minor device node numbers for - character and block device nodes. Since device nodes - cannot be either symbolic or hard links, only one set of - variable length data is stored. Link files will have the - name of the original file stored. This name is NOT NULL - terminated. Its size can be determined by checking TSize - - 12. Device entries will have eight bytes stored as two 4 - byte entries (in little-endian format). The first entry - will be the major device number, and the second the minor - device number. - - [Info-ZIP note: The fixed part of this field has the same layout as - Info-ZIP's abandoned "Unix1 timestamps & owner ID info" extra field; - only the two tag bytes are different.] - - - -PATCH Descriptor Extra Field (0x000f): - ===================================== - - The following is the layout of the Patch Descriptor "extra" - block. - - Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - (Patch) 0x000f Short Tag for this "extra" block type - TSize Short Size of the total "extra" block - Version Short Version of the descriptor - Flags Long Actions and reactions (see below) - OldSize Long Size of the file about to be patched - OldCRC Long 32-bit CRC of the file about to be patched - NewSize Long Size of the resulting file - NewCRC Long 32-bit CRC of the resulting file - - - Actions and reactions - - Bits Description - ---- ---------------- - 0 Use for auto detection - 1 Treat as a self-patch - 2-3 RESERVED - 4-5 Action (see below) - 6-7 RESERVED - 8-9 Reaction (see below) to absent file - 10-11 Reaction (see below) to newer file - 12-13 Reaction (see below) to unknown file - 14-15 RESERVED - 16-31 RESERVED - - Actions - - Action Value - ------ ----- - none 0 - add 1 - delete 2 - patch 3 - - Reactions - - Reaction Value - -------- ----- - ask 0 - skip 1 - ignore 2 - fail 3 - - Patch support is provided by PKPatchMaker(tm) technology and is - covered under U.S. Patents and Patents Pending. - - - -PKCS#7 Store for X.509 Certificates (0x0014): - ============================================ - - This field contains information about each of the certificates - files may be signed with. When the Central Directory Encryption - feature is enabled for a ZIP file, this record will appear in - the Archive Extra Data Record, otherwise it will appear in the - first central directory record and will be ignored in any - other record. - - Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - (Store) 0x0014 2 bytes Tag for this "extra" block type - TSize 2 bytes Size of the store data - SData TSize Data about the store - - SData - Value Size Description - ----- ---- ----------- - Version 2 bytes Version number, 0x0001 for now - StoreD (variable) Actual store data - - The StoreD member is suitable for passing as the pbData - member of a CRYPT_DATA_BLOB to the CertOpenStore() function - in Microsoft's CryptoAPI. The SSize member above will be - cbData + 6, where cbData is the cbData member of the same - CRYPT_DATA_BLOB. The encoding type to pass to - CertOpenStore() should be - PKCS_7_ANS_ENCODING | X509_ASN_ENCODING. - - - -X.509 Certificate ID and Signature for individual file (0x0015): - =============================================================== - - This field contains the information about which certificate in - the PKCS#7 store was used to sign a particular file. It also - contains the signature data. This field can appear multiple - times, but can only appear once per certificate. - - Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - (CID) 0x0015 2 bytes Tag for this "extra" block type - CSize 2 bytes Size of Method - Method (variable) - - Method - Value Size Description - ----- ---- ----------- - Version 2 bytes Version number, for now 0x0001 - AlgID 2 bytes Algorithm ID used for signing - IDSize 2 bytes Size of Certificate ID data - CertID (variable) Certificate ID data - SigSize 2 bytes Size of Signature data - Sig (variable) Signature data - - CertID - Value Size Description - ----- ---- ----------- - Size1 4 bytes Size of CertID, should be (IDSize - 4) - Size1 4 bytes A bug in version one causes this value - to appear twice. - IssSize 4 bytes Issuer data size - Issuer (variable) Issuer data - SerSize 4 bytes Serial Number size - Serial (variable) Serial Number data - - The Issuer and IssSize members are suitable for creating a - CRYPT_DATA_BLOB to be the Issuer member of a CERT_INFO - struct. The Serial and SerSize members would be the - SerialNumber member of the same CERT_INFO struct. This - struct would be used to find the certificate in the store - the file was signed with. Those structures are from the MS - CryptoAPI. - - Sig and SigSize are the actual signature data and size - generated by signing the file with the MS CryptoAPI using a - hash created with the given AlgID. - - - -X.509 Certificate ID and Signature for central directory (0x0016): - ================================================================= - - This field contains the information about which certificate in - the PKCS#7 store was used to sign the central directory structure. - When the Central Directory Encryption feature is enabled for a - ZIP file, this record will appear in the Archive Extra Data Record, - otherwise it will appear in the first central directory record, - along with the store. The data structure is the - same as the CID, except that SigSize will be 0, and there - will be no Sig member. - - This field is also kept after the last central directory - record, as the signature data (ID 0x05054b50, it looks like - a central directory record of a different type). This - second copy of the data is the Signature Data member of the - record, and will have a SigSize that is non-zero, and will - have Sig data. - - Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - (CDID) 0x0016 2 bytes Tag for this "extra" block type - TSize 2 bytes Size of data that follows - TData TSize Data - - - -Strong Encryption Header (0x0017) (EFS): - =============================== - - Value Size Description - ----- ---- ----------- - 0x0017 2 bytes Tag for this "extra" block type - TSize 2 bytes Size of data that follows - Format 2 bytes Format definition for this record - AlgID 2 bytes Encryption algorithm identifier - Bitlen 2 bytes Bit length of encryption key - Flags 2 bytes Processing flags - CertData TSize-8 Certificate decryption extra field data - (refer to the explanation for CertData - in the section describing the - Certificate Processing Method under - the Strong Encryption Specification) - - - -Record Management Controls (0x0018): - =================================== - - Value Size Description - ----- ---- ----------- -(Rec-CTL) 0x0018 2 bytes Tag for this "extra" block type - CSize 2 bytes Size of total extra block data - Tag1 2 bytes Record control attribute 1 - Size1 2 bytes Size of attribute 1, in bytes - Data1 Size1 Attribute 1 data - . - . - . - TagN 2 bytes Record control attribute N - SizeN 2 bytes Size of attribute N, in bytes - DataN SizeN Attribute N data - - - -PKCS#7 Encryption Recipient Certificate List (0x0019): (EFS) - ===================================================== - - This field contains the information about each of the certificates - that files may be encrypted with. This field should only appear - in the archive extra data record. This field is not required and - serves only to aide archive modifications by preserving public - encryption data. Individual security requirements may dictate - that this data be omitted to deter information exposure. - - Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - (CStore) 0x0019 2 bytes Tag for this "extra" block type - TSize 2 bytes Size of the store data - TData TSize Data about the store - - TData: - - Value Size Description - ----- ---- ----------- - Version 2 bytes Format version number - must 0x0001 at this time - CStore (var) PKCS#7 data blob - - - -MVS Extra Field (PKWARE, 0x0065): - ================================ - - The following is the layout of the MVS "extra" block. - Note: Some fields are stored in Big Endian format. - All text is in EBCDIC format unless otherwise specified. - - Value Size Description - ----- ---- ----------- - (MVS) 0x0065 2 bytes Tag for this "extra" block type - TSize 2 bytes Size for the following data block - ID 4 bytes EBCDIC "Z390" 0xE9F3F9F0 or - "T4MV" for TargetFour - (var) TSize-4 Attribute data - - - -OS/400 Extra Field (0x0065): - =========================== - - The following is the layout of the OS/400 "extra" block. - Note: Some fields are stored in Big Endian format. - All text is in EBCDIC format unless otherwise specified. - - Value Size Description - ----- ---- ----------- - (OS400) 0x0065 2 bytes Tag for this "extra" block type - TSize 2 bytes Size for the following data block - ID 4 bytes EBCDIC "I400" 0xC9F4F0F0 or - "T4MV" for TargetFour - (var) TSize-4 Attribute data - - - -Extended Timestamp Extra Field: - ============================== - - The following is the layout of the extended-timestamp extra block. - (Last Revision 19970118) - - Local-header version: - - Value Size Description - ----- ---- ----------- - (time) 0x5455 Short tag for this extra block type ("UT") - TSize Short total data size for this block - Flags Byte info bits - (ModTime) Long time of last modification (UTC/GMT) - (AcTime) Long time of last access (UTC/GMT) - (CrTime) Long time of original creation (UTC/GMT) - - Central-header version: - - Value Size Description - ----- ---- ----------- - (time) 0x5455 Short tag for this extra block type ("UT") - TSize Short total data size for this block - Flags Byte info bits (refers to local header!) - (ModTime) Long time of last modification (UTC/GMT) - - The central-header extra field contains the modification time only, - or no timestamp at all. TSize is used to flag its presence or - absence. But note: - - If "Flags" indicates that Modtime is present in the local header - field, it MUST be present in the central header field, too! - This correspondence is required because the modification time - value may be used to support trans-timezone freshening and - updating operations with zip archives. - - The time values are in standard Unix signed-long format, indicating - the number of seconds since 1 January 1970 00:00:00. The times - are relative to Coordinated Universal Time (UTC), also sometimes - referred to as Greenwich Mean Time (GMT). To convert to local time, - the software must know the local timezone offset from UTC/GMT. - - The lower three bits of Flags in both headers indicate which time- - stamps are present in the LOCAL extra field: - - bit 0 if set, modification time is present - bit 1 if set, access time is present - bit 2 if set, creation time is present - bits 3-7 reserved for additional timestamps; not set - - Those times that are present will appear in the order indicated, but - any combination of times may be omitted. (Creation time may be - present without access time, for example.) TSize should equal - (1 + 4*(number of set bits in Flags)), as the block is currently - defined. Other timestamps may be added in the future. - - - -Info-ZIP Unix Extra Field (type 1): - ================================== - - The following is the layout of the old Info-ZIP extra block for - Unix. It has been replaced by the extended-timestamp extra block - (0x5455) and the Unix type 2 extra block (0x7855). - (Last Revision 19970118) - - Local-header version: - - Value Size Description - ----- ---- ----------- - (Unix1) 0x5855 Short tag for this extra block type ("UX") - TSize Short total data size for this block - AcTime Long time of last access (UTC/GMT) - ModTime Long time of last modification (UTC/GMT) - UID Short Unix user ID (optional) - GID Short Unix group ID (optional) - - Central-header version: - - Value Size Description - ----- ---- ----------- - (Unix1) 0x5855 Short tag for this extra block type ("UX") - TSize Short total data size for this block - AcTime Long time of last access (GMT/UTC) - ModTime Long time of last modification (GMT/UTC) - - The file access and modification times are in standard Unix signed- - long format, indicating the number of seconds since 1 January 1970 - 00:00:00. The times are relative to Coordinated Universal Time - (UTC), also sometimes referred to as Greenwich Mean Time (GMT). To - convert to local time, the software must know the local timezone - offset from UTC/GMT. The modification time may be used by non-Unix - systems to support inter-timezone freshening and updating of zip - archives. - - The local-header extra block may optionally contain UID and GID - info for the file. The local-header TSize value is the only - indication of this. Note that Unix UIDs and GIDs are usually - specific to a particular machine, and they generally require root - access to restore. - - This extra field type is obsolete, but it has been in use since - mid-1994. Therefore future archiving software should continue to - support it. Some guidelines: - - An archive member should either contain the old "Unix1" - extra field block or the new extra field types "time" and/or - "Unix2". - - If both the old "Unix1" block type and one or both of the new - block types "time" and "Unix2" are found, the "Unix1" block - should be considered invalid and ignored. - - Unarchiving software should recognize both old and new extra - field block types, but the info from new types overrides the - old "Unix1" field. - - Archiving software should recognize "Unix1" extra fields for - timestamp comparison but never create it for updated, freshened - or new archive members. When copying existing members to a new - archive, any "Unix1" extra field blocks should be converted to - the new "time" and/or "Unix2" types. - - - -Info-ZIP Unix Extra Field (type 2): - ================================== - - The following is the layout of the new Info-ZIP extra block for - Unix. (Last Revision 19960922) - - Local-header version: - - Value Size Description - ----- ---- ----------- - (Unix2) 0x7855 Short tag for this extra block type ("Ux") - TSize Short total data size for this block (4) - UID Short Unix user ID - GID Short Unix group ID - - Central-header version: - - Value Size Description - ----- ---- ----------- - (Unix2) 0x7855 Short tag for this extra block type ("Ux") - TSize Short total data size for this block (0) - - The data size of the central-header version is zero; it is used - solely as a flag that UID/GID info is present in the local-header - extra field. If additional fields are ever added to the local - version, the central version may be extended to indicate this. - - Note that Unix UIDs and GIDs are usually specific to a particular - machine, and they generally require root access to restore. - - - -ASi Unix Extra Field: - ==================== - - The following is the layout of the ASi extra block for Unix. The - local-header and central-header versions are identical. - (Last Revision 19960916) - - Value Size Description - ----- ---- ----------- - (Unix3) 0x756e Short tag for this extra block type ("nu") - TSize Short total data size for this block - CRC Long CRC-32 of the remaining data - Mode Short file permissions - SizDev Long symlink'd size OR major/minor dev num - UID Short user ID - GID Short group ID - (var.) variable symbolic link filename - - Mode is the standard Unix st_mode field from struct stat, containing - user/group/other permissions, setuid/setgid and symlink info, etc. - - If Mode indicates that this file is a symbolic link, SizDev is the - size of the file to which the link points. Otherwise, if the file - is a device, SizDev contains the standard Unix st_rdev field from - struct stat (includes the major and minor numbers of the device). - SizDev is undefined in other cases. - - If Mode indicates that the file is a symbolic link, the final field - will be the name of the file to which the link points. The file- - name length can be inferred from TSize. - - [Note that TSize may incorrectly refer to the data size not counting - the CRC; i.e., it may be four bytes too small.] - - - -BeOS Extra Field: - ================ - - The following is the layout of the file-attributes extra block for - BeOS. (Last Revision 19970531) - - Local-header version: - - Value Size Description - ----- ---- ----------- - (BeOS) 0x6542 Short tag for this extra block type ("Be") - TSize Short total data size for this block - BSize Long uncompressed file attribute data size - Flags Byte info bits - (CType) Short compression type - (CRC) Long CRC value for uncompressed file attribs - Attribs variable file attribute data - - Central-header version: - - Value Size Description - ----- ---- ----------- - (BeOS) 0x6542 Short tag for this extra block type ("Be") - TSize Short total data size for this block (5) - BSize Long size of uncompr. local EF block data - Flags Byte info bits - - The least significant bit of Flags in both headers indicates whether - the LOCAL extra field is uncompressed (and therefore whether CType - and CRC are omitted): - - bit 0 if set, Attribs is uncompressed (no CType, CRC) - bits 1-7 reserved; if set, assume error or unknown data - - Currently the only supported compression types are deflated (type 8) - and stored (type 0); the latter is not used by Info-ZIP's Zip but is - supported by UnZip. - - Attribs is a BeOS-specific block of data in big-endian format with - the following structure (if compressed, uncompress it first): - - Value Size Description - ----- ---- ----------- - Name variable attribute name (null-terminated string) - Type Long attribute type (32-bit unsigned integer) - Size Long Long data size for this sub-block (64 bits) - Data variable attribute data - - The attribute structure is repeated for every attribute. The Data - field may contain anything--text, flags, bitmaps, etc. - - - -AtheOS Extra Field: - ================== - - The following is the layout of the file-attributes extra block for - AtheOS. This field is a very close spin-off from the BeOS e.f. - The only differences are: - - a new extra field signature - - numeric field in the attributes data are stored in little-endian - format ("i386" was initial hardware for AtheOS) - (Last Revision 20040908) - - Local-header version: - - Value Size Description - ----- ---- ----------- - (AtheOS) 0x7441 Short tag for this extra block type ("At") - TSize Short total data size for this block - BSize Long uncompressed file attribute data size - Flags Byte info bits - (CType) Short compression type - (CRC) Long CRC value for uncompressed file attribs - Attribs variable file attribute data - - Central-header version: - - Value Size Description - ----- ---- ----------- - (AtheOS) 0x7441 Short tag for this extra block type ("At") - TSize Short total data size for this block (5) - BSize Long size of uncompr. local EF block data - Flags Byte info bits - - The least significant bit of Flags in both headers indicates whether - the LOCAL extra field is uncompressed (and therefore whether CType - and CRC are omitted): - - bit 0 if set, Attribs is uncompressed (no CType, CRC) - bits 1-7 reserved; if set, assume error or unknown data - - Currently the only supported compression types are deflated (type 8) - and stored (type 0); the latter is not used by Info-ZIP's Zip but is - supported by UnZip. - - Attribs is a AtheOS-specific block of data in little-endian format - with the following structure (if compressed, uncompress it first): - - Value Size Description - ----- ---- ----------- - Name variable attribute name (null-terminated string) - Type Long attribute type (32-bit unsigned integer) - Size Long Long data size for this sub-block (64 bits) - Data variable attribute data - - The attribute structure is repeated for every attribute. The Data - field may contain anything--text, flags, bitmaps, etc. - - - -SMS/QDOS Extra Field: - ==================== - - The following is the layout of the file-attributes extra block for - SMS/QDOS. The local-header and central-header versions are identical. - (Last Revision 19960929) - - Value Size Description - ----- ---- ----------- - (QDOS) 0xfb4a Short tag for this extra block type - TSize Short total data size for this block - LongID Long extra-field signature - (ExtraID) Long additional signature/flag bytes - QDirect 64 bytes qdirect structure - - LongID may be "QZHD" or "QDOS". In the latter case, ExtraID will - be present. Its first three bytes are "02\0"; the last byte is - currently undefined. - - QDirect contains the file's uncompressed directory info (qdirect - struct). Its elements are in native (big-endian) format: - - d_length beLong file length - d_access byte file access type - d_type byte file type - d_datalen beLong data length - d_reserved beLong unused - d_szname beShort size of filename - d_name 36 bytes filename - d_update beLong time of last update - d_refdate beLong file version number - d_backup beLong time of last backup (archive date) - - - -AOS/VS Extra Field: - ================== - - The following is the layout of the extra block for Data General - AOS/VS. The local-header and central-header versions are identical. - (Last Revision 19961125) - - Value Size Description - ----- ---- ----------- - (AOSVS) 0x5356 Short tag for this extra block type ("VS") - TSize Short total data size for this block - "FCI\0" Long extra-field signature - Version Byte version of AOS/VS extra block (10 = 1.0) - Fstat variable fstat packet - AclBuf variable raw ACL data ($MXACL bytes) - - Fstat contains the file's uncompressed fstat packet, which is one of - the following: - - normal fstat packet (P_FSTAT struct) - DIR/CPD fstat packet (P_FSTAT_DIR struct) - unit (device) fstat packet (P_FSTAT_UNIT struct) - IPC file fstat packet (P_FSTAT_IPC struct) - - AclBuf contains the raw ACL data; its length is $MXACL. - - - -Tandem NSK Extra Field: - ====================== - - The following is the layout of the file-attributes extra block for - Tandem NSK. The local-header and central-header versions are - identical. (Last Revision 19981221) - - Value Size Description - ----- ---- ----------- - (TA) 0x4154 Short tag for this extra block type ("TA") - TSize Short total data size for this block (20) - NSKattrs 20 Bytes NSK attributes - - - -THEOS Extra Field: - ================= - - The following is the layout of the file-attributes extra block for - Theos. The local-header and central-header versions are identical. - (Last Revision 19990206) - - Value Size Description - ----- ---- ----------- - (Theos) 0x6854 Short 'Th' signature - size Short size of extra block - flags Byte reserved for future use - filesize Long file size - fileorg Byte type of file (see below) - keylen Short key length for indexed and keyed files, - data segment size for 16 bits programs - reclen Short record length for indexed,keyed and direct, - text segment size for 16 bits programs - filegrow Byte growing factor for indexed,keyed and direct - protect Byte protections (see below) - reserved Short reserved for future use - - File types - ========== - - 0x80 library (keyed access list of files) - 0x40 directory - 0x10 stream file - 0x08 direct file - 0x04 keyed file - 0x02 indexed file - 0x0e reserved - 0x01 16 bits real mode program (obsolete) - 0x21 16 bits protected mode program - 0x41 32 bits protected mode program - - Protection codes - ================ - - User protection - --------------- - 0x01 non readable - 0x02 non writable - 0x04 non executable - 0x08 non erasable - - Other protection - ---------------- - 0x10 non readable - 0x20 non writable - 0x40 non executable Theos before 4.0 - 0x40 modified Theos 4.x - 0x80 not hidden - - - -THEOS old inofficial Extra Field: - ================================ - - The following is the layout of an inoffical former version of a - Theos file-attributes extra blocks. This layout was never published - and is no longer created. However, UnZip can optionally support it - when compiling with the option flag OLD_THEOS_EXTRA defined. - Both the local-header and central-header versions are identical. - (Last Revision 19990206) - - Value Size Description - ----- ---- ----------- - (THS0) 0x4854 Short 'TH' signature - size Short size of extra block - flags Short reserved for future use - filesize Long file size - reclen Short record length for indexed,keyed and direct, - text segment size for 16 bits programs - keylen Short key length for indexed and keyed files, - data segment size for 16 bits programs - filegrow Byte growing factor for indexed,keyed and direct - reserved 3 Bytes reserved for future use - - - -FWKCS MD5 Extra Field (0x4b46): - ============================== - - The FWKCS Contents_Signature System, used in automatically - identifying files independent of filename, optionally adds - and uses an extra field to support the rapid creation of - an enhanced contents_signature. - There is no local-header version; the following applies - only to the central header. (Last Revision 19961207) - - Central-header version: - - Value Size Description - ----- ---- ----------- - (MD5) 0x4b46 Short tag for this extra block type ("FK") - TSize Short total data size for this block (19) - "MD5" 3 bytes extra-field signature - MD5hash 16 bytes 128-bit MD5 hash of uncompressed data - (low byte first) - - When FWKCS revises a .ZIP file central directory to add - this extra field for a file, it also replaces the - central directory entry for that file's uncompressed - file length with a measured value. - - FWKCS provides an option to strip this extra field, if - present, from a .ZIP file central directory. In adding - this extra field, FWKCS preserves .ZIP file Authenticity - Verification; if stripping this extra field, FWKCS - preserves all versions of AV through PKZIP version 2.04g. - - FWKCS, and FWKCS Contents_Signature System, are - trademarks of Frederick W. Kantor. - - (1) R. Rivest, RFC1321.TXT, MIT Laboratory for Computer - Science and RSA Data Security, Inc., April 1992. - ll.76-77: "The MD5 algorithm is being placed in the - public domain for review and possible adoption as a - standard." - - - file comment: (Variable) - - The comment for this file. - - number of this disk: (2 bytes) - - The number of this disk, which contains central - directory end record. If an archive is in zip64 format - and the value in this field is 0xFFFF, the size will - be in the corresponding 4 byte zip64 end of central - directory field. - - number of the disk with the start of the central directory: (2 bytes) - - The number of the disk on which the central - directory starts. If an archive is in zip64 format - and the value in this field is 0xFFFF, the size will - be in the corresponding 4 byte zip64 end of central - directory field. - - total number of entries in the central dir on this disk: (2 bytes) - - The number of central directory entries on this disk. - If an archive is in zip64 format and the value in - this field is 0xFFFF, the size will be in the - corresponding 8 byte zip64 end of central - directory field. - - total number of entries in the central dir: (2 bytes) - - The total number of files in the .ZIP file. If an - archive is in zip64 format and the value in this field - is 0xFFFF, the size will be in the corresponding 8 byte - zip64 end of central directory field. - - size of the central directory: (4 bytes) - - The size (in bytes) of the entire central directory. - If an archive is in zip64 format and the value in - this field is 0xFFFFFFFF, the size will be in the - corresponding 8 byte zip64 end of central - directory field. - - offset of start of central directory with respect to - the starting disk number: (4 bytes) - - Offset of the start of the central directory on the - disk on which the central directory starts. If an - archive is in zip64 format and the value in this - field is 0xFFFFFFFF, the size will be in the - corresponding 8 byte zip64 end of central - directory field. - - .ZIP file comment length: (2 bytes) - - The length of the comment for this .ZIP file. - - .ZIP file comment: (Variable) - - The comment for this .ZIP file. ZIP file comment data - is stored unsecured. No encryption or data authentication - is applied to this area at this time. Confidential information - should not be stored in this section. - - zip64 extensible data sector (variable size) - - (currently reserved for use by PKWARE) - - - K. General notes: - - 1) All fields unless otherwise noted are unsigned and stored - in Intel low-byte:high-byte, low-word:high-word order. - - 2) String fields are not null terminated, since the - length is given explicitly. - - 3) Local headers should not span disk boundaries. Also, even - though the central directory can span disk boundaries, no - single record in the central directory should be split - across disks. - - 4) The entries in the central directory may not necessarily - be in the same order that files appear in the .ZIP file. - - 5) Spanned/Split archives created using PKZIP for Windows - (V2.50 or greater), PKZIP Command Line (V2.50 or greater), - or PKZIP Explorer will include a special spanning - signature as the first 4 bytes of the first segment of - the archive. This signature (0x08074b50) will be - followed immediately by the local header signature for - the first file in the archive. A special spanning - marker may also appear in spanned/split archives if the - spanning or splitting process starts but only requires - one segment. In this case the 0x08074b50 signature - will be replaced with the temporary spanning marker - signature of 0x30304b50. Spanned/split archives - created with this special signature are compatible with - all versions of PKZIP from PKWARE. Split archives can - only be uncompressed by other versions of PKZIP that - know how to create a split archive. - - 6) If one of the fields in the end of central directory - record is too small to hold required data, the field - should be set to -1 (0xFFFF or 0xFFFFFFFF) and the - Zip64 format record should be created. - - 7) The end of central directory record and the - Zip64 end of central directory locator record must - reside on the same disk when splitting or spanning - an archive. - -V. UnShrinking - Method 1 -------------------------- - -Shrinking is a Dynamic Ziv-Lempel-Welch compression algorithm -with partial clearing. The initial code size is 9 bits, and -the maximum code size is 13 bits. Shrinking differs from -conventional Dynamic Ziv-Lempel-Welch implementations in several -respects: - -1) The code size is controlled by the compressor, and is not - automatically increased when codes larger than the current - code size are created (but not necessarily used). When - the decompressor encounters the code sequence 256 - (decimal) followed by 1, it should increase the code size - read from the input stream to the next bit size. No - blocking of the codes is performed, so the next code at - the increased size should be read from the input stream - immediately after where the previous code at the smaller - bit size was read. Again, the decompressor should not - increase the code size used until the sequence 256,1 is - encountered. - -2) When the table becomes full, total clearing is not - performed. Rather, when the compressor emits the code - sequence 256,2 (decimal), the decompressor should clear - all leaf nodes from the Ziv-Lempel tree, and continue to - use the current code size. The nodes that are cleared - from the Ziv-Lempel tree are then re-used, with the lowest - code value re-used first, and the highest code value - re-used last. The compressor can emit the sequence 256,2 - at any time. - - -VI. Expanding - Methods 2-5 ---------------------------- - -The Reducing algorithm is actually a combination of two -distinct algorithms. The first algorithm compresses repeated -byte sequences, and the second algorithm takes the compressed -stream from the first algorithm and applies a probabilistic -compression method. - -The probabilistic compression stores an array of 'follower -sets' S(j), for j=0 to 255, corresponding to each possible -ASCII character. Each set contains between 0 and 32 -characters, to be denoted as S(j)[0],...,S(j)[m], where m<32. -The sets are stored at the beginning of the data area for a -Reduced file, in reverse order, with S(255) first, and S(0) -last. - -The sets are encoded as { N(j), S(j)[0],...,S(j)[N(j)-1] }, -where N(j) is the size of set S(j). N(j) can be 0, in which -case the follower set for S(j) is empty. Each N(j) value is -encoded in 6 bits, followed by N(j) eight bit character values -corresponding to S(j)[0] to S(j)[N(j)-1] respectively. If -N(j) is 0, then no values for S(j) are stored, and the value -for N(j-1) immediately follows. - -Immediately after the follower sets, is the compressed data -stream. The compressed data stream can be interpreted for the -probabilistic decompression as follows: - - -let Last-Character <- 0. -loop until done - if the follower set S(Last-Character) is empty then - read 8 bits from the input stream, and copy this - value to the output stream. - otherwise if the follower set S(Last-Character) is non-empty then - read 1 bit from the input stream. - if this bit is not zero then - read 8 bits from the input stream, and copy this - value to the output stream. - otherwise if this bit is zero then - read B(N(Last-Character)) bits from the input - stream, and assign this value to I. - Copy the value of S(Last-Character)[I] to the - output stream. - - assign the last value placed on the output stream to - Last-Character. -end loop - - -B(N(j)) is defined as the minimal number of bits required to -encode the value N(j)-1. - - -The decompressed stream from above can then be expanded to -re-create the original file as follows: - - -let State <- 0. - -loop until done - read 8 bits from the input stream into C. - case State of - 0: if C is not equal to DLE (144 decimal) then - copy C to the output stream. - otherwise if C is equal to DLE then - let State <- 1. - - 1: if C is non-zero then - let V <- C. - let Len <- L(V) - let State <- F(Len). - otherwise if C is zero then - copy the value 144 (decimal) to the output stream. - let State <- 0 - - 2: let Len <- Len + C - let State <- 3. - - 3: move backwards D(V,C) bytes in the output stream - (if this position is before the start of the output - stream, then assume that all the data before the - start of the output stream is filled with zeros). - copy Len+3 bytes from this position to the output stream. - let State <- 0. - end case -end loop - - -The functions F,L, and D are dependent on the 'compression -factor', 1 through 4, and are defined as follows: - -For compression factor 1: - L(X) equals the lower 7 bits of X. - F(X) equals 2 if X equals 127 otherwise F(X) equals 3. - D(X,Y) equals the (upper 1 bit of X) * 256 + Y + 1. -For compression factor 2: - L(X) equals the lower 6 bits of X. - F(X) equals 2 if X equals 63 otherwise F(X) equals 3. - D(X,Y) equals the (upper 2 bits of X) * 256 + Y + 1. -For compression factor 3: - L(X) equals the lower 5 bits of X. - F(X) equals 2 if X equals 31 otherwise F(X) equals 3. - D(X,Y) equals the (upper 3 bits of X) * 256 + Y + 1. -For compression factor 4: - L(X) equals the lower 4 bits of X. - F(X) equals 2 if X equals 15 otherwise F(X) equals 3. - D(X,Y) equals the (upper 4 bits of X) * 256 + Y + 1. - - -VII. Imploding - Method 6 -------------------------- - -The Imploding algorithm is actually a combination of two distinct -algorithms. The first algorithm compresses repeated byte -sequences using a sliding dictionary. The second algorithm is -used to compress the encoding of the sliding dictionary output, -using multiple Shannon-Fano trees. - -The Imploding algorithm can use a 4K or 8K sliding dictionary -size. The dictionary size used can be determined by bit 1 in the -general purpose flag word; a 0 bit indicates a 4K dictionary -while a 1 bit indicates an 8K dictionary. - -The Shannon-Fano trees are stored at the start of the compressed -file. The number of trees stored is defined by bit 2 in the -general purpose flag word; a 0 bit indicates two trees stored, a -1 bit indicates three trees are stored. If 3 trees are stored, -the first Shannon-Fano tree represents the encoding of the -Literal characters, the second tree represents the encoding of -the Length information, the third represents the encoding of the -Distance information. When 2 Shannon-Fano trees are stored, the -Length tree is stored first, followed by the Distance tree. - -The Literal Shannon-Fano tree, if present is used to represent -the entire ASCII character set, and contains 256 values. This -tree is used to compress any data not compressed by the sliding -dictionary algorithm. When this tree is present, the Minimum -Match Length for the sliding dictionary is 3. If this tree is -not present, the Minimum Match Length is 2. - -The Length Shannon-Fano tree is used to compress the Length part -of the (length,distance) pairs from the sliding dictionary -output. The Length tree contains 64 values, ranging from the -Minimum Match Length, to 63 plus the Minimum Match Length. - -The Distance Shannon-Fano tree is used to compress the Distance -part of the (length,distance) pairs from the sliding dictionary -output. The Distance tree contains 64 values, ranging from 0 to -63, representing the upper 6 bits of the distance value. The -distance values themselves will be between 0 and the sliding -dictionary size, either 4K or 8K. - -The Shannon-Fano trees themselves are stored in a compressed -format. The first byte of the tree data represents the number of -bytes of data representing the (compressed) Shannon-Fano tree -minus 1. The remaining bytes represent the Shannon-Fano tree -data encoded as: - - High 4 bits: Number of values at this bit length + 1. (1 - 16) - Low 4 bits: Bit Length needed to represent value + 1. (1 - 16) - -The Shannon-Fano codes can be constructed from the bit lengths -using the following algorithm: - -1) Sort the Bit Lengths in ascending order, while retaining the - order of the original lengths stored in the file. - -2) Generate the Shannon-Fano trees: - - Code <- 0 - CodeIncrement <- 0 - LastBitLength <- 0 - i <- number of Shannon-Fano codes - 1 (either 255 or 63) - - loop while i >= 0 - Code = Code + CodeIncrement - if BitLength(i) <> LastBitLength then - LastBitLength=BitLength(i) - CodeIncrement = 1 shifted left (16 - LastBitLength) - ShannonCode(i) = Code - i <- i - 1 - end loop - - -3) Reverse the order of all the bits in the above ShannonCode() - vector, so that the most significant bit becomes the least - significant bit. For example, the value 0x1234 (hex) would - become 0x2C48 (hex). - -4) Restore the order of Shannon-Fano codes as originally stored - within the file. - -Example: - - This example will show the encoding of a Shannon-Fano tree - of size 8. Notice that the actual Shannon-Fano trees used - for Imploding are either 64 or 256 entries in size. - -Example: 0x02, 0x42, 0x01, 0x13 - - The first byte indicates 3 values in this table. Decoding the - bytes: - 0x42 = 5 codes of 3 bits long - 0x01 = 1 code of 2 bits long - 0x13 = 2 codes of 4 bits long - - This would generate the original bit length array of: - (3, 3, 3, 3, 3, 2, 4, 4) - - There are 8 codes in this table for the values 0 thru 7. Using - the algorithm to obtain the Shannon-Fano codes produces: - - Reversed Order Original -Val Sorted Constructed Code Value Restored Length ---- ------ ----------------- -------- -------- ------ -0: 2 1100000000000000 11 101 3 -1: 3 1010000000000000 101 001 3 -2: 3 1000000000000000 001 110 3 -3: 3 0110000000000000 110 010 3 -4: 3 0100000000000000 010 100 3 -5: 3 0010000000000000 100 11 2 -6: 4 0001000000000000 1000 1000 4 -7: 4 0000000000000000 0000 0000 4 - - -The values in the Val, Order Restored and Original Length columns -now represent the Shannon-Fano encoding tree that can be used for -decoding the Shannon-Fano encoded data. How to parse the -variable length Shannon-Fano values from the data stream is beyond -the scope of this document. (See the references listed at the end of -this document for more information.) However, traditional decoding -schemes used for Huffman variable length decoding, such as the -Greenlaw algorithm, can be successfully applied. - -The compressed data stream begins immediately after the -compressed Shannon-Fano data. The compressed data stream can be -interpreted as follows: - -loop until done - read 1 bit from input stream. - - if this bit is non-zero then (encoded data is literal data) - if Literal Shannon-Fano tree is present - read and decode character using Literal Shannon-Fano tree. - otherwise - read 8 bits from input stream. - copy character to the output stream. - otherwise (encoded data is sliding dictionary match) - if 8K dictionary size - read 7 bits for offset Distance (lower 7 bits of offset). - otherwise - read 6 bits for offset Distance (lower 6 bits of offset). - - using the Distance Shannon-Fano tree, read and decode the - upper 6 bits of the Distance value. - - using the Length Shannon-Fano tree, read and decode - the Length value. - - Length <- Length + Minimum Match Length - - if Length = 63 + Minimum Match Length - read 8 bits from the input stream, - add this value to Length. - - move backwards Distance+1 bytes in the output stream, and - copy Length characters from this position to the output - stream. (if this position is before the start of the output - stream, then assume that all the data before the start of - the output stream is filled with zeros). -end loop - -VIII. Tokenizing - Method 7 ---------------------------- - -This method is not used by PKZIP. - -IX. Deflating - Method 8 ------------------------- - -The Deflate algorithm is similar to the Implode algorithm using -a sliding dictionary of up to 32K with secondary compression -from Huffman/Shannon-Fano codes. - -The compressed data is stored in blocks with a header describing -the block and the Huffman codes used in the data block. The header -format is as follows: - - Bit 0: Last Block bit This bit is set to 1 if this is the last - compressed block in the data. - Bits 1-2: Block type - 00 (0) - Block is stored - All stored data is byte aligned. - Skip bits until next byte, then next word = block - length, followed by the ones compliment of the block - length word. Remaining data in block is the stored - data. - - 01 (1) - Use fixed Huffman codes for literal and distance codes. - Lit Code Bits Dist Code Bits - --------- ---- --------- ---- - 0 - 143 8 0 - 31 5 - 144 - 255 9 - 256 - 279 7 - 280 - 287 8 - - Literal codes 286-287 and distance codes 30-31 are - never used but participate in the huffman construction. - - 10 (2) - Dynamic Huffman codes. (See expanding Huffman codes) - - 11 (3) - Reserved - Flag a "Error in compressed data" if seen. - -Expanding Huffman Codes ------------------------ -If the data block is stored with dynamic Huffman codes, the Huffman -codes are sent in the following compressed format: - - 5 Bits: # of Literal codes sent - 257 (257 - 286) - All other codes are never sent. - 5 Bits: # of Dist codes - 1 (1 - 32) - 4 Bits: # of Bit Length codes - 4 (4 - 19) - -The Huffman codes are sent as bit lengths and the codes are built as -described in the implode algorithm. The bit lengths themselves are -compressed with Huffman codes. There are 19 bit length codes: - - 0 - 15: Represent bit lengths of 0 - 15 - 16: Copy the previous bit length 3 - 6 times. - The next 2 bits indicate repeat length (0 = 3, ... ,3 = 6) - Example: Codes 8, 16 (+2 bits 11), 16 (+2 bits 10) will - expand to 12 bit lengths of 8 (1 + 6 + 5) - 17: Repeat a bit length of 0 for 3 - 10 times. (3 bits of length) - 18: Repeat a bit length of 0 for 11 - 138 times (7 bits of length) - -The lengths of the bit length codes are sent packed 3 bits per value -(0 - 7) in the following order: - - 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 - -The Huffman codes should be built as described in the Implode algorithm -except codes are assigned starting at the shortest bit length, i.e. the -shortest code should be all 0's rather than all 1's. Also, codes with -a bit length of zero do not participate in the tree construction. The -codes are then used to decode the bit lengths for the literal and -distance tables. - -The bit lengths for the literal tables are sent first with the number -of entries sent described by the 5 bits sent earlier. There are up -to 286 literal characters; the first 256 represent the respective 8 -bit character, code 256 represents the End-Of-Block code, the remaining -29 codes represent copy lengths of 3 thru 258. There are up to 30 -distance codes representing distances from 1 thru 32k as described -below. - - Length Codes - ------------ - Extra Extra Extra Extra - Code Bits Length Code Bits Lengths Code Bits Lengths Code Bits Length(s) - ---- ---- ------ ---- ---- ------- ---- ---- ------- ---- ---- --------- - 257 0 3 265 1 11,12 273 3 35-42 281 5 131-162 - 258 0 4 266 1 13,14 274 3 43-50 282 5 163-194 - 259 0 5 267 1 15,16 275 3 51-58 283 5 195-226 - 260 0 6 268 1 17,18 276 3 59-66 284 5 227-258 - 261 0 7 269 2 19-22 277 4 67-82 285 0 258 - 262 0 8 270 2 23-26 278 4 83-98 - 263 0 9 271 2 27-30 279 4 99-114 - 264 0 10 272 2 31-34 280 4 115-130 - - Distance Codes - -------------- - Extra Extra Extra Extra - Code Bits Dist Code Bits Dist Code Bits Distance Code Bits Distance - ---- ---- ---- ---- ---- ------ ---- ---- -------- ---- ---- -------- - 0 0 1 8 3 17-24 16 7 257-384 24 11 4097-6144 - 1 0 2 9 3 25-32 17 7 385-512 25 11 6145-8192 - 2 0 3 10 4 33-48 18 8 513-768 26 12 8193-12288 - 3 0 4 11 4 49-64 19 8 769-1024 27 12 12289-16384 - 4 1 5,6 12 5 65-96 20 9 1025-1536 28 13 16385-24576 - 5 1 7,8 13 5 97-128 21 9 1537-2048 29 13 24577-32768 - 6 2 9-12 14 6 129-192 22 10 2049-3072 - 7 2 13-16 15 6 193-256 23 10 3073-4096 - -The compressed data stream begins immediately after the -compressed header data. The compressed data stream can be -interpreted as follows: - -do - read header from input stream. - - if stored block - skip bits until byte aligned - read count and 1's compliment of count - copy count bytes data block - otherwise - loop until end of block code sent - decode literal character from input stream - if literal < 256 - copy character to the output stream - otherwise - if literal = end of block - break from loop - otherwise - decode distance from input stream - - move backwards distance bytes in the output stream, and - copy length characters from this position to the output - stream. - end loop -while not last block - -if data descriptor exists - skip bits until byte aligned - check data descriptor signature - read crc and sizes -endif - -X. Enhanced Deflating - Method 9 --------------------------------- - -The Enhanced Deflating algorithm is similar to Deflate but -uses a sliding dictionary of up to 64K. Deflate64(tm) is supported -by the Deflate extractor. - -[This description is inofficial. It has been deduced by Info-ZIP from -close inspection of PKZIP 4.x Deflate64(tm) compressed output.] - -The Deflate64 algorithm is almost identical to the normal Deflate algorithm. -Differences are: - -- The sliding window size is 64k. - -- The previously unused distance codes 30 and 31 are now used to describe - match distances from 32k-48k and 48k-64k. - Extra - Code Bits Distance - ---- ---- ----------- - .. .. ... - 29 13 24577-32768 - 30 14 32769-49152 - 31 14 49153-65536 - -- The semantics of the "maximum match length" code #258 has been changed to - allow the specification of arbitrary large match lengths (up to 64k). - Extra - Code Bits Lengths - ---- ---- ------ - ... .. ... - 284 5 227-258 - 285 16 3-65538 - -Whereas the first two modifications fit into the framework of Deflate, -this last change breaks compatibility with Deflate method 8. Thus, a -Deflate64 decompressor cannot decode normal deflated data. - -XI. BZIP2 - Method 12 ---------------------- - -BZIP2 is an open-source data compression algorithm developed by -Julian Seward. Information and source code for this algorithm -can be found on the internet. - - -XII. Traditional PKWARE Encryption ----------------------------------- - -The following information discusses the decryption steps -required to support traditional PKWARE encryption. This -form of encryption is considered weak by today's standards -and its use is recommended only for situations with -low security needs or for compatibility with older .ZIP -applications. - -XIII. Decryption ----------------- - -The encryption used in PKZIP was generously supplied by Roger -Schlafly. PKWARE is grateful to Mr. Schlafly for his expert -help and advice in the field of data encryption. - -PKZIP encrypts the compressed data stream. Encrypted files must -be decrypted before they can be extracted. - -Each encrypted file has an extra 12 bytes stored at the start of -the data area defining the encryption header for that file. The -encryption header is originally set to random values, and then -itself encrypted, using three, 32-bit keys. The key values are -initialized using the supplied encryption password. After each byte -is encrypted, the keys are then updated using pseudo-random number -generation techniques in combination with the same CRC-32 algorithm -used in PKZIP and described elsewhere in this document. - -The following is the basic steps required to decrypt a file: - -1) Initialize the three 32-bit keys with the password. -2) Read and decrypt the 12-byte encryption header, further - initializing the encryption keys. -3) Read and decrypt the compressed data stream using the - encryption keys. - - -Step 1 - Initializing the encryption keys ------------------------------------------ - -Key(0) <- 305419896 -Key(1) <- 591751049 -Key(2) <- 878082192 - -loop for i <- 0 to length(password)-1 - update_keys(password(i)) -end loop - - -Where update_keys() is defined as: - - -update_keys(char): - Key(0) <- crc32(key(0),char) - Key(1) <- Key(1) + (Key(0) & 000000ffH) - Key(1) <- Key(1) * 134775813 + 1 - Key(2) <- crc32(key(2),key(1) >> 24) -end update_keys - - -Where crc32(old_crc,char) is a routine that given a CRC value and a -character, returns an updated CRC value after applying the CRC-32 -algorithm described elsewhere in this document. - - -Step 2 - Decrypting the encryption header ------------------------------------------ - -The purpose of this step is to further initialize the encryption -keys, based on random data, to render a plaintext attack on the -data ineffective. - - -Read the 12-byte encryption header into Buffer, in locations -Buffer(0) thru Buffer(11). - -loop for i <- 0 to 11 - C <- buffer(i) ^ decrypt_byte() - update_keys(C) - buffer(i) <- C -end loop - - -Where decrypt_byte() is defined as: - - -unsigned char decrypt_byte() - local unsigned short temp - temp <- Key(2) | 2 - decrypt_byte <- (temp * (temp ^ 1)) >> 8 -end decrypt_byte - - -After the header is decrypted, the last 1 or 2 bytes in Buffer -should be the high-order word/byte of the CRC for the file being -decrypted, stored in Intel low-byte/high-byte order, or the high-order -byte of the file time if bit 3 of the general purpose bit flag is set. -Versions of PKZIP prior to 2.0 used a 2 byte CRC check; a 1 byte CRC check is -used on versions after 2.0. This can be used to test if the password -supplied is correct or not. - - -Step 3 - Decrypting the compressed data stream ----------------------------------------------- - -The compressed data stream can be decrypted as follows: - - -loop until done - read a character into C - Temp <- C ^ decrypt_byte() - update_keys(temp) - output Temp -end loop - - -XIV. Strong Encryption Specification (EFS) ------------------------------------------- - -Version 5.x of this specification introduced support for strong -encryption algorithms. These algorithms can be used with either -a password or an X.509v3 digital certificate to encrypt each file. -This format specification supports either password or certificate -based encryption to meet the security needs of today, to enable -interoperability between users within both PKI and non-PKI -environments, and to ensure interoperability between different -computing platforms that are running a ZIP program. - -Password based encryption is the most common form of encryption -people are familiar with. However, inherent weaknesses with -passwords (e.g. susceptibility to dictionary/brute force attack) -as well as password management and support issues make certificate -based encryption a more secure and scalable option. Industry -efforts and support are defining and moving towards more advanced -security solutions built around X.509v3 digital certificates and -Public Key Infrastructures(PKI) because of the greater scalability, -administrative options, and more robust security over traditional -password-based encryption. - -Most standard encryption algorithms are supported with this -specification. Reference implementations for many of these -algorithms are available from either commercial or open source -distributors. Readily available cryptographic toolkits make -implementation of the encryption features straight-forward. -This document is not intended to provide a treatise on data -encryption principles or theory. Its purpose is to document the -data structures required for implementing interoperable data -encryption within the .ZIP format. It is strongly recommended that -you have a good understanding of data encryption before reading -further. - -The algorithms introduced in Version 5.0 of this specification -include: - - RC2 40 bit, 64 bit, and 128 bit - RC4 40 bit, 64 bit, and 128 bit - DES - 3DES 112 bit and 168 bit - -Version 5.1 adds support for the following: - - AES 128 bit, 192 bit, and 256 bit - -Version 6.1 introduces encryption data changes to support -interoperability with SmartCard and USB Token certificate storage -methods which do not support the OAEP strengthening standard. - -Version 6.2 introduces support for encrypting metadata by compressing -and encrypting the central directory data structure to reduce information -leakage. Information leakage can occur in legacy ZIP applications -through exposure of information about a file even though that file is -stored encrypted. The information exposed consists of file -characteristics stored within the records and fields defined by this -specification. This includes data such as a files name, its original -size, timestamp and CRC32 value. - -Central Directory Encryption provides greater protection against -information leakage by encrypting the Central Directory structure and -by masking key values that are replicated in the unencrypted Local -Header. ZIP compatible programs that cannot interpret an encrypted -Central Directory structure cannot rely on the data in the corresponding -Local Header for decompression information. - -Extra Field records that may contain information about a file that should -not be exposed should not be stored in the Local Header and should only -be written to the Central Directory where they can be encrypted. This -design currently does not support streaming. Information in the End of -Central Directory record, the ZIP64 End of Central Directory Locator, -and the ZIP64 End of Central Directory record are not encrypted. Access -to view data on files within a ZIP file with an encrypted Central Directory -requires the appropriate password or private key for decryption prior to -viewing any files, or any information about the files, in the archive. - -Older ZIP compatible programs not familiar with the Central Directory -Encryption feature will no longer be able to recognize the Central -Directory and may assume the ZIP file is corrupt. Programs that -attempt streaming access using Local Headers will see invalid -information for each file. Central Directory Encryption need not be -used for every ZIP file. Its use is recommended for greater security. -ZIP files not using Central Directory Encryption should operate as -in the past. - -The details of the strong encryption specification for certificates -remain under development as design and testing issues are worked out -for the range of algorithms, encryption methods, certificate processing -and cross-platform support necessary to meet the advanced security needs -of .ZIP file users today and in the future. - -This feature specification is intended to support basic encryption needs -of today, such as password support. However this specification is also -designed to lay the foundation for future advanced security needs. - -Encryption provides data confidentiality and privacy. It is -recommended that you combine X.509 digital signing with encryption -to add authentication and non-repudiation. - - -Single Password Symmetric Encryption Method: -------------------------------------------- - -The Single Password Symmetric Encryption Method using strong -encryption algorithms operates similarly to the traditional -PKWARE encryption defined in this format. Additional data -structures are added to support the processing needs of the -strong algorithms. - -The Strong Encryption data structures are: - -1. General Purpose Bits - Bits 0 and 6 of the General Purpose bit -flag in both local and central header records. Both bits set -indicates strong encryption. Bit 13, when set indicates the Central -Directory is encrypted and that selected fields in the Local Header -are masked to hide their actual value. - - -2. Extra Field 0x0017 in central header only. - - Fields to consider in this record are: - - Format - the data format identifier for this record. The only - value allowed at this time is the integer value 2. - - AlgId - integer identifier of the encryption algorithm from the - following range - - 0x6601 - DES - 0x6602 - RC2 (version needed to extract < 5.2) - 0x6603 - 3DES 168 - 0x6609 - 3DES 112 - 0x660E - AES 128 - 0x660F - AES 192 - 0x6610 - AES 256 - 0x6702 - RC2 (version needed to extract >= 5.2) - 0x6801 - RC4 - 0xFFFF - Unknown algorithm - - Bitlen - Explicit bit length of key - - 40 - 56 - 64 - 112 - 128 - 168 - 192 - 256 - - Flags - Processing flags needed for decryption - - 0x0001 - Password is required to decrypt - 0x0002 - Certificates only - 0x0003 - Password or certificate required to decrypt - - Values > 0x0003 reserved for certificate processing - - -3. Decryption header record preceeding compressed file data. - - -Decryption Header: - - Value Size Description - ----- ---- ----------- - IVSize 2 bytes Size of initialization vector (IV) - IVData IVSize Initialization vector for this file - Size 4 bytes Size of remaining decryption header data - Format 2 bytes Format definition for this record - AlgID 2 bytes Encryption algorithm identifier - Bitlen 2 bytes Bit length of encryption key - Flags 2 bytes Processing flags - ErdSize 2 bytes Size of Encrypted Random Data - ErdData ErdSize Encrypted Random Data - Reserved1 4 bytes Reserved certificate processing data - Reserved2 (var) Reserved for certificate processing data - VSize 2 bytes Size of password validation data - VData VSize-4 Password validation data - VCRC32 4 bytes Standard ZIP CRC32 of password validation data - - IVData - The size of the IV should match the algorithm block size. - The IVData can be completely random data. If the size of - the randomly generated data does not match the block size - it should be complemented with zero's or truncated as - necessary. If IVSize is 0, then IV = CRC32 + Uncompressed - File Size (as a 64 bit little-endian, unsigned integer value). - - Format - the data format identifier for this record. The only - value allowed at this time is the integer value 3. - - AlgId - integer identifier of the encryption algorithm from the - following range - - 0x6601 - DES - 0x6602 - RC2 (version needed to extract < 5.2) - 0x6603 - 3DES 168 - 0x6609 - 3DES 112 - 0x660E - AES 128 - 0x660F - AES 192 - 0x6610 - AES 256 - 0x6702 - RC2 (version needed to extract >= 5.2) - 0x6801 - RC4 - 0xFFFF - Unknown algorithm - - Bitlen - Explicit bit length of key - - 40 - 56 - 64 - 112 - 128 - 168 - 192 - 256 - - Flags - Processing flags needed for decryption - - 0x0001 - Password is required to decrypt - 0x0002 - Certificates only - 0x0003 - Password or certificate required to decrypt - - Values > 0x0003 reserved for certificate processing - - ErdData - Encrypted random data is used to generate a file - session key for encrypting each file. SHA1 is - used to calculate hash data used to derive keys. - File session keys are derived from a master session - key generated from the user-supplied password. - If the Flags field in the decryption header contains - the value 0x4000, then the ErdData field must be - decrypted using 3DES. - - Reserved1 - Reserved for certificate processing, if value is - zero, then Reserved2 data is absent. See the explanation - under the Certificate Processing Method for details on - this data structure. - - Reserved2 - If present, the size of the Reserved2 data structure - is located by skipping the first 4 bytes of this field - and using the next 2 bytes as the remaining size. See - the explanation under the Certificate Processing Method - for details on this data structure. - - VSize - This size value will always include the 4 bytes of the - VCRC32 data and will be greater than 4 bytes. - - VData - Random data for password validation. This data is VSize - in length and VSize must be a multiple of the encryption - block size. VCRC32 is a checksum value of VData. - VData and VCRC32 are stored encrypted and start the - stream of encrypted data for a file. - -4. Single Password Central Directory Encryption - -Central Directory Encryption is achieved within the .ZIP format by -encrypting the Central Directory structure. This encapsulates the metadata -most often used for processing .ZIP files. Additional metadata is stored for -redundancy in the Local Header for each file. The process of concealing -metadata by encrypting the Central Directory does not protect the data within -the Local Header. To avoid information leakage from the exposed metadata -in the Local Header, the fields containing information about a file are masked. - -Local Header: - -Masking replaces the true content of the fields for a file in the Local -Header with false information. When masked, the Local Header is not -suitable for streaming access and the options for data recovery of damaged -archives is reduced. Extra Data fields that may contain confidential -data should not be stored within the Local Header. The value set into -the Version needed to extract field should be the correct value needed to -extract the file without regard to Central Directory Encryption. The fields -within the Local Header targeted for masking when the Central Directory is -encrypted are: - - Field Name Mask Value - ------------------ --------------------------- - compression method 0 - last mod file time 0 - last mod file date 0 - crc-32 0 - compressed size 0 - uncompressed size 0 - file name (variable size) Base 16 value from the - range 1 - FFFFFFFFFFFFFFFF - represented as a string whose - size will be set into the - file name length field - -The Base 16 value assigned as a masked file name is simply a sequentially -incremented value for each file starting with 1 for the first file. -Modifications to a ZIP file may cause different values to be stored for -each file. For compatibility, the file name field in the Local Header -should never be left blank. As of Version 6.2 of this specification, -the Compression Method and Compressed Size fields are not yet masked. - -Encrypting the Central Directory: - -Encryption of the Central Directory does not include encryption of the -Central Directory Signature data, the ZIP64 End of Central Directory -record, the ZIP64 End of Central Directory Locator, or the End -of Central Directory record. The ZIP file comment data is never -encrypted. - -Before encrypting the Central Directory, it may optionally be compressed. -Compression is not required, but for storage efficiency it is assumed -this structure will be compressed before encrypting. Similarly, this -specification supports compressing the Central Directory without -requiring that it also be encrypted. Early implementations of this -feature will assume the encryption method applied to files matches the -encryption applied to the Central Directory. - -Encryption of the Central Directory is done in a manner similar to -that of file encryption. The encrypted data is preceded by a -decryption header. The decryption header is known as the Archive -Decryption Header. The fields of this record are identical to -the decryption header preceding each encrypted file. The location -of the Archive Decryption Header is determined by the value in the -Start of the Central Directory field in the ZIP64 End of Central -Directory record. When the Central Directory is encrypted, the -ZIP64 End of Central Directory record will always be present. - -The layout of the ZIP64 End of Central Directory record for all -versions starting with 6.2 of this specification will follow the -Version 2 format. The Version 2 format is as follows: - -The first 48 bytes will remain identical to that of Version 1. -The record signature for both Version 1 and Version 2 will be -0x06064b50. Immediately following the 48th byte, which identifies -the end of the field known as the Offset of Start of Central -Directory With Respect to the Starting Disk Number will begin the -new fields defining Version 2 of this record. - -New fields for Version 2: - -Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - Compression Method 2 bytes Method used to compress the - Central Directory - Compressed Size 8 bytes Size of the compressed data - Original Size 8 bytes Original uncompressed size - AlgId 2 bytes Encryption algorithm ID - BitLen 2 bytes Encryption key length - Flags 2 bytes Encryption flags - HashID 2 bytes Hash algorithm identifier - Hash Length 2 bytes Length of hash data - Hash Data (variable) Hash data - -The Compression Method accepts the same range of values as the -corresponding field in the Central Header. - -The Compressed Size and Original Size values will not include the -data of the Central Directory Signature which is compressed or -encrypted. - -The AlgId, BitLen, and Flags fields accept the same range of values -the corresponding fields within the 0x0017 record. - -Hash ID identifies the algorithm used to hash the Central Directory -data. This data does not have to be hashed, in which case the -values for both the HashID and Hash Length will be 0. Possible -values for HashID are: - - Value Algorithm - ------ --------- - 0x0000 none - 0x0001 CRC32 - 0x8003 MD5 - 0x8004 SHA1 - -When the Central Directory data is signed, the same hash algorithm -used to hash the Central Directory for signing should be used. -This is recommended for processing efficiency, however, it is -permissible for any of the above algorithms to be used independent -of the signing process. - -The Hash Data will contain the hash data for the Central Directory. -The length of this data will vary depending on the algorithm used. - -The Version Needed to Extract should be set to 62. - -The value for the Total Number of Entries on the Current Disk will -be 0. These records will no longer support random access when -encrypting the Central Directory. - -When the Central Directory is compressed and/or encrypted, the -End of Central Directory record will store the value 0xFFFFFFFF -as the value for the Total Number of Entries in the Central -Directory. The value stored in the Total Number of Entries in -the Central Directory on this Disk field will be 0. The actual -values will be stored in the equivalent fields of the ZIP64 -End of Central Directory record. - -Decrypting and decompressing the Central Directory is accomplished -in the same manner as decrypting and decompressing a file. - - -5. Useful Tips - -Strong Encryption is always applied to a file after compression. The -block oriented algorithms all operate in Cypher Block Chaining (CBC) -mode. The block size used for AES encryption is 16. All other block -algorithms use a block size of 8. Two ID's are defined for RC2 to -account for a discrepancy found in the implementation of the RC2 -algorithm in the cryptographic library on Windows XP SP1 and all -earlier versions of Windows. - -A pseudo-code representation of the encryption process is as follows: - -Password = GetUserPassword() -RD = Random() -ERD = Encrypt(RD,DeriveKey(SHA1(Password))) -For Each File - IV = Random() - VData = Random() - FileSessionKey = DeriveKey(SHA1(IV + RD)) - Encrypt(VData + VCRC32 + FileData,FileSessionKey) -Done - -The function names and parameter requirements will depend on -the choice of the cryptographic toolkit selected. Almost any -toolkit supporting the reference implementations for each -algorithm can be used. The RSA BSAFE(r), OpenSSL, and Microsoft -CryptoAPI libraries are all known to work well. - - -Certificate Processing Method: ------------------------------ - -The Certificate Processing Method for ZIP file encryption remains -under development. The information provided here serves as a guide -to those interested in certificate-based data decryption. This -information may be subject to change in future versions of this -specification and is subject to change without notice. - -OAEP Processing with Certificate-based Encryption: - -Versions of PKZIP available during this development phase of the -certificate processing method may set a value of 61 into the -version needed to extract field for a file. This indicates that -non-OAEP key wrapping is used. This affects certificate encryption -only, and password encryption functions should not be affected by -this value. This means values of 61 may be found on files encrypted -with certificates only, or on files encrypted with both password -encryption and certificate encryption. Files encrypted with both -methods can safely be decrypted using the password methods documented. - -OAEP stands for Optimal Asymmetric Encryption Padding. It is a -strengthening technique used for small encoded items such as decryption -keys. This is commonly applied in cryptographic key-wrapping techniques -and is supported by PKCS #1. Versions 5.0 and 6.0 of this specification -were designed to support OAEP key-wrapping for certificate-based -decryption keys for additional security. - -Support for private keys stored on Smart Cards or Tokens introduced -a conflict with this OAEP logic. Most card and token products do -not support the additional strengthening applied to OAEP key-wrapped -data. In order to resolve this conflict, versions 6.1 and above of this -specification will no longer support OAEP when encrypting using -digital certificates. - -Certificate Processing Data Fields: - -The Certificate Processing Method of this specification defines the -following additional data fields: - - -1. Certificate Flag Values - -Additional processing flags that can be present in the Flags field of both -the 0x0017 field of the central directory Extra Field and the Decryption -header record preceding compressed file data are: - - 0x0007 - reserved for future use - 0x000F - reserved for future use - 0x0100 - Indicates non-OAEP key wrapping was used. If this - this field is set, the version needed to extract must - be at least 61. This means OAEP key wrapping is not - used when generating a Master Session Key using - ErdData. - 0x4000 - ErdData must be decrypted using 3DES-168, otherwise use the - same algorithm used for encrypting the file contents. - 0x8000 - reserved for future use - - -2. CertData - Extra Field 0x0017 record certificate data structure - -The data structure used to store certificate data within the section -of the Extra Field defined by the CertData field of the 0x0017 -record are as shown: - - Value Size Description - ----- ---- ----------- - RCount 4 bytes Number of recipients. - HashAlg 2 bytes Hash algorithm identifier - HSize 2 bytes Hash size - SRList (var) Simple list of recipients hashed public keys - - - RCount This defines the number intended recipients whose - public keys were used for encryption. This identifies - the number of elements in the SRList. - - HashAlg This defines the hash algorithm used to calculate - the public key hash of each public key used - for encryption. This field currently supports - only the following value for SHA-1 - - 0x8004 - SHA1 - - HSize This defines the size of a hashed public key. - - SRList This is a variable length list of the hashed - public keys for each intended recipient. Each - element in this list is HSize. The total size of - SRList is determined using RCount * HSize. - - -3. Reserved1 - Certificate Decryption Header Reserved1 Data: - - Value Size Description - ----- ---- ----------- - RCount 4 bytes Number of recipients. - - RCount This defines the number intended recipients whose - public keys were used for encryption. This defines - the number of elements in the REList field defined below. - - -4. Reserved2 - Certificate Decryption Header Reserved2 Data Structures: - - - Value Size Description - ----- ---- ----------- - HashAlg 2 bytes Hash algorithm identifier - HSize 2 bytes Hash size - REList (var) List of recipient data elements - - - HashAlg This defines the hash algorithm used to calculate - the public key hash of each public key used - for encryption. This field currently supports - only the following value for SHA-1 - - 0x8004 - SHA1 - - HSize This defines the size of a hashed public key - defined in REHData. - - REList This is a variable length of list of recipient data. - Each element in this list consists of a Recipient - Element data structure as follows: - - - Recipient Element (REList) Data Structure: - - Value Size Description - ----- ---- ----------- - RESize 2 bytes Size of REHData + REKData - REHData HSize Hash of recipients public key - REKData (var) Simple key blob - - - RESize This defines the size of an individual REList - element. This value is the combined size of the - REHData field + REKData field. REHData is defined by - HSize. REKData is variable and can be calculated - for each REList element using RESize and HSize. - - REHData Hashed public key for this recipient. - - REKData Simple Key Blob. The format of this data structure - is identical to that defined in the Microsoft - CryptoAPI and generated using the CryptExportKey() - function. The version of the Simple Key Blob - supported at this time is 0x02 as defined by - Microsoft. - -5. Certificate Processing - Central Directory Encryption: - -Central Directory Encryption using Digital Certificates will -operate in a manner similar to that of Single Password Central -Directory Encryption. This record will only be present when there -is data to place into it. Currently, data is placed into this -record when digital certificates are used for either encrypting -or signing the files within a ZIP file. When only password -encryption is used with no certificate encryption or digital -signing, this record is not currently needed. When present, this -record will appear before the start of the actual Central Directory -data structure and will be located immediately after the Archive -Decryption Header if the Central Directory is encrypted. - -The Archive Extra Data record will be used to store the following -information. Additional data may be added in future versions. - -Extra Data Fields: - -0x0014 - PKCS#7 Store for X.509 Certificates -0x0016 - X.509 Certificate ID and Signature for central directory -0x0019 - PKCS#7 Encryption Recipient Certificate List - -The 0x0014 and 0x0016 Extra Data records that otherwise would be -located in the first record of the Central Directory for digital -certificate processing. When encrypting or compressing the Central -Directory, the 0x0014 and 0x0016 records must be located in the -Archive Extra Data record and they should not remain in the first -Central Directory record. The Archive Extra Data record will also -be used to store the 0x0019 data. - -When present, the size of the Archive Extra Data record will be -included in the size of the Central Directory. The data of the -Archive Extra Data record will also be compressed and encrypted -along with the Central Directory data structure. - -6. Certificate Processing Differences: - -The Certificate Processing Method of encryption differs from the -Single Password Symmetric Encryption Method as follows. Instead -of using a user-defined password to generate a master session key, -cryptographically random data is used. The key material is then -wrapped using standard key-wrapping techniques. This key material -is wrapped using the public key of each recipient that will need -to decrypt the file using their corresponding private key. - -This specification currently assumes digital certificates will follow -the X.509 V3 format for 1024 bit and higher RSA format digital -certificates. Implementation of this Certificate Processing Method -requires supporting logic for key access and management. This logic -is outside the scope of this specification. - - -License Agreement: ------------------ - -The features set forth in this Section XIV (the "Strong Encryption -Specification") are covered by a pending patent application. Portions of -this Strong Encryption technology are available for use at no charge -under the following terms and conditions. - -1. License Grant. - - a. NOTICE TO USER. PLEASE READ THIS ENTIRE SECTION XIV OF THE - APPNOTE (THE "AGREEMENT") CAREFULLY. BY USING ALL OR ANY PORTION OF THE - LICENSED TECHNOLOGY, YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS - AGREEMENT AND YOU AGREE THAT THIS AGREEMENT IS ENFORCEABLE LIKE ANY - WRITTEN NEGOTIATED AGREEMENT SIGNED BY YOU. IF YOU DO NOT AGREE, DO NOT - USE THE LICENSED TECHNOLOGY. - - b. Definitions. - - i. "Licensed Technology" shall mean that proprietary technology now or - hereafter owned or controlled by PKWare, Inc. ("PKWARE") or any - subsidiary or affiliate that covers or is necessary to be used to give - software the ability to a) extract and decrypt data from zip files - encrypted using any methods of data encryption and key processing which - are published in this APPNOTE or any prior APPNOTE, as supplemented by - any Additional Compatibility Information; and b) encrypt file contents - as part of .ZIP file processing using only the Single Password Symmetric - Encryption Method as published in this APPNOTE or any prior APPNOTE, as - supplemented by any Additional Compatibility Information. For purposes - of this AGREEMENT, "Additional Compatibility Information" means, with - regard to any method of data encryption and key processing published in - this or any prior APPNOTE, any corrections, additions, or clarifications - to the information in such APPNOTE that are required in order to give - software the ability to successfully extract and decrypt zip files (or, - but solely in the case of the Single Password Symmetric Encryption Method, - to successfully encrypt zip files) in a manner interoperable with the - actual implementation of such method in any PKWARE product that is - documented or publicly described by PKWARE as being able to create, or - to extract and decrypt, zip files using that method. - - ii. "Licensed Products" shall mean any products you produce that - incorporate the Licensed Technology. - - c. License to Licensed Technology. - - PKWARE hereby grants to you a non-exclusive license to use the Licensed - Technology for the purpose of manufacturing, offering, selling and using - Licensed Products, which license shall extend to permit the practice of all - claims in any patent or patent application (collectively, "Patents") now or - hereafter owned or controlled by PKWARE in any jurisdiction in the world - that are infringed by implementation of the Licensed Technology. You have - the right to sublicense rights you receive under the terms of this AGREEMENT - for the purpose of allowing sublicensee to manufacture, offer, sell and use - products that incorporate all or a portion of any of your Licensed Products, - but if you do, you agree to i) impose the same restrictions on any such - sublicensee as these terms impose on you and ii) notify the sublicensee, - by means chosen by you in your unfettered discretion, including a notice on - your web site, of the terms of this AGREEMENT and make available to each - sublicensee the full text of this APPNOTE. Further, PKWARE hereby grants to - you a non-exclusive right to reproduce and distribute, in any form, copies of - this APPNOTE, without modification. Notwithstanding anything to the contrary - in this AGREEMENT, you have the right to sublicense the rights, without any of - the restrictions described above or elsewhere in this AGREEMENT, to use, offer - to sell and sell Licensed Technology as incorporated in executable object code - or byte code forms of your Licensed Products. Any sublicense to use the - Licensed Technology incorporated in a Licensed Product granted by you shall - survive the termination of this AGREEMENT for any reason. PKWARE warrants that - this license shall continue to encumber the Licensed Technology regardless of - changes in ownership of the Licensed Technology. - - d. Proprietary Notices. - - i. With respect to any Licensed Product that is distributed by you either - in source code form or in the form of an object code library of externally - callable functions that has been designed by you for incorporation into third - party products, you agree to include, in the source code, or in the case of - an object code library, in accompanying documentation, a notice using the - words "patent pending" until a patent is issued to PKWARE covering any - portion of the Licensed Technology or PKWARE provides notice, by means - chosen by PKWARE in its unfettered discretion, that it no longer has any - patent pending covering any portion of the Licensed Technology. With respect - to any Licensed Product, upon your becoming aware that at least one patent has - been granted covering the Licensed Technology, you agree to include in any - revisions made by you to the documentation (or any source code distributed - by you) the words "Pat. No.", or "Patent Number" and the patent number or - numbers of the applicable patent or patents. PKWARE shall, from time to time, - inform you of the patent number or numbers of the patents covering the - Licensed Technology, by means chosen by PKWARE in its unfettered discretion, - including a notice on its web site. It shall be a violation of the terms of - this AGREEMENT for you to sell Licensed Products without complying with the - foregoing marking provisions. - - ii. You acknowledge that the terms of this AGREEMENT do not grant you any - license or other right to use any PKWARE trademark in connection with the sale, - offering for sale, distribution and delivery of the Licensed Products, or in - connection with the advertising, promotion and offering of the Licensed Products. - You acknowledge PKWARE's ownership of the PKZIP trademark and all other marks - owned by PKWARE. - - e. Covenant of Compliance and Remedies. - - To the extent that you have elected to implement portions of the Licensed - Technology, you agree to use reasonable diligence to comply with those portions - of this Section XIV, as modified or supplemented by Additional Compatibility - Information available to you, describing the portions of the Licensed Technology - that you have elected to implement. Upon reasonable request by PKWARE, you will - provide written notice to PKWARE identifying which version of this APPNOTE you - have relied upon for your implementation of any specified Licensed Product. - - If any substantial non-compliance with the terms of this AGREEMENT is determined - to exist, you will make such changes as necessary to bring your Licensed Products - into substantial compliance with the terms of this AGREEMENT. If, within sixty - days of receipt of notice that a Licensed Product fails to comply with the terms - of this AGREEMENT, you fail to make such changes as necessary to bring your - Licensed Products into compliance with the terms of this AGREEMENT, PKWARE may - terminate your rights under this AGREEMENT. PKWARE does not waive and expressly - reserves the right to pursue any and all additional remedies that are or may - become available to PKWARE. - - f. Warranty and Indemnification Regarding Exportation. - - You realize and acknowledge that, as between yourself and PKWARE, you are fully - responsible for compliance with the import and export laws and regulations of - any country in or to which you import or export any Licensed Products, and you - agree to hold PKWARE harmless from any claim of violation of any such import - or export laws. - - g. Patent Infringement. - - You agree that you will not bring or threaten to bring any action against PKWARE - for infringement of the claims of any patent owned or controlled by you solely - as a result of PKWARE's own implementation of the Licensed Technology. As its - exclusive remedy for your breach of the foregoing agreement, PKWARE reserves - the right to suspend or terminate all rights granted under the terms of this - AGREEMENT if you bring or threaten to bring any such action against PKWARE, - effective immediately upon delivery of written notice of suspension or - termination to you. - - h. Governing Law. - - The license granted in this AGREEMENT shall be governed by and construed under - the laws of the State of Wisconsin and the United States. - - i. Revisions and Notice. - - The license granted in this APPNOTE is irrevocable, except as expressly set - forth above. You agree and understand that any changes which PKWARE determines - to make to this APPNOTE shall be posted at the same location as the current - APPNOTE or at a location which will be identified by means chosen by PKWARE, - including a notice on its web site, and shall be available for adoption by you - immediately upon such posting, or at such other time as PKWARE shall determine. - Any changes to the terms of the license published in a subsequent version of - this AGREEMENT shall be binding upon you only with respect to your products - that (i) incorporate any Licensed Technology (as defined in the subsequent - AGREEMENT) that is not otherwise included in the definition of Licensed - Technology under this AGREEMENT, or (ii) that you expressly identify are to - be licensed under the subsequent AGREEMENT, which identification shall be by - written notice with reference to the APPNOTE (version and release date or other - unique identifier) in which the subsequent AGREEMENT is published. PKWARE - agrees to identify each change to this APPNOTE by using a unique version and - release date identifier or other unique identifier. - - j. Warranty by PKWARE - - PKWare, Inc. warrants that it has the right to grant the license hereunder. - -XV. Change Process ------------------- - -In order for the .ZIP file format to remain a viable definition, this -specification should be considered as open for periodic review and -revision. Although this format was originally designed with a -certain level of extensibility, not all changes in technology -(present or future) were or will be necessarily considered in its -design. If your application requires new definitions to the -extensible sections in this format, or if you would like to -submit new data structures, please forward your request to -zipformat@pkware.com. All submissions will be reviewed by the -ZIP File Specification Committee for possible inclusion into -future versions of this specification. Periodic revisions -to this specification will be published to ensure interoperability. -We encourage comments and feedback that may help improve clarity -or content. - - -XVI. Acknowledgements ---------------------- - -In addition to the above mentioned contributors to PKZIP and PKUNZIP, -I would like to extend special thanks to Robert Mahoney for suggesting -the extension .ZIP for this software. - - -XVII. References ----------------- - - Fiala, Edward R., and Greene, Daniel H., "Data compression with - finite windows", Communications of the ACM, Volume 32, Number 4, - April 1989, pages 490-505. - - Held, Gilbert, "Data Compression, Techniques and Applications, - Hardware and Software Considerations", John Wiley & Sons, 1987. - - Huffman, D.A., "A method for the construction of minimum-redundancy - codes", Proceedings of the IRE, Volume 40, Number 9, September 1952, - pages 1098-1101. - - Nelson, Mark, "LZW Data Compression", Dr. Dobbs Journal, Volume 14, - Number 10, October 1989, pages 29-37. - - Nelson, Mark, "The Data Compression Book", M&T Books, 1991. - - Storer, James A., "Data Compression, Methods and Theory", - Computer Science Press, 1988 - - Welch, Terry, "A Technique for High-Performance Data Compression", - IEEE Computer, Volume 17, Number 6, June 1984, pages 8-19. - - Ziv, J. and Lempel, A., "A universal algorithm for sequential data - compression", Communications of the ACM, Volume 30, Number 6, - June 1987, pages 520-540. - - Ziv, J. and Lempel, A., "Compression of individual sequences via - variable-rate coding", IEEE Transactions on Information Theory, - Volume 24, Number 5, September 1978, pages 530-536. +[Info-ZIP note, 20040528: this file is based on PKWARE's appnote.txt of + 15 February 1996, taking into account PKWARE's revised appnote.txt + version 6.2.0 of 26 April 2004. It has been unofficially corrected + and extended by Info-ZIP without explicit permission by PKWARE. + Although Info-ZIP believes the information to be accurate and complete, + it is provided under a disclaimer similar to the PKWARE disclaimer below, + differing only in the substitution of "Info-ZIP" for "PKWARE". In other + words, use this information at your own risk, but we think it's correct. + + Specification info from PKWARE that was obviously wrong has been corrected + silently (e.g. missing structure fields, wrong numbers). + As of PKZIPW 2.50, two new incompatibilities have been introduced by PKWARE; + they are noted below. Note that the "NTFS tag" conflict is currently not + real; PKZIPW 2.50 actually tags NTFS files as having come from a FAT + file system, too.] + +File: APPNOTE.TXT - .ZIP File Format Specification +Version: 6.2.0 - NOTIFICATION OF CHANGE +Revised: 04/26/2004 [2004-05-28 Info-ZIP] +Copyright (c) 1989 - 2004 PKWARE Inc., All Rights Reserved. + +I. Purpose +---------- + +This specification is intended to define a cross-platform, +interoperable file format. Since its first publication +in 1989, PKWARE has remained committed to ensuring the +interoperability of the .ZIP file format through this +specification. We trust that all .ZIP compatible vendors +and application developers that have adopted this format +will share and support this commitment. + + +II. Disclaimer +-------------- + +Although PKWARE will attempt to supply current and accurate +information relating to its file formats, algorithms, and the +subject programs, the possibility of error or omission can not +be eliminated. PKWARE therefore expressly disclaims any warranty +that the information contained in the associated materials relating +to the subject programs and/or the format of the files created or +accessed by the subject programs and/or the algorithms used by +the subject programs, or any other matter, is current, correct or +accurate as delivered. Any risk of damage due to any possible +inaccurate information is assumed by the user of the information. +Furthermore, the information relating to the subject programs +and/or the file formats created or accessed by the subject +programs and/or the algorithms used by the subject programs is +subject to change without notice. + +If the version of this file is marked as a NOTIFICATION OF CHANGE, +the content defines an Early Feature Specification (EFS) change +to the .ZIP file format that may be subject to modification prior +to publication of the Final Feature Specification (FFS). This +document may also contain information on Planned Feature +Specifications (PFS) defining recognized future extensions. + + +III. Change Log +--------------- + +Version Change Description Date +------- ------------------ ---------- +5.2 -Single Password Symmetric Encryption 06/02/2003 + storage + +6.1.0 -Smart Card compatibility 01/20/2004 + -Documentation on certificate storage + +6.2.0 -Introduction of Central Directory 04/26/2004 + Encryption for encrypting metadata + -Added OS/X to Version Made By values + + +IV. General Format of a .ZIP file +--------------------------------- + + Files stored in arbitrary order. Large .ZIP files can span multiple + diskette media or be split into user-defined segment sizes. [The + minimum user-defined segment size for a split .ZIP file is 64K. + (removed by PKWare 2003-06-01)] + + Overall .ZIP file format: + + [local file header 1] + [file data 1] + [data descriptor 1] + . + . + . + [local file header n] + [file data n] + [data descriptor n] + [archive decryption header] (EFS) + [archive extra data record] (EFS) + [central directory] + [zip64 end of central directory record] + [zip64 end of central directory locator] + [end of central directory record] + + + A. Local file header: + + local file header signature 4 bytes (0x04034b50) + version needed to extract 2 bytes + general purpose bit flag 2 bytes + compression method 2 bytes + last mod file time 2 bytes + last mod file date 2 bytes + crc-32 4 bytes + compressed size 4 bytes + uncompressed size 4 bytes + file name length 2 bytes + extra field length 2 bytes + + file name (variable size) + extra field (variable size) + + + B. File data + + Immediately following the local header for a file + is the compressed or stored data for the file. + The series of [local file header][file data][data + descriptor] repeats for each file in the .ZIP archive. + + + C. Data descriptor: + + [Info-ZIP discrepancy: + The Info-ZIP zip program starts the data descriptor with a 4-byte + PK-style signature. Despite the specification, none of the PKWARE + programs supports the data descriptor. PKZIP 4.0 -fix function + (and PKZIPFIX 2.04) ignores the data descriptor info even when bit 3 + of the general purpose bit flag is set. + data descriptor signature 4 bytes (0x08074b50) + ] + crc-32 4 bytes + compressed size 4 bytes + uncompressed size 4 bytes + + This descriptor exists only if bit 3 of the general + purpose bit flag is set (see below). It is byte aligned + and immediately follows the last byte of compressed data. + This descriptor is used only when it was not possible to + seek in the output .ZIP file, e.g., when the output .ZIP file + was standard output or a non seekable device. For Zip64 format + archives, the compressed and uncompressed sizes are 8 bytes each. + + + D. Archive decryption header: (EFS) + + The Archive Decryption Header is introduced in version 6.2 + of the ZIP format specification. This record exists in support + of the Central Directory Encryption Feature implemented as part of + the Strong Encryption Specification as described in this document. + When the Central Directory Structure is encrypted, this decryption + header will precede the encrypted data segment. The encrypted + data segment will consist of the Archive extra data record (if + present) and the encrypted Central Directory Structure data. + The format of this data record is identical to the Decryption + header record preceding compressed file data. If the central + directory structure is encrypted, the location of the start of + this data record is determined using the Start of Central Directory + field in the Zip64 End of Central Directory record. Refer to the + section on the Strong Encryption Specification for information + on the fields used in the Archive Decryption Header record. + + + E. Archive extra data record: (EFS) + + archive extra data signature 4 bytes (0x08064b50) + extra field length 4 bytes + extra field data (variable size) + + The Archive Extra Data Record is introduced in version 6.2 + of the ZIP format specification. This record exists in support + of the Central Directory Encryption Feature implemented as part of + the Strong Encryption Specification as described in this document. + When present, this record immediately precedes the central + directory data structure. The size of this data record will be + included in the Size of the Central Directory field in the + End of Central Directory record. If the central directory structure + is compressed, but not encrypted, the location of the start of + this data record is determined using the Start of Central Directory + field in the Zip64 End of Central Directory record. + + + F. Central directory structure: + + [file header 1] + . + . + . + [file header n] + [digital signature] + + File header: + + central file header signature 4 bytes (0x02014b50) + version made by 2 bytes + version needed to extract 2 bytes + general purpose bit flag 2 bytes + compression method 2 bytes + last mod file time 2 bytes + last mod file date 2 bytes + crc-32 4 bytes + compressed size 4 bytes + uncompressed size 4 bytes + file name length 2 bytes + extra field length 2 bytes + file comment length 2 bytes + disk number start 2 bytes + internal file attributes 2 bytes + external file attributes 4 bytes + relative offset of local header 4 bytes + + file name (variable size) + extra field (variable size) + file comment (variable size) + + Digital signature: + + header signature 4 bytes (0x05054b50) + size of data 2 bytes + signature data (variable size) + + With the introduction of the Central Directory Encryption + feature in version 6.2 of this specification, the Central + Directory Structure may be stored both compressed and encrypted. + Although not required, it is assumed when encrypting the + Central Directory Structure, that it will be compressed + for greater storage efficiency. Information on the + Central Directory Encryption feature can be found in the section + describing the Strong Encryption Specification. The Digital + Signature record will be neither compressed nor encrypted. + + + G. Zip64 end of central directory record + + zip64 end of central dir + signature 4 bytes (0x06064b50) + size of zip64 end of central + directory record 8 bytes + version made by 2 bytes + version needed to extract 2 bytes + number of this disk 4 bytes + number of the disk with the + start of the central directory 4 bytes + total number of entries in the + central directory on this disk 8 bytes + total number of entries in the + central directory 8 bytes + size of the central directory 8 bytes + offset of start of central + directory with respect to + the starting disk number 8 bytes + zip64 extensible data sector (variable size) + + The above record structure defines Version 1 of the + Zip64 end of central directory record. Version 1 was + implemented in versions of this specification preceding + 6.2 in support of the ZIP64(tm) large file feature. The + introduction of the Central Directory Encryption feature + implemented in version 6.2 as part of the Strong Encryption + Specification defines Version 2 of this record structure. + Refer to the section describing the Strong Encryption + Specification for details on the version 2 format for + this record. + + + H. Zip64 end of central directory locator + + zip64 end of central dir locator + signature 4 bytes (0x07064b50) + number of the disk with the + start of the zip64 end of + central directory 4 bytes + relative offset of the zip64 + end of central directory record 8 bytes + total number of disks 4 bytes + + + I. End of central directory record: + + end of central dir signature 4 bytes (0x06054b50) + number of this disk 2 bytes + number of the disk with the + start of the central directory 2 bytes + total number of entries in the + central directory on this disk 2 bytes + total number of entries in + the central directory 2 bytes + size of the central directory 4 bytes + offset of start of central + directory with respect to + the starting disk number 4 bytes + .ZIP file comment length 2 bytes + .ZIP file comment (variable size) + + + J. Explanation of fields: + + version made by (2 bytes) + + [PKWARE describes "OS made by" now (since 1998) as follows: + The upper byte indicates the compatibility of the file + attribute information. If the external file attributes + are compatible with MS-DOS and can be read by PKZIP for + DOS version 2.04g then this value will be zero. If these + attributes are not compatible, then this value will + identify the host system on which the attributes are + compatible.] + The upper byte indicates the host system (OS) for the + file. Software can use this information to determine + the line record format for text files etc. The current + mappings are: + + 0 - FAT file system (DOS, OS/2, NT) + PKWARE 2.50+ VFAT, NTFS + 1 - Amiga + 2 - OpenVMS + 3 - Unix + 4 - VM/CMS + 5 - Atari ST + 6 - HPFS file system (OS/2, NT 3.x) + 7 - Macintosh + 8 - Z-System + 9 - CP/M + --------------------------------------------------------------------- + PKWARE assignment | Info-ZIP assignment + -----------------------------------|--------------------------------- + 10 - Windows NTFS | TOPS-20 + (since PKZIPW 2.50, but | (assigned Oct-1992, + not used by any PKWARE prog) | no longer used) + 11 - MVS | NTFS file system (WinNT) + | (actively used by Info-ZIP's + | Zip for NT since Sep-1993) + 12 - VSE | SMS/QDOS + --------------------------------------------------------------------- + 13 - Acorn RISC OS + 14 - VFAT file system (Win95, NT) [Info-ZIP reservation, unused] + 15 - MVS [PKWARE describes this assignment as "alternate MVS"] + 16 - BeOS (BeBox or PowerMac) + 17 - Tandem + 18 - OS/400 (IBM) | THEOS + 19 - OS/X (Darwin) + 20 thru 29 - unused + 30 - AtheOS/Syllable + 31 thru 255 - unused + + The lower byte indicates the ZIP specification version + (the version of this document) supported by the software + used to encode the file. The value/10 indicates the major + version number, and the value mod 10 is the minor version + number. + + version needed to extract (2 bytes) + + The minimum supported ZIP specification version needed to + extract the file, mapped as above. This value is based on + the specific format features a ZIP program must support to + be able to extract the file. If multiple features are + applied to a file, the minimum version should be set to the + feature having the highest value. New features or feature + changes affecting the published format specification will be + implemented using higher version numbers than the last + published value to avoid conflict. + + Current minimum feature versions are as defined below: + + 1.0 - Default value + 1.1 - File is a volume label + 2.0 - File is a folder (directory) + 2.0 - File is compressed using Deflate compression + 2.0 - File is encrypted using traditional PKWARE encryption + 2.1 - File is compressed using Deflate64(tm) + 2.5 - File is compressed using PKWARE DCL Implode + 2.7 - File is a patch data set + 4.5 - File uses ZIP64 format extensions + 4.6 - File is compressed using BZIP2 compression* + 5.0 - File is encrypted using DES + 5.0 - File is encrypted using 3DES + 5.0 - File is encrypted using original RC2 encryption + 5.0 - File is encrypted using RC4 encryption + 5.1 - File is encrypted using AES encryption + 5.1 - File is encrypted using corrected RC2 encryption** + 5.2 - File is encrypted using corrected RC2-64 encryption** + 6.1 - File is encrypted using non-OAEP key wrapping*** + 6.2 - Central directory encryption + + + * Early 7.x (pre-7.2) versions of PKZIP incorrectly set the + version needed to extract for BZIP2 compression to be 50 + when it should have been 46. + + ** Refer to the section on Strong Encryption Specification + for additional information regarding RC2 corrections. + + *** Certificate encryption using non-OAEP key wrapping is the + intended mode of operation for all versions beginning with 6.1. + Support for OAEP key wrapping should only be used for + backward compatibility when sending ZIP files to be opened by + versions of PKZIP older than 6.1 (5.0 or 6.0). + + When using ZIP64 extensions, the corresponding value in the + Zip64 end of central directory record should also be set. + This field currently supports only the value 45 to indicate + ZIP64 extensions are present. + + general purpose bit flag: (2 bytes) + + Bit 0: If set, indicates that the file is encrypted. + + (For Method 6 - Imploding) + Bit 1: If the compression method used was type 6, + Imploding, then this bit, if set, indicates + an 8K sliding dictionary was used. If clear, + then a 4K sliding dictionary was used. + Bit 2: If the compression method used was type 6, + Imploding, then this bit, if set, indicates + 3 Shannon-Fano trees were used to encode the + sliding dictionary output. If clear, then 2 + Shannon-Fano trees were used. + + (For Methods 8 and 9 - Deflating) + Bit 2 Bit 1 + 0 0 Normal (-en) compression option was used. + 0 1 Maximum (-exx/-ex) compression option was used. + 1 0 Fast (-ef) compression option was used. + 1 1 Super Fast (-es) compression option was used. + + Note: Bits 1 and 2 are undefined if the compression + method is any other. + + Bit 3: If this bit is set, the fields crc-32, compressed + size and uncompressed size are set to zero in the + local header. The correct values are put in the + data descriptor immediately following the compressed + data. (Note: PKZIP version 2.04g for DOS only + recognizes this bit for method 8 compression, newer + versions of PKZIP recognize this bit for any + compression method.) + [Info-ZIP note: This bit was introduced by PKZIP 2.04 for + DOS. In general, this feature can only be reliably used + together with compression methods that allow intrinsic + detection of the "end-of-compressed-data" condition. From + the set of compression methods described in this Zip archive + specification, only "deflate" and "bzip2" fulfill this + requirement. + Especially, the method STORED does not work! + The Info-ZIP tools recognize this bit regardless of the + compression method; but, they rely on correctly set + "compressed size" information in the central directory entry.] + + Bit 4: Reserved for use with method 8, for enhanced + deflating. + + Bit 5: If this bit is set, this indicates that the file is + compressed patched data. (Note: Requires PKZIP + version 2.70 or greater) + + Bit 6: Strong encryption. If this bit is set, you should + set the version needed to extract value to at least + 50 and you must also set bit 0. If AES encryption + is used, the version needed to extract value must + be at least 51. + + Bit 7: Currently unused. + + Bit 8: Currently unused. + + Bit 9: Currently unused. + + Bit 10: Currently unused. + + Bit 11: Currently unused. + + Bit 12: Reserved by PKWARE for enhanced compression. + + Bit 13: Used when encrypting the Central Directory to indicate + selected data values in the Local Header are masked to + hide their actual values. See the section describing + the Strong Encryption Specification for details. + + Bit 14: Reserved by PKWARE. + + Bit 15: Reserved by PKWARE. + + compression method: (2 bytes) + + (see accompanying documentation for algorithm + descriptions) + + 0 - The file is stored (no compression) + 1 - The file is Shrunk + 2 - The file is Reduced with compression factor 1 + 3 - The file is Reduced with compression factor 2 + 4 - The file is Reduced with compression factor 3 + 5 - The file is Reduced with compression factor 4 + 6 - The file is Imploded + 7 - Reserved for Tokenizing compression algorithm + 8 - The file is Deflated + 9 - Enhanced Deflating using Deflate64(tm) + 10 - PKWARE Data Compression Library Imploding + 11 - Reserved by PKWARE + 12 - File is compressed using BZIP2 algorithm + + date and time fields: (2 bytes each) + + The date and time are encoded in standard MS-DOS format. + If input came from standard input, the date and time are + those at which compression was started for this data. + If encrypting the central directory and general purpose bit + flag 13 is set indicating masking, the value stored in the + Local Header will be zero. + + CRC-32: (4 bytes) + + The CRC-32 algorithm was generously contributed by + David Schwaderer and can be found in his excellent + book "C Programmers Guide to NetBIOS" published by + Howard W. Sams & Co. Inc. The 'magic number' for + the CRC is 0xdebb20e3. The proper CRC pre and post + conditioning is used, meaning that the CRC register + is pre-conditioned with all ones (a starting value + of 0xffffffff) and the value is post-conditioned by + taking the one's complement of the CRC residual. + If bit 3 of the general purpose flag is set, this + field is set to zero in the local header and the correct + value is put in the data descriptor and in the central + directory. If encrypting the central directory and general + purpose bit flag 13 is set indicating masking, the value + stored in the Local Header will be zero. + + compressed size: (4 bytes) + uncompressed size: (4 bytes) + + The size of the file compressed and uncompressed, + respectively. If bit 3 of the general purpose bit flag + is set, these fields are set to zero in the local header + and the correct values are put in the data descriptor and + in the central directory. If an archive is in zip64 format + and the value in this field is 0xFFFFFFFF, the size will be + in the corresponding 8 byte zip64 extended information + extra field. If encrypting the central directory and general + purpose bit flag 13 is set indicating masking, the value stored + for the uncompressed size in the Local Header will be zero. + + file name length: (2 bytes) + extra field length: (2 bytes) + file comment length: (2 bytes) + + The length of the file name, extra field, and comment + fields respectively. The combined length of any + directory record and these three fields should not + generally exceed 65,535 bytes. If input came from standard + input, the file name length is set to zero. + + [Info-ZIP note: + This feature is not yet supported by any PKWARE version of ZIP + (at least not in PKZIP for DOS and PKZIP for Windows/WinNT). + The Info-ZIP programs handle standard input differently: + If input came from standard input, the filename is set to "-" + (length one).] + + + disk number start: (2 bytes) + + The number of the disk on which this file begins. If an + archive is in zip64 format and the value in this field is + 0xFFFF, the size will be in the corresponding 4 byte zip64 + extended information extra field. + + internal file attributes: (2 bytes) + + Bits 1 and 2 are reserved for use by PKWARE. + + The lowest bit of this field indicates, if set, that + the file is apparently an ASCII or text file. If not + set, that the file apparently contains binary data. + The remaining bits are unused in version 1.0. + + The 0x0002 bit of this field indicates, if set, that a + 4 byte variable record length control field precedes each + logical record indicating the length of the record. This + flag is independent of text control characters, and if used + in conjunction with text data, includes any control + characters in the total length of the record. This value is + provided for mainframe data transfer support. + + external file attributes: (4 bytes) + + The mapping of the external attributes is + host-system dependent (see 'version made by'). For + MS-DOS, the low order byte is the MS-DOS directory + attribute byte. If input came from standard input, this + field is set to zero. + + relative offset of local header: (4 bytes) + + This is the offset from the start of the first disk on + which this file appears, to where the local header should + be found. If an archive is in zip64 format and the value + in this field is 0xFFFFFFFF, the size will be in the + corresponding 8 byte zip64 extended information extra field. + + file name: (Variable) + + The name of the file, with optional relative path. + The path stored should not contain a drive or + device letter, or a leading slash. All slashes + should be forward slashes '/' as opposed to + backwards slashes '\' for compatibility with Amiga + and Unix file systems etc. If input came from standard + input, there is no file name field. If encrypting + the central directory and general purpose bit flag 13 is set + indicating masking, the file name stored in the Local Header + will not be the actual file name. A masking value consisting + of a unique hexadecimal value will be stored. This value will + be sequentially incremented for each file in the archive. See + the section on the Strong Encryption Specification for details + on retrieving the encrypted file name. + [Info-ZIP discrepancy: + If input came from standard input, the file name is set + to "-" (without the quotes). + As far as we know, the PKWARE specification for "input from + stdin" is not supported by PKZIP/PKUNZIP for DOS, OS/2, Windows + Windows NT.] + + extra field: (Variable) + + This is for expansion. If additional information + needs to be stored for special needs or for specific + platforms, it should be stored here. Earlier versions + of the software can then safely skip this file, and + find the next file or header. This field will be 0 + length in version 1.0. + + In order to allow different programs and different types + of information to be stored in the 'extra' field in .ZIP + files, the following structure should be used for all + programs storing data in this field: + + header1+data1 + header2+data2 . . . + + Each header should consist of: + + Header ID - 2 bytes + Data Size - 2 bytes + + Note: all fields stored in Intel low-byte/high-byte order. + + The Header ID field indicates the type of data that is in + the following data block. + + Header ID's of 0 thru 31 are reserved for use by PKWARE. + The remaining ID's can be used by third party vendors for + proprietary usage. + + The current Header ID mappings defined by PKWARE are: + + 0x0001 ZIP64 extended information extra field + 0x0007 AV Info + 0x0008 Reserved for future Unicode file name data (PFS) + 0x0009 OS/2 extended attributes (also Info-ZIP) + 0x000a NTFS (Win9x/WinNT FileTimes) + 0x000c OpenVMS (also Info-ZIP) + 0x000d Unix + 0x000e Reserved for file stream and fork descriptors + 0x000f Patch Descriptor + 0x0014 PKCS#7 Store for X.509 Certificates + 0x0015 X.509 Certificate ID and Signature for + individual file + 0x0016 X.509 Certificate ID for Central Directory + 0x0017 Strong Encryption Header + 0x0018 Record Management Controls + 0x0019 PKCS#7 Encryption Recipient Certificate List + 0x0065 IBM S/390 (Z390), AS/400 (I400) attributes + - uncompressed + 0x0066 Reserved for IBM S/390 (Z390), AS/400 (I400) + attributes - compressed + + The Header ID mappings defined by Info-ZIP and third parties are: + + 0x07c8 Info-ZIP Macintosh (old, J. Lee) + 0x2605 ZipIt Macintosh (first version) + 0x2705 ZipIt Macintosh v 1.3.5 and newer (w/o full filename) + 0x2805 ZipIt Macintosh 1.3.5+ + 0x334d Info-ZIP Macintosh (new, D. Haase's 'Mac3' field) + 0x4154 Tandem NSK + 0x4341 Acorn/SparkFS (David Pilling) + 0x4453 Windows NT security descriptor (binary ACL) + 0x4704 VM/CMS + 0x470f MVS + 0x4854 Theos, old inofficial port + 0x4b46 FWKCS MD5 (see below) + 0x4c41 OS/2 access control list (text ACL) + 0x4d49 Info-ZIP OpenVMS (obsolete) + 0x4d63 Macintosh SmartZIP, by Macro Bambini + 0x4f4c Xceed original location extra field + 0x5356 AOS/VS (binary ACL) + 0x5455 extended timestamp + 0x554e Xceed unicode extra field + 0x5855 Info-ZIP Unix (original; also OS/2, NT, etc.) + 0x6542 BeOS (BeBox, PowerMac, etc.) + 0x6854 Theos + 0x7441 AtheOS (AtheOS/Syllable attributes) + 0x756e ASi Unix + 0x7855 Info-ZIP Unix (new) + 0xfb4a SMS/QDOS + + Detailed descriptions of Extra Fields defined by third + party mappings will be documented as information on + these data structures is made available to PKWARE. + PKWARE does not guarantee the accuracy of any published + third party data. + + The Data Size field indicates the size of the following + data block. Programs can use this value to skip to the + next header block, passing over any data blocks that are + not of interest. + + Note: As stated above, the size of the entire .ZIP file + header, including the file name, comment, and extra + field should not exceed 64K in size. + + In case two different programs should appropriate the same + Header ID value, it is strongly recommended that each + program place a unique signature of at least two bytes in + size (and preferably 4 bytes or bigger) at the start of + each data area. Every program should verify that its + unique signature is present, in addition to the Header ID + value being correct, before assuming that it is a block of + known type. + + In the following descriptions, note that "Short" means two bytes, + "Long" means four bytes, and "Long-Long" means eight bytes, + regardless of their native sizes. Unless specifically noted, all + integer fields should be interpreted as unsigned (non-negative) + numbers. + + + -ZIP64 Extended Information Extra Field (0x0001): + =============================================== + + The following is the layout of the ZIP64 extended + information "extra" block. If one of the size or + offset fields in the Local or Central directory + record is too small to hold the required data, + a ZIP64 extended information record is created. + The order of the fields in the ZIP64 extended + information record is fixed, but the fields will + only appear if the corresponding Local or Central + directory record field is set to 0xFFFF or 0xFFFFFFFF. + + Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + (ZIP64) 0x0001 2 bytes Tag for this "extra" block type + Size 2 bytes Size of this "extra" block + Original + Size 8 bytes Original uncompressed file size + Compressed + Size 8 bytes Size of compressed data + Relative Header + Offset 8 bytes Offset of local header record + Disk Start + Number 4 bytes Number of the disk on which + this file starts + + This entry in the Local header must include BOTH original + and compressed file sizes. + + + -OS/2 Extended Attributes Extra Field (0x0009): + ============================================= + + The following is the layout of the OS/2 extended attributes "extra" + block. (Last Revision 19960922) + + Note: all fields stored in Intel low-byte/high-byte order. + + Local-header version: + + Value Size Description + ----- ---- ----------- + (OS/2) 0x0009 Short tag for this extra block type + TSize Short total data size for this block + BSize Long uncompressed EA data size + CType Short compression type + EACRC Long CRC value for uncompressed EA data + (var.) variable compressed EA data + + Central-header version: + + Value Size Description + ----- ---- ----------- + (OS/2) 0x0009 Short tag for this extra block type + TSize Short total data size for this block (4) + BSize Long size of uncompressed local EA data + + The value of CType is interpreted according to the "compression + method" section above; i.e., 0 for stored, 8 for deflated, etc. + + The OS/2 extended attribute structure (FEA2LIST) is + compressed and then stored in its entirety within this + structure. There will only ever be one "block" of data in + the variable-length field. + + + -OS/2 Access Control List Extra Field: + ==================================== + + The following is the layout of the OS/2 ACL extra block. + (Last Revision 19960922) + + Local-header version: + + Value Size Description + ----- ---- ----------- + (ACL) 0x4c41 Short tag for this extra block type ("AL") + TSize Short total data size for this block + BSize Long uncompressed ACL data size + CType Short compression type + EACRC Long CRC value for uncompressed ACL data + (var.) variable compressed ACL data + + Central-header version: + + Value Size Description + ----- ---- ----------- + (ACL) 0x4c41 Short tag for this extra block type ("AL") + TSize Short total data size for this block (4) + BSize Long size of uncompressed local ACL data + + The value of CType is interpreted according to the "compression + method" section above; i.e., 0 for stored, 8 for deflated, etc. + + The uncompressed ACL data consist of a text header of the form + "ACL1:%hX,%hd\n", where the first field is the OS/2 ACCINFO acc_attr + member and the second is acc_count, followed by acc_count strings + of the form "%s,%hx\n", where the first field is acl_ugname (user + group name) and the second acl_access. This block type will be + extended for other operating systems as needed. + + + -Windows NT Security Descriptor Extra Field (0x4453): + =================================================== + + The following is the layout of the NT Security Descriptor (another + type of ACL) extra block. (Last Revision 19960922) + + Local-header version: + + Value Size Description + ----- ---- ----------- + (SD) 0x4453 Short tag for this extra block type ("SD") + TSize Short total data size for this block + BSize Long uncompressed SD data size + Version Byte version of uncompressed SD data format + CType Short compression type + EACRC Long CRC value for uncompressed SD data + (var.) variable compressed SD data + + Central-header version: + + Value Size Description + ----- ---- ----------- + (SD) 0x4453 Short tag for this extra block type ("SD") + TSize Short total data size for this block (4) + BSize Long size of uncompressed local SD data + + The value of CType is interpreted according to the "compression + method" section above; i.e., 0 for stored, 8 for deflated, etc. + Version specifies how the compressed data are to be interpreted + and allows for future expansion of this extra field type. Currently + only version 0 is defined. + + For version 0, the compressed data are to be interpreted as a single + valid Windows NT SECURITY_DESCRIPTOR data structure, in self-relative + format. + + + -PKWARE Win95/WinNT Extra Field (0x000a): + ======================================= + + The following description covers PKWARE's "NTFS" attributes + "extra" block, introduced with the release of PKZIP 2.50 for + Windows. (Last Revision 20001118) + + (Note: At this time the Mtime, Atime and Ctime values may + be used on any WIN32 system.) + [Info-ZIP note: In the current implementations, this field has + a fixed total data size of 32 bytes and is only stored as local + extra field.] + + Value Size Description + ----- ---- ----------- + (NTFS) 0x000a Short Tag for this "extra" block type + TSize Short Total Data Size for this block + Reserved Long for future use + Tag1 Short NTFS attribute tag value #1 + Size1 Short Size of attribute #1, in bytes + (var.) SubSize1 Attribute #1 data + . + . + . + TagN Short NTFS attribute tag value #N + SizeN Short Size of attribute #N, in bytes + (var.) SubSizeN Attribute #N data + + For NTFS, values for Tag1 through TagN are as follows: + (currently only one set of attributes is defined for NTFS) + + Tag Size Description + ----- ---- ----------- + 0x0001 2 bytes Tag for attribute #1 + Size1 2 bytes Size of attribute #1, in bytes (24) + Mtime 8 bytes 64-bit NTFS file last modification time + Atime 8 bytes 64-bit NTFS file last access time + Ctime 8 bytes 64-bit NTFS file creation time + + The total length for this block is 28 bytes, resulting in a + fixed size value of 32 for the TSize field of the NTFS block. + + The NTFS filetimes are 64-bit unsigned integers, stored in Intel + (least significant byte first) byte order. They determine the + number of 1.0E-07 seconds (1/10th microseconds!) past WinNT "epoch", + which is "01-Jan-1601 00:00:00 UTC". + + + -PKWARE OpenVMS Extra Field (0x000c): + =================================== + + The following is the layout of PKWARE's OpenVMS attributes + "extra" block. (Last Revision 12/17/91) + + Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + (VMS) 0x000c Short Tag for this "extra" block type + TSize Short Total Data Size for this block + CRC Long 32-bit CRC for remainder of the block + Tag1 Short OpenVMS attribute tag value #1 + Size1 Short Size of attribute #1, in bytes + (var.) Size1 Attribute #1 data + . + . + . + TagN Short OpenVMS attribute tage value #N + SizeN Short Size of attribute #N, in bytes + (var.) SizeN Attribute #N data + + Rules: + + 1. There will be one or more of attributes present, which + will each be preceded by the above TagX & SizeX values. + These values are identical to the ATR$C_XXXX and + ATR$S_XXXX constants which are defined in ATR.H under + OpenVMS C. Neither of these values will ever be zero. + + 2. No word alignment or padding is performed. + + 3. A well-behaved PKZIP/OpenVMS program should never produce + more than one sub-block with the same TagX value. Also, + there will never be more than one "extra" block of type + 0x000c in a particular directory record. + + + -Info-ZIP VMS Extra Field: + ======================== + + The following is the layout of Info-ZIP's VMS attributes extra + block for VAX or Alpha AXP. The local-header and central-header + versions are identical. (Last Revision 19960922) + + Value Size Description + ----- ---- ----------- + (VMS2) 0x4d49 Short tag for this extra block type ("JM") + TSize Short total data size for this block + ID Long block ID + Flags Short info bytes + BSize Short uncompressed block size + Reserved Long (reserved) + (var.) variable compressed VMS file-attributes block + + The block ID is one of the following unterminated strings: + + "VFAB" struct FAB + "VALL" struct XABALL + "VFHC" struct XABFHC + "VDAT" struct XABDAT + "VRDT" struct XABRDT + "VPRO" struct XABPRO + "VKEY" struct XABKEY + "VMSV" version (e.g., "V6.1"; truncated at hyphen) + "VNAM" reserved + + The lower three bits of Flags indicate the compression method. The + currently defined methods are: + + 0 stored (not compressed) + 1 simple "RLE" + 2 deflated + + The "RLE" method simply replaces zero-valued bytes with zero-valued + bits and non-zero-valued bytes with a "1" bit followed by the byte + value. + + The variable-length compressed data contains only the data corre- + sponding to the indicated structure or string. Typically multiple + VMS2 extra fields are present (each with a unique block type). + + + -Info-ZIP Macintosh Extra Field: + ============================== + + The following is the layout of the (old) Info-ZIP resource-fork extra + block for Macintosh. The local-header and central-header versions + are identical. (Last Revision 19960922) + + Value Size Description + ----- ---- ----------- + (Mac) 0x07c8 Short tag for this extra block type + TSize Short total data size for this block + "JLEE" beLong extra-field signature + FInfo 16 bytes Macintosh FInfo structure + CrDat beLong HParamBlockRec fileParam.ioFlCrDat + MdDat beLong HParamBlockRec fileParam.ioFlMdDat + Flags beLong info bits + DirID beLong HParamBlockRec fileParam.ioDirID + VolName 28 bytes volume name (optional) + + All fields but the first two are in native Macintosh format + (big-endian Motorola order, not little-endian Intel). The least + significant bit of Flags is 1 if the file is a data fork, 0 other- + wise. In addition, if this extra field is present, the filename + has an extra 'd' or 'r' appended to indicate data fork or resource + fork. The 28-byte VolName field may be omitted. + + + -ZipIt Macintosh Extra Field (long): + ================================== + + The following is the layout of the ZipIt extra block for Macintosh. + The local-header and central-header versions are identical. + (Last Revision 19970130) + + Value Size Description + ----- ---- ----------- + (Mac2) 0x2605 Short tag for this extra block type + TSize Short total data size for this block + "ZPIT" beLong extra-field signature + FnLen Byte length of FileName + FileName variable full Macintosh filename + FileType Byte[4] four-byte Mac file type string + Creator Byte[4] four-byte Mac creator string + + + -ZipIt Macintosh Extra Field (short, for files): + ============================================== + + The following is the layout of a shortened variant of the + ZipIt extra block for Macintosh (without "full name" entry). + This variant is used by ZipIt 1.3.5 and newer for entries of + files (not directories) that do not have a MacBinary encoded + file. The local-header and central-header versions are identical. + (Last Revision 20030602) + + Value Size Description + ----- ---- ----------- + (Mac2b) 0x2705 Short tag for this extra block type + TSize Short total data size for this block (min. 12) + "ZPIT" beLong extra-field signature + FileType Byte[4] four-byte Mac file type string + Creator Byte[4] four-byte Mac creator string + fdFlags beShort attributes from FInfo.frFlags, + may be omitted + 0x0000 beShort reserved, may be omitted + + + -ZipIt Macintosh Extra Field (short, for directories): + ==================================================== + + The following is the layout of a shortened variant of the + ZipIt extra block for Macintosh used only for directory + entries. This variant is used by ZipIt 1.3.5 and newer to + save some optional Mac-specific information about directories. + The local-header and central-header versions are identical. + + Value Size Description + ----- ---- ----------- + (Mac2c) 0x2805 Short tag for this extra block type + TSize Short total data size for this block (12) + "ZPIT" beLong extra-field signature + frFlags beShort attributes from DInfo.frFlags, may + be omitted + View beShort ZipIt view flag, may be omitted + + + The View field specifies ZipIt-internal settings as follows: + + Bits of the Flags: + bit 0 if set, the folder is shown expanded (open) + when the archive contents are viewed in ZipIt. + bits 1-15 reserved, zero; + + + -Info-ZIP Macintosh Extra Field (new): + ==================================== + + The following is the layout of the (new) Info-ZIP extra + block for Macintosh, designed by Dirk Haase. + All values are in little-endian. + (Last Revision 19981005) + + Local-header version: + + Value Size Description + ----- ---- ----------- + (Mac3) 0x334d Short tag for this extra block type ("M3") + TSize Short total data size for this block + BSize Long uncompressed finder attribute data size + Flags Short info bits + fdType Byte[4] Type of the File (4-byte string) + fdCreator Byte[4] Creator of the File (4-byte string) + (CType) Short compression type + (CRC) Long CRC value for uncompressed MacOS data + Attribs variable finder attribute data (see below) + + + Central-header version: + + Value Size Description + ----- ---- ----------- + (Mac3) 0x334d Short tag for this extra block type ("M3") + TSize Short total data size for this block + BSize Long uncompressed finder attribute data size + Flags Short info bits + fdType Byte[4] Type of the File (4-byte string) + fdCreator Byte[4] Creator of the File (4-byte string) + + The third bit of Flags in both headers indicates whether + the LOCAL extra field is uncompressed (and therefore whether CType + and CRC are omitted): + + Bits of the Flags: + bit 0 if set, file is a data fork; otherwise unset + bit 1 if set, filename will be not changed + bit 2 if set, Attribs is uncompressed (no CType, CRC) + bit 3 if set, date and times are in 64 bit + if zero date and times are in 32 bit. + bit 4 if set, timezone offsets fields for the native + Mac times are omitted (UTC support deactivated) + bits 5-15 reserved; + + + Attributes: + + Attribs is a Mac-specific block of data in little-endian format with + the following structure (if compressed, uncompress it first): + + Value Size Description + ----- ---- ----------- + fdFlags Short Finder Flags + fdLocation.v Short Finder Icon Location + fdLocation.h Short Finder Icon Location + fdFldr Short Folder containing file + + FXInfo 16 bytes Macintosh FXInfo structure + FXInfo-Structure: + fdIconID Short + fdUnused[3] Short unused but reserved 6 bytes + fdScript Byte Script flag and number + fdXFlags Byte More flag bits + fdComment Short Comment ID + fdPutAway Long Home Dir ID + + FVersNum Byte file version number + may be not used by MacOS + ACUser Byte directory access rights + + FlCrDat ULong date and time of creation + FlMdDat ULong date and time of last modification + FlBkDat ULong date and time of last backup + These time numbers are original Mac FileTime values (local time!). + Currently, date-time width is 32-bit, but future version may + support be 64-bit times (see flags) + + CrGMTOffs Long(signed!) difference "local Creat. time - UTC" + MdGMTOffs Long(signed!) difference "local Modif. time - UTC" + BkGMTOffs Long(signed!) difference "local Backup time - UTC" + These "local time - UTC" differences (stored in seconds) may be + used to support timestamp adjustment after inter-timezone transfer. + These fields are optional; bit 4 of the flags word controls their + presence. + + Charset Short TextEncodingBase (Charset) + valid for the following two fields + + FullPath variable Path of the current file. + Zero terminated string (C-String) + Currently coded in the native Charset. + + Comment variable Finder Comment of the current file. + Zero terminated string (C-String) + Currently coded in the native Charset. + + + -SmartZIP Macintosh Extra Field: + ==================================== + + The following is the layout of the SmartZIP extra + block for Macintosh, designed by Marco Bambini. + + Local-header version: + + Value Size Description + ----- ---- ----------- + 0x4d63 Short tag for this extra block type ("cM") + TSize Short total data size for this block (64) + "dZip" beLong extra-field signature + fdType Byte[4] Type of the File (4-byte string) + fdCreator Byte[4] Creator of the File (4-byte string) + fdFlags beShort Finder Flags + fdLocation.v beShort Finder Icon Location + fdLocation.h beShort Finder Icon Location + fdFldr beShort Folder containing file + CrDat beLong HParamBlockRec fileParam.ioFlCrDat + MdDat beLong HParamBlockRec fileParam.ioFlMdDat + frScroll.v Byte vertical pos. of folder's scroll bar + fdScript Byte Script flag and number + frScroll.h Byte horizontal pos. of folder's scroll bar + fdXFlags Byte More flag bits + FileName Byte[32] full Macintosh filename (pascal string) + + All fields but the first two are in native Macintosh format + (big-endian Motorola order, not little-endian Intel). + The extra field size is fixed to 64 bytes. + The local-header and central-header versions are identical. + + + -Acorn SparkFS Extra Field: + ========================= + + The following is the layout of David Pilling's SparkFS extra block + for Acorn RISC OS. The local-header and central-header versions are + identical. (Last Revision 19960922) + + Value Size Description + ----- ---- ----------- + (Acorn) 0x4341 Short tag for this extra block type ("AC") + TSize Short total data size for this block (20) + "ARC0" Long extra-field signature + LoadAddr Long load address or file type + ExecAddr Long exec address + Attr Long file permissions + Zero Long reserved; always zero + + The following bits of Attr are associated with the given file + permissions: + + bit 0 user-writable ('W') + bit 1 user-readable ('R') + bit 2 reserved + bit 3 locked ('L') + bit 4 publicly writable ('w') + bit 5 publicly readable ('r') + bit 6 reserved + bit 7 reserved + + + -VM/CMS Extra Field: + ================== + + The following is the layout of the file-attributes extra block for + VM/CMS. The local-header and central-header versions are + identical. (Last Revision 19960922) + + Value Size Description + ----- ---- ----------- + (VM/CMS) 0x4704 Short tag for this extra block type + TSize Short total data size for this block + flData variable file attributes data + + flData is an uncompressed fldata_t struct. + + + -MVS Extra Field: + =============== + + The following is the layout of the file-attributes extra block for + MVS. The local-header and central-header versions are identical. + (Last Revision 19960922) + + Value Size Description + ----- ---- ----------- + (MVS) 0x470f Short tag for this extra block type + TSize Short total data size for this block + flData variable file attributes data + + flData is an uncompressed fldata_t struct. + + + -PKWARE Unix Extra Field (0x000d): + ================================ + + The following is the layout of PKWARE's Unix "extra" block. + It was introduced with the release of PKZIP for Unix 2.50. + Note: all fields are stored in Intel low-byte/high-byte order. + (Last Revision 19980901) + + This field has a minimum data size of 12 bytes and is only stored + as local extra field. + + Value Size Description + ----- ---- ----------- + (Unix0) 0x000d Short Tag for this "extra" block type + TSize Short Total Data Size for this block + AcTime Long time of last access (UTC/GMT) + ModTime Long time of last modification (UTC/GMT) + UID Short Unix user ID + GID Short Unix group ID + (var) variable Variable length data field + + The variable length data field will contain file type + specific data. Currently the only values allowed are + the original "linked to" file names for hard or symbolic + links, and the major and minor device node numbers for + character and block device nodes. Since device nodes + cannot be either symbolic or hard links, only one set of + variable length data is stored. Link files will have the + name of the original file stored. This name is NOT NULL + terminated. Its size can be determined by checking TSize - + 12. Device entries will have eight bytes stored as two 4 + byte entries (in little-endian format). The first entry + will be the major device number, and the second the minor + device number. + + [Info-ZIP note: The fixed part of this field has the same layout as + Info-ZIP's abandoned "Unix1 timestamps & owner ID info" extra field; + only the two tag bytes are different.] + + + -PATCH Descriptor Extra Field (0x000f): + ===================================== + + The following is the layout of the Patch Descriptor "extra" + block. + + Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + (Patch) 0x000f Short Tag for this "extra" block type + TSize Short Size of the total "extra" block + Version Short Version of the descriptor + Flags Long Actions and reactions (see below) + OldSize Long Size of the file about to be patched + OldCRC Long 32-bit CRC of the file about to be patched + NewSize Long Size of the resulting file + NewCRC Long 32-bit CRC of the resulting file + + + Actions and reactions + + Bits Description + ---- ---------------- + 0 Use for auto detection + 1 Treat as a self-patch + 2-3 RESERVED + 4-5 Action (see below) + 6-7 RESERVED + 8-9 Reaction (see below) to absent file + 10-11 Reaction (see below) to newer file + 12-13 Reaction (see below) to unknown file + 14-15 RESERVED + 16-31 RESERVED + + Actions + + Action Value + ------ ----- + none 0 + add 1 + delete 2 + patch 3 + + Reactions + + Reaction Value + -------- ----- + ask 0 + skip 1 + ignore 2 + fail 3 + + Patch support is provided by PKPatchMaker(tm) technology and is + covered under U.S. Patents and Patents Pending. + + + -PKCS#7 Store for X.509 Certificates (0x0014): + ============================================ + + This field contains information about each of the certificates + files may be signed with. When the Central Directory Encryption + feature is enabled for a ZIP file, this record will appear in + the Archive Extra Data Record, otherwise it will appear in the + first central directory record and will be ignored in any + other record. + + Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + (Store) 0x0014 2 bytes Tag for this "extra" block type + TSize 2 bytes Size of the store data + SData TSize Data about the store + + SData + Value Size Description + ----- ---- ----------- + Version 2 bytes Version number, 0x0001 for now + StoreD (variable) Actual store data + + The StoreD member is suitable for passing as the pbData + member of a CRYPT_DATA_BLOB to the CertOpenStore() function + in Microsoft's CryptoAPI. The SSize member above will be + cbData + 6, where cbData is the cbData member of the same + CRYPT_DATA_BLOB. The encoding type to pass to + CertOpenStore() should be + PKCS_7_ANS_ENCODING | X509_ASN_ENCODING. + + + -X.509 Certificate ID and Signature for individual file (0x0015): + =============================================================== + + This field contains the information about which certificate in + the PKCS#7 store was used to sign a particular file. It also + contains the signature data. This field can appear multiple + times, but can only appear once per certificate. + + Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + (CID) 0x0015 2 bytes Tag for this "extra" block type + CSize 2 bytes Size of Method + Method (variable) + + Method + Value Size Description + ----- ---- ----------- + Version 2 bytes Version number, for now 0x0001 + AlgID 2 bytes Algorithm ID used for signing + IDSize 2 bytes Size of Certificate ID data + CertID (variable) Certificate ID data + SigSize 2 bytes Size of Signature data + Sig (variable) Signature data + + CertID + Value Size Description + ----- ---- ----------- + Size1 4 bytes Size of CertID, should be (IDSize - 4) + Size1 4 bytes A bug in version one causes this value + to appear twice. + IssSize 4 bytes Issuer data size + Issuer (variable) Issuer data + SerSize 4 bytes Serial Number size + Serial (variable) Serial Number data + + The Issuer and IssSize members are suitable for creating a + CRYPT_DATA_BLOB to be the Issuer member of a CERT_INFO + struct. The Serial and SerSize members would be the + SerialNumber member of the same CERT_INFO struct. This + struct would be used to find the certificate in the store + the file was signed with. Those structures are from the MS + CryptoAPI. + + Sig and SigSize are the actual signature data and size + generated by signing the file with the MS CryptoAPI using a + hash created with the given AlgID. + + + -X.509 Certificate ID and Signature for central directory (0x0016): + ================================================================= + + This field contains the information about which certificate in + the PKCS#7 store was used to sign the central directory structure. + When the Central Directory Encryption feature is enabled for a + ZIP file, this record will appear in the Archive Extra Data Record, + otherwise it will appear in the first central directory record, + along with the store. The data structure is the + same as the CID, except that SigSize will be 0, and there + will be no Sig member. + + This field is also kept after the last central directory + record, as the signature data (ID 0x05054b50, it looks like + a central directory record of a different type). This + second copy of the data is the Signature Data member of the + record, and will have a SigSize that is non-zero, and will + have Sig data. + + Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + (CDID) 0x0016 2 bytes Tag for this "extra" block type + TSize 2 bytes Size of data that follows + TData TSize Data + + + -Strong Encryption Header (0x0017) (EFS): + =============================== + + Value Size Description + ----- ---- ----------- + 0x0017 2 bytes Tag for this "extra" block type + TSize 2 bytes Size of data that follows + Format 2 bytes Format definition for this record + AlgID 2 bytes Encryption algorithm identifier + Bitlen 2 bytes Bit length of encryption key + Flags 2 bytes Processing flags + CertData TSize-8 Certificate decryption extra field data + (refer to the explanation for CertData + in the section describing the + Certificate Processing Method under + the Strong Encryption Specification) + + + -Record Management Controls (0x0018): + =================================== + + Value Size Description + ----- ---- ----------- +(Rec-CTL) 0x0018 2 bytes Tag for this "extra" block type + CSize 2 bytes Size of total extra block data + Tag1 2 bytes Record control attribute 1 + Size1 2 bytes Size of attribute 1, in bytes + Data1 Size1 Attribute 1 data + . + . + . + TagN 2 bytes Record control attribute N + SizeN 2 bytes Size of attribute N, in bytes + DataN SizeN Attribute N data + + + -PKCS#7 Encryption Recipient Certificate List (0x0019): (EFS) + ===================================================== + + This field contains the information about each of the certificates + that files may be encrypted with. This field should only appear + in the archive extra data record. This field is not required and + serves only to aide archive modifications by preserving public + encryption data. Individual security requirements may dictate + that this data be omitted to deter information exposure. + + Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + (CStore) 0x0019 2 bytes Tag for this "extra" block type + TSize 2 bytes Size of the store data + TData TSize Data about the store + + TData: + + Value Size Description + ----- ---- ----------- + Version 2 bytes Format version number - must 0x0001 at this time + CStore (var) PKCS#7 data blob + + + -MVS Extra Field (PKWARE, 0x0065): + ================================ + + The following is the layout of the MVS "extra" block. + Note: Some fields are stored in Big Endian format. + All text is in EBCDIC format unless otherwise specified. + + Value Size Description + ----- ---- ----------- + (MVS) 0x0065 2 bytes Tag for this "extra" block type + TSize 2 bytes Size for the following data block + ID 4 bytes EBCDIC "Z390" 0xE9F3F9F0 or + "T4MV" for TargetFour + (var) TSize-4 Attribute data + + + -OS/400 Extra Field (0x0065): + =========================== + + The following is the layout of the OS/400 "extra" block. + Note: Some fields are stored in Big Endian format. + All text is in EBCDIC format unless otherwise specified. + + Value Size Description + ----- ---- ----------- + (OS400) 0x0065 2 bytes Tag for this "extra" block type + TSize 2 bytes Size for the following data block + ID 4 bytes EBCDIC "I400" 0xC9F4F0F0 or + "T4MV" for TargetFour + (var) TSize-4 Attribute data + + + -Extended Timestamp Extra Field: + ============================== + + The following is the layout of the extended-timestamp extra block. + (Last Revision 19970118) + + Local-header version: + + Value Size Description + ----- ---- ----------- + (time) 0x5455 Short tag for this extra block type ("UT") + TSize Short total data size for this block + Flags Byte info bits + (ModTime) Long time of last modification (UTC/GMT) + (AcTime) Long time of last access (UTC/GMT) + (CrTime) Long time of original creation (UTC/GMT) + + Central-header version: + + Value Size Description + ----- ---- ----------- + (time) 0x5455 Short tag for this extra block type ("UT") + TSize Short total data size for this block + Flags Byte info bits (refers to local header!) + (ModTime) Long time of last modification (UTC/GMT) + + The central-header extra field contains the modification time only, + or no timestamp at all. TSize is used to flag its presence or + absence. But note: + + If "Flags" indicates that Modtime is present in the local header + field, it MUST be present in the central header field, too! + This correspondence is required because the modification time + value may be used to support trans-timezone freshening and + updating operations with zip archives. + + The time values are in standard Unix signed-long format, indicating + the number of seconds since 1 January 1970 00:00:00. The times + are relative to Coordinated Universal Time (UTC), also sometimes + referred to as Greenwich Mean Time (GMT). To convert to local time, + the software must know the local timezone offset from UTC/GMT. + + The lower three bits of Flags in both headers indicate which time- + stamps are present in the LOCAL extra field: + + bit 0 if set, modification time is present + bit 1 if set, access time is present + bit 2 if set, creation time is present + bits 3-7 reserved for additional timestamps; not set + + Those times that are present will appear in the order indicated, but + any combination of times may be omitted. (Creation time may be + present without access time, for example.) TSize should equal + (1 + 4*(number of set bits in Flags)), as the block is currently + defined. Other timestamps may be added in the future. + + + -Info-ZIP Unix Extra Field (type 1): + ================================== + + The following is the layout of the old Info-ZIP extra block for + Unix. It has been replaced by the extended-timestamp extra block + (0x5455) and the Unix type 2 extra block (0x7855). + (Last Revision 19970118) + + Local-header version: + + Value Size Description + ----- ---- ----------- + (Unix1) 0x5855 Short tag for this extra block type ("UX") + TSize Short total data size for this block + AcTime Long time of last access (UTC/GMT) + ModTime Long time of last modification (UTC/GMT) + UID Short Unix user ID (optional) + GID Short Unix group ID (optional) + + Central-header version: + + Value Size Description + ----- ---- ----------- + (Unix1) 0x5855 Short tag for this extra block type ("UX") + TSize Short total data size for this block + AcTime Long time of last access (GMT/UTC) + ModTime Long time of last modification (GMT/UTC) + + The file access and modification times are in standard Unix signed- + long format, indicating the number of seconds since 1 January 1970 + 00:00:00. The times are relative to Coordinated Universal Time + (UTC), also sometimes referred to as Greenwich Mean Time (GMT). To + convert to local time, the software must know the local timezone + offset from UTC/GMT. The modification time may be used by non-Unix + systems to support inter-timezone freshening and updating of zip + archives. + + The local-header extra block may optionally contain UID and GID + info for the file. The local-header TSize value is the only + indication of this. Note that Unix UIDs and GIDs are usually + specific to a particular machine, and they generally require root + access to restore. + + This extra field type is obsolete, but it has been in use since + mid-1994. Therefore future archiving software should continue to + support it. Some guidelines: + + An archive member should either contain the old "Unix1" + extra field block or the new extra field types "time" and/or + "Unix2". + + If both the old "Unix1" block type and one or both of the new + block types "time" and "Unix2" are found, the "Unix1" block + should be considered invalid and ignored. + + Unarchiving software should recognize both old and new extra + field block types, but the info from new types overrides the + old "Unix1" field. + + Archiving software should recognize "Unix1" extra fields for + timestamp comparison but never create it for updated, freshened + or new archive members. When copying existing members to a new + archive, any "Unix1" extra field blocks should be converted to + the new "time" and/or "Unix2" types. + + + -Info-ZIP Unix Extra Field (type 2): + ================================== + + The following is the layout of the new Info-ZIP extra block for + Unix. (Last Revision 19960922) + + Local-header version: + + Value Size Description + ----- ---- ----------- + (Unix2) 0x7855 Short tag for this extra block type ("Ux") + TSize Short total data size for this block (4) + UID Short Unix user ID + GID Short Unix group ID + + Central-header version: + + Value Size Description + ----- ---- ----------- + (Unix2) 0x7855 Short tag for this extra block type ("Ux") + TSize Short total data size for this block (0) + + The data size of the central-header version is zero; it is used + solely as a flag that UID/GID info is present in the local-header + extra field. If additional fields are ever added to the local + version, the central version may be extended to indicate this. + + Note that Unix UIDs and GIDs are usually specific to a particular + machine, and they generally require root access to restore. + + + -ASi Unix Extra Field: + ==================== + + The following is the layout of the ASi extra block for Unix. The + local-header and central-header versions are identical. + (Last Revision 19960916) + + Value Size Description + ----- ---- ----------- + (Unix3) 0x756e Short tag for this extra block type ("nu") + TSize Short total data size for this block + CRC Long CRC-32 of the remaining data + Mode Short file permissions + SizDev Long symlink'd size OR major/minor dev num + UID Short user ID + GID Short group ID + (var.) variable symbolic link filename + + Mode is the standard Unix st_mode field from struct stat, containing + user/group/other permissions, setuid/setgid and symlink info, etc. + + If Mode indicates that this file is a symbolic link, SizDev is the + size of the file to which the link points. Otherwise, if the file + is a device, SizDev contains the standard Unix st_rdev field from + struct stat (includes the major and minor numbers of the device). + SizDev is undefined in other cases. + + If Mode indicates that the file is a symbolic link, the final field + will be the name of the file to which the link points. The file- + name length can be inferred from TSize. + + [Note that TSize may incorrectly refer to the data size not counting + the CRC; i.e., it may be four bytes too small.] + + + -BeOS Extra Field: + ================ + + The following is the layout of the file-attributes extra block for + BeOS. (Last Revision 19970531) + + Local-header version: + + Value Size Description + ----- ---- ----------- + (BeOS) 0x6542 Short tag for this extra block type ("Be") + TSize Short total data size for this block + BSize Long uncompressed file attribute data size + Flags Byte info bits + (CType) Short compression type + (CRC) Long CRC value for uncompressed file attribs + Attribs variable file attribute data + + Central-header version: + + Value Size Description + ----- ---- ----------- + (BeOS) 0x6542 Short tag for this extra block type ("Be") + TSize Short total data size for this block (5) + BSize Long size of uncompr. local EF block data + Flags Byte info bits + + The least significant bit of Flags in both headers indicates whether + the LOCAL extra field is uncompressed (and therefore whether CType + and CRC are omitted): + + bit 0 if set, Attribs is uncompressed (no CType, CRC) + bits 1-7 reserved; if set, assume error or unknown data + + Currently the only supported compression types are deflated (type 8) + and stored (type 0); the latter is not used by Info-ZIP's Zip but is + supported by UnZip. + + Attribs is a BeOS-specific block of data in big-endian format with + the following structure (if compressed, uncompress it first): + + Value Size Description + ----- ---- ----------- + Name variable attribute name (null-terminated string) + Type Long attribute type (32-bit unsigned integer) + Size Long Long data size for this sub-block (64 bits) + Data variable attribute data + + The attribute structure is repeated for every attribute. The Data + field may contain anything--text, flags, bitmaps, etc. + + + -AtheOS Extra Field: + ================== + + The following is the layout of the file-attributes extra block for + AtheOS. This field is a very close spin-off from the BeOS e.f. + The only differences are: + - a new extra field signature + - numeric field in the attributes data are stored in little-endian + format ("i386" was initial hardware for AtheOS) + (Last Revision 20040908) + + Local-header version: + + Value Size Description + ----- ---- ----------- + (AtheOS) 0x7441 Short tag for this extra block type ("At") + TSize Short total data size for this block + BSize Long uncompressed file attribute data size + Flags Byte info bits + (CType) Short compression type + (CRC) Long CRC value for uncompressed file attribs + Attribs variable file attribute data + + Central-header version: + + Value Size Description + ----- ---- ----------- + (AtheOS) 0x7441 Short tag for this extra block type ("At") + TSize Short total data size for this block (5) + BSize Long size of uncompr. local EF block data + Flags Byte info bits + + The least significant bit of Flags in both headers indicates whether + the LOCAL extra field is uncompressed (and therefore whether CType + and CRC are omitted): + + bit 0 if set, Attribs is uncompressed (no CType, CRC) + bits 1-7 reserved; if set, assume error or unknown data + + Currently the only supported compression types are deflated (type 8) + and stored (type 0); the latter is not used by Info-ZIP's Zip but is + supported by UnZip. + + Attribs is a AtheOS-specific block of data in little-endian format + with the following structure (if compressed, uncompress it first): + + Value Size Description + ----- ---- ----------- + Name variable attribute name (null-terminated string) + Type Long attribute type (32-bit unsigned integer) + Size Long Long data size for this sub-block (64 bits) + Data variable attribute data + + The attribute structure is repeated for every attribute. The Data + field may contain anything--text, flags, bitmaps, etc. + + + -SMS/QDOS Extra Field: + ==================== + + The following is the layout of the file-attributes extra block for + SMS/QDOS. The local-header and central-header versions are identical. + (Last Revision 19960929) + + Value Size Description + ----- ---- ----------- + (QDOS) 0xfb4a Short tag for this extra block type + TSize Short total data size for this block + LongID Long extra-field signature + (ExtraID) Long additional signature/flag bytes + QDirect 64 bytes qdirect structure + + LongID may be "QZHD" or "QDOS". In the latter case, ExtraID will + be present. Its first three bytes are "02\0"; the last byte is + currently undefined. + + QDirect contains the file's uncompressed directory info (qdirect + struct). Its elements are in native (big-endian) format: + + d_length beLong file length + d_access byte file access type + d_type byte file type + d_datalen beLong data length + d_reserved beLong unused + d_szname beShort size of filename + d_name 36 bytes filename + d_update beLong time of last update + d_refdate beLong file version number + d_backup beLong time of last backup (archive date) + + + -AOS/VS Extra Field: + ================== + + The following is the layout of the extra block for Data General + AOS/VS. The local-header and central-header versions are identical. + (Last Revision 19961125) + + Value Size Description + ----- ---- ----------- + (AOSVS) 0x5356 Short tag for this extra block type ("VS") + TSize Short total data size for this block + "FCI\0" Long extra-field signature + Version Byte version of AOS/VS extra block (10 = 1.0) + Fstat variable fstat packet + AclBuf variable raw ACL data ($MXACL bytes) + + Fstat contains the file's uncompressed fstat packet, which is one of + the following: + + normal fstat packet (P_FSTAT struct) + DIR/CPD fstat packet (P_FSTAT_DIR struct) + unit (device) fstat packet (P_FSTAT_UNIT struct) + IPC file fstat packet (P_FSTAT_IPC struct) + + AclBuf contains the raw ACL data; its length is $MXACL. + + + -Tandem NSK Extra Field: + ====================== + + The following is the layout of the file-attributes extra block for + Tandem NSK. The local-header and central-header versions are + identical. (Last Revision 19981221) + + Value Size Description + ----- ---- ----------- + (TA) 0x4154 Short tag for this extra block type ("TA") + TSize Short total data size for this block (20) + NSKattrs 20 Bytes NSK attributes + + + -THEOS Extra Field: + ================= + + The following is the layout of the file-attributes extra block for + Theos. The local-header and central-header versions are identical. + (Last Revision 19990206) + + Value Size Description + ----- ---- ----------- + (Theos) 0x6854 Short 'Th' signature + size Short size of extra block + flags Byte reserved for future use + filesize Long file size + fileorg Byte type of file (see below) + keylen Short key length for indexed and keyed files, + data segment size for 16 bits programs + reclen Short record length for indexed,keyed and direct, + text segment size for 16 bits programs + filegrow Byte growing factor for indexed,keyed and direct + protect Byte protections (see below) + reserved Short reserved for future use + + File types + ========== + + 0x80 library (keyed access list of files) + 0x40 directory + 0x10 stream file + 0x08 direct file + 0x04 keyed file + 0x02 indexed file + 0x0e reserved + 0x01 16 bits real mode program (obsolete) + 0x21 16 bits protected mode program + 0x41 32 bits protected mode program + + Protection codes + ================ + + User protection + --------------- + 0x01 non readable + 0x02 non writable + 0x04 non executable + 0x08 non erasable + + Other protection + ---------------- + 0x10 non readable + 0x20 non writable + 0x40 non executable Theos before 4.0 + 0x40 modified Theos 4.x + 0x80 not hidden + + + -THEOS old inofficial Extra Field: + ================================ + + The following is the layout of an inoffical former version of a + Theos file-attributes extra blocks. This layout was never published + and is no longer created. However, UnZip can optionally support it + when compiling with the option flag OLD_THEOS_EXTRA defined. + Both the local-header and central-header versions are identical. + (Last Revision 19990206) + + Value Size Description + ----- ---- ----------- + (THS0) 0x4854 Short 'TH' signature + size Short size of extra block + flags Short reserved for future use + filesize Long file size + reclen Short record length for indexed,keyed and direct, + text segment size for 16 bits programs + keylen Short key length for indexed and keyed files, + data segment size for 16 bits programs + filegrow Byte growing factor for indexed,keyed and direct + reserved 3 Bytes reserved for future use + + + -FWKCS MD5 Extra Field (0x4b46): + ============================== + + The FWKCS Contents_Signature System, used in automatically + identifying files independent of filename, optionally adds + and uses an extra field to support the rapid creation of + an enhanced contents_signature. + There is no local-header version; the following applies + only to the central header. (Last Revision 19961207) + + Central-header version: + + Value Size Description + ----- ---- ----------- + (MD5) 0x4b46 Short tag for this extra block type ("FK") + TSize Short total data size for this block (19) + "MD5" 3 bytes extra-field signature + MD5hash 16 bytes 128-bit MD5 hash of uncompressed data + (low byte first) + + When FWKCS revises a .ZIP file central directory to add + this extra field for a file, it also replaces the + central directory entry for that file's uncompressed + file length with a measured value. + + FWKCS provides an option to strip this extra field, if + present, from a .ZIP file central directory. In adding + this extra field, FWKCS preserves .ZIP file Authenticity + Verification; if stripping this extra field, FWKCS + preserves all versions of AV through PKZIP version 2.04g. + + FWKCS, and FWKCS Contents_Signature System, are + trademarks of Frederick W. Kantor. + + (1) R. Rivest, RFC1321.TXT, MIT Laboratory for Computer + Science and RSA Data Security, Inc., April 1992. + ll.76-77: "The MD5 algorithm is being placed in the + public domain for review and possible adoption as a + standard." + + + file comment: (Variable) + + The comment for this file. + + number of this disk: (2 bytes) + + The number of this disk, which contains central + directory end record. If an archive is in zip64 format + and the value in this field is 0xFFFF, the size will + be in the corresponding 4 byte zip64 end of central + directory field. + + number of the disk with the start of the central directory: (2 bytes) + + The number of the disk on which the central + directory starts. If an archive is in zip64 format + and the value in this field is 0xFFFF, the size will + be in the corresponding 4 byte zip64 end of central + directory field. + + total number of entries in the central dir on this disk: (2 bytes) + + The number of central directory entries on this disk. + If an archive is in zip64 format and the value in + this field is 0xFFFF, the size will be in the + corresponding 8 byte zip64 end of central + directory field. + + total number of entries in the central dir: (2 bytes) + + The total number of files in the .ZIP file. If an + archive is in zip64 format and the value in this field + is 0xFFFF, the size will be in the corresponding 8 byte + zip64 end of central directory field. + + size of the central directory: (4 bytes) + + The size (in bytes) of the entire central directory. + If an archive is in zip64 format and the value in + this field is 0xFFFFFFFF, the size will be in the + corresponding 8 byte zip64 end of central + directory field. + + offset of start of central directory with respect to + the starting disk number: (4 bytes) + + Offset of the start of the central directory on the + disk on which the central directory starts. If an + archive is in zip64 format and the value in this + field is 0xFFFFFFFF, the size will be in the + corresponding 8 byte zip64 end of central + directory field. + + .ZIP file comment length: (2 bytes) + + The length of the comment for this .ZIP file. + + .ZIP file comment: (Variable) + + The comment for this .ZIP file. ZIP file comment data + is stored unsecured. No encryption or data authentication + is applied to this area at this time. Confidential information + should not be stored in this section. + + zip64 extensible data sector (variable size) + + (currently reserved for use by PKWARE) + + + K. General notes: + + 1) All fields unless otherwise noted are unsigned and stored + in Intel low-byte:high-byte, low-word:high-word order. + + 2) String fields are not null terminated, since the + length is given explicitly. + + 3) Local headers should not span disk boundaries. Also, even + though the central directory can span disk boundaries, no + single record in the central directory should be split + across disks. + + 4) The entries in the central directory may not necessarily + be in the same order that files appear in the .ZIP file. + + 5) Spanned/Split archives created using PKZIP for Windows + (V2.50 or greater), PKZIP Command Line (V2.50 or greater), + or PKZIP Explorer will include a special spanning + signature as the first 4 bytes of the first segment of + the archive. This signature (0x08074b50) will be + followed immediately by the local header signature for + the first file in the archive. A special spanning + marker may also appear in spanned/split archives if the + spanning or splitting process starts but only requires + one segment. In this case the 0x08074b50 signature + will be replaced with the temporary spanning marker + signature of 0x30304b50. Spanned/split archives + created with this special signature are compatible with + all versions of PKZIP from PKWARE. Split archives can + only be uncompressed by other versions of PKZIP that + know how to create a split archive. + + 6) If one of the fields in the end of central directory + record is too small to hold required data, the field + should be set to -1 (0xFFFF or 0xFFFFFFFF) and the + Zip64 format record should be created. + + 7) The end of central directory record and the + Zip64 end of central directory locator record must + reside on the same disk when splitting or spanning + an archive. + +V. UnShrinking - Method 1 +------------------------- + +Shrinking is a Dynamic Ziv-Lempel-Welch compression algorithm +with partial clearing. The initial code size is 9 bits, and +the maximum code size is 13 bits. Shrinking differs from +conventional Dynamic Ziv-Lempel-Welch implementations in several +respects: + +1) The code size is controlled by the compressor, and is not + automatically increased when codes larger than the current + code size are created (but not necessarily used). When + the decompressor encounters the code sequence 256 + (decimal) followed by 1, it should increase the code size + read from the input stream to the next bit size. No + blocking of the codes is performed, so the next code at + the increased size should be read from the input stream + immediately after where the previous code at the smaller + bit size was read. Again, the decompressor should not + increase the code size used until the sequence 256,1 is + encountered. + +2) When the table becomes full, total clearing is not + performed. Rather, when the compressor emits the code + sequence 256,2 (decimal), the decompressor should clear + all leaf nodes from the Ziv-Lempel tree, and continue to + use the current code size. The nodes that are cleared + from the Ziv-Lempel tree are then re-used, with the lowest + code value re-used first, and the highest code value + re-used last. The compressor can emit the sequence 256,2 + at any time. + + +VI. Expanding - Methods 2-5 +--------------------------- + +The Reducing algorithm is actually a combination of two +distinct algorithms. The first algorithm compresses repeated +byte sequences, and the second algorithm takes the compressed +stream from the first algorithm and applies a probabilistic +compression method. + +The probabilistic compression stores an array of 'follower +sets' S(j), for j=0 to 255, corresponding to each possible +ASCII character. Each set contains between 0 and 32 +characters, to be denoted as S(j)[0],...,S(j)[m], where m<32. +The sets are stored at the beginning of the data area for a +Reduced file, in reverse order, with S(255) first, and S(0) +last. + +The sets are encoded as { N(j), S(j)[0],...,S(j)[N(j)-1] }, +where N(j) is the size of set S(j). N(j) can be 0, in which +case the follower set for S(j) is empty. Each N(j) value is +encoded in 6 bits, followed by N(j) eight bit character values +corresponding to S(j)[0] to S(j)[N(j)-1] respectively. If +N(j) is 0, then no values for S(j) are stored, and the value +for N(j-1) immediately follows. + +Immediately after the follower sets, is the compressed data +stream. The compressed data stream can be interpreted for the +probabilistic decompression as follows: + + +let Last-Character <- 0. +loop until done + if the follower set S(Last-Character) is empty then + read 8 bits from the input stream, and copy this + value to the output stream. + otherwise if the follower set S(Last-Character) is non-empty then + read 1 bit from the input stream. + if this bit is not zero then + read 8 bits from the input stream, and copy this + value to the output stream. + otherwise if this bit is zero then + read B(N(Last-Character)) bits from the input + stream, and assign this value to I. + Copy the value of S(Last-Character)[I] to the + output stream. + + assign the last value placed on the output stream to + Last-Character. +end loop + + +B(N(j)) is defined as the minimal number of bits required to +encode the value N(j)-1. + + +The decompressed stream from above can then be expanded to +re-create the original file as follows: + + +let State <- 0. + +loop until done + read 8 bits from the input stream into C. + case State of + 0: if C is not equal to DLE (144 decimal) then + copy C to the output stream. + otherwise if C is equal to DLE then + let State <- 1. + + 1: if C is non-zero then + let V <- C. + let Len <- L(V) + let State <- F(Len). + otherwise if C is zero then + copy the value 144 (decimal) to the output stream. + let State <- 0 + + 2: let Len <- Len + C + let State <- 3. + + 3: move backwards D(V,C) bytes in the output stream + (if this position is before the start of the output + stream, then assume that all the data before the + start of the output stream is filled with zeros). + copy Len+3 bytes from this position to the output stream. + let State <- 0. + end case +end loop + + +The functions F,L, and D are dependent on the 'compression +factor', 1 through 4, and are defined as follows: + +For compression factor 1: + L(X) equals the lower 7 bits of X. + F(X) equals 2 if X equals 127 otherwise F(X) equals 3. + D(X,Y) equals the (upper 1 bit of X) * 256 + Y + 1. +For compression factor 2: + L(X) equals the lower 6 bits of X. + F(X) equals 2 if X equals 63 otherwise F(X) equals 3. + D(X,Y) equals the (upper 2 bits of X) * 256 + Y + 1. +For compression factor 3: + L(X) equals the lower 5 bits of X. + F(X) equals 2 if X equals 31 otherwise F(X) equals 3. + D(X,Y) equals the (upper 3 bits of X) * 256 + Y + 1. +For compression factor 4: + L(X) equals the lower 4 bits of X. + F(X) equals 2 if X equals 15 otherwise F(X) equals 3. + D(X,Y) equals the (upper 4 bits of X) * 256 + Y + 1. + + +VII. Imploding - Method 6 +------------------------- + +The Imploding algorithm is actually a combination of two distinct +algorithms. The first algorithm compresses repeated byte +sequences using a sliding dictionary. The second algorithm is +used to compress the encoding of the sliding dictionary output, +using multiple Shannon-Fano trees. + +The Imploding algorithm can use a 4K or 8K sliding dictionary +size. The dictionary size used can be determined by bit 1 in the +general purpose flag word; a 0 bit indicates a 4K dictionary +while a 1 bit indicates an 8K dictionary. + +The Shannon-Fano trees are stored at the start of the compressed +file. The number of trees stored is defined by bit 2 in the +general purpose flag word; a 0 bit indicates two trees stored, a +1 bit indicates three trees are stored. If 3 trees are stored, +the first Shannon-Fano tree represents the encoding of the +Literal characters, the second tree represents the encoding of +the Length information, the third represents the encoding of the +Distance information. When 2 Shannon-Fano trees are stored, the +Length tree is stored first, followed by the Distance tree. + +The Literal Shannon-Fano tree, if present is used to represent +the entire ASCII character set, and contains 256 values. This +tree is used to compress any data not compressed by the sliding +dictionary algorithm. When this tree is present, the Minimum +Match Length for the sliding dictionary is 3. If this tree is +not present, the Minimum Match Length is 2. + +The Length Shannon-Fano tree is used to compress the Length part +of the (length,distance) pairs from the sliding dictionary +output. The Length tree contains 64 values, ranging from the +Minimum Match Length, to 63 plus the Minimum Match Length. + +The Distance Shannon-Fano tree is used to compress the Distance +part of the (length,distance) pairs from the sliding dictionary +output. The Distance tree contains 64 values, ranging from 0 to +63, representing the upper 6 bits of the distance value. The +distance values themselves will be between 0 and the sliding +dictionary size, either 4K or 8K. + +The Shannon-Fano trees themselves are stored in a compressed +format. The first byte of the tree data represents the number of +bytes of data representing the (compressed) Shannon-Fano tree +minus 1. The remaining bytes represent the Shannon-Fano tree +data encoded as: + + High 4 bits: Number of values at this bit length + 1. (1 - 16) + Low 4 bits: Bit Length needed to represent value + 1. (1 - 16) + +The Shannon-Fano codes can be constructed from the bit lengths +using the following algorithm: + +1) Sort the Bit Lengths in ascending order, while retaining the + order of the original lengths stored in the file. + +2) Generate the Shannon-Fano trees: + + Code <- 0 + CodeIncrement <- 0 + LastBitLength <- 0 + i <- number of Shannon-Fano codes - 1 (either 255 or 63) + + loop while i >= 0 + Code = Code + CodeIncrement + if BitLength(i) <> LastBitLength then + LastBitLength=BitLength(i) + CodeIncrement = 1 shifted left (16 - LastBitLength) + ShannonCode(i) = Code + i <- i - 1 + end loop + + +3) Reverse the order of all the bits in the above ShannonCode() + vector, so that the most significant bit becomes the least + significant bit. For example, the value 0x1234 (hex) would + become 0x2C48 (hex). + +4) Restore the order of Shannon-Fano codes as originally stored + within the file. + +Example: + + This example will show the encoding of a Shannon-Fano tree + of size 8. Notice that the actual Shannon-Fano trees used + for Imploding are either 64 or 256 entries in size. + +Example: 0x02, 0x42, 0x01, 0x13 + + The first byte indicates 3 values in this table. Decoding the + bytes: + 0x42 = 5 codes of 3 bits long + 0x01 = 1 code of 2 bits long + 0x13 = 2 codes of 4 bits long + + This would generate the original bit length array of: + (3, 3, 3, 3, 3, 2, 4, 4) + + There are 8 codes in this table for the values 0 thru 7. Using + the algorithm to obtain the Shannon-Fano codes produces: + + Reversed Order Original +Val Sorted Constructed Code Value Restored Length +--- ------ ----------------- -------- -------- ------ +0: 2 1100000000000000 11 101 3 +1: 3 1010000000000000 101 001 3 +2: 3 1000000000000000 001 110 3 +3: 3 0110000000000000 110 010 3 +4: 3 0100000000000000 010 100 3 +5: 3 0010000000000000 100 11 2 +6: 4 0001000000000000 1000 1000 4 +7: 4 0000000000000000 0000 0000 4 + + +The values in the Val, Order Restored and Original Length columns +now represent the Shannon-Fano encoding tree that can be used for +decoding the Shannon-Fano encoded data. How to parse the +variable length Shannon-Fano values from the data stream is beyond +the scope of this document. (See the references listed at the end of +this document for more information.) However, traditional decoding +schemes used for Huffman variable length decoding, such as the +Greenlaw algorithm, can be successfully applied. + +The compressed data stream begins immediately after the +compressed Shannon-Fano data. The compressed data stream can be +interpreted as follows: + +loop until done + read 1 bit from input stream. + + if this bit is non-zero then (encoded data is literal data) + if Literal Shannon-Fano tree is present + read and decode character using Literal Shannon-Fano tree. + otherwise + read 8 bits from input stream. + copy character to the output stream. + otherwise (encoded data is sliding dictionary match) + if 8K dictionary size + read 7 bits for offset Distance (lower 7 bits of offset). + otherwise + read 6 bits for offset Distance (lower 6 bits of offset). + + using the Distance Shannon-Fano tree, read and decode the + upper 6 bits of the Distance value. + + using the Length Shannon-Fano tree, read and decode + the Length value. + + Length <- Length + Minimum Match Length + + if Length = 63 + Minimum Match Length + read 8 bits from the input stream, + add this value to Length. + + move backwards Distance+1 bytes in the output stream, and + copy Length characters from this position to the output + stream. (if this position is before the start of the output + stream, then assume that all the data before the start of + the output stream is filled with zeros). +end loop + +VIII. Tokenizing - Method 7 +--------------------------- + +This method is not used by PKZIP. + +IX. Deflating - Method 8 +------------------------ + +The Deflate algorithm is similar to the Implode algorithm using +a sliding dictionary of up to 32K with secondary compression +from Huffman/Shannon-Fano codes. + +The compressed data is stored in blocks with a header describing +the block and the Huffman codes used in the data block. The header +format is as follows: + + Bit 0: Last Block bit This bit is set to 1 if this is the last + compressed block in the data. + Bits 1-2: Block type + 00 (0) - Block is stored - All stored data is byte aligned. + Skip bits until next byte, then next word = block + length, followed by the ones compliment of the block + length word. Remaining data in block is the stored + data. + + 01 (1) - Use fixed Huffman codes for literal and distance codes. + Lit Code Bits Dist Code Bits + --------- ---- --------- ---- + 0 - 143 8 0 - 31 5 + 144 - 255 9 + 256 - 279 7 + 280 - 287 8 + + Literal codes 286-287 and distance codes 30-31 are + never used but participate in the huffman construction. + + 10 (2) - Dynamic Huffman codes. (See expanding Huffman codes) + + 11 (3) - Reserved - Flag a "Error in compressed data" if seen. + +Expanding Huffman Codes +----------------------- +If the data block is stored with dynamic Huffman codes, the Huffman +codes are sent in the following compressed format: + + 5 Bits: # of Literal codes sent - 257 (257 - 286) + All other codes are never sent. + 5 Bits: # of Dist codes - 1 (1 - 32) + 4 Bits: # of Bit Length codes - 4 (4 - 19) + +The Huffman codes are sent as bit lengths and the codes are built as +described in the implode algorithm. The bit lengths themselves are +compressed with Huffman codes. There are 19 bit length codes: + + 0 - 15: Represent bit lengths of 0 - 15 + 16: Copy the previous bit length 3 - 6 times. + The next 2 bits indicate repeat length (0 = 3, ... ,3 = 6) + Example: Codes 8, 16 (+2 bits 11), 16 (+2 bits 10) will + expand to 12 bit lengths of 8 (1 + 6 + 5) + 17: Repeat a bit length of 0 for 3 - 10 times. (3 bits of length) + 18: Repeat a bit length of 0 for 11 - 138 times (7 bits of length) + +The lengths of the bit length codes are sent packed 3 bits per value +(0 - 7) in the following order: + + 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 + +The Huffman codes should be built as described in the Implode algorithm +except codes are assigned starting at the shortest bit length, i.e. the +shortest code should be all 0's rather than all 1's. Also, codes with +a bit length of zero do not participate in the tree construction. The +codes are then used to decode the bit lengths for the literal and +distance tables. + +The bit lengths for the literal tables are sent first with the number +of entries sent described by the 5 bits sent earlier. There are up +to 286 literal characters; the first 256 represent the respective 8 +bit character, code 256 represents the End-Of-Block code, the remaining +29 codes represent copy lengths of 3 thru 258. There are up to 30 +distance codes representing distances from 1 thru 32k as described +below. + + Length Codes + ------------ + Extra Extra Extra Extra + Code Bits Length Code Bits Lengths Code Bits Lengths Code Bits Length(s) + ---- ---- ------ ---- ---- ------- ---- ---- ------- ---- ---- --------- + 257 0 3 265 1 11,12 273 3 35-42 281 5 131-162 + 258 0 4 266 1 13,14 274 3 43-50 282 5 163-194 + 259 0 5 267 1 15,16 275 3 51-58 283 5 195-226 + 260 0 6 268 1 17,18 276 3 59-66 284 5 227-258 + 261 0 7 269 2 19-22 277 4 67-82 285 0 258 + 262 0 8 270 2 23-26 278 4 83-98 + 263 0 9 271 2 27-30 279 4 99-114 + 264 0 10 272 2 31-34 280 4 115-130 + + Distance Codes + -------------- + Extra Extra Extra Extra + Code Bits Dist Code Bits Dist Code Bits Distance Code Bits Distance + ---- ---- ---- ---- ---- ------ ---- ---- -------- ---- ---- -------- + 0 0 1 8 3 17-24 16 7 257-384 24 11 4097-6144 + 1 0 2 9 3 25-32 17 7 385-512 25 11 6145-8192 + 2 0 3 10 4 33-48 18 8 513-768 26 12 8193-12288 + 3 0 4 11 4 49-64 19 8 769-1024 27 12 12289-16384 + 4 1 5,6 12 5 65-96 20 9 1025-1536 28 13 16385-24576 + 5 1 7,8 13 5 97-128 21 9 1537-2048 29 13 24577-32768 + 6 2 9-12 14 6 129-192 22 10 2049-3072 + 7 2 13-16 15 6 193-256 23 10 3073-4096 + +The compressed data stream begins immediately after the +compressed header data. The compressed data stream can be +interpreted as follows: + +do + read header from input stream. + + if stored block + skip bits until byte aligned + read count and 1's compliment of count + copy count bytes data block + otherwise + loop until end of block code sent + decode literal character from input stream + if literal < 256 + copy character to the output stream + otherwise + if literal = end of block + break from loop + otherwise + decode distance from input stream + + move backwards distance bytes in the output stream, and + copy length characters from this position to the output + stream. + end loop +while not last block + +if data descriptor exists + skip bits until byte aligned + check data descriptor signature + read crc and sizes +endif + +X. Enhanced Deflating - Method 9 +-------------------------------- + +The Enhanced Deflating algorithm is similar to Deflate but +uses a sliding dictionary of up to 64K. Deflate64(tm) is supported +by the Deflate extractor. + +[This description is inofficial. It has been deduced by Info-ZIP from +close inspection of PKZIP 4.x Deflate64(tm) compressed output.] + +The Deflate64 algorithm is almost identical to the normal Deflate algorithm. +Differences are: + +- The sliding window size is 64k. + +- The previously unused distance codes 30 and 31 are now used to describe + match distances from 32k-48k and 48k-64k. + Extra + Code Bits Distance + ---- ---- ----------- + .. .. ... + 29 13 24577-32768 + 30 14 32769-49152 + 31 14 49153-65536 + +- The semantics of the "maximum match length" code #258 has been changed to + allow the specification of arbitrary large match lengths (up to 64k). + Extra + Code Bits Lengths + ---- ---- ------ + ... .. ... + 284 5 227-258 + 285 16 3-65538 + +Whereas the first two modifications fit into the framework of Deflate, +this last change breaks compatibility with Deflate method 8. Thus, a +Deflate64 decompressor cannot decode normal deflated data. + +XI. BZIP2 - Method 12 +--------------------- + +BZIP2 is an open-source data compression algorithm developed by +Julian Seward. Information and source code for this algorithm +can be found on the internet. + + +XII. Traditional PKWARE Encryption +---------------------------------- + +The following information discusses the decryption steps +required to support traditional PKWARE encryption. This +form of encryption is considered weak by today's standards +and its use is recommended only for situations with +low security needs or for compatibility with older .ZIP +applications. + +XIII. Decryption +---------------- + +The encryption used in PKZIP was generously supplied by Roger +Schlafly. PKWARE is grateful to Mr. Schlafly for his expert +help and advice in the field of data encryption. + +PKZIP encrypts the compressed data stream. Encrypted files must +be decrypted before they can be extracted. + +Each encrypted file has an extra 12 bytes stored at the start of +the data area defining the encryption header for that file. The +encryption header is originally set to random values, and then +itself encrypted, using three, 32-bit keys. The key values are +initialized using the supplied encryption password. After each byte +is encrypted, the keys are then updated using pseudo-random number +generation techniques in combination with the same CRC-32 algorithm +used in PKZIP and described elsewhere in this document. + +The following is the basic steps required to decrypt a file: + +1) Initialize the three 32-bit keys with the password. +2) Read and decrypt the 12-byte encryption header, further + initializing the encryption keys. +3) Read and decrypt the compressed data stream using the + encryption keys. + + +Step 1 - Initializing the encryption keys +----------------------------------------- + +Key(0) <- 305419896 +Key(1) <- 591751049 +Key(2) <- 878082192 + +loop for i <- 0 to length(password)-1 + update_keys(password(i)) +end loop + + +Where update_keys() is defined as: + + +update_keys(char): + Key(0) <- crc32(key(0),char) + Key(1) <- Key(1) + (Key(0) & 000000ffH) + Key(1) <- Key(1) * 134775813 + 1 + Key(2) <- crc32(key(2),key(1) >> 24) +end update_keys + + +Where crc32(old_crc,char) is a routine that given a CRC value and a +character, returns an updated CRC value after applying the CRC-32 +algorithm described elsewhere in this document. + + +Step 2 - Decrypting the encryption header +----------------------------------------- + +The purpose of this step is to further initialize the encryption +keys, based on random data, to render a plaintext attack on the +data ineffective. + + +Read the 12-byte encryption header into Buffer, in locations +Buffer(0) thru Buffer(11). + +loop for i <- 0 to 11 + C <- buffer(i) ^ decrypt_byte() + update_keys(C) + buffer(i) <- C +end loop + + +Where decrypt_byte() is defined as: + + +unsigned char decrypt_byte() + local unsigned short temp + temp <- Key(2) | 2 + decrypt_byte <- (temp * (temp ^ 1)) >> 8 +end decrypt_byte + + +After the header is decrypted, the last 1 or 2 bytes in Buffer +should be the high-order word/byte of the CRC for the file being +decrypted, stored in Intel low-byte/high-byte order, or the high-order +byte of the file time if bit 3 of the general purpose bit flag is set. +Versions of PKZIP prior to 2.0 used a 2 byte CRC check; a 1 byte CRC check is +used on versions after 2.0. This can be used to test if the password +supplied is correct or not. + + +Step 3 - Decrypting the compressed data stream +---------------------------------------------- + +The compressed data stream can be decrypted as follows: + + +loop until done + read a character into C + Temp <- C ^ decrypt_byte() + update_keys(temp) + output Temp +end loop + + +XIV. Strong Encryption Specification (EFS) +------------------------------------------ + +Version 5.x of this specification introduced support for strong +encryption algorithms. These algorithms can be used with either +a password or an X.509v3 digital certificate to encrypt each file. +This format specification supports either password or certificate +based encryption to meet the security needs of today, to enable +interoperability between users within both PKI and non-PKI +environments, and to ensure interoperability between different +computing platforms that are running a ZIP program. + +Password based encryption is the most common form of encryption +people are familiar with. However, inherent weaknesses with +passwords (e.g. susceptibility to dictionary/brute force attack) +as well as password management and support issues make certificate +based encryption a more secure and scalable option. Industry +efforts and support are defining and moving towards more advanced +security solutions built around X.509v3 digital certificates and +Public Key Infrastructures(PKI) because of the greater scalability, +administrative options, and more robust security over traditional +password-based encryption. + +Most standard encryption algorithms are supported with this +specification. Reference implementations for many of these +algorithms are available from either commercial or open source +distributors. Readily available cryptographic toolkits make +implementation of the encryption features straight-forward. +This document is not intended to provide a treatise on data +encryption principles or theory. Its purpose is to document the +data structures required for implementing interoperable data +encryption within the .ZIP format. It is strongly recommended that +you have a good understanding of data encryption before reading +further. + +The algorithms introduced in Version 5.0 of this specification +include: + + RC2 40 bit, 64 bit, and 128 bit + RC4 40 bit, 64 bit, and 128 bit + DES + 3DES 112 bit and 168 bit + +Version 5.1 adds support for the following: + + AES 128 bit, 192 bit, and 256 bit + +Version 6.1 introduces encryption data changes to support +interoperability with SmartCard and USB Token certificate storage +methods which do not support the OAEP strengthening standard. + +Version 6.2 introduces support for encrypting metadata by compressing +and encrypting the central directory data structure to reduce information +leakage. Information leakage can occur in legacy ZIP applications +through exposure of information about a file even though that file is +stored encrypted. The information exposed consists of file +characteristics stored within the records and fields defined by this +specification. This includes data such as a files name, its original +size, timestamp and CRC32 value. + +Central Directory Encryption provides greater protection against +information leakage by encrypting the Central Directory structure and +by masking key values that are replicated in the unencrypted Local +Header. ZIP compatible programs that cannot interpret an encrypted +Central Directory structure cannot rely on the data in the corresponding +Local Header for decompression information. + +Extra Field records that may contain information about a file that should +not be exposed should not be stored in the Local Header and should only +be written to the Central Directory where they can be encrypted. This +design currently does not support streaming. Information in the End of +Central Directory record, the ZIP64 End of Central Directory Locator, +and the ZIP64 End of Central Directory record are not encrypted. Access +to view data on files within a ZIP file with an encrypted Central Directory +requires the appropriate password or private key for decryption prior to +viewing any files, or any information about the files, in the archive. + +Older ZIP compatible programs not familiar with the Central Directory +Encryption feature will no longer be able to recognize the Central +Directory and may assume the ZIP file is corrupt. Programs that +attempt streaming access using Local Headers will see invalid +information for each file. Central Directory Encryption need not be +used for every ZIP file. Its use is recommended for greater security. +ZIP files not using Central Directory Encryption should operate as +in the past. + +The details of the strong encryption specification for certificates +remain under development as design and testing issues are worked out +for the range of algorithms, encryption methods, certificate processing +and cross-platform support necessary to meet the advanced security needs +of .ZIP file users today and in the future. + +This feature specification is intended to support basic encryption needs +of today, such as password support. However this specification is also +designed to lay the foundation for future advanced security needs. + +Encryption provides data confidentiality and privacy. It is +recommended that you combine X.509 digital signing with encryption +to add authentication and non-repudiation. + + +Single Password Symmetric Encryption Method: +------------------------------------------- + +The Single Password Symmetric Encryption Method using strong +encryption algorithms operates similarly to the traditional +PKWARE encryption defined in this format. Additional data +structures are added to support the processing needs of the +strong algorithms. + +The Strong Encryption data structures are: + +1. General Purpose Bits - Bits 0 and 6 of the General Purpose bit +flag in both local and central header records. Both bits set +indicates strong encryption. Bit 13, when set indicates the Central +Directory is encrypted and that selected fields in the Local Header +are masked to hide their actual value. + + +2. Extra Field 0x0017 in central header only. + + Fields to consider in this record are: + + Format - the data format identifier for this record. The only + value allowed at this time is the integer value 2. + + AlgId - integer identifier of the encryption algorithm from the + following range + + 0x6601 - DES + 0x6602 - RC2 (version needed to extract < 5.2) + 0x6603 - 3DES 168 + 0x6609 - 3DES 112 + 0x660E - AES 128 + 0x660F - AES 192 + 0x6610 - AES 256 + 0x6702 - RC2 (version needed to extract >= 5.2) + 0x6801 - RC4 + 0xFFFF - Unknown algorithm + + Bitlen - Explicit bit length of key + + 40 + 56 + 64 + 112 + 128 + 168 + 192 + 256 + + Flags - Processing flags needed for decryption + + 0x0001 - Password is required to decrypt + 0x0002 - Certificates only + 0x0003 - Password or certificate required to decrypt + + Values > 0x0003 reserved for certificate processing + + +3. Decryption header record preceeding compressed file data. + + -Decryption Header: + + Value Size Description + ----- ---- ----------- + IVSize 2 bytes Size of initialization vector (IV) + IVData IVSize Initialization vector for this file + Size 4 bytes Size of remaining decryption header data + Format 2 bytes Format definition for this record + AlgID 2 bytes Encryption algorithm identifier + Bitlen 2 bytes Bit length of encryption key + Flags 2 bytes Processing flags + ErdSize 2 bytes Size of Encrypted Random Data + ErdData ErdSize Encrypted Random Data + Reserved1 4 bytes Reserved certificate processing data + Reserved2 (var) Reserved for certificate processing data + VSize 2 bytes Size of password validation data + VData VSize-4 Password validation data + VCRC32 4 bytes Standard ZIP CRC32 of password validation data + + IVData - The size of the IV should match the algorithm block size. + The IVData can be completely random data. If the size of + the randomly generated data does not match the block size + it should be complemented with zero's or truncated as + necessary. If IVSize is 0, then IV = CRC32 + Uncompressed + File Size (as a 64 bit little-endian, unsigned integer value). + + Format - the data format identifier for this record. The only + value allowed at this time is the integer value 3. + + AlgId - integer identifier of the encryption algorithm from the + following range + + 0x6601 - DES + 0x6602 - RC2 (version needed to extract < 5.2) + 0x6603 - 3DES 168 + 0x6609 - 3DES 112 + 0x660E - AES 128 + 0x660F - AES 192 + 0x6610 - AES 256 + 0x6702 - RC2 (version needed to extract >= 5.2) + 0x6801 - RC4 + 0xFFFF - Unknown algorithm + + Bitlen - Explicit bit length of key + + 40 + 56 + 64 + 112 + 128 + 168 + 192 + 256 + + Flags - Processing flags needed for decryption + + 0x0001 - Password is required to decrypt + 0x0002 - Certificates only + 0x0003 - Password or certificate required to decrypt + + Values > 0x0003 reserved for certificate processing + + ErdData - Encrypted random data is used to generate a file + session key for encrypting each file. SHA1 is + used to calculate hash data used to derive keys. + File session keys are derived from a master session + key generated from the user-supplied password. + If the Flags field in the decryption header contains + the value 0x4000, then the ErdData field must be + decrypted using 3DES. + + Reserved1 - Reserved for certificate processing, if value is + zero, then Reserved2 data is absent. See the explanation + under the Certificate Processing Method for details on + this data structure. + + Reserved2 - If present, the size of the Reserved2 data structure + is located by skipping the first 4 bytes of this field + and using the next 2 bytes as the remaining size. See + the explanation under the Certificate Processing Method + for details on this data structure. + + VSize - This size value will always include the 4 bytes of the + VCRC32 data and will be greater than 4 bytes. + + VData - Random data for password validation. This data is VSize + in length and VSize must be a multiple of the encryption + block size. VCRC32 is a checksum value of VData. + VData and VCRC32 are stored encrypted and start the + stream of encrypted data for a file. + +4. Single Password Central Directory Encryption + +Central Directory Encryption is achieved within the .ZIP format by +encrypting the Central Directory structure. This encapsulates the metadata +most often used for processing .ZIP files. Additional metadata is stored for +redundancy in the Local Header for each file. The process of concealing +metadata by encrypting the Central Directory does not protect the data within +the Local Header. To avoid information leakage from the exposed metadata +in the Local Header, the fields containing information about a file are masked. + +Local Header: + +Masking replaces the true content of the fields for a file in the Local +Header with false information. When masked, the Local Header is not +suitable for streaming access and the options for data recovery of damaged +archives is reduced. Extra Data fields that may contain confidential +data should not be stored within the Local Header. The value set into +the Version needed to extract field should be the correct value needed to +extract the file without regard to Central Directory Encryption. The fields +within the Local Header targeted for masking when the Central Directory is +encrypted are: + + Field Name Mask Value + ------------------ --------------------------- + compression method 0 + last mod file time 0 + last mod file date 0 + crc-32 0 + compressed size 0 + uncompressed size 0 + file name (variable size) Base 16 value from the + range 1 - FFFFFFFFFFFFFFFF + represented as a string whose + size will be set into the + file name length field + +The Base 16 value assigned as a masked file name is simply a sequentially +incremented value for each file starting with 1 for the first file. +Modifications to a ZIP file may cause different values to be stored for +each file. For compatibility, the file name field in the Local Header +should never be left blank. As of Version 6.2 of this specification, +the Compression Method and Compressed Size fields are not yet masked. + +Encrypting the Central Directory: + +Encryption of the Central Directory does not include encryption of the +Central Directory Signature data, the ZIP64 End of Central Directory +record, the ZIP64 End of Central Directory Locator, or the End +of Central Directory record. The ZIP file comment data is never +encrypted. + +Before encrypting the Central Directory, it may optionally be compressed. +Compression is not required, but for storage efficiency it is assumed +this structure will be compressed before encrypting. Similarly, this +specification supports compressing the Central Directory without +requiring that it also be encrypted. Early implementations of this +feature will assume the encryption method applied to files matches the +encryption applied to the Central Directory. + +Encryption of the Central Directory is done in a manner similar to +that of file encryption. The encrypted data is preceded by a +decryption header. The decryption header is known as the Archive +Decryption Header. The fields of this record are identical to +the decryption header preceding each encrypted file. The location +of the Archive Decryption Header is determined by the value in the +Start of the Central Directory field in the ZIP64 End of Central +Directory record. When the Central Directory is encrypted, the +ZIP64 End of Central Directory record will always be present. + +The layout of the ZIP64 End of Central Directory record for all +versions starting with 6.2 of this specification will follow the +Version 2 format. The Version 2 format is as follows: + +The first 48 bytes will remain identical to that of Version 1. +The record signature for both Version 1 and Version 2 will be +0x06064b50. Immediately following the 48th byte, which identifies +the end of the field known as the Offset of Start of Central +Directory With Respect to the Starting Disk Number will begin the +new fields defining Version 2 of this record. + +New fields for Version 2: + +Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + Compression Method 2 bytes Method used to compress the + Central Directory + Compressed Size 8 bytes Size of the compressed data + Original Size 8 bytes Original uncompressed size + AlgId 2 bytes Encryption algorithm ID + BitLen 2 bytes Encryption key length + Flags 2 bytes Encryption flags + HashID 2 bytes Hash algorithm identifier + Hash Length 2 bytes Length of hash data + Hash Data (variable) Hash data + +The Compression Method accepts the same range of values as the +corresponding field in the Central Header. + +The Compressed Size and Original Size values will not include the +data of the Central Directory Signature which is compressed or +encrypted. + +The AlgId, BitLen, and Flags fields accept the same range of values +the corresponding fields within the 0x0017 record. + +Hash ID identifies the algorithm used to hash the Central Directory +data. This data does not have to be hashed, in which case the +values for both the HashID and Hash Length will be 0. Possible +values for HashID are: + + Value Algorithm + ------ --------- + 0x0000 none + 0x0001 CRC32 + 0x8003 MD5 + 0x8004 SHA1 + +When the Central Directory data is signed, the same hash algorithm +used to hash the Central Directory for signing should be used. +This is recommended for processing efficiency, however, it is +permissible for any of the above algorithms to be used independent +of the signing process. + +The Hash Data will contain the hash data for the Central Directory. +The length of this data will vary depending on the algorithm used. + +The Version Needed to Extract should be set to 62. + +The value for the Total Number of Entries on the Current Disk will +be 0. These records will no longer support random access when +encrypting the Central Directory. + +When the Central Directory is compressed and/or encrypted, the +End of Central Directory record will store the value 0xFFFFFFFF +as the value for the Total Number of Entries in the Central +Directory. The value stored in the Total Number of Entries in +the Central Directory on this Disk field will be 0. The actual +values will be stored in the equivalent fields of the ZIP64 +End of Central Directory record. + +Decrypting and decompressing the Central Directory is accomplished +in the same manner as decrypting and decompressing a file. + + +5. Useful Tips + +Strong Encryption is always applied to a file after compression. The +block oriented algorithms all operate in Cypher Block Chaining (CBC) +mode. The block size used for AES encryption is 16. All other block +algorithms use a block size of 8. Two ID's are defined for RC2 to +account for a discrepancy found in the implementation of the RC2 +algorithm in the cryptographic library on Windows XP SP1 and all +earlier versions of Windows. + +A pseudo-code representation of the encryption process is as follows: + +Password = GetUserPassword() +RD = Random() +ERD = Encrypt(RD,DeriveKey(SHA1(Password))) +For Each File + IV = Random() + VData = Random() + FileSessionKey = DeriveKey(SHA1(IV + RD)) + Encrypt(VData + VCRC32 + FileData,FileSessionKey) +Done + +The function names and parameter requirements will depend on +the choice of the cryptographic toolkit selected. Almost any +toolkit supporting the reference implementations for each +algorithm can be used. The RSA BSAFE(r), OpenSSL, and Microsoft +CryptoAPI libraries are all known to work well. + + +Certificate Processing Method: +----------------------------- + +The Certificate Processing Method for ZIP file encryption remains +under development. The information provided here serves as a guide +to those interested in certificate-based data decryption. This +information may be subject to change in future versions of this +specification and is subject to change without notice. + +OAEP Processing with Certificate-based Encryption: + +Versions of PKZIP available during this development phase of the +certificate processing method may set a value of 61 into the +version needed to extract field for a file. This indicates that +non-OAEP key wrapping is used. This affects certificate encryption +only, and password encryption functions should not be affected by +this value. This means values of 61 may be found on files encrypted +with certificates only, or on files encrypted with both password +encryption and certificate encryption. Files encrypted with both +methods can safely be decrypted using the password methods documented. + +OAEP stands for Optimal Asymmetric Encryption Padding. It is a +strengthening technique used for small encoded items such as decryption +keys. This is commonly applied in cryptographic key-wrapping techniques +and is supported by PKCS #1. Versions 5.0 and 6.0 of this specification +were designed to support OAEP key-wrapping for certificate-based +decryption keys for additional security. + +Support for private keys stored on Smart Cards or Tokens introduced +a conflict with this OAEP logic. Most card and token products do +not support the additional strengthening applied to OAEP key-wrapped +data. In order to resolve this conflict, versions 6.1 and above of this +specification will no longer support OAEP when encrypting using +digital certificates. + +Certificate Processing Data Fields: + +The Certificate Processing Method of this specification defines the +following additional data fields: + + +1. Certificate Flag Values + +Additional processing flags that can be present in the Flags field of both +the 0x0017 field of the central directory Extra Field and the Decryption +header record preceding compressed file data are: + + 0x0007 - reserved for future use + 0x000F - reserved for future use + 0x0100 - Indicates non-OAEP key wrapping was used. If this + this field is set, the version needed to extract must + be at least 61. This means OAEP key wrapping is not + used when generating a Master Session Key using + ErdData. + 0x4000 - ErdData must be decrypted using 3DES-168, otherwise use the + same algorithm used for encrypting the file contents. + 0x8000 - reserved for future use + + +2. CertData - Extra Field 0x0017 record certificate data structure + +The data structure used to store certificate data within the section +of the Extra Field defined by the CertData field of the 0x0017 +record are as shown: + + Value Size Description + ----- ---- ----------- + RCount 4 bytes Number of recipients. + HashAlg 2 bytes Hash algorithm identifier + HSize 2 bytes Hash size + SRList (var) Simple list of recipients hashed public keys + + + RCount This defines the number intended recipients whose + public keys were used for encryption. This identifies + the number of elements in the SRList. + + HashAlg This defines the hash algorithm used to calculate + the public key hash of each public key used + for encryption. This field currently supports + only the following value for SHA-1 + + 0x8004 - SHA1 + + HSize This defines the size of a hashed public key. + + SRList This is a variable length list of the hashed + public keys for each intended recipient. Each + element in this list is HSize. The total size of + SRList is determined using RCount * HSize. + + +3. Reserved1 - Certificate Decryption Header Reserved1 Data: + + Value Size Description + ----- ---- ----------- + RCount 4 bytes Number of recipients. + + RCount This defines the number intended recipients whose + public keys were used for encryption. This defines + the number of elements in the REList field defined below. + + +4. Reserved2 - Certificate Decryption Header Reserved2 Data Structures: + + + Value Size Description + ----- ---- ----------- + HashAlg 2 bytes Hash algorithm identifier + HSize 2 bytes Hash size + REList (var) List of recipient data elements + + + HashAlg This defines the hash algorithm used to calculate + the public key hash of each public key used + for encryption. This field currently supports + only the following value for SHA-1 + + 0x8004 - SHA1 + + HSize This defines the size of a hashed public key + defined in REHData. + + REList This is a variable length of list of recipient data. + Each element in this list consists of a Recipient + Element data structure as follows: + + + Recipient Element (REList) Data Structure: + + Value Size Description + ----- ---- ----------- + RESize 2 bytes Size of REHData + REKData + REHData HSize Hash of recipients public key + REKData (var) Simple key blob + + + RESize This defines the size of an individual REList + element. This value is the combined size of the + REHData field + REKData field. REHData is defined by + HSize. REKData is variable and can be calculated + for each REList element using RESize and HSize. + + REHData Hashed public key for this recipient. + + REKData Simple Key Blob. The format of this data structure + is identical to that defined in the Microsoft + CryptoAPI and generated using the CryptExportKey() + function. The version of the Simple Key Blob + supported at this time is 0x02 as defined by + Microsoft. + +5. Certificate Processing - Central Directory Encryption: + +Central Directory Encryption using Digital Certificates will +operate in a manner similar to that of Single Password Central +Directory Encryption. This record will only be present when there +is data to place into it. Currently, data is placed into this +record when digital certificates are used for either encrypting +or signing the files within a ZIP file. When only password +encryption is used with no certificate encryption or digital +signing, this record is not currently needed. When present, this +record will appear before the start of the actual Central Directory +data structure and will be located immediately after the Archive +Decryption Header if the Central Directory is encrypted. + +The Archive Extra Data record will be used to store the following +information. Additional data may be added in future versions. + +Extra Data Fields: + +0x0014 - PKCS#7 Store for X.509 Certificates +0x0016 - X.509 Certificate ID and Signature for central directory +0x0019 - PKCS#7 Encryption Recipient Certificate List + +The 0x0014 and 0x0016 Extra Data records that otherwise would be +located in the first record of the Central Directory for digital +certificate processing. When encrypting or compressing the Central +Directory, the 0x0014 and 0x0016 records must be located in the +Archive Extra Data record and they should not remain in the first +Central Directory record. The Archive Extra Data record will also +be used to store the 0x0019 data. + +When present, the size of the Archive Extra Data record will be +included in the size of the Central Directory. The data of the +Archive Extra Data record will also be compressed and encrypted +along with the Central Directory data structure. + +6. Certificate Processing Differences: + +The Certificate Processing Method of encryption differs from the +Single Password Symmetric Encryption Method as follows. Instead +of using a user-defined password to generate a master session key, +cryptographically random data is used. The key material is then +wrapped using standard key-wrapping techniques. This key material +is wrapped using the public key of each recipient that will need +to decrypt the file using their corresponding private key. + +This specification currently assumes digital certificates will follow +the X.509 V3 format for 1024 bit and higher RSA format digital +certificates. Implementation of this Certificate Processing Method +requires supporting logic for key access and management. This logic +is outside the scope of this specification. + + +License Agreement: +----------------- + +The features set forth in this Section XIV (the "Strong Encryption +Specification") are covered by a pending patent application. Portions of +this Strong Encryption technology are available for use at no charge +under the following terms and conditions. + +1. License Grant. + + a. NOTICE TO USER. PLEASE READ THIS ENTIRE SECTION XIV OF THE + APPNOTE (THE "AGREEMENT") CAREFULLY. BY USING ALL OR ANY PORTION OF THE + LICENSED TECHNOLOGY, YOU ACCEPT ALL THE TERMS AND CONDITIONS OF THIS + AGREEMENT AND YOU AGREE THAT THIS AGREEMENT IS ENFORCEABLE LIKE ANY + WRITTEN NEGOTIATED AGREEMENT SIGNED BY YOU. IF YOU DO NOT AGREE, DO NOT + USE THE LICENSED TECHNOLOGY. + + b. Definitions. + + i. "Licensed Technology" shall mean that proprietary technology now or + hereafter owned or controlled by PKWare, Inc. ("PKWARE") or any + subsidiary or affiliate that covers or is necessary to be used to give + software the ability to a) extract and decrypt data from zip files + encrypted using any methods of data encryption and key processing which + are published in this APPNOTE or any prior APPNOTE, as supplemented by + any Additional Compatibility Information; and b) encrypt file contents + as part of .ZIP file processing using only the Single Password Symmetric + Encryption Method as published in this APPNOTE or any prior APPNOTE, as + supplemented by any Additional Compatibility Information. For purposes + of this AGREEMENT, "Additional Compatibility Information" means, with + regard to any method of data encryption and key processing published in + this or any prior APPNOTE, any corrections, additions, or clarifications + to the information in such APPNOTE that are required in order to give + software the ability to successfully extract and decrypt zip files (or, + but solely in the case of the Single Password Symmetric Encryption Method, + to successfully encrypt zip files) in a manner interoperable with the + actual implementation of such method in any PKWARE product that is + documented or publicly described by PKWARE as being able to create, or + to extract and decrypt, zip files using that method. + + ii. "Licensed Products" shall mean any products you produce that + incorporate the Licensed Technology. + + c. License to Licensed Technology. + + PKWARE hereby grants to you a non-exclusive license to use the Licensed + Technology for the purpose of manufacturing, offering, selling and using + Licensed Products, which license shall extend to permit the practice of all + claims in any patent or patent application (collectively, "Patents") now or + hereafter owned or controlled by PKWARE in any jurisdiction in the world + that are infringed by implementation of the Licensed Technology. You have + the right to sublicense rights you receive under the terms of this AGREEMENT + for the purpose of allowing sublicensee to manufacture, offer, sell and use + products that incorporate all or a portion of any of your Licensed Products, + but if you do, you agree to i) impose the same restrictions on any such + sublicensee as these terms impose on you and ii) notify the sublicensee, + by means chosen by you in your unfettered discretion, including a notice on + your web site, of the terms of this AGREEMENT and make available to each + sublicensee the full text of this APPNOTE. Further, PKWARE hereby grants to + you a non-exclusive right to reproduce and distribute, in any form, copies of + this APPNOTE, without modification. Notwithstanding anything to the contrary + in this AGREEMENT, you have the right to sublicense the rights, without any of + the restrictions described above or elsewhere in this AGREEMENT, to use, offer + to sell and sell Licensed Technology as incorporated in executable object code + or byte code forms of your Licensed Products. Any sublicense to use the + Licensed Technology incorporated in a Licensed Product granted by you shall + survive the termination of this AGREEMENT for any reason. PKWARE warrants that + this license shall continue to encumber the Licensed Technology regardless of + changes in ownership of the Licensed Technology. + + d. Proprietary Notices. + + i. With respect to any Licensed Product that is distributed by you either + in source code form or in the form of an object code library of externally + callable functions that has been designed by you for incorporation into third + party products, you agree to include, in the source code, or in the case of + an object code library, in accompanying documentation, a notice using the + words "patent pending" until a patent is issued to PKWARE covering any + portion of the Licensed Technology or PKWARE provides notice, by means + chosen by PKWARE in its unfettered discretion, that it no longer has any + patent pending covering any portion of the Licensed Technology. With respect + to any Licensed Product, upon your becoming aware that at least one patent has + been granted covering the Licensed Technology, you agree to include in any + revisions made by you to the documentation (or any source code distributed + by you) the words "Pat. No.", or "Patent Number" and the patent number or + numbers of the applicable patent or patents. PKWARE shall, from time to time, + inform you of the patent number or numbers of the patents covering the + Licensed Technology, by means chosen by PKWARE in its unfettered discretion, + including a notice on its web site. It shall be a violation of the terms of + this AGREEMENT for you to sell Licensed Products without complying with the + foregoing marking provisions. + + ii. You acknowledge that the terms of this AGREEMENT do not grant you any + license or other right to use any PKWARE trademark in connection with the sale, + offering for sale, distribution and delivery of the Licensed Products, or in + connection with the advertising, promotion and offering of the Licensed Products. + You acknowledge PKWARE's ownership of the PKZIP trademark and all other marks + owned by PKWARE. + + e. Covenant of Compliance and Remedies. + + To the extent that you have elected to implement portions of the Licensed + Technology, you agree to use reasonable diligence to comply with those portions + of this Section XIV, as modified or supplemented by Additional Compatibility + Information available to you, describing the portions of the Licensed Technology + that you have elected to implement. Upon reasonable request by PKWARE, you will + provide written notice to PKWARE identifying which version of this APPNOTE you + have relied upon for your implementation of any specified Licensed Product. + + If any substantial non-compliance with the terms of this AGREEMENT is determined + to exist, you will make such changes as necessary to bring your Licensed Products + into substantial compliance with the terms of this AGREEMENT. If, within sixty + days of receipt of notice that a Licensed Product fails to comply with the terms + of this AGREEMENT, you fail to make such changes as necessary to bring your + Licensed Products into compliance with the terms of this AGREEMENT, PKWARE may + terminate your rights under this AGREEMENT. PKWARE does not waive and expressly + reserves the right to pursue any and all additional remedies that are or may + become available to PKWARE. + + f. Warranty and Indemnification Regarding Exportation. + + You realize and acknowledge that, as between yourself and PKWARE, you are fully + responsible for compliance with the import and export laws and regulations of + any country in or to which you import or export any Licensed Products, and you + agree to hold PKWARE harmless from any claim of violation of any such import + or export laws. + + g. Patent Infringement. + + You agree that you will not bring or threaten to bring any action against PKWARE + for infringement of the claims of any patent owned or controlled by you solely + as a result of PKWARE's own implementation of the Licensed Technology. As its + exclusive remedy for your breach of the foregoing agreement, PKWARE reserves + the right to suspend or terminate all rights granted under the terms of this + AGREEMENT if you bring or threaten to bring any such action against PKWARE, + effective immediately upon delivery of written notice of suspension or + termination to you. + + h. Governing Law. + + The license granted in this AGREEMENT shall be governed by and construed under + the laws of the State of Wisconsin and the United States. + + i. Revisions and Notice. + + The license granted in this APPNOTE is irrevocable, except as expressly set + forth above. You agree and understand that any changes which PKWARE determines + to make to this APPNOTE shall be posted at the same location as the current + APPNOTE or at a location which will be identified by means chosen by PKWARE, + including a notice on its web site, and shall be available for adoption by you + immediately upon such posting, or at such other time as PKWARE shall determine. + Any changes to the terms of the license published in a subsequent version of + this AGREEMENT shall be binding upon you only with respect to your products + that (i) incorporate any Licensed Technology (as defined in the subsequent + AGREEMENT) that is not otherwise included in the definition of Licensed + Technology under this AGREEMENT, or (ii) that you expressly identify are to + be licensed under the subsequent AGREEMENT, which identification shall be by + written notice with reference to the APPNOTE (version and release date or other + unique identifier) in which the subsequent AGREEMENT is published. PKWARE + agrees to identify each change to this APPNOTE by using a unique version and + release date identifier or other unique identifier. + + j. Warranty by PKWARE + + PKWare, Inc. warrants that it has the right to grant the license hereunder. + +XV. Change Process +------------------ + +In order for the .ZIP file format to remain a viable definition, this +specification should be considered as open for periodic review and +revision. Although this format was originally designed with a +certain level of extensibility, not all changes in technology +(present or future) were or will be necessarily considered in its +design. If your application requires new definitions to the +extensible sections in this format, or if you would like to +submit new data structures, please forward your request to +zipformat@pkware.com. All submissions will be reviewed by the +ZIP File Specification Committee for possible inclusion into +future versions of this specification. Periodic revisions +to this specification will be published to ensure interoperability. +We encourage comments and feedback that may help improve clarity +or content. + + +XVI. Acknowledgements +--------------------- + +In addition to the above mentioned contributors to PKZIP and PKUNZIP, +I would like to extend special thanks to Robert Mahoney for suggesting +the extension .ZIP for this software. + + +XVII. References +---------------- + + Fiala, Edward R., and Greene, Daniel H., "Data compression with + finite windows", Communications of the ACM, Volume 32, Number 4, + April 1989, pages 490-505. + + Held, Gilbert, "Data Compression, Techniques and Applications, + Hardware and Software Considerations", John Wiley & Sons, 1987. + + Huffman, D.A., "A method for the construction of minimum-redundancy + codes", Proceedings of the IRE, Volume 40, Number 9, September 1952, + pages 1098-1101. + + Nelson, Mark, "LZW Data Compression", Dr. Dobbs Journal, Volume 14, + Number 10, October 1989, pages 29-37. + + Nelson, Mark, "The Data Compression Book", M&T Books, 1991. + + Storer, James A., "Data Compression, Methods and Theory", + Computer Science Press, 1988 + + Welch, Terry, "A Technique for High-Performance Data Compression", + IEEE Computer, Volume 17, Number 6, June 1984, pages 8-19. + + Ziv, J. and Lempel, A., "A universal algorithm for sequential data + compression", Communications of the ACM, Volume 30, Number 6, + June 1987, pages 520-540. + + Ziv, J. and Lempel, A., "Compression of individual sequences via + variable-rate coding", IEEE Transactions on Information Theory, + Volume 24, Number 5, September 1978, pages 530-536. diff --git a/src/AppNote.txt b/old/src/AppNote.txt similarity index 97% rename from src/AppNote.txt rename to old/src/AppNote.txt index 11a96f1..9440997 100644 --- a/src/AppNote.txt +++ b/old/src/AppNote.txt @@ -1,3217 +1,3217 @@ -File: APPNOTE.TXT - .ZIP File Format Specification -Version: 6.3.2 -Revised: September 28, 2007 -Copyright (c) 1989 - 2007 PKWARE Inc., All Rights Reserved. - -The use of certain technological aspects disclosed in the current -APPNOTE is available pursuant to the below section entitled -"Incorporating PKWARE Proprietary Technology into Your Product". - -I. Purpose ----------- - -This specification is intended to define a cross-platform, -interoperable file storage and transfer format. Since its -first publication in 1989, PKWARE has remained committed to -ensuring the interoperability of the .ZIP file format through -publication and maintenance of this specification. We trust that -all .ZIP compatible vendors and application developers that have -adopted and benefited from this format will share and support -this commitment to interoperability. - -II. Contacting PKWARE ---------------------- - - PKWARE, Inc. - 648 N. Plankinton Avenue, Suite 220 - Milwaukee, WI 53203 - +1-414-289-9788 - +1-414-289-9789 FAX - zipformat@pkware.com - -III. Disclaimer ---------------- - -Although PKWARE will attempt to supply current and accurate -information relating to its file formats, algorithms, and the -subject programs, the possibility of error or omission cannot -be eliminated. PKWARE therefore expressly disclaims any warranty -that the information contained in the associated materials relating -to the subject programs and/or the format of the files created or -accessed by the subject programs and/or the algorithms used by -the subject programs, or any other matter, is current, correct or -accurate as delivered. Any risk of damage due to any possible -inaccurate information is assumed by the user of the information. -Furthermore, the information relating to the subject programs -and/or the file formats created or accessed by the subject -programs and/or the algorithms used by the subject programs is -subject to change without notice. - -If the version of this file is marked as a NOTIFICATION OF CHANGE, -the content defines an Early Feature Specification (EFS) change -to the .ZIP file format that may be subject to modification prior -to publication of the Final Feature Specification (FFS). This -document may also contain information on Planned Feature -Specifications (PFS) defining recognized future extensions. - -IV. Change Log --------------- - -Version Change Description Date -------- ------------------ ---------- -5.2 -Single Password Symmetric Encryption 06/02/2003 - storage - -6.1.0 -Smartcard compatibility 01/20/2004 - -Documentation on certificate storage - -6.2.0 -Introduction of Central Directory 04/26/2004 - Encryption for encrypting metadata - -Added OS/X to Version Made By values - -6.2.1 -Added Extra Field placeholder for 04/01/2005 - POSZIP using ID 0x4690 - - -Clarified size field on - "zip64 end of central directory record" - -6.2.2 -Documented Final Feature Specification 01/06/2006 - for Strong Encryption - - -Clarifications and typographical - corrections - -6.3.0 -Added tape positioning storage 09/29/2006 - parameters - - -Expanded list of supported hash algorithms - - -Expanded list of supported compression - algorithms - - -Expanded list of supported encryption - algorithms - - -Added option for Unicode filename - storage - - -Clarifications for consistent use - of Data Descriptor records - - -Added additional "Extra Field" - definitions - -6.3.1 -Corrected standard hash values for 04/11/2007 - SHA-256/384/512 - -6.3.2 -Added compression method 97 09/28/2007 - - -Documented InfoZIP "Extra Field" - values for UTF-8 file name and - file comment storage - -V. General Format of a .ZIP file --------------------------------- - - Files stored in arbitrary order. Large .ZIP files can span multiple - volumes or be split into user-defined segment sizes. All values - are stored in little-endian byte order unless otherwise specified. - - Overall .ZIP file format: - - [local file header 1] - [file data 1] - [data descriptor 1] - . - . - . - [local file header n] - [file data n] - [data descriptor n] - [archive decryption header] - [archive extra data record] - [central directory] - [zip64 end of central directory record] - [zip64 end of central directory locator] - [end of central directory record] - - - A. Local file header: - - local file header signature 4 bytes (0x04034b50) - version needed to extract 2 bytes - general purpose bit flag 2 bytes - compression method 2 bytes - last mod file time 2 bytes - last mod file date 2 bytes - crc-32 4 bytes - compressed size 4 bytes - uncompressed size 4 bytes - file name length 2 bytes - extra field length 2 bytes - - file name (variable size) - extra field (variable size) - - B. File data - - Immediately following the local header for a file - is the compressed or stored data for the file. - The series of [local file header][file data][data - descriptor] repeats for each file in the .ZIP archive. - - C. Data descriptor: - - crc-32 4 bytes - compressed size 4 bytes - uncompressed size 4 bytes - - This descriptor exists only if bit 3 of the general - purpose bit flag is set (see below). It is byte aligned - and immediately follows the last byte of compressed data. - This descriptor is used only when it was not possible to - seek in the output .ZIP file, e.g., when the output .ZIP file - was standard output or a non-seekable device. For ZIP64(tm) format - archives, the compressed and uncompressed sizes are 8 bytes each. - - When compressing files, compressed and uncompressed sizes - should be stored in ZIP64 format (as 8 byte values) when a - files size exceeds 0xFFFFFFFF. However ZIP64 format may be - used regardless of the size of a file. When extracting, if - the zip64 extended information extra field is present for - the file the compressed and uncompressed sizes will be 8 - byte values. - - Although not originally assigned a signature, the value - 0x08074b50 has commonly been adopted as a signature value - for the data descriptor record. Implementers should be - aware that ZIP files may be encountered with or without this - signature marking data descriptors and should account for - either case when reading ZIP files to ensure compatibility. - When writing ZIP files, it is recommended to include the - signature value marking the data descriptor record. When - the signature is used, the fields currently defined for - the data descriptor record will immediately follow the - signature. - - An extensible data descriptor will be released in a future - version of this APPNOTE. This new record is intended to - resolve conflicts with the use of this record going forward, - and to provide better support for streamed file processing. - - When the Central Directory Encryption method is used, the data - descriptor record is not required, but may be used. If present, - and bit 3 of the general purpose bit field is set to indicate - its presence, the values in fields of the data descriptor - record should be set to binary zeros. - - D. Archive decryption header: - - The Archive Decryption Header is introduced in version 6.2 - of the ZIP format specification. This record exists in support - of the Central Directory Encryption Feature implemented as part of - the Strong Encryption Specification as described in this document. - When the Central Directory Structure is encrypted, this decryption - header will precede the encrypted data segment. The encrypted - data segment will consist of the Archive extra data record (if - present) and the encrypted Central Directory Structure data. - The format of this data record is identical to the Decryption - header record preceding compressed file data. If the central - directory structure is encrypted, the location of the start of - this data record is determined using the Start of Central Directory - field in the Zip64 End of Central Directory record. Refer to the - section on the Strong Encryption Specification for information - on the fields used in the Archive Decryption Header record. - - - E. Archive extra data record: - - archive extra data signature 4 bytes (0x08064b50) - extra field length 4 bytes - extra field data (variable size) - - The Archive Extra Data Record is introduced in version 6.2 - of the ZIP format specification. This record exists in support - of the Central Directory Encryption Feature implemented as part of - the Strong Encryption Specification as described in this document. - When present, this record immediately precedes the central - directory data structure. The size of this data record will be - included in the Size of the Central Directory field in the - End of Central Directory record. If the central directory structure - is compressed, but not encrypted, the location of the start of - this data record is determined using the Start of Central Directory - field in the Zip64 End of Central Directory record. - - - F. Central directory structure: - - [file header 1] - . - . - . - [file header n] - [digital signature] - - File header: - - central file header signature 4 bytes (0x02014b50) - version made by 2 bytes - version needed to extract 2 bytes - general purpose bit flag 2 bytes - compression method 2 bytes - last mod file time 2 bytes - last mod file date 2 bytes - crc-32 4 bytes - compressed size 4 bytes - uncompressed size 4 bytes - file name length 2 bytes - extra field length 2 bytes - file comment length 2 bytes - disk number start 2 bytes - internal file attributes 2 bytes - external file attributes 4 bytes - relative offset of local header 4 bytes - - file name (variable size) - extra field (variable size) - file comment (variable size) - - Digital signature: - - header signature 4 bytes (0x05054b50) - size of data 2 bytes - signature data (variable size) - - With the introduction of the Central Directory Encryption - feature in version 6.2 of this specification, the Central - Directory Structure may be stored both compressed and encrypted. - Although not required, it is assumed when encrypting the - Central Directory Structure, that it will be compressed - for greater storage efficiency. Information on the - Central Directory Encryption feature can be found in the section - describing the Strong Encryption Specification. The Digital - Signature record will be neither compressed nor encrypted. - - G. Zip64 end of central directory record - - zip64 end of central dir - signature 4 bytes (0x06064b50) - size of zip64 end of central - directory record 8 bytes - version made by 2 bytes - version needed to extract 2 bytes - number of this disk 4 bytes - number of the disk with the - start of the central directory 4 bytes - total number of entries in the - central directory on this disk 8 bytes - total number of entries in the - central directory 8 bytes - size of the central directory 8 bytes - offset of start of central - directory with respect to - the starting disk number 8 bytes - zip64 extensible data sector (variable size) - - The value stored into the "size of zip64 end of central - directory record" should be the size of the remaining - record and should not include the leading 12 bytes. - - Size = SizeOfFixedFields + SizeOfVariableData - 12. - - The above record structure defines Version 1 of the - zip64 end of central directory record. Version 1 was - implemented in versions of this specification preceding - 6.2 in support of the ZIP64 large file feature. The - introduction of the Central Directory Encryption feature - implemented in version 6.2 as part of the Strong Encryption - Specification defines Version 2 of this record structure. - Refer to the section describing the Strong Encryption - Specification for details on the version 2 format for - this record. - - Special purpose data may reside in the zip64 extensible data - sector field following either a V1 or V2 version of this - record. To ensure identification of this special purpose data - it must include an identifying header block consisting of the - following: - - Header ID - 2 bytes - Data Size - 4 bytes - - The Header ID field indicates the type of data that is in the - data block that follows. - - Data Size identifies the number of bytes that follow for this - data block type. - - Multiple special purpose data blocks may be present, but each - must be preceded by a Header ID and Data Size field. Current - mappings of Header ID values supported in this field are as - defined in APPENDIX C. - - H. Zip64 end of central directory locator - - zip64 end of central dir locator - signature 4 bytes (0x07064b50) - number of the disk with the - start of the zip64 end of - central directory 4 bytes - relative offset of the zip64 - end of central directory record 8 bytes - total number of disks 4 bytes - - I. End of central directory record: - - end of central dir signature 4 bytes (0x06054b50) - number of this disk 2 bytes - number of the disk with the - start of the central directory 2 bytes - total number of entries in the - central directory on this disk 2 bytes - total number of entries in - the central directory 2 bytes - size of the central directory 4 bytes - offset of start of central - directory with respect to - the starting disk number 4 bytes - .ZIP file comment length 2 bytes - .ZIP file comment (variable size) - - J. Explanation of fields: - - version made by (2 bytes) - - The upper byte indicates the compatibility of the file - attribute information. If the external file attributes - are compatible with MS-DOS and can be read by PKZIP for - DOS version 2.04g then this value will be zero. If these - attributes are not compatible, then this value will - identify the host system on which the attributes are - compatible. Software can use this information to determine - the line record format for text files etc. The current - mappings are: - - 0 - MS-DOS and OS/2 (FAT / VFAT / FAT32 file systems) - 1 - Amiga 2 - OpenVMS - 3 - UNIX 4 - VM/CMS - 5 - Atari ST 6 - OS/2 H.P.F.S. - 7 - Macintosh 8 - Z-System - 9 - CP/M 10 - Windows NTFS - 11 - MVS (OS/390 - Z/OS) 12 - VSE - 13 - Acorn Risc 14 - VFAT - 15 - alternate MVS 16 - BeOS - 17 - Tandem 18 - OS/400 - 19 - OS/X (Darwin) 20 thru 255 - unused - - The lower byte indicates the ZIP specification version - (the version of this document) supported by the software - used to encode the file. The value/10 indicates the major - version number, and the value mod 10 is the minor version - number. - - version needed to extract (2 bytes) - - The minimum supported ZIP specification version needed to - extract the file, mapped as above. This value is based on - the specific format features a ZIP program must support to - be able to extract the file. If multiple features are - applied to a file, the minimum version should be set to the - feature having the highest value. New features or feature - changes affecting the published format specification will be - implemented using higher version numbers than the last - published value to avoid conflict. - - Current minimum feature versions are as defined below: - - 1.0 - Default value - 1.1 - File is a volume label - 2.0 - File is a folder (directory) - 2.0 - File is compressed using Deflate compression - 2.0 - File is encrypted using traditional PKWARE encryption - 2.1 - File is compressed using Deflate64(tm) - 2.5 - File is compressed using PKWARE DCL Implode - 2.7 - File is a patch data set - 4.5 - File uses ZIP64 format extensions - 4.6 - File is compressed using BZIP2 compression* - 5.0 - File is encrypted using DES - 5.0 - File is encrypted using 3DES - 5.0 - File is encrypted using original RC2 encryption - 5.0 - File is encrypted using RC4 encryption - 5.1 - File is encrypted using AES encryption - 5.1 - File is encrypted using corrected RC2 encryption** - 5.2 - File is encrypted using corrected RC2-64 encryption** - 6.1 - File is encrypted using non-OAEP key wrapping*** - 6.2 - Central directory encryption - 6.3 - File is compressed using LZMA - 6.3 - File is compressed using PPMd+ - 6.3 - File is encrypted using Blowfish - 6.3 - File is encrypted using Twofish - - - * Early 7.x (pre-7.2) versions of PKZIP incorrectly set the - version needed to extract for BZIP2 compression to be 50 - when it should have been 46. - - ** Refer to the section on Strong Encryption Specification - for additional information regarding RC2 corrections. - - *** Certificate encryption using non-OAEP key wrapping is the - intended mode of operation for all versions beginning with 6.1. - Support for OAEP key wrapping should only be used for - backward compatibility when sending ZIP files to be opened by - versions of PKZIP older than 6.1 (5.0 or 6.0). - - + Files compressed using PPMd should set the version - needed to extract field to 6.3, however, not all ZIP - programs enforce this and may be unable to decompress - data files compressed using PPMd if this value is set. - - When using ZIP64 extensions, the corresponding value in the - zip64 end of central directory record should also be set. - This field should be set appropriately to indicate whether - Version 1 or Version 2 format is in use. - - general purpose bit flag: (2 bytes) - - Bit 0: If set, indicates that the file is encrypted. - - (For Method 6 - Imploding) - Bit 1: If the compression method used was type 6, - Imploding, then this bit, if set, indicates - an 8K sliding dictionary was used. If clear, - then a 4K sliding dictionary was used. - Bit 2: If the compression method used was type 6, - Imploding, then this bit, if set, indicates - 3 Shannon-Fano trees were used to encode the - sliding dictionary output. If clear, then 2 - Shannon-Fano trees were used. - - (For Methods 8 and 9 - Deflating) - Bit 2 Bit 1 - 0 0 Normal (-en) compression option was used. - 0 1 Maximum (-exx/-ex) compression option was used. - 1 0 Fast (-ef) compression option was used. - 1 1 Super Fast (-es) compression option was used. - - (For Method 14 - LZMA) - Bit 1: If the compression method used was type 14, - LZMA, then this bit, if set, indicates - an end-of-stream (EOS) marker is used to - mark the end of the compressed data stream. - If clear, then an EOS marker is not present - and the compressed data size must be known - to extract. - - Note: Bits 1 and 2 are undefined if the compression - method is any other. - - Bit 3: If this bit is set, the fields crc-32, compressed - size and uncompressed size are set to zero in the - local header. The correct values are put in the - data descriptor immediately following the compressed - data. (Note: PKZIP version 2.04g for DOS only - recognizes this bit for method 8 compression, newer - versions of PKZIP recognize this bit for any - compression method.) - - Bit 4: Reserved for use with method 8, for enhanced - deflating. - - Bit 5: If this bit is set, this indicates that the file is - compressed patched data. (Note: Requires PKZIP - version 2.70 or greater) - - Bit 6: Strong encryption. If this bit is set, you should - set the version needed to extract value to at least - 50 and you must also set bit 0. If AES encryption - is used, the version needed to extract value must - be at least 51. - - Bit 7: Currently unused. - - Bit 8: Currently unused. - - Bit 9: Currently unused. - - Bit 10: Currently unused. - - Bit 11: Language encoding flag (EFS). If this bit is set, - the filename and comment fields for this file - must be encoded using UTF-8. (see APPENDIX D) - - Bit 12: Reserved by PKWARE for enhanced compression. - - Bit 13: Used when encrypting the Central Directory to indicate - selected data values in the Local Header are masked to - hide their actual values. See the section describing - the Strong Encryption Specification for details. - - Bit 14: Reserved by PKWARE. - - Bit 15: Reserved by PKWARE. - - compression method: (2 bytes) - - (see accompanying documentation for algorithm - descriptions) - - 0 - The file is stored (no compression) - 1 - The file is Shrunk - 2 - The file is Reduced with compression factor 1 - 3 - The file is Reduced with compression factor 2 - 4 - The file is Reduced with compression factor 3 - 5 - The file is Reduced with compression factor 4 - 6 - The file is Imploded - 7 - Reserved for Tokenizing compression algorithm - 8 - The file is Deflated - 9 - Enhanced Deflating using Deflate64(tm) - 10 - PKWARE Data Compression Library Imploding (old IBM TERSE) - 11 - Reserved by PKWARE - 12 - File is compressed using BZIP2 algorithm - 13 - Reserved by PKWARE - 14 - LZMA (EFS) - 15 - Reserved by PKWARE - 16 - Reserved by PKWARE - 17 - Reserved by PKWARE - 18 - File is compressed using IBM TERSE (new) - 19 - IBM LZ77 z Architecture (PFS) - 97 - WavPack compressed data - 98 - PPMd version I, Rev 1 - - date and time fields: (2 bytes each) - - The date and time are encoded in standard MS-DOS format. - If input came from standard input, the date and time are - those at which compression was started for this data. - If encrypting the central directory and general purpose bit - flag 13 is set indicating masking, the value stored in the - Local Header will be zero. - - CRC-32: (4 bytes) - - The CRC-32 algorithm was generously contributed by - David Schwaderer and can be found in his excellent - book "C Programmers Guide to NetBIOS" published by - Howard W. Sams & Co. Inc. The 'magic number' for - the CRC is 0xdebb20e3. The proper CRC pre and post - conditioning is used, meaning that the CRC register - is pre-conditioned with all ones (a starting value - of 0xffffffff) and the value is post-conditioned by - taking the one's complement of the CRC residual. - If bit 3 of the general purpose flag is set, this - field is set to zero in the local header and the correct - value is put in the data descriptor and in the central - directory. When encrypting the central directory, if the - local header is not in ZIP64 format and general purpose - bit flag 13 is set indicating masking, the value stored - in the Local Header will be zero. - - compressed size: (4 bytes) - uncompressed size: (4 bytes) - - The size of the file compressed and uncompressed, - respectively. When a decryption header is present it will - be placed in front of the file data and the value of the - compressed file size will include the bytes of the decryption - header. If bit 3 of the general purpose bit flag is set, - these fields are set to zero in the local header and the - correct values are put in the data descriptor and - in the central directory. If an archive is in ZIP64 format - and the value in this field is 0xFFFFFFFF, the size will be - in the corresponding 8 byte ZIP64 extended information - extra field. When encrypting the central directory, if the - local header is not in ZIP64 format and general purpose bit - flag 13 is set indicating masking, the value stored for the - uncompressed size in the Local Header will be zero. - - file name length: (2 bytes) - extra field length: (2 bytes) - file comment length: (2 bytes) - - The length of the file name, extra field, and comment - fields respectively. The combined length of any - directory record and these three fields should not - generally exceed 65,535 bytes. If input came from standard - input, the file name length is set to zero. - - disk number start: (2 bytes) - - The number of the disk on which this file begins. If an - archive is in ZIP64 format and the value in this field is - 0xFFFF, the size will be in the corresponding 4 byte zip64 - extended information extra field. - - internal file attributes: (2 bytes) - - Bits 1 and 2 are reserved for use by PKWARE. - - The lowest bit of this field indicates, if set, that - the file is apparently an ASCII or text file. If not - set, that the file apparently contains binary data. - The remaining bits are unused in version 1.0. - - The 0x0002 bit of this field indicates, if set, that a - 4 byte variable record length control field precedes each - logical record indicating the length of the record. The - record length control field is stored in little-endian byte - order. This flag is independent of text control characters, - and if used in conjunction with text data, includes any - control characters in the total length of the record. This - value is provided for mainframe data transfer support. - - external file attributes: (4 bytes) - - The mapping of the external attributes is - host-system dependent (see 'version made by'). For - MS-DOS, the low order byte is the MS-DOS directory - attribute byte. If input came from standard input, this - field is set to zero. - - relative offset of local header: (4 bytes) - - This is the offset from the start of the first disk on - which this file appears, to where the local header should - be found. If an archive is in ZIP64 format and the value - in this field is 0xFFFFFFFF, the size will be in the - corresponding 8 byte zip64 extended information extra field. - - file name: (Variable) - - The name of the file, with optional relative path. - The path stored should not contain a drive or - device letter, or a leading slash. All slashes - should be forward slashes '/' as opposed to - backwards slashes '\' for compatibility with Amiga - and UNIX file systems etc. If input came from standard - input, there is no file name field. If encrypting - the central directory and general purpose bit flag 13 is set - indicating masking, the file name stored in the Local Header - will not be the actual file name. A masking value consisting - of a unique hexadecimal value will be stored. This value will - be sequentially incremented for each file in the archive. See - the section on the Strong Encryption Specification for details - on retrieving the encrypted file name. - - extra field: (Variable) - - This is for expansion. If additional information - needs to be stored for special needs or for specific - platforms, it should be stored here. Earlier versions - of the software can then safely skip this file, and - find the next file or header. This field will be 0 - length in version 1.0. - - In order to allow different programs and different types - of information to be stored in the 'extra' field in .ZIP - files, the following structure should be used for all - programs storing data in this field: - - header1+data1 + header2+data2 . . . - - Each header should consist of: - - Header ID - 2 bytes - Data Size - 2 bytes - - Note: all fields stored in Intel low-byte/high-byte order. - - The Header ID field indicates the type of data that is in - the following data block. - - Header ID's of 0 thru 31 are reserved for use by PKWARE. - The remaining ID's can be used by third party vendors for - proprietary usage. - - The current Header ID mappings defined by PKWARE are: - - 0x0001 Zip64 extended information extra field - 0x0007 AV Info - 0x0008 Reserved for extended language encoding data (PFS) - (see APPENDIX D) - 0x0009 OS/2 - 0x000a NTFS - 0x000c OpenVMS - 0x000d UNIX - 0x000e Reserved for file stream and fork descriptors - 0x000f Patch Descriptor - 0x0014 PKCS#7 Store for X.509 Certificates - 0x0015 X.509 Certificate ID and Signature for - individual file - 0x0016 X.509 Certificate ID for Central Directory - 0x0017 Strong Encryption Header - 0x0018 Record Management Controls - 0x0019 PKCS#7 Encryption Recipient Certificate List - 0x0065 IBM S/390 (Z390), AS/400 (I400) attributes - - uncompressed - 0x0066 Reserved for IBM S/390 (Z390), AS/400 (I400) - attributes - compressed - 0x4690 POSZIP 4690 (reserved) - - Third party mappings commonly used are: - - - 0x07c8 Macintosh - 0x2605 ZipIt Macintosh - 0x2705 ZipIt Macintosh 1.3.5+ - 0x2805 ZipIt Macintosh 1.3.5+ - 0x334d Info-ZIP Macintosh - 0x4341 Acorn/SparkFS - 0x4453 Windows NT security descriptor (binary ACL) - 0x4704 VM/CMS - 0x470f MVS - 0x4b46 FWKCS MD5 (see below) - 0x4c41 OS/2 access control list (text ACL) - 0x4d49 Info-ZIP OpenVMS - 0x4f4c Xceed original location extra field - 0x5356 AOS/VS (ACL) - 0x5455 extended timestamp - 0x554e Xceed unicode extra field - 0x5855 Info-ZIP UNIX (original, also OS/2, NT, etc) - 0x6375 Info-ZIP Unicode Comment Extra Field - 0x6542 BeOS/BeBox - 0x7075 Info-ZIP Unicode Path Extra Field - 0x756e ASi UNIX - 0x7855 Info-ZIP UNIX (new) - 0xa220 Microsoft Open Packaging Growth Hint - 0xfd4a SMS/QDOS - - Detailed descriptions of Extra Fields defined by third - party mappings will be documented as information on - these data structures is made available to PKWARE. - PKWARE does not guarantee the accuracy of any published - third party data. - - The Data Size field indicates the size of the following - data block. Programs can use this value to skip to the - next header block, passing over any data blocks that are - not of interest. - - Note: As stated above, the size of the entire .ZIP file - header, including the file name, comment, and extra - field should not exceed 64K in size. - - In case two different programs should appropriate the same - Header ID value, it is strongly recommended that each - program place a unique signature of at least two bytes in - size (and preferably 4 bytes or bigger) at the start of - each data area. Every program should verify that its - unique signature is present, in addition to the Header ID - value being correct, before assuming that it is a block of - known type. - - -Zip64 Extended Information Extra Field (0x0001): - - The following is the layout of the zip64 extended - information "extra" block. If one of the size or - offset fields in the Local or Central directory - record is too small to hold the required data, - a Zip64 extended information record is created. - The order of the fields in the zip64 extended - information record is fixed, but the fields will - only appear if the corresponding Local or Central - directory record field is set to 0xFFFF or 0xFFFFFFFF. - - Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - (ZIP64) 0x0001 2 bytes Tag for this "extra" block type - Size 2 bytes Size of this "extra" block - Original - Size 8 bytes Original uncompressed file size - Compressed - Size 8 bytes Size of compressed data - Relative Header - Offset 8 bytes Offset of local header record - Disk Start - Number 4 bytes Number of the disk on which - this file starts - - This entry in the Local header must include BOTH original - and compressed file size fields. If encrypting the - central directory and bit 13 of the general purpose bit - flag is set indicating masking, the value stored in the - Local Header for the original file size will be zero. - - - -OS/2 Extra Field (0x0009): - - The following is the layout of the OS/2 attributes "extra" - block. (Last Revision 09/05/95) - - Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - (OS/2) 0x0009 2 bytes Tag for this "extra" block type - TSize 2 bytes Size for the following data block - BSize 4 bytes Uncompressed Block Size - CType 2 bytes Compression type - EACRC 4 bytes CRC value for uncompress block - (var) variable Compressed block - - The OS/2 extended attribute structure (FEA2LIST) is - compressed and then stored in it's entirety within this - structure. There will only ever be one "block" of data in - VarFields[]. - - -NTFS Extra Field (0x000a): - - The following is the layout of the NTFS attributes - "extra" block. (Note: At this time the Mtime, Atime - and Ctime values may be used on any WIN32 system.) - - Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - (NTFS) 0x000a 2 bytes Tag for this "extra" block type - TSize 2 bytes Size of the total "extra" block - Reserved 4 bytes Reserved for future use - Tag1 2 bytes NTFS attribute tag value #1 - Size1 2 bytes Size of attribute #1, in bytes - (var.) Size1 Attribute #1 data - . - . - . - TagN 2 bytes NTFS attribute tag value #N - SizeN 2 bytes Size of attribute #N, in bytes - (var.) SizeN Attribute #N data - - For NTFS, values for Tag1 through TagN are as follows: - (currently only one set of attributes is defined for NTFS) - - Tag Size Description - ----- ---- ----------- - 0x0001 2 bytes Tag for attribute #1 - Size1 2 bytes Size of attribute #1, in bytes - Mtime 8 bytes File last modification time - Atime 8 bytes File last access time - Ctime 8 bytes File creation time - - -OpenVMS Extra Field (0x000c): - - The following is the layout of the OpenVMS attributes - "extra" block. - - Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - (VMS) 0x000c 2 bytes Tag for this "extra" block type - TSize 2 bytes Size of the total "extra" block - CRC 4 bytes 32-bit CRC for remainder of the block - Tag1 2 bytes OpenVMS attribute tag value #1 - Size1 2 bytes Size of attribute #1, in bytes - (var.) Size1 Attribute #1 data - . - . - . - TagN 2 bytes OpenVMS attribute tag value #N - SizeN 2 bytes Size of attribute #N, in bytes - (var.) SizeN Attribute #N data - - Rules: - - 1. There will be one or more of attributes present, which - will each be preceded by the above TagX & SizeX values. - These values are identical to the ATR$C_XXXX and - ATR$S_XXXX constants which are defined in ATR.H under - OpenVMS C. Neither of these values will ever be zero. - - 2. No word alignment or padding is performed. - - 3. A well-behaved PKZIP/OpenVMS program should never produce - more than one sub-block with the same TagX value. Also, - there will never be more than one "extra" block of type - 0x000c in a particular directory record. - - -UNIX Extra Field (0x000d): - - The following is the layout of the UNIX "extra" block. - Note: all fields are stored in Intel low-byte/high-byte - order. - - Value Size Description - ----- ---- ----------- - (UNIX) 0x000d 2 bytes Tag for this "extra" block type - TSize 2 bytes Size for the following data block - Atime 4 bytes File last access time - Mtime 4 bytes File last modification time - Uid 2 bytes File user ID - Gid 2 bytes File group ID - (var) variable Variable length data field - - The variable length data field will contain file type - specific data. Currently the only values allowed are - the original "linked to" file names for hard or symbolic - links, and the major and minor device node numbers for - character and block device nodes. Since device nodes - cannot be either symbolic or hard links, only one set of - variable length data is stored. Link files will have the - name of the original file stored. This name is NOT NULL - terminated. Its size can be determined by checking TSize - - 12. Device entries will have eight bytes stored as two 4 - byte entries (in little endian format). The first entry - will be the major device number, and the second the minor - device number. - - -PATCH Descriptor Extra Field (0x000f): - - The following is the layout of the Patch Descriptor "extra" - block. - - Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - (Patch) 0x000f 2 bytes Tag for this "extra" block type - TSize 2 bytes Size of the total "extra" block - Version 2 bytes Version of the descriptor - Flags 4 bytes Actions and reactions (see below) - OldSize 4 bytes Size of the file about to be patched - OldCRC 4 bytes 32-bit CRC of the file to be patched - NewSize 4 bytes Size of the resulting file - NewCRC 4 bytes 32-bit CRC of the resulting file - - Actions and reactions - - Bits Description - ---- ---------------- - 0 Use for auto detection - 1 Treat as a self-patch - 2-3 RESERVED - 4-5 Action (see below) - 6-7 RESERVED - 8-9 Reaction (see below) to absent file - 10-11 Reaction (see below) to newer file - 12-13 Reaction (see below) to unknown file - 14-15 RESERVED - 16-31 RESERVED - - Actions - - Action Value - ------ ----- - none 0 - add 1 - delete 2 - patch 3 - - Reactions - - Reaction Value - -------- ----- - ask 0 - skip 1 - ignore 2 - fail 3 - - Patch support is provided by PKPatchMaker(tm) technology and is - covered under U.S. Patents and Patents Pending. The use or - implementation in a product of certain technological aspects set - forth in the current APPNOTE, including those with regard to - strong encryption, patching, or extended tape operations requires - a license from PKWARE. Please contact PKWARE with regard to - acquiring a license. - - -PKCS#7 Store for X.509 Certificates (0x0014): - - This field contains information about each of the certificates - files may be signed with. When the Central Directory Encryption - feature is enabled for a ZIP file, this record will appear in - the Archive Extra Data Record, otherwise it will appear in the - first central directory record and will be ignored in any - other record. - - Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - (Store) 0x0014 2 bytes Tag for this "extra" block type - TSize 2 bytes Size of the store data - TData TSize Data about the store - - - -X.509 Certificate ID and Signature for individual file (0x0015): - - This field contains the information about which certificate in - the PKCS#7 store was used to sign a particular file. It also - contains the signature data. This field can appear multiple - times, but can only appear once per certificate. - - Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - (CID) 0x0015 2 bytes Tag for this "extra" block type - TSize 2 bytes Size of data that follows - TData TSize Signature Data - - -X.509 Certificate ID and Signature for central directory (0x0016): - - This field contains the information about which certificate in - the PKCS#7 store was used to sign the central directory structure. - When the Central Directory Encryption feature is enabled for a - ZIP file, this record will appear in the Archive Extra Data Record, - otherwise it will appear in the first central directory record. - - Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - (CDID) 0x0016 2 bytes Tag for this "extra" block type - TSize 2 bytes Size of data that follows - TData TSize Data - - -Strong Encryption Header (0x0017): - - Value Size Description - ----- ---- ----------- - 0x0017 2 bytes Tag for this "extra" block type - TSize 2 bytes Size of data that follows - Format 2 bytes Format definition for this record - AlgID 2 bytes Encryption algorithm identifier - Bitlen 2 bytes Bit length of encryption key - Flags 2 bytes Processing flags - CertData TSize-8 Certificate decryption extra field data - (refer to the explanation for CertData - in the section describing the - Certificate Processing Method under - the Strong Encryption Specification) - - - -Record Management Controls (0x0018): - - Value Size Description - ----- ---- ----------- -(Rec-CTL) 0x0018 2 bytes Tag for this "extra" block type - CSize 2 bytes Size of total extra block data - Tag1 2 bytes Record control attribute 1 - Size1 2 bytes Size of attribute 1, in bytes - Data1 Size1 Attribute 1 data - . - . - . - TagN 2 bytes Record control attribute N - SizeN 2 bytes Size of attribute N, in bytes - DataN SizeN Attribute N data - - - -PKCS#7 Encryption Recipient Certificate List (0x0019): - - This field contains information about each of the certificates - used in encryption processing and it can be used to identify who is - allowed to decrypt encrypted files. This field should only appear - in the archive extra data record. This field is not required and - serves only to aide archive modifications by preserving public - encryption key data. Individual security requirements may dictate - that this data be omitted to deter information exposure. - - Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - (CStore) 0x0019 2 bytes Tag for this "extra" block type - TSize 2 bytes Size of the store data - TData TSize Data about the store - - TData: - - Value Size Description - ----- ---- ----------- - Version 2 bytes Format version number - must 0x0001 at this time - CStore (var) PKCS#7 data blob - - - -MVS Extra Field (0x0065): - - The following is the layout of the MVS "extra" block. - Note: Some fields are stored in Big Endian format. - All text is in EBCDIC format unless otherwise specified. - - Value Size Description - ----- ---- ----------- - (MVS) 0x0065 2 bytes Tag for this "extra" block type - TSize 2 bytes Size for the following data block - ID 4 bytes EBCDIC "Z390" 0xE9F3F9F0 or - "T4MV" for TargetFour - (var) TSize-4 Attribute data (see APPENDIX B) - - - -OS/400 Extra Field (0x0065): - - The following is the layout of the OS/400 "extra" block. - Note: Some fields are stored in Big Endian format. - All text is in EBCDIC format unless otherwise specified. - - Value Size Description - ----- ---- ----------- - (OS400) 0x0065 2 bytes Tag for this "extra" block type - TSize 2 bytes Size for the following data block - ID 4 bytes EBCDIC "I400" 0xC9F4F0F0 or - "T4MV" for TargetFour - (var) TSize-4 Attribute data (see APPENDIX A) - - - Third-party Mappings: - - -ZipIt Macintosh Extra Field (long) (0x2605): - - The following is the layout of the ZipIt extra block - for Macintosh. The local-header and central-header versions - are identical. This block must be present if the file is - stored MacBinary-encoded and it should not be used if the file - is not stored MacBinary-encoded. - - Value Size Description - ----- ---- ----------- - (Mac2) 0x2605 Short tag for this extra block type - TSize Short total data size for this block - "ZPIT" beLong extra-field signature - FnLen Byte length of FileName - FileName variable full Macintosh filename - FileType Byte[4] four-byte Mac file type string - Creator Byte[4] four-byte Mac creator string - - - -ZipIt Macintosh Extra Field (short, for files) (0x2705): - - The following is the layout of a shortened variant of the - ZipIt extra block for Macintosh (without "full name" entry). - This variant is used by ZipIt 1.3.5 and newer for entries of - files (not directories) that do not have a MacBinary encoded - file. The local-header and central-header versions are identical. - - Value Size Description - ----- ---- ----------- - (Mac2b) 0x2705 Short tag for this extra block type - TSize Short total data size for this block (12) - "ZPIT" beLong extra-field signature - FileType Byte[4] four-byte Mac file type string - Creator Byte[4] four-byte Mac creator string - fdFlags beShort attributes from FInfo.frFlags, - may be omitted - 0x0000 beShort reserved, may be omitted - - - -ZipIt Macintosh Extra Field (short, for directories) (0x2805): - - The following is the layout of a shortened variant of the - ZipIt extra block for Macintosh used only for directory - entries. This variant is used by ZipIt 1.3.5 and newer to - save some optional Mac-specific information about directories. - The local-header and central-header versions are identical. - - Value Size Description - ----- ---- ----------- - (Mac2c) 0x2805 Short tag for this extra block type - TSize Short total data size for this block (12) - "ZPIT" beLong extra-field signature - frFlags beShort attributes from DInfo.frFlags, may - be omitted - View beShort ZipIt view flag, may be omitted - - - The View field specifies ZipIt-internal settings as follows: - - Bits of the Flags: - bit 0 if set, the folder is shown expanded (open) - when the archive contents are viewed in ZipIt. - bits 1-15 reserved, zero; - - - -FWKCS MD5 Extra Field (0x4b46): - - The FWKCS Contents_Signature System, used in - automatically identifying files independent of file name, - optionally adds and uses an extra field to support the - rapid creation of an enhanced contents_signature: - - Header ID = 0x4b46 - Data Size = 0x0013 - Preface = 'M','D','5' - followed by 16 bytes containing the uncompressed file's - 128_bit MD5 hash(1), low byte first. - - When FWKCS revises a .ZIP file central directory to add - this extra field for a file, it also replaces the - central directory entry for that file's uncompressed - file length with a measured value. - - FWKCS provides an option to strip this extra field, if - present, from a .ZIP file central directory. In adding - this extra field, FWKCS preserves .ZIP file Authenticity - Verification; if stripping this extra field, FWKCS - preserves all versions of AV through PKZIP version 2.04g. - - FWKCS, and FWKCS Contents_Signature System, are - trademarks of Frederick W. Kantor. - - (1) R. Rivest, RFC1321.TXT, MIT Laboratory for Computer - Science and RSA Data Security, Inc., April 1992. - ll.76-77: "The MD5 algorithm is being placed in the - public domain for review and possible adoption as a - standard." - - - -Info-ZIP Unicode Comment Extra Field (0x6375): - - Stores the UTF-8 version of the file comment as stored in the - central directory header. (Last Revision 20070912) - - Value Size Description - ----- ---- ----------- - (UCom) 0x6375 Short tag for this extra block type ("uc") - TSize Short total data size for this block - Version 1 byte version of this extra field, currently 1 - ComCRC32 4 bytes Comment Field CRC32 Checksum - UnicodeCom Variable UTF-8 version of the entry comment - - Currently Version is set to the number 1. If there is a need - to change this field, the version will be incremented. Changes - may not be backward compatible so this extra field should not be - used if the version is not recognized. - - The ComCRC32 is the standard zip CRC32 checksum of the File Comment - field in the central directory header. This is used to verify that - the comment field has not changed since the Unicode Comment extra field - was created. This can happen if a utility changes the File Comment - field but does not update the UTF-8 Comment extra field. If the CRC - check fails, this Unicode Comment extra field should be ignored and - the File Comment field in the header should be used instead. - - The UnicodeCom field is the UTF-8 version of the File Comment field - in the header. As UnicodeCom is defined to be UTF-8, no UTF-8 byte - order mark (BOM) is used. The length of this field is determined by - subtracting the size of the previous fields from TSize. If both the - File Name and Comment fields are UTF-8, the new General Purpose Bit - Flag, bit 11 (Language encoding flag (EFS)), can be used to indicate - both the header File Name and Comment fields are UTF-8 and, in this - case, the Unicode Path and Unicode Comment extra fields are not - needed and should not be created. Note that, for backward - compatibility, bit 11 should only be used if the native character set - of the paths and comments being zipped up are already in UTF-8. It is - expected that the same file comment storage method, either general - purpose bit 11 or extra fields, be used in both the Local and Central - Directory Header for a file. - - - -Info-ZIP Unicode Path Extra Field (0x7075): - - Stores the UTF-8 version of the file name field as stored in the - local header and central directory header. (Last Revision 20070912) - - Value Size Description - ----- ---- ----------- - (UPath) 0x7075 Short tag for this extra block type ("up") - TSize Short total data size for this block - Version 1 byte version of this extra field, currently 1 - NameCRC32 4 bytes File Name Field CRC32 Checksum - UnicodeName Variable UTF-8 version of the entry File Name - - Currently Version is set to the number 1. If there is a need - to change this field, the version will be incremented. Changes - may not be backward compatible so this extra field should not be - used if the version is not recognized. - - The NameCRC32 is the standard zip CRC32 checksum of the File Name - field in the header. This is used to verify that the header - File Name field has not changed since the Unicode Path extra field - was created. This can happen if a utility renames the File Name but - does not update the UTF-8 path extra field. If the CRC check fails, - this UTF-8 Path Extra Field should be ignored and the File Name field - in the header should be used instead. - - The UnicodeName is the UTF-8 version of the contents of the File Name - field in the header. As UnicodeName is defined to be UTF-8, no UTF-8 - byte order mark (BOM) is used. The length of this field is determined - by subtracting the size of the previous fields from TSize. If both - the File Name and Comment fields are UTF-8, the new General Purpose - Bit Flag, bit 11 (Language encoding flag (EFS)), can be used to - indicate that both the header File Name and Comment fields are UTF-8 - and, in this case, the Unicode Path and Unicode Comment extra fields - are not needed and should not be created. Note that, for backward - compatibility, bit 11 should only be used if the native character set - of the paths and comments being zipped up are already in UTF-8. It is - expected that the same file name storage method, either general - purpose bit 11 or extra fields, be used in both the Local and Central - Directory Header for a file. - - - -Microsoft Open Packaging Growth Hint (0xa220): - - Value Size Description - ----- ---- ----------- - 0xa220 Short tag for this extra block type - TSize Short size of Sig + PadVal + Padding - Sig Short verification signature (A028) - PadVal Short Initial padding value - Padding variable filled with NULL characters - - - file comment: (Variable) - - The comment for this file. - - number of this disk: (2 bytes) - - The number of this disk, which contains central - directory end record. If an archive is in ZIP64 format - and the value in this field is 0xFFFF, the size will - be in the corresponding 4 byte zip64 end of central - directory field. - - - number of the disk with the start of the central - directory: (2 bytes) - - The number of the disk on which the central - directory starts. If an archive is in ZIP64 format - and the value in this field is 0xFFFF, the size will - be in the corresponding 4 byte zip64 end of central - directory field. - - total number of entries in the central dir on - this disk: (2 bytes) - - The number of central directory entries on this disk. - If an archive is in ZIP64 format and the value in - this field is 0xFFFF, the size will be in the - corresponding 8 byte zip64 end of central - directory field. - - total number of entries in the central dir: (2 bytes) - - The total number of files in the .ZIP file. If an - archive is in ZIP64 format and the value in this field - is 0xFFFF, the size will be in the corresponding 8 byte - zip64 end of central directory field. - - size of the central directory: (4 bytes) - - The size (in bytes) of the entire central directory. - If an archive is in ZIP64 format and the value in - this field is 0xFFFFFFFF, the size will be in the - corresponding 8 byte zip64 end of central - directory field. - - offset of start of central directory with respect to - the starting disk number: (4 bytes) - - Offset of the start of the central directory on the - disk on which the central directory starts. If an - archive is in ZIP64 format and the value in this - field is 0xFFFFFFFF, the size will be in the - corresponding 8 byte zip64 end of central - directory field. - - .ZIP file comment length: (2 bytes) - - The length of the comment for this .ZIP file. - - .ZIP file comment: (Variable) - - The comment for this .ZIP file. ZIP file comment data - is stored unsecured. No encryption or data authentication - is applied to this area at this time. Confidential information - should not be stored in this section. - - zip64 extensible data sector (variable size) - - (currently reserved for use by PKWARE) - - - K. Splitting and Spanning ZIP files - - Spanning is the process of segmenting a ZIP file across - multiple removable media. This support has typically only - been provided for DOS formatted floppy diskettes. - - File splitting is a newer derivative of spanning. - Splitting follows the same segmentation process as - spanning, however, it does not require writing each - segment to a unique removable medium and instead supports - placing all pieces onto local or non-removable locations - such as file systems, local drives, folders, etc... - - A key difference between spanned and split ZIP files is - that all pieces of a spanned ZIP file have the same name. - Since each piece is written to a separate volume, no name - collisions occur and each segment can reuse the original - .ZIP file name given to the archive. - - Sequence ordering for DOS spanned archives uses the DOS - volume label to determine segment numbers. Volume labels - for each segment are written using the form PKBACK#xxx, - where xxx is the segment number written as a decimal - value from 001 - nnn. - - Split ZIP files are typically written to the same location - and are subject to name collisions if the spanned name - format is used since each segment will reside on the same - drive. To avoid name collisions, split archives are named - as follows. - - Segment 1 = filename.z01 - Segment n-1 = filename.z(n-1) - Segment n = filename.zip - - The .ZIP extension is used on the last segment to support - quickly reading the central directory. The segment number - n should be a decimal value. - - Spanned ZIP files may be PKSFX Self-extracting ZIP files. - PKSFX files may also be split, however, in this case - the first segment must be named filename.exe. The first - segment of a split PKSFX archive must be large enough to - include the entire executable program. - - Capacities for split archives are as follows. - - Maximum number of segments = 4,294,967,295 - 1 - Maximum .ZIP segment size = 4,294,967,295 bytes - Minimum segment size = 64K - Maximum PKSFX segment size = 2,147,483,647 bytes - - Segment sizes may be different however by convention, all - segment sizes should be the same with the exception of the - last, which may be smaller. Local and central directory - header records must never be split across a segment boundary. - When writing a header record, if the number of bytes remaining - within a segment is less than the size of the header record, - end the current segment and write the header at the start - of the next segment. The central directory may span segment - boundaries, but no single record in the central directory - should be split across segments. - - Spanned/Split archives created using PKZIP for Windows - (V2.50 or greater), PKZIP Command Line (V2.50 or greater), - or PKZIP Explorer will include a special spanning - signature as the first 4 bytes of the first segment of - the archive. This signature (0x08074b50) will be - followed immediately by the local header signature for - the first file in the archive. - - A special spanning marker may also appear in spanned/split - archives if the spanning or splitting process starts but - only requires one segment. In this case the 0x08074b50 - signature will be replaced with the temporary spanning - marker signature of 0x30304b50. Split archives can - only be uncompressed by other versions of PKZIP that - know how to create a split archive. - - The signature value 0x08074b50 is also used by some - ZIP implementations as a marker for the Data Descriptor - record. Conflict in this alternate assignment can be - avoided by ensuring the position of the signature - within the ZIP file to determine the use for which it - is intended. - - L. General notes: - - 1) All fields unless otherwise noted are unsigned and stored - in Intel low-byte:high-byte, low-word:high-word order. - - 2) String fields are not null terminated, since the - length is given explicitly. - - 3) The entries in the central directory may not necessarily - be in the same order that files appear in the .ZIP file. - - 4) If one of the fields in the end of central directory - record is too small to hold required data, the field - should be set to -1 (0xFFFF or 0xFFFFFFFF) and the - ZIP64 format record should be created. - - 5) The end of central directory record and the - Zip64 end of central directory locator record must - reside on the same disk when splitting or spanning - an archive. - -VI. Explanation of compression methods --------------------------------------- - -UnShrinking - Method 1 ----------------------- - -Shrinking is a Dynamic Ziv-Lempel-Welch compression algorithm -with partial clearing. The initial code size is 9 bits, and -the maximum code size is 13 bits. Shrinking differs from -conventional Dynamic Ziv-Lempel-Welch implementations in several -respects: - -1) The code size is controlled by the compressor, and is not - automatically increased when codes larger than the current - code size are created (but not necessarily used). When - the decompressor encounters the code sequence 256 - (decimal) followed by 1, it should increase the code size - read from the input stream to the next bit size. No - blocking of the codes is performed, so the next code at - the increased size should be read from the input stream - immediately after where the previous code at the smaller - bit size was read. Again, the decompressor should not - increase the code size used until the sequence 256,1 is - encountered. - -2) When the table becomes full, total clearing is not - performed. Rather, when the compressor emits the code - sequence 256,2 (decimal), the decompressor should clear - all leaf nodes from the Ziv-Lempel tree, and continue to - use the current code size. The nodes that are cleared - from the Ziv-Lempel tree are then re-used, with the lowest - code value re-used first, and the highest code value - re-used last. The compressor can emit the sequence 256,2 - at any time. - -Expanding - Methods 2-5 ------------------------ - -The Reducing algorithm is actually a combination of two -distinct algorithms. The first algorithm compresses repeated -byte sequences, and the second algorithm takes the compressed -stream from the first algorithm and applies a probabilistic -compression method. - -The probabilistic compression stores an array of 'follower -sets' S(j), for j=0 to 255, corresponding to each possible -ASCII character. Each set contains between 0 and 32 -characters, to be denoted as S(j)[0],...,S(j)[m], where m<32. -The sets are stored at the beginning of the data area for a -Reduced file, in reverse order, with S(255) first, and S(0) -last. - -The sets are encoded as { N(j), S(j)[0],...,S(j)[N(j)-1] }, -where N(j) is the size of set S(j). N(j) can be 0, in which -case the follower set for S(j) is empty. Each N(j) value is -encoded in 6 bits, followed by N(j) eight bit character values -corresponding to S(j)[0] to S(j)[N(j)-1] respectively. If -N(j) is 0, then no values for S(j) are stored, and the value -for N(j-1) immediately follows. - -Immediately after the follower sets, is the compressed data -stream. The compressed data stream can be interpreted for the -probabilistic decompression as follows: - -let Last-Character <- 0. -loop until done - if the follower set S(Last-Character) is empty then - read 8 bits from the input stream, and copy this - value to the output stream. - otherwise if the follower set S(Last-Character) is non-empty then - read 1 bit from the input stream. - if this bit is not zero then - read 8 bits from the input stream, and copy this - value to the output stream. - otherwise if this bit is zero then - read B(N(Last-Character)) bits from the input - stream, and assign this value to I. - Copy the value of S(Last-Character)[I] to the - output stream. - - assign the last value placed on the output stream to - Last-Character. -end loop - -B(N(j)) is defined as the minimal number of bits required to -encode the value N(j)-1. - -The decompressed stream from above can then be expanded to -re-create the original file as follows: - -let State <- 0. - -loop until done - read 8 bits from the input stream into C. - case State of - 0: if C is not equal to DLE (144 decimal) then - copy C to the output stream. - otherwise if C is equal to DLE then - let State <- 1. - - 1: if C is non-zero then - let V <- C. - let Len <- L(V) - let State <- F(Len). - otherwise if C is zero then - copy the value 144 (decimal) to the output stream. - let State <- 0 - - 2: let Len <- Len + C - let State <- 3. - - 3: move backwards D(V,C) bytes in the output stream - (if this position is before the start of the output - stream, then assume that all the data before the - start of the output stream is filled with zeros). - copy Len+3 bytes from this position to the output stream. - let State <- 0. - end case -end loop - -The functions F,L, and D are dependent on the 'compression -factor', 1 through 4, and are defined as follows: - -For compression factor 1: - L(X) equals the lower 7 bits of X. - F(X) equals 2 if X equals 127 otherwise F(X) equals 3. - D(X,Y) equals the (upper 1 bit of X) * 256 + Y + 1. -For compression factor 2: - L(X) equals the lower 6 bits of X. - F(X) equals 2 if X equals 63 otherwise F(X) equals 3. - D(X,Y) equals the (upper 2 bits of X) * 256 + Y + 1. -For compression factor 3: - L(X) equals the lower 5 bits of X. - F(X) equals 2 if X equals 31 otherwise F(X) equals 3. - D(X,Y) equals the (upper 3 bits of X) * 256 + Y + 1. -For compression factor 4: - L(X) equals the lower 4 bits of X. - F(X) equals 2 if X equals 15 otherwise F(X) equals 3. - D(X,Y) equals the (upper 4 bits of X) * 256 + Y + 1. - -Imploding - Method 6 --------------------- - -The Imploding algorithm is actually a combination of two distinct -algorithms. The first algorithm compresses repeated byte -sequences using a sliding dictionary. The second algorithm is -used to compress the encoding of the sliding dictionary output, -using multiple Shannon-Fano trees. - -The Imploding algorithm can use a 4K or 8K sliding dictionary -size. The dictionary size used can be determined by bit 1 in the -general purpose flag word; a 0 bit indicates a 4K dictionary -while a 1 bit indicates an 8K dictionary. - -The Shannon-Fano trees are stored at the start of the compressed -file. The number of trees stored is defined by bit 2 in the -general purpose flag word; a 0 bit indicates two trees stored, a -1 bit indicates three trees are stored. If 3 trees are stored, -the first Shannon-Fano tree represents the encoding of the -Literal characters, the second tree represents the encoding of -the Length information, the third represents the encoding of the -Distance information. When 2 Shannon-Fano trees are stored, the -Length tree is stored first, followed by the Distance tree. - -The Literal Shannon-Fano tree, if present is used to represent -the entire ASCII character set, and contains 256 values. This -tree is used to compress any data not compressed by the sliding -dictionary algorithm. When this tree is present, the Minimum -Match Length for the sliding dictionary is 3. If this tree is -not present, the Minimum Match Length is 2. - -The Length Shannon-Fano tree is used to compress the Length part -of the (length,distance) pairs from the sliding dictionary -output. The Length tree contains 64 values, ranging from the -Minimum Match Length, to 63 plus the Minimum Match Length. - -The Distance Shannon-Fano tree is used to compress the Distance -part of the (length,distance) pairs from the sliding dictionary -output. The Distance tree contains 64 values, ranging from 0 to -63, representing the upper 6 bits of the distance value. The -distance values themselves will be between 0 and the sliding -dictionary size, either 4K or 8K. - -The Shannon-Fano trees themselves are stored in a compressed -format. The first byte of the tree data represents the number of -bytes of data representing the (compressed) Shannon-Fano tree -minus 1. The remaining bytes represent the Shannon-Fano tree -data encoded as: - - High 4 bits: Number of values at this bit length + 1. (1 - 16) - Low 4 bits: Bit Length needed to represent value + 1. (1 - 16) - -The Shannon-Fano codes can be constructed from the bit lengths -using the following algorithm: - -1) Sort the Bit Lengths in ascending order, while retaining the - order of the original lengths stored in the file. - -2) Generate the Shannon-Fano trees: - - Code <- 0 - CodeIncrement <- 0 - LastBitLength <- 0 - i <- number of Shannon-Fano codes - 1 (either 255 or 63) - - loop while i >= 0 - Code = Code + CodeIncrement - if BitLength(i) <> LastBitLength then - LastBitLength=BitLength(i) - CodeIncrement = 1 shifted left (16 - LastBitLength) - ShannonCode(i) = Code - i <- i - 1 - end loop - -3) Reverse the order of all the bits in the above ShannonCode() - vector, so that the most significant bit becomes the least - significant bit. For example, the value 0x1234 (hex) would - become 0x2C48 (hex). - -4) Restore the order of Shannon-Fano codes as originally stored - within the file. - -Example: - - This example will show the encoding of a Shannon-Fano tree - of size 8. Notice that the actual Shannon-Fano trees used - for Imploding are either 64 or 256 entries in size. - -Example: 0x02, 0x42, 0x01, 0x13 - - The first byte indicates 3 values in this table. Decoding the - bytes: - 0x42 = 5 codes of 3 bits long - 0x01 = 1 code of 2 bits long - 0x13 = 2 codes of 4 bits long - - This would generate the original bit length array of: - (3, 3, 3, 3, 3, 2, 4, 4) - - There are 8 codes in this table for the values 0 thru 7. Using - the algorithm to obtain the Shannon-Fano codes produces: - - Reversed Order Original -Val Sorted Constructed Code Value Restored Length ---- ------ ----------------- -------- -------- ------ -0: 2 1100000000000000 11 101 3 -1: 3 1010000000000000 101 001 3 -2: 3 1000000000000000 001 110 3 -3: 3 0110000000000000 110 010 3 -4: 3 0100000000000000 010 100 3 -5: 3 0010000000000000 100 11 2 -6: 4 0001000000000000 1000 1000 4 -7: 4 0000000000000000 0000 0000 4 - -The values in the Val, Order Restored and Original Length columns -now represent the Shannon-Fano encoding tree that can be used for -decoding the Shannon-Fano encoded data. How to parse the -variable length Shannon-Fano values from the data stream is beyond -the scope of this document. (See the references listed at the end of -this document for more information.) However, traditional decoding -schemes used for Huffman variable length decoding, such as the -Greenlaw algorithm, can be successfully applied. - -The compressed data stream begins immediately after the -compressed Shannon-Fano data. The compressed data stream can be -interpreted as follows: - -loop until done - read 1 bit from input stream. - - if this bit is non-zero then (encoded data is literal data) - if Literal Shannon-Fano tree is present - read and decode character using Literal Shannon-Fano tree. - otherwise - read 8 bits from input stream. - copy character to the output stream. - otherwise (encoded data is sliding dictionary match) - if 8K dictionary size - read 7 bits for offset Distance (lower 7 bits of offset). - otherwise - read 6 bits for offset Distance (lower 6 bits of offset). - - using the Distance Shannon-Fano tree, read and decode the - upper 6 bits of the Distance value. - - using the Length Shannon-Fano tree, read and decode - the Length value. - - Length <- Length + Minimum Match Length - - if Length = 63 + Minimum Match Length - read 8 bits from the input stream, - add this value to Length. - - move backwards Distance+1 bytes in the output stream, and - copy Length characters from this position to the output - stream. (if this position is before the start of the output - stream, then assume that all the data before the start of - the output stream is filled with zeros). -end loop - -Tokenizing - Method 7 ---------------------- - -This method is not used by PKZIP. - -Deflating - Method 8 --------------------- - -The Deflate algorithm is similar to the Implode algorithm using -a sliding dictionary of up to 32K with secondary compression -from Huffman/Shannon-Fano codes. - -The compressed data is stored in blocks with a header describing -the block and the Huffman codes used in the data block. The header -format is as follows: - - Bit 0: Last Block bit This bit is set to 1 if this is the last - compressed block in the data. - Bits 1-2: Block type - 00 (0) - Block is stored - All stored data is byte aligned. - Skip bits until next byte, then next word = block - length, followed by the ones compliment of the block - length word. Remaining data in block is the stored - data. - - 01 (1) - Use fixed Huffman codes for literal and distance codes. - Lit Code Bits Dist Code Bits - --------- ---- --------- ---- - 0 - 143 8 0 - 31 5 - 144 - 255 9 - 256 - 279 7 - 280 - 287 8 - - Literal codes 286-287 and distance codes 30-31 are - never used but participate in the huffman construction. - - 10 (2) - Dynamic Huffman codes. (See expanding Huffman codes) - - 11 (3) - Reserved - Flag a "Error in compressed data" if seen. - -Expanding Huffman Codes ------------------------ -If the data block is stored with dynamic Huffman codes, the Huffman -codes are sent in the following compressed format: - - 5 Bits: # of Literal codes sent - 256 (256 - 286) - All other codes are never sent. - 5 Bits: # of Dist codes - 1 (1 - 32) - 4 Bits: # of Bit Length codes - 3 (3 - 19) - -The Huffman codes are sent as bit lengths and the codes are built as -described in the implode algorithm. The bit lengths themselves are -compressed with Huffman codes. There are 19 bit length codes: - - 0 - 15: Represent bit lengths of 0 - 15 - 16: Copy the previous bit length 3 - 6 times. - The next 2 bits indicate repeat length (0 = 3, ... ,3 = 6) - Example: Codes 8, 16 (+2 bits 11), 16 (+2 bits 10) will - expand to 12 bit lengths of 8 (1 + 6 + 5) - 17: Repeat a bit length of 0 for 3 - 10 times. (3 bits of length) - 18: Repeat a bit length of 0 for 11 - 138 times (7 bits of length) - -The lengths of the bit length codes are sent packed 3 bits per value -(0 - 7) in the following order: - - 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 - -The Huffman codes should be built as described in the Implode algorithm -except codes are assigned starting at the shortest bit length, i.e. the -shortest code should be all 0's rather than all 1's. Also, codes with -a bit length of zero do not participate in the tree construction. The -codes are then used to decode the bit lengths for the literal and -distance tables. - -The bit lengths for the literal tables are sent first with the number -of entries sent described by the 5 bits sent earlier. There are up -to 286 literal characters; the first 256 represent the respective 8 -bit character, code 256 represents the End-Of-Block code, the remaining -29 codes represent copy lengths of 3 thru 258. There are up to 30 -distance codes representing distances from 1 thru 32k as described -below. - - Length Codes - ------------ - Extra Extra Extra Extra - Code Bits Length Code Bits Lengths Code Bits Lengths Code Bits Length(s) - ---- ---- ------ ---- ---- ------- ---- ---- ------- ---- ---- --------- - 257 0 3 265 1 11,12 273 3 35-42 281 5 131-162 - 258 0 4 266 1 13,14 274 3 43-50 282 5 163-194 - 259 0 5 267 1 15,16 275 3 51-58 283 5 195-226 - 260 0 6 268 1 17,18 276 3 59-66 284 5 227-257 - 261 0 7 269 2 19-22 277 4 67-82 285 0 258 - 262 0 8 270 2 23-26 278 4 83-98 - 263 0 9 271 2 27-30 279 4 99-114 - 264 0 10 272 2 31-34 280 4 115-130 - - Distance Codes - -------------- - Extra Extra Extra Extra - Code Bits Dist Code Bits Dist Code Bits Distance Code Bits Distance - ---- ---- ---- ---- ---- ------ ---- ---- -------- ---- ---- -------- - 0 0 1 8 3 17-24 16 7 257-384 24 11 4097-6144 - 1 0 2 9 3 25-32 17 7 385-512 25 11 6145-8192 - 2 0 3 10 4 33-48 18 8 513-768 26 12 8193-12288 - 3 0 4 11 4 49-64 19 8 769-1024 27 12 12289-16384 - 4 1 5,6 12 5 65-96 20 9 1025-1536 28 13 16385-24576 - 5 1 7,8 13 5 97-128 21 9 1537-2048 29 13 24577-32768 - 6 2 9-12 14 6 129-192 22 10 2049-3072 - 7 2 13-16 15 6 193-256 23 10 3073-4096 - -The compressed data stream begins immediately after the -compressed header data. The compressed data stream can be -interpreted as follows: - -do - read header from input stream. - - if stored block - skip bits until byte aligned - read count and 1's compliment of count - copy count bytes data block - otherwise - loop until end of block code sent - decode literal character from input stream - if literal < 256 - copy character to the output stream - otherwise - if literal = end of block - break from loop - otherwise - decode distance from input stream - - move backwards distance bytes in the output stream, and - copy length characters from this position to the output - stream. - end loop -while not last block - -if data descriptor exists - skip bits until byte aligned - read crc and sizes -endif - -Enhanced Deflating - Method 9 ------------------------------ - -The Enhanced Deflating algorithm is similar to Deflate but -uses a sliding dictionary of up to 64K. Deflate64(tm) is supported -by the Deflate extractor. - -BZIP2 - Method 12 ------------------ - -BZIP2 is an open-source data compression algorithm developed by -Julian Seward. Information and source code for this algorithm -can be found on the internet. - -LZMA - Method 14 (EFS) ----------------------- - -LZMA is a block-oriented, general purpose data compression algorithm -developed and maintained by Igor Pavlov. It is a derivative of LZ77 -that utilizes Markov chains and a range coder. Information and -source code for this algorithm can be found on the internet. Consult -with the author of this algorithm for information on terms or -restrictions on use. - -Support for LZMA within the ZIP format is defined as follows: - -The Compression method field within the ZIP Local and Central -Header records will be set to the value 14 to indicate data was -compressed using LZMA. - -The Version needed to extract field within the ZIP Local and -Central Header records will be set to 6.3 to indicate the -minimum ZIP format version supporting this feature. - -File data compressed using the LZMA algorithm must be placed -immediately following the Local Header for the file. If a -standard ZIP encryption header is required, it will follow -the Local Header and will precede the LZMA compressed file -data segment. The location of LZMA compressed data segment -within the ZIP format will be as shown: - - [local header file 1] - [encryption header file 1] - [LZMA compressed data segment for file 1] - [data descriptor 1] - [local header file 2] - -The encryption header and data descriptor records may -be conditionally present. The LZMA Compressed Data Segment -will consist of an LZMA Properties Header followed by the -LZMA Compressed Data as shown: - - [LZMA properties header for file 1] - [LZMA compressed data for file 1] - -The LZMA Compressed Data will be stored as provided by the -LZMA compression library. Compressed size, uncompressed -size and other file characteristics about the file being -compressed must be stored in standard ZIP storage format. - -The LZMA Properties Header will store specific data required to -decompress the LZMA compressed Data. This data is set by the -LZMA compression engine using the function WriteCoderProperties() -as documented within the LZMA SDK. - -Storage fields for the property information within the LZMA -Properties Header are as follows: - - LZMA Version Information 2 bytes - LZMA Properties Size 2 bytes - LZMA Properties Data variable, defined by "LZMA Properties Size" - -LZMA Version Information - this field identifies which version of - the LZMA SDK was used to compress a file. The first byte will - store the major version number of the LZMA SDK and the second - byte will store the minor number. - -LZMA Properties Size - this field defines the size of the remaining - property data. Typically this size should be determined by the - version of the SDK. This size field is included as a convenience - and to help avoid any ambiguity should it arise in the future due - to changes in this compression algorithm. - -LZMA Property Data - this variable sized field records the required - values for the decompressor as defined by the LZMA SDK. The - data stored in this field should be obtained using the - WriteCoderProperties() in the version of the SDK defined by - the "LZMA Version Information" field. - -The layout of the "LZMA Properties Data" field is a function of the -LZMA compression algorithm. It is possible that this layout may be -changed by the author over time. The data layout in version 4.32 -of the LZMA SDK defines a 5 byte array that uses 4 bytes to store -the dictionary size in little-endian order. This is preceded by a -single packed byte as the first element of the array that contains -the following fields: - - PosStateBits - LiteralPosStateBits - LiteralContextBits - -Refer to the LZMA documentation for a more detailed explanation of -these fields. - -Data compressed with method 14, LZMA, may include an end-of-stream -(EOS) marker ending the compressed data stream. This marker is not -required, but its use is highly recommended to facilitate processing -and implementers should include the EOS marker whenever possible. -When the EOS marker is used, general purpose bit 1 must be set. If -general purpose bit 1 is not set, the EOS marker is not present. - -WavPack - Method 97 -------------------- - -Information describing the use of compression method 97 is -provided by WinZIP International, LLC. This method relies on the -open source WavPack audio compression utility developed by David Bryant. -Information on WavPack is available at www.wavpack.com. Please consult -with the author of this algorithm for information on terms and -restrictions on use. - -WavPack data for a file begins immediately after the end of the -local header data. This data is the output from WavPack compression -routines. Within the ZIP file, the use of WavPack compression is -indicated by setting the compression method field to a value of 97 -in both the local header and the central directory header. The Version -needed to extract and version made by fields use the same values as are -used for data compressed using the Deflate algorithm. - -An implementation note for storing digital sample data when using -WavPack compression within ZIP files is that all of the bytes of -the sample data should be compressed. This includes any unused -bits up to the byte boundary. An example is a 2 byte sample that -uses only 12 bits for the sample data with 4 unused bits. If only -12 bits are passed as the sample size to the WavPack routines, the 4 -unused bits will be set to 0 on extraction regardless of their original -state. To avoid this, the full 16 bits of the sample data size -should be provided. - -PPMd - Method 98 ----------------- - -PPMd is a data compression algorithm developed by Dmitry Shkarin -which includes a carryless rangecoder developed by Dmitry Subbotin. -This algorithm is based on predictive phrase matching on multiple -order contexts. Information and source code for this algorithm -can be found on the internet. Consult with the author of this -algorithm for information on terms or restrictions on use. - -Support for PPMd within the ZIP format currently is provided only -for version I, revision 1 of the algorithm. Storage requirements -for using this algorithm are as follows: - -Parameters needed to control the algorithm are stored in the two -bytes immediately preceding the compressed data. These bytes are -used to store the following fields: - -Model order - sets the maximum model order, default is 8, possible - values are from 2 to 16 inclusive - -Sub-allocator size - sets the size of sub-allocator in MB, default is 50, - possible values are from 1MB to 256MB inclusive - -Model restoration method - sets the method used to restart context - model at memory insufficiency, values are: - - 0 - restarts model from scratch - default - 1 - cut off model - decreases performance by as much as 2x - 2 - freeze context tree - not recommended - -An example for packing these fields into the 2 byte storage field is -illustrated below. These values are stored in Intel low-byte/high-byte -order. - -wPPMd = (Model order - 1) + - ((Sub-allocator size - 1) << 4) + - (Model restoration method << 12) - - -VII. Traditional PKWARE Encryption ----------------------------------- - -The following information discusses the decryption steps -required to support traditional PKWARE encryption. This -form of encryption is considered weak by today's standards -and its use is recommended only for situations with -low security needs or for compatibility with older .ZIP -applications. - -Decryption ----------- - -PKWARE is grateful to Mr. Roger Schlafly for his expert contribution -towards the development of PKWARE's traditional encryption. - -PKZIP encrypts the compressed data stream. Encrypted files must -be decrypted before they can be extracted. - -Each encrypted file has an extra 12 bytes stored at the start of -the data area defining the encryption header for that file. The -encryption header is originally set to random values, and then -itself encrypted, using three, 32-bit keys. The key values are -initialized using the supplied encryption password. After each byte -is encrypted, the keys are then updated using pseudo-random number -generation techniques in combination with the same CRC-32 algorithm -used in PKZIP and described elsewhere in this document. - -The following is the basic steps required to decrypt a file: - -1) Initialize the three 32-bit keys with the password. -2) Read and decrypt the 12-byte encryption header, further - initializing the encryption keys. -3) Read and decrypt the compressed data stream using the - encryption keys. - -Step 1 - Initializing the encryption keys ------------------------------------------ - -Key(0) <- 305419896 -Key(1) <- 591751049 -Key(2) <- 878082192 - -loop for i <- 0 to length(password)-1 - update_keys(password(i)) -end loop - -Where update_keys() is defined as: - -update_keys(char): - Key(0) <- crc32(key(0),char) - Key(1) <- Key(1) + (Key(0) & 000000ffH) - Key(1) <- Key(1) * 134775813 + 1 - Key(2) <- crc32(key(2),key(1) >> 24) -end update_keys - -Where crc32(old_crc,char) is a routine that given a CRC value and a -character, returns an updated CRC value after applying the CRC-32 -algorithm described elsewhere in this document. - -Step 2 - Decrypting the encryption header ------------------------------------------ - -The purpose of this step is to further initialize the encryption -keys, based on random data, to render a plaintext attack on the -data ineffective. - -Read the 12-byte encryption header into Buffer, in locations -Buffer(0) thru Buffer(11). - -loop for i <- 0 to 11 - C <- buffer(i) ^ decrypt_byte() - update_keys(C) - buffer(i) <- C -end loop - -Where decrypt_byte() is defined as: - -unsigned char decrypt_byte() - local unsigned short temp - temp <- Key(2) | 2 - decrypt_byte <- (temp * (temp ^ 1)) >> 8 -end decrypt_byte - -After the header is decrypted, the last 1 or 2 bytes in Buffer -should be the high-order word/byte of the CRC for the file being -decrypted, stored in Intel low-byte/high-byte order. Versions of -PKZIP prior to 2.0 used a 2 byte CRC check; a 1 byte CRC check is -used on versions after 2.0. This can be used to test if the password -supplied is correct or not. - -Step 3 - Decrypting the compressed data stream ----------------------------------------------- - -The compressed data stream can be decrypted as follows: - -loop until done - read a character into C - Temp <- C ^ decrypt_byte() - update_keys(temp) - output Temp -end loop - - -VIII. Strong Encryption Specification -------------------------------------- - -The Strong Encryption technology defined in this specification is -covered under a pending patent application. The use or implementation -in a product of certain technological aspects set forth in the current -APPNOTE, including those with regard to strong encryption, patching, -or extended tape operations requires a license from PKWARE. Portions -of this Strong Encryption technology are available for use at no charge. -Contact PKWARE for licensing terms and conditions. Refer to section II -of this APPNOTE (Contacting PKWARE) for information on how to -contact PKWARE. - -Version 5.x of this specification introduced support for strong -encryption algorithms. These algorithms can be used with either -a password or an X.509v3 digital certificate to encrypt each file. -This format specification supports either password or certificate -based encryption to meet the security needs of today, to enable -interoperability between users within both PKI and non-PKI -environments, and to ensure interoperability between different -computing platforms that are running a ZIP program. - -Password based encryption is the most common form of encryption -people are familiar with. However, inherent weaknesses with -passwords (e.g. susceptibility to dictionary/brute force attack) -as well as password management and support issues make certificate -based encryption a more secure and scalable option. Industry -efforts and support are defining and moving towards more advanced -security solutions built around X.509v3 digital certificates and -Public Key Infrastructures(PKI) because of the greater scalability, -administrative options, and more robust security over traditional -password based encryption. - -Most standard encryption algorithms are supported with this -specification. Reference implementations for many of these -algorithms are available from either commercial or open source -distributors. Readily available cryptographic toolkits make -implementation of the encryption features straight-forward. -This document is not intended to provide a treatise on data -encryption principles or theory. Its purpose is to document the -data structures required for implementing interoperable data -encryption within the .ZIP format. It is strongly recommended that -you have a good understanding of data encryption before reading -further. - -The algorithms introduced in Version 5.0 of this specification -include: - - RC2 40 bit, 64 bit, and 128 bit - RC4 40 bit, 64 bit, and 128 bit - DES - 3DES 112 bit and 168 bit - -Version 5.1 adds support for the following: - - AES 128 bit, 192 bit, and 256 bit - - -Version 6.1 introduces encryption data changes to support -interoperability with Smartcard and USB Token certificate storage -methods which do not support the OAEP strengthening standard. - -Version 6.2 introduces support for encrypting metadata by compressing -and encrypting the central directory data structure to reduce information -leakage. Information leakage can occur in legacy ZIP applications -through exposure of information about a file even though that file is -stored encrypted. The information exposed consists of file -characteristics stored within the records and fields defined by this -specification. This includes data such as a files name, its original -size, timestamp and CRC32 value. - -Version 6.3 introduces support for encrypting data using the Blowfish -and Twofish algorithms. These are symmetric block ciphers developed -by Bruce Schneier. Blowfish supports using a variable length key from -32 to 448 bits. Block size is 64 bits. Implementations should use 16 -rounds and the only mode supported within ZIP files is CBC. Twofish -supports key sizes 128, 192 and 256 bits. Block size is 128 bits. -Implementations should use 16 rounds and the only mode supported within -ZIP files is CBC. Information and source code for both Blowfish and -Twofish algorithms can be found on the internet. Consult with the author -of these algorithms for information on terms or restrictions on use. - -Central Directory Encryption provides greater protection against -information leakage by encrypting the Central Directory structure and -by masking key values that are replicated in the unencrypted Local -Header. ZIP compatible programs that cannot interpret an encrypted -Central Directory structure cannot rely on the data in the corresponding -Local Header for decompression information. - -Extra Field records that may contain information about a file that should -not be exposed should not be stored in the Local Header and should only -be written to the Central Directory where they can be encrypted. This -design currently does not support streaming. Information in the End of -Central Directory record, the Zip64 End of Central Directory Locator, -and the Zip64 End of Central Directory records are not encrypted. Access -to view data on files within a ZIP file with an encrypted Central Directory -requires the appropriate password or private key for decryption prior to -viewing any files, or any information about the files, in the archive. - -Older ZIP compatible programs not familiar with the Central Directory -Encryption feature will no longer be able to recognize the Central -Directory and may assume the ZIP file is corrupt. Programs that -attempt streaming access using Local Headers will see invalid -information for each file. Central Directory Encryption need not be -used for every ZIP file. Its use is recommended for greater security. -ZIP files not using Central Directory Encryption should operate as -in the past. - -This strong encryption feature specification is intended to provide for -scalable, cross-platform encryption needs ranging from simple password -encryption to authenticated public/private key encryption. - -Encryption provides data confidentiality and privacy. It is -recommended that you combine X.509 digital signing with encryption -to add authentication and non-repudiation. - - -Single Password Symmetric Encryption Method: -------------------------------------------- - -The Single Password Symmetric Encryption Method using strong -encryption algorithms operates similarly to the traditional -PKWARE encryption defined in this format. Additional data -structures are added to support the processing needs of the -strong algorithms. - -The Strong Encryption data structures are: - -1. General Purpose Bits - Bits 0 and 6 of the General Purpose bit -flag in both local and central header records. Both bits set -indicates strong encryption. Bit 13, when set indicates the Central -Directory is encrypted and that selected fields in the Local Header -are masked to hide their actual value. - - -2. Extra Field 0x0017 in central header only. - - Fields to consider in this record are: - - Format - the data format identifier for this record. The only - value allowed at this time is the integer value 2. - - AlgId - integer identifier of the encryption algorithm from the - following range - - 0x6601 - DES - 0x6602 - RC2 (version needed to extract < 5.2) - 0x6603 - 3DES 168 - 0x6609 - 3DES 112 - 0x660E - AES 128 - 0x660F - AES 192 - 0x6610 - AES 256 - 0x6702 - RC2 (version needed to extract >= 5.2) - 0x6720 - Blowfish - 0x6721 - Twofish - 0x6801 - RC4 - 0xFFFF - Unknown algorithm - - Bitlen - Explicit bit length of key - - 32 - 448 bits - - Flags - Processing flags needed for decryption - - 0x0001 - Password is required to decrypt - 0x0002 - Certificates only - 0x0003 - Password or certificate required to decrypt - - Values > 0x0003 reserved for certificate processing - - -3. Decryption header record preceding compressed file data. - - -Decryption Header: - - Value Size Description - ----- ---- ----------- - IVSize 2 bytes Size of initialization vector (IV) - IVData IVSize Initialization vector for this file - Size 4 bytes Size of remaining decryption header data - Format 2 bytes Format definition for this record - AlgID 2 bytes Encryption algorithm identifier - Bitlen 2 bytes Bit length of encryption key - Flags 2 bytes Processing flags - ErdSize 2 bytes Size of Encrypted Random Data - ErdData ErdSize Encrypted Random Data - Reserved1 4 bytes Reserved certificate processing data - Reserved2 (var) Reserved for certificate processing data - VSize 2 bytes Size of password validation data - VData VSize-4 Password validation data - VCRC32 4 bytes Standard ZIP CRC32 of password validation data - - IVData - The size of the IV should match the algorithm block size. - The IVData can be completely random data. If the size of - the randomly generated data does not match the block size - it should be complemented with zero's or truncated as - necessary. If IVSize is 0,then IV = CRC32 + Uncompressed - File Size (as a 64 bit little-endian, unsigned integer value). - - Format - the data format identifier for this record. The only - value allowed at this time is the integer value 3. - - AlgId - integer identifier of the encryption algorithm from the - following range - - 0x6601 - DES - 0x6602 - RC2 (version needed to extract < 5.2) - 0x6603 - 3DES 168 - 0x6609 - 3DES 112 - 0x660E - AES 128 - 0x660F - AES 192 - 0x6610 - AES 256 - 0x6702 - RC2 (version needed to extract >= 5.2) - 0x6720 - Blowfish - 0x6721 - Twofish - 0x6801 - RC4 - 0xFFFF - Unknown algorithm - - Bitlen - Explicit bit length of key - - 32 - 448 bits - - Flags - Processing flags needed for decryption - - 0x0001 - Password is required to decrypt - 0x0002 - Certificates only - 0x0003 - Password or certificate required to decrypt - - Values > 0x0003 reserved for certificate processing - - ErdData - Encrypted random data is used to store random data that - is used to generate a file session key for encrypting - each file. SHA1 is used to calculate hash data used to - derive keys. File session keys are derived from a master - session key generated from the user-supplied password. - If the Flags field in the decryption header contains - the value 0x4000, then the ErdData field must be - decrypted using 3DES. If the value 0x4000 is not set, - then the ErdData field must be decrypted using AlgId. - - - Reserved1 - Reserved for certificate processing, if value is - zero, then Reserved2 data is absent. See the explanation - under the Certificate Processing Method for details on - this data structure. - - Reserved2 - If present, the size of the Reserved2 data structure - is located by skipping the first 4 bytes of this field - and using the next 2 bytes as the remaining size. See - the explanation under the Certificate Processing Method - for details on this data structure. - - VSize - This size value will always include the 4 bytes of the - VCRC32 data and will be greater than 4 bytes. - - VData - Random data for password validation. This data is VSize - in length and VSize must be a multiple of the encryption - block size. VCRC32 is a checksum value of VData. - VData and VCRC32 are stored encrypted and start the - stream of encrypted data for a file. - - -4. Useful Tips - -Strong Encryption is always applied to a file after compression. The -block oriented algorithms all operate in Cypher Block Chaining (CBC) -mode. The block size used for AES encryption is 16. All other block -algorithms use a block size of 8. Two ID's are defined for RC2 to -account for a discrepancy found in the implementation of the RC2 -algorithm in the cryptographic library on Windows XP SP1 and all -earlier versions of Windows. It is recommended that zero length files -not be encrypted, however programs should be prepared to extract them -if they are found within a ZIP file. - -A pseudo-code representation of the encryption process is as follows: - -Password = GetUserPassword() -MasterSessionKey = DeriveKey(SHA1(Password)) -RD = CryptographicStrengthRandomData() -For Each File - IV = CryptographicStrengthRandomData() - VData = CryptographicStrengthRandomData() - VCRC32 = CRC32(VData) - FileSessionKey = DeriveKey(SHA1(IV + RD) - ErdData = Encrypt(RD,MasterSessionKey,IV) - Encrypt(VData + VCRC32 + FileData, FileSessionKey,IV) -Done - -The function names and parameter requirements will depend on -the choice of the cryptographic toolkit selected. Almost any -toolkit supporting the reference implementations for each -algorithm can be used. The RSA BSAFE(r), OpenSSL, and Microsoft -CryptoAPI libraries are all known to work well. - - -Single Password - Central Directory Encryption: ------------------------------------------------ - -Central Directory Encryption is achieved within the .ZIP format by -encrypting the Central Directory structure. This encapsulates the metadata -most often used for processing .ZIP files. Additional metadata is stored for -redundancy in the Local Header for each file. The process of concealing -metadata by encrypting the Central Directory does not protect the data within -the Local Header. To avoid information leakage from the exposed metadata -in the Local Header, the fields containing information about a file are masked. - -Local Header: - -Masking replaces the true content of the fields for a file in the Local -Header with false information. When masked, the Local Header is not -suitable for streaming access and the options for data recovery of damaged -archives is reduced. Extra Data fields that may contain confidential -data should not be stored within the Local Header. The value set into -the Version needed to extract field should be the correct value needed to -extract the file without regard to Central Directory Encryption. The fields -within the Local Header targeted for masking when the Central Directory is -encrypted are: - - Field Name Mask Value - ------------------ --------------------------- - compression method 0 - last mod file time 0 - last mod file date 0 - crc-32 0 - compressed size 0 - uncompressed size 0 - file name (variable size) Base 16 value from the - range 1 - 0xFFFFFFFFFFFFFFFF - represented as a string whose - size will be set into the - file name length field - -The Base 16 value assigned as a masked file name is simply a sequentially -incremented value for each file starting with 1 for the first file. -Modifications to a ZIP file may cause different values to be stored for -each file. For compatibility, the file name field in the Local Header -should never be left blank. As of Version 6.2 of this specification, -the Compression Method and Compressed Size fields are not yet masked. -Fields having a value of 0xFFFF or 0xFFFFFFFF for the ZIP64 format -should not be masked. - -Encrypting the Central Directory: - -Encryption of the Central Directory does not include encryption of the -Central Directory Signature data, the Zip64 End of Central Directory -record, the Zip64 End of Central Directory Locator, or the End -of Central Directory record. The ZIP file comment data is never -encrypted. - -Before encrypting the Central Directory, it may optionally be compressed. -Compression is not required, but for storage efficiency it is assumed -this structure will be compressed before encrypting. Similarly, this -specification supports compressing the Central Directory without -requiring that it also be encrypted. Early implementations of this -feature will assume the encryption method applied to files matches the -encryption applied to the Central Directory. - -Encryption of the Central Directory is done in a manner similar to -that of file encryption. The encrypted data is preceded by a -decryption header. The decryption header is known as the Archive -Decryption Header. The fields of this record are identical to -the decryption header preceding each encrypted file. The location -of the Archive Decryption Header is determined by the value in the -Start of the Central Directory field in the Zip64 End of Central -Directory record. When the Central Directory is encrypted, the -Zip64 End of Central Directory record will always be present. - -The layout of the Zip64 End of Central Directory record for all -versions starting with 6.2 of this specification will follow the -Version 2 format. The Version 2 format is as follows: - -The leading fixed size fields within the Version 1 format for this -record remain unchanged. The record signature for both Version 1 -and Version 2 will be 0x06064b50. Immediately following the last -byte of the field known as the Offset of Start of Central -Directory With Respect to the Starting Disk Number will begin the -new fields defining Version 2 of this record. - -New fields for Version 2: - -Note: all fields stored in Intel low-byte/high-byte order. - - Value Size Description - ----- ---- ----------- - Compression Method 2 bytes Method used to compress the - Central Directory - Compressed Size 8 bytes Size of the compressed data - Original Size 8 bytes Original uncompressed size - AlgId 2 bytes Encryption algorithm ID - BitLen 2 bytes Encryption key length - Flags 2 bytes Encryption flags - HashID 2 bytes Hash algorithm identifier - Hash Length 2 bytes Length of hash data - Hash Data (variable) Hash data - -The Compression Method accepts the same range of values as the -corresponding field in the Central Header. - -The Compressed Size and Original Size values will not include the -data of the Central Directory Signature which is compressed or -encrypted. - -The AlgId, BitLen, and Flags fields accept the same range of values -the corresponding fields within the 0x0017 record. - -Hash ID identifies the algorithm used to hash the Central Directory -data. This data does not have to be hashed, in which case the -values for both the HashID and Hash Length will be 0. Possible -values for HashID are: - - Value Algorithm - ------ --------- - 0x0000 none - 0x0001 CRC32 - 0x8003 MD5 - 0x8004 SHA1 - 0x8007 RIPEMD160 - 0x800C SHA256 - 0x800D SHA384 - 0x800E SHA512 - -When the Central Directory data is signed, the same hash algorithm -used to hash the Central Directory for signing should be used. -This is recommended for processing efficiency, however, it is -permissible for any of the above algorithms to be used independent -of the signing process. - -The Hash Data will contain the hash data for the Central Directory. -The length of this data will vary depending on the algorithm used. - -The Version Needed to Extract should be set to 62. - -The value for the Total Number of Entries on the Current Disk will -be 0. These records will no longer support random access when -encrypting the Central Directory. - -When the Central Directory is compressed and/or encrypted, the -End of Central Directory record will store the value 0xFFFFFFFF -as the value for the Total Number of Entries in the Central -Directory. The value stored in the Total Number of Entries in -the Central Directory on this Disk field will be 0. The actual -values will be stored in the equivalent fields of the Zip64 -End of Central Directory record. - -Decrypting and decompressing the Central Directory is accomplished -in the same manner as decrypting and decompressing a file. - -Certificate Processing Method: ------------------------------ - -The Certificate Processing Method of for ZIP file encryption -defines the following additional data fields: - -1. Certificate Flag Values - -Additional processing flags that can be present in the Flags field of both -the 0x0017 field of the central directory Extra Field and the Decryption -header record preceding compressed file data are: - - 0x0007 - reserved for future use - 0x000F - reserved for future use - 0x0100 - Indicates non-OAEP key wrapping was used. If this - this field is set, the version needed to extract must - be at least 61. This means OAEP key wrapping is not - used when generating a Master Session Key using - ErdData. - 0x4000 - ErdData must be decrypted using 3DES-168, otherwise use the - same algorithm used for encrypting the file contents. - 0x8000 - reserved for future use - - -2. CertData - Extra Field 0x0017 record certificate data structure - -The data structure used to store certificate data within the section -of the Extra Field defined by the CertData field of the 0x0017 -record are as shown: - - Value Size Description - ----- ---- ----------- - RCount 4 bytes Number of recipients. - HashAlg 2 bytes Hash algorithm identifier - HSize 2 bytes Hash size - SRList (var) Simple list of recipients hashed public keys - - - RCount This defines the number intended recipients whose - public keys were used for encryption. This identifies - the number of elements in the SRList. - - HashAlg This defines the hash algorithm used to calculate - the public key hash of each public key used - for encryption. This field currently supports - only the following value for SHA-1 - - 0x8004 - SHA1 - - HSize This defines the size of a hashed public key. - - SRList This is a variable length list of the hashed - public keys for each intended recipient. Each - element in this list is HSize. The total size of - SRList is determined using RCount * HSize. - - -3. Reserved1 - Certificate Decryption Header Reserved1 Data: - - Value Size Description - ----- ---- ----------- - RCount 4 bytes Number of recipients. - - RCount This defines the number intended recipients whose - public keys were used for encryption. This defines - the number of elements in the REList field defined below. - - -4. Reserved2 - Certificate Decryption Header Reserved2 Data Structures: - - - Value Size Description - ----- ---- ----------- - HashAlg 2 bytes Hash algorithm identifier - HSize 2 bytes Hash size - REList (var) List of recipient data elements - - - HashAlg This defines the hash algorithm used to calculate - the public key hash of each public key used - for encryption. This field currently supports - only the following value for SHA-1 - - 0x8004 - SHA1 - - HSize This defines the size of a hashed public key - defined in REHData. - - REList This is a variable length of list of recipient data. - Each element in this list consists of a Recipient - Element data structure as follows: - - - Recipient Element (REList) Data Structure: - - Value Size Description - ----- ---- ----------- - RESize 2 bytes Size of REHData + REKData - REHData HSize Hash of recipients public key - REKData (var) Simple key blob - - - RESize This defines the size of an individual REList - element. This value is the combined size of the - REHData field + REKData field. REHData is defined by - HSize. REKData is variable and can be calculated - for each REList element using RESize and HSize. - - REHData Hashed public key for this recipient. - - REKData Simple Key Blob. The format of this data structure - is identical to that defined in the Microsoft - CryptoAPI and generated using the CryptExportKey() - function. The version of the Simple Key Blob - supported at this time is 0x02 as defined by - Microsoft. - -Certificate Processing - Central Directory Encryption: ------------------------------------------------------- - -Central Directory Encryption using Digital Certificates will -operate in a manner similar to that of Single Password Central -Directory Encryption. This record will only be present when there -is data to place into it. Currently, data is placed into this -record when digital certificates are used for either encrypting -or signing the files within a ZIP file. When only password -encryption is used with no certificate encryption or digital -signing, this record is not currently needed. When present, this -record will appear before the start of the actual Central Directory -data structure and will be located immediately after the Archive -Decryption Header if the Central Directory is encrypted. - -The Archive Extra Data record will be used to store the following -information. Additional data may be added in future versions. - -Extra Data Fields: - -0x0014 - PKCS#7 Store for X.509 Certificates -0x0016 - X.509 Certificate ID and Signature for central directory -0x0019 - PKCS#7 Encryption Recipient Certificate List - -The 0x0014 and 0x0016 Extra Data records that otherwise would be -located in the first record of the Central Directory for digital -certificate processing. When encrypting or compressing the Central -Directory, the 0x0014 and 0x0016 records must be located in the -Archive Extra Data record and they should not remain in the first -Central Directory record. The Archive Extra Data record will also -be used to store the 0x0019 data. - -When present, the size of the Archive Extra Data record will be -included in the size of the Central Directory. The data of the -Archive Extra Data record will also be compressed and encrypted -along with the Central Directory data structure. - -Certificate Processing Differences: - -The Certificate Processing Method of encryption differs from the -Single Password Symmetric Encryption Method as follows. Instead -of using a user-defined password to generate a master session key, -cryptographically random data is used. The key material is then -wrapped using standard key-wrapping techniques. This key material -is wrapped using the public key of each recipient that will need -to decrypt the file using their corresponding private key. - -This specification currently assumes digital certificates will follow -the X.509 V3 format for 1024 bit and higher RSA format digital -certificates. Implementation of this Certificate Processing Method -requires supporting logic for key access and management. This logic -is outside the scope of this specification. - -OAEP Processing with Certificate-based Encryption: - -OAEP stands for Optimal Asymmetric Encryption Padding. It is a -strengthening technique used for small encoded items such as decryption -keys. This is commonly applied in cryptographic key-wrapping techniques -and is supported by PKCS #1. Versions 5.0 and 6.0 of this specification -were designed to support OAEP key-wrapping for certificate-based -decryption keys for additional security. - -Support for private keys stored on Smartcards or Tokens introduced -a conflict with this OAEP logic. Most card and token products do -not support the additional strengthening applied to OAEP key-wrapped -data. In order to resolve this conflict, versions 6.1 and above of this -specification will no longer support OAEP when encrypting using -digital certificates. - -Versions of PKZIP available during initial development of the -certificate processing method set a value of 61 into the -version needed to extract field for a file. This indicates that -non-OAEP key wrapping is used. This affects certificate encryption -only, and password encryption functions should not be affected by -this value. This means values of 61 may be found on files encrypted -with certificates only, or on files encrypted with both password -encryption and certificate encryption. Files encrypted with both -methods can safely be decrypted using the password methods documented. - -IX. Change Process ------------------- - -In order for the .ZIP file format to remain a viable definition, this -specification should be considered as open for periodic review and -revision. Although this format was originally designed with a -certain level of extensibility, not all changes in technology -(present or future) were or will be necessarily considered in its -design. If your application requires new definitions to the -extensible sections in this format, or if you would like to -submit new data structures, please forward your request to -zipformat@pkware.com. All submissions will be reviewed by the -ZIP File Specification Committee for possible inclusion into -future versions of this specification. Periodic revisions -to this specification will be published to ensure interoperability. -We encourage comments and feedback that may help improve clarity -or content. - -X. Incorporating PKWARE Proprietary Technology into Your Product ----------------------------------------------------------------- - -PKWARE is committed to the interoperability and advancement of the -.ZIP format. PKWARE offers a free license for certain technological -aspects described above under certain restrictions and conditions. -However, the use or implementation in a product of certain technological -aspects set forth in the current APPNOTE, including those with regard to -strong encryption, patching, or extended tape operations requires a -license from PKWARE. Please contact PKWARE with regard to acquiring -a license. - -XI. Acknowledgements ---------------------- - -In addition to the above mentioned contributors to PKZIP and PKUNZIP, -I would like to extend special thanks to Robert Mahoney for suggesting -the extension .ZIP for this software. - -XII. References ---------------- - - Fiala, Edward R., and Greene, Daniel H., "Data compression with - finite windows", Communications of the ACM, Volume 32, Number 4, - April 1989, pages 490-505. - - Held, Gilbert, "Data Compression, Techniques and Applications, - Hardware and Software Considerations", John Wiley & Sons, 1987. - - Huffman, D.A., "A method for the construction of minimum-redundancy - codes", Proceedings of the IRE, Volume 40, Number 9, September 1952, - pages 1098-1101. - - Nelson, Mark, "LZW Data Compression", Dr. Dobbs Journal, Volume 14, - Number 10, October 1989, pages 29-37. - - Nelson, Mark, "The Data Compression Book", M&T Books, 1991. - - Storer, James A., "Data Compression, Methods and Theory", - Computer Science Press, 1988 - - Welch, Terry, "A Technique for High-Performance Data Compression", - IEEE Computer, Volume 17, Number 6, June 1984, pages 8-19. - - Ziv, J. and Lempel, A., "A universal algorithm for sequential data - compression", Communications of the ACM, Volume 30, Number 6, - June 1987, pages 520-540. - - Ziv, J. and Lempel, A., "Compression of individual sequences via - variable-rate coding", IEEE Transactions on Information Theory, - Volume 24, Number 5, September 1978, pages 530-536. - - -APPENDIX A - AS/400 Extra Field (0x0065) Attribute Definitions --------------------------------------------------------------- - -Field Definition Structure: - - a. field length including length 2 bytes - b. field code 2 bytes - c. data x bytes - -Field Code Description - 4001 Source type i.e. CLP etc - 4002 The text description of the library - 4003 The text description of the file - 4004 The text description of the member - 4005 x'F0' or 0 is PF-DTA, x'F1' or 1 is PF_SRC - 4007 Database Type Code 1 byte - 4008 Database file and fields definition - 4009 GZIP file type 2 bytes - 400B IFS code page 2 bytes - 400C IFS Creation Time 4 bytes - 400D IFS Access Time 4 bytes - 400E IFS Modification time 4 bytes - 005C Length of the records in the file 2 bytes - 0068 GZIP two words 8 bytes - -APPENDIX B - z/OS Extra Field (0x0065) Attribute Definitions ------------------------------------------------------------- - -Field Definition Structure: - - a. field length including length 2 bytes - b. field code 2 bytes - c. data x bytes - -Field Code Description - 0001 File Type 2 bytes - 0002 NonVSAM Record Format 1 byte - 0003 Reserved - 0004 NonVSAM Block Size 2 bytes Big Endian - 0005 Primary Space Allocation 3 bytes Big Endian - 0006 Secondary Space Allocation 3 bytes Big Endian - 0007 Space Allocation Type1 byte flag - 0008 Modification Date Retired with PKZIP 5.0 + - 0009 Expiration Date Retired with PKZIP 5.0 + - 000A PDS Directory Block Allocation 3 bytes Big Endian binary value - 000B NonVSAM Volume List variable - 000C UNIT Reference Retired with PKZIP 5.0 + - 000D DF/SMS Management Class 8 bytes EBCDIC Text Value - 000E DF/SMS Storage Class 8 bytes EBCDIC Text Value - 000F DF/SMS Data Class 8 bytes EBCDIC Text Value - 0010 PDS/PDSE Member Info. 30 bytes - 0011 VSAM sub-filetype 2 bytes - 0012 VSAM LRECL 13 bytes EBCDIC "(num_avg num_max)" - 0013 VSAM Cluster Name Retired with PKZIP 5.0 + - 0014 VSAM KSDS Key Information 13 bytes EBCDIC "(num_length num_position)" - 0015 VSAM Average LRECL 5 bytes EBCDIC num_value padded with blanks - 0016 VSAM Maximum LRECL 5 bytes EBCDIC num_value padded with blanks - 0017 VSAM KSDS Key Length 5 bytes EBCDIC num_value padded with blanks - 0018 VSAM KSDS Key Position 5 bytes EBCDIC num_value padded with blanks - 0019 VSAM Data Name 1-44 bytes EBCDIC text string - 001A VSAM KSDS Index Name 1-44 bytes EBCDIC text string - 001B VSAM Catalog Name 1-44 bytes EBCDIC text string - 001C VSAM Data Space Type 9 bytes EBCDIC text string - 001D VSAM Data Space Primary 9 bytes EBCDIC num_value left-justified - 001E VSAM Data Space Secondary 9 bytes EBCDIC num_value left-justified - 001F VSAM Data Volume List variable EBCDIC text list of 6-character Volume IDs - 0020 VSAM Data Buffer Space 8 bytes EBCDIC num_value left-justified - 0021 VSAM Data CISIZE 5 bytes EBCDIC num_value left-justified - 0022 VSAM Erase Flag 1 byte flag - 0023 VSAM Free CI % 3 bytes EBCDIC num_value left-justified - 0024 VSAM Free CA % 3 bytes EBCDIC num_value left-justified - 0025 VSAM Index Volume List variable EBCDIC text list of 6-character Volume IDs - 0026 VSAM Ordered Flag 1 byte flag - 0027 VSAM REUSE Flag 1 byte flag - 0028 VSAM SPANNED Flag 1 byte flag - 0029 VSAM Recovery Flag 1 byte flag - 002A VSAM WRITECHK Flag 1 byte flag - 002B VSAM Cluster/Data SHROPTS 3 bytes EBCDIC "n,y" - 002C VSAM Index SHROPTS 3 bytes EBCDIC "n,y" - 002D VSAM Index Space Type 9 bytes EBCDIC text string - 002E VSAM Index Space Primary 9 bytes EBCDIC num_value left-justified - 002F VSAM Index Space Secondary 9 bytes EBCDIC num_value left-justified - 0030 VSAM Index CISIZE 5 bytes EBCDIC num_value left-justified - 0031 VSAM Index IMBED 1 byte flag - 0032 VSAM Index Ordered Flag 1 byte flag - 0033 VSAM REPLICATE Flag 1 byte flag - 0034 VSAM Index REUSE Flag 1 byte flag - 0035 VSAM Index WRITECHK Flag 1 byte flag Retired with PKZIP 5.0 + - 0036 VSAM Owner 8 bytes EBCDIC text string - 0037 VSAM Index Owner 8 bytes EBCDIC text string - 0038 Reserved - 0039 Reserved - 003A Reserved - 003B Reserved - 003C Reserved - 003D Reserved - 003E Reserved - 003F Reserved - 0040 Reserved - 0041 Reserved - 0042 Reserved - 0043 Reserved - 0044 Reserved - 0045 Reserved - 0046 Reserved - 0047 Reserved - 0048 Reserved - 0049 Reserved - 004A Reserved - 004B Reserved - 004C Reserved - 004D Reserved - 004E Reserved - 004F Reserved - 0050 Reserved - 0051 Reserved - 0052 Reserved - 0053 Reserved - 0054 Reserved - 0055 Reserved - 0056 Reserved - 0057 Reserved - 0058 PDS/PDSE Member TTR Info. 6 bytes Big Endian - 0059 PDS 1st LMOD Text TTR 3 bytes Big Endian - 005A PDS LMOD EP Rec # 4 bytes Big Endian - 005B Reserved - 005C Max Length of records 2 bytes Big Endian - 005D PDSE Flag 1 byte flag - 005E Reserved - 005F Reserved - 0060 Reserved - 0061 Reserved - 0062 Reserved - 0063 Reserved - 0064 Reserved - 0065 Last Date Referenced 4 bytes Packed Hex "yyyymmdd" - 0066 Date Created 4 bytes Packed Hex "yyyymmdd" - 0068 GZIP two words 8 bytes - 0071 Extended NOTE Location 12 bytes Big Endian - 0072 Archive device UNIT 6 bytes EBCDIC - 0073 Archive 1st Volume 6 bytes EBCDIC - 0074 Archive 1st VOL File Seq# 2 bytes Binary - -APPENDIX C - Zip64 Extensible Data Sector Mappings (EFS) --------------------------------------------------------- - - -Z390 Extra Field: - - The following is the general layout of the attributes for the - ZIP 64 "extra" block for extended tape operations. Portions of - this extended tape processing technology is covered under a - pending patent application. The use or implementation in a - product of certain technological aspects set forth in the - current APPNOTE, including those with regard to strong encryption, - patching or extended tape operations, requires a license from - PKWARE. Please contact PKWARE with regard to acquiring a license. - - - Note: some fields stored in Big Endian format. All text is - in EBCDIC format unless otherwise specified. - - Value Size Description - ----- ---- ----------- - (Z390) 0x0065 2 bytes Tag for this "extra" block type - Size 4 bytes Size for the following data block - Tag 4 bytes EBCDIC "Z390" - Length71 2 bytes Big Endian - Subcode71 2 bytes Enote type code - FMEPos 1 byte - Length72 2 bytes Big Endian - Subcode72 2 bytes Unit type code - Unit 1 byte Unit - Length73 2 bytes Big Endian - Subcode73 2 bytes Volume1 type code - FirstVol 1 byte Volume - Length74 2 bytes Big Endian - Subcode74 2 bytes FirstVol file sequence - FileSeq 2 bytes Sequence - -APPENDIX D - Language Encoding (EFS) ------------------------------------- - -The ZIP format has historically supported only the original IBM PC character -encoding set, commonly referred to as IBM Code Page 437. This limits storing -file name characters to only those within the original MS-DOS range of values -and does not properly support file names in other character encodings, or -languages. To address this limitation, this specification will support the -following change. - -If general purpose bit 11 is unset, the file name and comment should conform -to the original ZIP character encoding. If general purpose bit 11 is set, the -filename and comment must support The Unicode Standard, Version 4.1.0 or -greater using the character encoding form defined by the UTF-8 storage -specification. The Unicode Standard is published by the The Unicode -Consortium (www.unicode.org). UTF-8 encoded data stored within ZIP files -is expected to not include a byte order mark (BOM). - -Applications may choose to supplement this file name storage through the use -of the 0x0008 Extra Field. Storage for this optional field is currently -undefined, however it will be used to allow storing extended information -on source or target encoding that may further assist applications with file -name, or file content encoding tasks. Please contact PKWARE with any -requirements on how this field should be used. - -The 0x0008 Extra Field storage may be used with either setting for general -purpose bit 11. Examples of the intended usage for this field is to store -whether "modified-UTF-8" (JAVA) is used, or UTF-8-MAC. Similarly, other -commonly used character encoding (code page) designations can be indicated -through this field. Formalized values for use of the 0x0008 record remain -undefined at this time. The definition for the layout of the 0x0008 field -will be published when available. Use of the 0x0008 Extra Field provides -for storing data within a ZIP file in an encoding other than IBM Code -Page 437 or UTF-8. - -General purpose bit 11 will not imply any encoding of file content or -password. Values defining character encoding for file content or -password must be stored within the 0x0008 Extended Language Encoding -Extra Field. - -Ed Gordon of the Info-ZIP group has defined a pair of "extra field" records -that can be used to store UTF-8 file name and file comment fields. These -records can be used for cases when the general purpose bit 11 method -for storing UTF-8 data in the standard file name and comment fields is -not desirable. A common case for this alternate method is if backward -compatibility with older programs is required. - -Definitions for the record structure of these fields are included above -in the section on 3rd party mappings for "extra field" records. These -records are identified by Header ID's 0x6375 (Info-ZIP Unicode Comment -Extra Field) and 0x7075 (Info-ZIP Unicode Path Extra Field). - -The choice of which storage method to use when writing a ZIP file is left -to the implementation. Developers should expect that a ZIP file may -contain either method and should provide support for reading data in -either format. Use of general purpose bit 11 reduces storage requirements -for file name data by not requiring additional "extra field" data for -each file, but can result in older ZIP programs not being able to extract -files. Use of the 0x6375 and 0x7075 records will result in a ZIP file -that should always be readable by older ZIP programs, but requires more -storage per file to write file name and/or file comment fields. - - - - +File: APPNOTE.TXT - .ZIP File Format Specification +Version: 6.3.2 +Revised: September 28, 2007 +Copyright (c) 1989 - 2007 PKWARE Inc., All Rights Reserved. + +The use of certain technological aspects disclosed in the current +APPNOTE is available pursuant to the below section entitled +"Incorporating PKWARE Proprietary Technology into Your Product". + +I. Purpose +---------- + +This specification is intended to define a cross-platform, +interoperable file storage and transfer format. Since its +first publication in 1989, PKWARE has remained committed to +ensuring the interoperability of the .ZIP file format through +publication and maintenance of this specification. We trust that +all .ZIP compatible vendors and application developers that have +adopted and benefited from this format will share and support +this commitment to interoperability. + +II. Contacting PKWARE +--------------------- + + PKWARE, Inc. + 648 N. Plankinton Avenue, Suite 220 + Milwaukee, WI 53203 + +1-414-289-9788 + +1-414-289-9789 FAX + zipformat@pkware.com + +III. Disclaimer +--------------- + +Although PKWARE will attempt to supply current and accurate +information relating to its file formats, algorithms, and the +subject programs, the possibility of error or omission cannot +be eliminated. PKWARE therefore expressly disclaims any warranty +that the information contained in the associated materials relating +to the subject programs and/or the format of the files created or +accessed by the subject programs and/or the algorithms used by +the subject programs, or any other matter, is current, correct or +accurate as delivered. Any risk of damage due to any possible +inaccurate information is assumed by the user of the information. +Furthermore, the information relating to the subject programs +and/or the file formats created or accessed by the subject +programs and/or the algorithms used by the subject programs is +subject to change without notice. + +If the version of this file is marked as a NOTIFICATION OF CHANGE, +the content defines an Early Feature Specification (EFS) change +to the .ZIP file format that may be subject to modification prior +to publication of the Final Feature Specification (FFS). This +document may also contain information on Planned Feature +Specifications (PFS) defining recognized future extensions. + +IV. Change Log +-------------- + +Version Change Description Date +------- ------------------ ---------- +5.2 -Single Password Symmetric Encryption 06/02/2003 + storage + +6.1.0 -Smartcard compatibility 01/20/2004 + -Documentation on certificate storage + +6.2.0 -Introduction of Central Directory 04/26/2004 + Encryption for encrypting metadata + -Added OS/X to Version Made By values + +6.2.1 -Added Extra Field placeholder for 04/01/2005 + POSZIP using ID 0x4690 + + -Clarified size field on + "zip64 end of central directory record" + +6.2.2 -Documented Final Feature Specification 01/06/2006 + for Strong Encryption + + -Clarifications and typographical + corrections + +6.3.0 -Added tape positioning storage 09/29/2006 + parameters + + -Expanded list of supported hash algorithms + + -Expanded list of supported compression + algorithms + + -Expanded list of supported encryption + algorithms + + -Added option for Unicode filename + storage + + -Clarifications for consistent use + of Data Descriptor records + + -Added additional "Extra Field" + definitions + +6.3.1 -Corrected standard hash values for 04/11/2007 + SHA-256/384/512 + +6.3.2 -Added compression method 97 09/28/2007 + + -Documented InfoZIP "Extra Field" + values for UTF-8 file name and + file comment storage + +V. General Format of a .ZIP file +-------------------------------- + + Files stored in arbitrary order. Large .ZIP files can span multiple + volumes or be split into user-defined segment sizes. All values + are stored in little-endian byte order unless otherwise specified. + + Overall .ZIP file format: + + [local file header 1] + [file data 1] + [data descriptor 1] + . + . + . + [local file header n] + [file data n] + [data descriptor n] + [archive decryption header] + [archive extra data record] + [central directory] + [zip64 end of central directory record] + [zip64 end of central directory locator] + [end of central directory record] + + + A. Local file header: + + local file header signature 4 bytes (0x04034b50) + version needed to extract 2 bytes + general purpose bit flag 2 bytes + compression method 2 bytes + last mod file time 2 bytes + last mod file date 2 bytes + crc-32 4 bytes + compressed size 4 bytes + uncompressed size 4 bytes + file name length 2 bytes + extra field length 2 bytes + + file name (variable size) + extra field (variable size) + + B. File data + + Immediately following the local header for a file + is the compressed or stored data for the file. + The series of [local file header][file data][data + descriptor] repeats for each file in the .ZIP archive. + + C. Data descriptor: + + crc-32 4 bytes + compressed size 4 bytes + uncompressed size 4 bytes + + This descriptor exists only if bit 3 of the general + purpose bit flag is set (see below). It is byte aligned + and immediately follows the last byte of compressed data. + This descriptor is used only when it was not possible to + seek in the output .ZIP file, e.g., when the output .ZIP file + was standard output or a non-seekable device. For ZIP64(tm) format + archives, the compressed and uncompressed sizes are 8 bytes each. + + When compressing files, compressed and uncompressed sizes + should be stored in ZIP64 format (as 8 byte values) when a + files size exceeds 0xFFFFFFFF. However ZIP64 format may be + used regardless of the size of a file. When extracting, if + the zip64 extended information extra field is present for + the file the compressed and uncompressed sizes will be 8 + byte values. + + Although not originally assigned a signature, the value + 0x08074b50 has commonly been adopted as a signature value + for the data descriptor record. Implementers should be + aware that ZIP files may be encountered with or without this + signature marking data descriptors and should account for + either case when reading ZIP files to ensure compatibility. + When writing ZIP files, it is recommended to include the + signature value marking the data descriptor record. When + the signature is used, the fields currently defined for + the data descriptor record will immediately follow the + signature. + + An extensible data descriptor will be released in a future + version of this APPNOTE. This new record is intended to + resolve conflicts with the use of this record going forward, + and to provide better support for streamed file processing. + + When the Central Directory Encryption method is used, the data + descriptor record is not required, but may be used. If present, + and bit 3 of the general purpose bit field is set to indicate + its presence, the values in fields of the data descriptor + record should be set to binary zeros. + + D. Archive decryption header: + + The Archive Decryption Header is introduced in version 6.2 + of the ZIP format specification. This record exists in support + of the Central Directory Encryption Feature implemented as part of + the Strong Encryption Specification as described in this document. + When the Central Directory Structure is encrypted, this decryption + header will precede the encrypted data segment. The encrypted + data segment will consist of the Archive extra data record (if + present) and the encrypted Central Directory Structure data. + The format of this data record is identical to the Decryption + header record preceding compressed file data. If the central + directory structure is encrypted, the location of the start of + this data record is determined using the Start of Central Directory + field in the Zip64 End of Central Directory record. Refer to the + section on the Strong Encryption Specification for information + on the fields used in the Archive Decryption Header record. + + + E. Archive extra data record: + + archive extra data signature 4 bytes (0x08064b50) + extra field length 4 bytes + extra field data (variable size) + + The Archive Extra Data Record is introduced in version 6.2 + of the ZIP format specification. This record exists in support + of the Central Directory Encryption Feature implemented as part of + the Strong Encryption Specification as described in this document. + When present, this record immediately precedes the central + directory data structure. The size of this data record will be + included in the Size of the Central Directory field in the + End of Central Directory record. If the central directory structure + is compressed, but not encrypted, the location of the start of + this data record is determined using the Start of Central Directory + field in the Zip64 End of Central Directory record. + + + F. Central directory structure: + + [file header 1] + . + . + . + [file header n] + [digital signature] + + File header: + + central file header signature 4 bytes (0x02014b50) + version made by 2 bytes + version needed to extract 2 bytes + general purpose bit flag 2 bytes + compression method 2 bytes + last mod file time 2 bytes + last mod file date 2 bytes + crc-32 4 bytes + compressed size 4 bytes + uncompressed size 4 bytes + file name length 2 bytes + extra field length 2 bytes + file comment length 2 bytes + disk number start 2 bytes + internal file attributes 2 bytes + external file attributes 4 bytes + relative offset of local header 4 bytes + + file name (variable size) + extra field (variable size) + file comment (variable size) + + Digital signature: + + header signature 4 bytes (0x05054b50) + size of data 2 bytes + signature data (variable size) + + With the introduction of the Central Directory Encryption + feature in version 6.2 of this specification, the Central + Directory Structure may be stored both compressed and encrypted. + Although not required, it is assumed when encrypting the + Central Directory Structure, that it will be compressed + for greater storage efficiency. Information on the + Central Directory Encryption feature can be found in the section + describing the Strong Encryption Specification. The Digital + Signature record will be neither compressed nor encrypted. + + G. Zip64 end of central directory record + + zip64 end of central dir + signature 4 bytes (0x06064b50) + size of zip64 end of central + directory record 8 bytes + version made by 2 bytes + version needed to extract 2 bytes + number of this disk 4 bytes + number of the disk with the + start of the central directory 4 bytes + total number of entries in the + central directory on this disk 8 bytes + total number of entries in the + central directory 8 bytes + size of the central directory 8 bytes + offset of start of central + directory with respect to + the starting disk number 8 bytes + zip64 extensible data sector (variable size) + + The value stored into the "size of zip64 end of central + directory record" should be the size of the remaining + record and should not include the leading 12 bytes. + + Size = SizeOfFixedFields + SizeOfVariableData - 12. + + The above record structure defines Version 1 of the + zip64 end of central directory record. Version 1 was + implemented in versions of this specification preceding + 6.2 in support of the ZIP64 large file feature. The + introduction of the Central Directory Encryption feature + implemented in version 6.2 as part of the Strong Encryption + Specification defines Version 2 of this record structure. + Refer to the section describing the Strong Encryption + Specification for details on the version 2 format for + this record. + + Special purpose data may reside in the zip64 extensible data + sector field following either a V1 or V2 version of this + record. To ensure identification of this special purpose data + it must include an identifying header block consisting of the + following: + + Header ID - 2 bytes + Data Size - 4 bytes + + The Header ID field indicates the type of data that is in the + data block that follows. + + Data Size identifies the number of bytes that follow for this + data block type. + + Multiple special purpose data blocks may be present, but each + must be preceded by a Header ID and Data Size field. Current + mappings of Header ID values supported in this field are as + defined in APPENDIX C. + + H. Zip64 end of central directory locator + + zip64 end of central dir locator + signature 4 bytes (0x07064b50) + number of the disk with the + start of the zip64 end of + central directory 4 bytes + relative offset of the zip64 + end of central directory record 8 bytes + total number of disks 4 bytes + + I. End of central directory record: + + end of central dir signature 4 bytes (0x06054b50) + number of this disk 2 bytes + number of the disk with the + start of the central directory 2 bytes + total number of entries in the + central directory on this disk 2 bytes + total number of entries in + the central directory 2 bytes + size of the central directory 4 bytes + offset of start of central + directory with respect to + the starting disk number 4 bytes + .ZIP file comment length 2 bytes + .ZIP file comment (variable size) + + J. Explanation of fields: + + version made by (2 bytes) + + The upper byte indicates the compatibility of the file + attribute information. If the external file attributes + are compatible with MS-DOS and can be read by PKZIP for + DOS version 2.04g then this value will be zero. If these + attributes are not compatible, then this value will + identify the host system on which the attributes are + compatible. Software can use this information to determine + the line record format for text files etc. The current + mappings are: + + 0 - MS-DOS and OS/2 (FAT / VFAT / FAT32 file systems) + 1 - Amiga 2 - OpenVMS + 3 - UNIX 4 - VM/CMS + 5 - Atari ST 6 - OS/2 H.P.F.S. + 7 - Macintosh 8 - Z-System + 9 - CP/M 10 - Windows NTFS + 11 - MVS (OS/390 - Z/OS) 12 - VSE + 13 - Acorn Risc 14 - VFAT + 15 - alternate MVS 16 - BeOS + 17 - Tandem 18 - OS/400 + 19 - OS/X (Darwin) 20 thru 255 - unused + + The lower byte indicates the ZIP specification version + (the version of this document) supported by the software + used to encode the file. The value/10 indicates the major + version number, and the value mod 10 is the minor version + number. + + version needed to extract (2 bytes) + + The minimum supported ZIP specification version needed to + extract the file, mapped as above. This value is based on + the specific format features a ZIP program must support to + be able to extract the file. If multiple features are + applied to a file, the minimum version should be set to the + feature having the highest value. New features or feature + changes affecting the published format specification will be + implemented using higher version numbers than the last + published value to avoid conflict. + + Current minimum feature versions are as defined below: + + 1.0 - Default value + 1.1 - File is a volume label + 2.0 - File is a folder (directory) + 2.0 - File is compressed using Deflate compression + 2.0 - File is encrypted using traditional PKWARE encryption + 2.1 - File is compressed using Deflate64(tm) + 2.5 - File is compressed using PKWARE DCL Implode + 2.7 - File is a patch data set + 4.5 - File uses ZIP64 format extensions + 4.6 - File is compressed using BZIP2 compression* + 5.0 - File is encrypted using DES + 5.0 - File is encrypted using 3DES + 5.0 - File is encrypted using original RC2 encryption + 5.0 - File is encrypted using RC4 encryption + 5.1 - File is encrypted using AES encryption + 5.1 - File is encrypted using corrected RC2 encryption** + 5.2 - File is encrypted using corrected RC2-64 encryption** + 6.1 - File is encrypted using non-OAEP key wrapping*** + 6.2 - Central directory encryption + 6.3 - File is compressed using LZMA + 6.3 - File is compressed using PPMd+ + 6.3 - File is encrypted using Blowfish + 6.3 - File is encrypted using Twofish + + + * Early 7.x (pre-7.2) versions of PKZIP incorrectly set the + version needed to extract for BZIP2 compression to be 50 + when it should have been 46. + + ** Refer to the section on Strong Encryption Specification + for additional information regarding RC2 corrections. + + *** Certificate encryption using non-OAEP key wrapping is the + intended mode of operation for all versions beginning with 6.1. + Support for OAEP key wrapping should only be used for + backward compatibility when sending ZIP files to be opened by + versions of PKZIP older than 6.1 (5.0 or 6.0). + + + Files compressed using PPMd should set the version + needed to extract field to 6.3, however, not all ZIP + programs enforce this and may be unable to decompress + data files compressed using PPMd if this value is set. + + When using ZIP64 extensions, the corresponding value in the + zip64 end of central directory record should also be set. + This field should be set appropriately to indicate whether + Version 1 or Version 2 format is in use. + + general purpose bit flag: (2 bytes) + + Bit 0: If set, indicates that the file is encrypted. + + (For Method 6 - Imploding) + Bit 1: If the compression method used was type 6, + Imploding, then this bit, if set, indicates + an 8K sliding dictionary was used. If clear, + then a 4K sliding dictionary was used. + Bit 2: If the compression method used was type 6, + Imploding, then this bit, if set, indicates + 3 Shannon-Fano trees were used to encode the + sliding dictionary output. If clear, then 2 + Shannon-Fano trees were used. + + (For Methods 8 and 9 - Deflating) + Bit 2 Bit 1 + 0 0 Normal (-en) compression option was used. + 0 1 Maximum (-exx/-ex) compression option was used. + 1 0 Fast (-ef) compression option was used. + 1 1 Super Fast (-es) compression option was used. + + (For Method 14 - LZMA) + Bit 1: If the compression method used was type 14, + LZMA, then this bit, if set, indicates + an end-of-stream (EOS) marker is used to + mark the end of the compressed data stream. + If clear, then an EOS marker is not present + and the compressed data size must be known + to extract. + + Note: Bits 1 and 2 are undefined if the compression + method is any other. + + Bit 3: If this bit is set, the fields crc-32, compressed + size and uncompressed size are set to zero in the + local header. The correct values are put in the + data descriptor immediately following the compressed + data. (Note: PKZIP version 2.04g for DOS only + recognizes this bit for method 8 compression, newer + versions of PKZIP recognize this bit for any + compression method.) + + Bit 4: Reserved for use with method 8, for enhanced + deflating. + + Bit 5: If this bit is set, this indicates that the file is + compressed patched data. (Note: Requires PKZIP + version 2.70 or greater) + + Bit 6: Strong encryption. If this bit is set, you should + set the version needed to extract value to at least + 50 and you must also set bit 0. If AES encryption + is used, the version needed to extract value must + be at least 51. + + Bit 7: Currently unused. + + Bit 8: Currently unused. + + Bit 9: Currently unused. + + Bit 10: Currently unused. + + Bit 11: Language encoding flag (EFS). If this bit is set, + the filename and comment fields for this file + must be encoded using UTF-8. (see APPENDIX D) + + Bit 12: Reserved by PKWARE for enhanced compression. + + Bit 13: Used when encrypting the Central Directory to indicate + selected data values in the Local Header are masked to + hide their actual values. See the section describing + the Strong Encryption Specification for details. + + Bit 14: Reserved by PKWARE. + + Bit 15: Reserved by PKWARE. + + compression method: (2 bytes) + + (see accompanying documentation for algorithm + descriptions) + + 0 - The file is stored (no compression) + 1 - The file is Shrunk + 2 - The file is Reduced with compression factor 1 + 3 - The file is Reduced with compression factor 2 + 4 - The file is Reduced with compression factor 3 + 5 - The file is Reduced with compression factor 4 + 6 - The file is Imploded + 7 - Reserved for Tokenizing compression algorithm + 8 - The file is Deflated + 9 - Enhanced Deflating using Deflate64(tm) + 10 - PKWARE Data Compression Library Imploding (old IBM TERSE) + 11 - Reserved by PKWARE + 12 - File is compressed using BZIP2 algorithm + 13 - Reserved by PKWARE + 14 - LZMA (EFS) + 15 - Reserved by PKWARE + 16 - Reserved by PKWARE + 17 - Reserved by PKWARE + 18 - File is compressed using IBM TERSE (new) + 19 - IBM LZ77 z Architecture (PFS) + 97 - WavPack compressed data + 98 - PPMd version I, Rev 1 + + date and time fields: (2 bytes each) + + The date and time are encoded in standard MS-DOS format. + If input came from standard input, the date and time are + those at which compression was started for this data. + If encrypting the central directory and general purpose bit + flag 13 is set indicating masking, the value stored in the + Local Header will be zero. + + CRC-32: (4 bytes) + + The CRC-32 algorithm was generously contributed by + David Schwaderer and can be found in his excellent + book "C Programmers Guide to NetBIOS" published by + Howard W. Sams & Co. Inc. The 'magic number' for + the CRC is 0xdebb20e3. The proper CRC pre and post + conditioning is used, meaning that the CRC register + is pre-conditioned with all ones (a starting value + of 0xffffffff) and the value is post-conditioned by + taking the one's complement of the CRC residual. + If bit 3 of the general purpose flag is set, this + field is set to zero in the local header and the correct + value is put in the data descriptor and in the central + directory. When encrypting the central directory, if the + local header is not in ZIP64 format and general purpose + bit flag 13 is set indicating masking, the value stored + in the Local Header will be zero. + + compressed size: (4 bytes) + uncompressed size: (4 bytes) + + The size of the file compressed and uncompressed, + respectively. When a decryption header is present it will + be placed in front of the file data and the value of the + compressed file size will include the bytes of the decryption + header. If bit 3 of the general purpose bit flag is set, + these fields are set to zero in the local header and the + correct values are put in the data descriptor and + in the central directory. If an archive is in ZIP64 format + and the value in this field is 0xFFFFFFFF, the size will be + in the corresponding 8 byte ZIP64 extended information + extra field. When encrypting the central directory, if the + local header is not in ZIP64 format and general purpose bit + flag 13 is set indicating masking, the value stored for the + uncompressed size in the Local Header will be zero. + + file name length: (2 bytes) + extra field length: (2 bytes) + file comment length: (2 bytes) + + The length of the file name, extra field, and comment + fields respectively. The combined length of any + directory record and these three fields should not + generally exceed 65,535 bytes. If input came from standard + input, the file name length is set to zero. + + disk number start: (2 bytes) + + The number of the disk on which this file begins. If an + archive is in ZIP64 format and the value in this field is + 0xFFFF, the size will be in the corresponding 4 byte zip64 + extended information extra field. + + internal file attributes: (2 bytes) + + Bits 1 and 2 are reserved for use by PKWARE. + + The lowest bit of this field indicates, if set, that + the file is apparently an ASCII or text file. If not + set, that the file apparently contains binary data. + The remaining bits are unused in version 1.0. + + The 0x0002 bit of this field indicates, if set, that a + 4 byte variable record length control field precedes each + logical record indicating the length of the record. The + record length control field is stored in little-endian byte + order. This flag is independent of text control characters, + and if used in conjunction with text data, includes any + control characters in the total length of the record. This + value is provided for mainframe data transfer support. + + external file attributes: (4 bytes) + + The mapping of the external attributes is + host-system dependent (see 'version made by'). For + MS-DOS, the low order byte is the MS-DOS directory + attribute byte. If input came from standard input, this + field is set to zero. + + relative offset of local header: (4 bytes) + + This is the offset from the start of the first disk on + which this file appears, to where the local header should + be found. If an archive is in ZIP64 format and the value + in this field is 0xFFFFFFFF, the size will be in the + corresponding 8 byte zip64 extended information extra field. + + file name: (Variable) + + The name of the file, with optional relative path. + The path stored should not contain a drive or + device letter, or a leading slash. All slashes + should be forward slashes '/' as opposed to + backwards slashes '\' for compatibility with Amiga + and UNIX file systems etc. If input came from standard + input, there is no file name field. If encrypting + the central directory and general purpose bit flag 13 is set + indicating masking, the file name stored in the Local Header + will not be the actual file name. A masking value consisting + of a unique hexadecimal value will be stored. This value will + be sequentially incremented for each file in the archive. See + the section on the Strong Encryption Specification for details + on retrieving the encrypted file name. + + extra field: (Variable) + + This is for expansion. If additional information + needs to be stored for special needs or for specific + platforms, it should be stored here. Earlier versions + of the software can then safely skip this file, and + find the next file or header. This field will be 0 + length in version 1.0. + + In order to allow different programs and different types + of information to be stored in the 'extra' field in .ZIP + files, the following structure should be used for all + programs storing data in this field: + + header1+data1 + header2+data2 . . . + + Each header should consist of: + + Header ID - 2 bytes + Data Size - 2 bytes + + Note: all fields stored in Intel low-byte/high-byte order. + + The Header ID field indicates the type of data that is in + the following data block. + + Header ID's of 0 thru 31 are reserved for use by PKWARE. + The remaining ID's can be used by third party vendors for + proprietary usage. + + The current Header ID mappings defined by PKWARE are: + + 0x0001 Zip64 extended information extra field + 0x0007 AV Info + 0x0008 Reserved for extended language encoding data (PFS) + (see APPENDIX D) + 0x0009 OS/2 + 0x000a NTFS + 0x000c OpenVMS + 0x000d UNIX + 0x000e Reserved for file stream and fork descriptors + 0x000f Patch Descriptor + 0x0014 PKCS#7 Store for X.509 Certificates + 0x0015 X.509 Certificate ID and Signature for + individual file + 0x0016 X.509 Certificate ID for Central Directory + 0x0017 Strong Encryption Header + 0x0018 Record Management Controls + 0x0019 PKCS#7 Encryption Recipient Certificate List + 0x0065 IBM S/390 (Z390), AS/400 (I400) attributes + - uncompressed + 0x0066 Reserved for IBM S/390 (Z390), AS/400 (I400) + attributes - compressed + 0x4690 POSZIP 4690 (reserved) + + Third party mappings commonly used are: + + + 0x07c8 Macintosh + 0x2605 ZipIt Macintosh + 0x2705 ZipIt Macintosh 1.3.5+ + 0x2805 ZipIt Macintosh 1.3.5+ + 0x334d Info-ZIP Macintosh + 0x4341 Acorn/SparkFS + 0x4453 Windows NT security descriptor (binary ACL) + 0x4704 VM/CMS + 0x470f MVS + 0x4b46 FWKCS MD5 (see below) + 0x4c41 OS/2 access control list (text ACL) + 0x4d49 Info-ZIP OpenVMS + 0x4f4c Xceed original location extra field + 0x5356 AOS/VS (ACL) + 0x5455 extended timestamp + 0x554e Xceed unicode extra field + 0x5855 Info-ZIP UNIX (original, also OS/2, NT, etc) + 0x6375 Info-ZIP Unicode Comment Extra Field + 0x6542 BeOS/BeBox + 0x7075 Info-ZIP Unicode Path Extra Field + 0x756e ASi UNIX + 0x7855 Info-ZIP UNIX (new) + 0xa220 Microsoft Open Packaging Growth Hint + 0xfd4a SMS/QDOS + + Detailed descriptions of Extra Fields defined by third + party mappings will be documented as information on + these data structures is made available to PKWARE. + PKWARE does not guarantee the accuracy of any published + third party data. + + The Data Size field indicates the size of the following + data block. Programs can use this value to skip to the + next header block, passing over any data blocks that are + not of interest. + + Note: As stated above, the size of the entire .ZIP file + header, including the file name, comment, and extra + field should not exceed 64K in size. + + In case two different programs should appropriate the same + Header ID value, it is strongly recommended that each + program place a unique signature of at least two bytes in + size (and preferably 4 bytes or bigger) at the start of + each data area. Every program should verify that its + unique signature is present, in addition to the Header ID + value being correct, before assuming that it is a block of + known type. + + -Zip64 Extended Information Extra Field (0x0001): + + The following is the layout of the zip64 extended + information "extra" block. If one of the size or + offset fields in the Local or Central directory + record is too small to hold the required data, + a Zip64 extended information record is created. + The order of the fields in the zip64 extended + information record is fixed, but the fields will + only appear if the corresponding Local or Central + directory record field is set to 0xFFFF or 0xFFFFFFFF. + + Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + (ZIP64) 0x0001 2 bytes Tag for this "extra" block type + Size 2 bytes Size of this "extra" block + Original + Size 8 bytes Original uncompressed file size + Compressed + Size 8 bytes Size of compressed data + Relative Header + Offset 8 bytes Offset of local header record + Disk Start + Number 4 bytes Number of the disk on which + this file starts + + This entry in the Local header must include BOTH original + and compressed file size fields. If encrypting the + central directory and bit 13 of the general purpose bit + flag is set indicating masking, the value stored in the + Local Header for the original file size will be zero. + + + -OS/2 Extra Field (0x0009): + + The following is the layout of the OS/2 attributes "extra" + block. (Last Revision 09/05/95) + + Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + (OS/2) 0x0009 2 bytes Tag for this "extra" block type + TSize 2 bytes Size for the following data block + BSize 4 bytes Uncompressed Block Size + CType 2 bytes Compression type + EACRC 4 bytes CRC value for uncompress block + (var) variable Compressed block + + The OS/2 extended attribute structure (FEA2LIST) is + compressed and then stored in it's entirety within this + structure. There will only ever be one "block" of data in + VarFields[]. + + -NTFS Extra Field (0x000a): + + The following is the layout of the NTFS attributes + "extra" block. (Note: At this time the Mtime, Atime + and Ctime values may be used on any WIN32 system.) + + Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + (NTFS) 0x000a 2 bytes Tag for this "extra" block type + TSize 2 bytes Size of the total "extra" block + Reserved 4 bytes Reserved for future use + Tag1 2 bytes NTFS attribute tag value #1 + Size1 2 bytes Size of attribute #1, in bytes + (var.) Size1 Attribute #1 data + . + . + . + TagN 2 bytes NTFS attribute tag value #N + SizeN 2 bytes Size of attribute #N, in bytes + (var.) SizeN Attribute #N data + + For NTFS, values for Tag1 through TagN are as follows: + (currently only one set of attributes is defined for NTFS) + + Tag Size Description + ----- ---- ----------- + 0x0001 2 bytes Tag for attribute #1 + Size1 2 bytes Size of attribute #1, in bytes + Mtime 8 bytes File last modification time + Atime 8 bytes File last access time + Ctime 8 bytes File creation time + + -OpenVMS Extra Field (0x000c): + + The following is the layout of the OpenVMS attributes + "extra" block. + + Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + (VMS) 0x000c 2 bytes Tag for this "extra" block type + TSize 2 bytes Size of the total "extra" block + CRC 4 bytes 32-bit CRC for remainder of the block + Tag1 2 bytes OpenVMS attribute tag value #1 + Size1 2 bytes Size of attribute #1, in bytes + (var.) Size1 Attribute #1 data + . + . + . + TagN 2 bytes OpenVMS attribute tag value #N + SizeN 2 bytes Size of attribute #N, in bytes + (var.) SizeN Attribute #N data + + Rules: + + 1. There will be one or more of attributes present, which + will each be preceded by the above TagX & SizeX values. + These values are identical to the ATR$C_XXXX and + ATR$S_XXXX constants which are defined in ATR.H under + OpenVMS C. Neither of these values will ever be zero. + + 2. No word alignment or padding is performed. + + 3. A well-behaved PKZIP/OpenVMS program should never produce + more than one sub-block with the same TagX value. Also, + there will never be more than one "extra" block of type + 0x000c in a particular directory record. + + -UNIX Extra Field (0x000d): + + The following is the layout of the UNIX "extra" block. + Note: all fields are stored in Intel low-byte/high-byte + order. + + Value Size Description + ----- ---- ----------- + (UNIX) 0x000d 2 bytes Tag for this "extra" block type + TSize 2 bytes Size for the following data block + Atime 4 bytes File last access time + Mtime 4 bytes File last modification time + Uid 2 bytes File user ID + Gid 2 bytes File group ID + (var) variable Variable length data field + + The variable length data field will contain file type + specific data. Currently the only values allowed are + the original "linked to" file names for hard or symbolic + links, and the major and minor device node numbers for + character and block device nodes. Since device nodes + cannot be either symbolic or hard links, only one set of + variable length data is stored. Link files will have the + name of the original file stored. This name is NOT NULL + terminated. Its size can be determined by checking TSize - + 12. Device entries will have eight bytes stored as two 4 + byte entries (in little endian format). The first entry + will be the major device number, and the second the minor + device number. + + -PATCH Descriptor Extra Field (0x000f): + + The following is the layout of the Patch Descriptor "extra" + block. + + Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + (Patch) 0x000f 2 bytes Tag for this "extra" block type + TSize 2 bytes Size of the total "extra" block + Version 2 bytes Version of the descriptor + Flags 4 bytes Actions and reactions (see below) + OldSize 4 bytes Size of the file about to be patched + OldCRC 4 bytes 32-bit CRC of the file to be patched + NewSize 4 bytes Size of the resulting file + NewCRC 4 bytes 32-bit CRC of the resulting file + + Actions and reactions + + Bits Description + ---- ---------------- + 0 Use for auto detection + 1 Treat as a self-patch + 2-3 RESERVED + 4-5 Action (see below) + 6-7 RESERVED + 8-9 Reaction (see below) to absent file + 10-11 Reaction (see below) to newer file + 12-13 Reaction (see below) to unknown file + 14-15 RESERVED + 16-31 RESERVED + + Actions + + Action Value + ------ ----- + none 0 + add 1 + delete 2 + patch 3 + + Reactions + + Reaction Value + -------- ----- + ask 0 + skip 1 + ignore 2 + fail 3 + + Patch support is provided by PKPatchMaker(tm) technology and is + covered under U.S. Patents and Patents Pending. The use or + implementation in a product of certain technological aspects set + forth in the current APPNOTE, including those with regard to + strong encryption, patching, or extended tape operations requires + a license from PKWARE. Please contact PKWARE with regard to + acquiring a license. + + -PKCS#7 Store for X.509 Certificates (0x0014): + + This field contains information about each of the certificates + files may be signed with. When the Central Directory Encryption + feature is enabled for a ZIP file, this record will appear in + the Archive Extra Data Record, otherwise it will appear in the + first central directory record and will be ignored in any + other record. + + Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + (Store) 0x0014 2 bytes Tag for this "extra" block type + TSize 2 bytes Size of the store data + TData TSize Data about the store + + + -X.509 Certificate ID and Signature for individual file (0x0015): + + This field contains the information about which certificate in + the PKCS#7 store was used to sign a particular file. It also + contains the signature data. This field can appear multiple + times, but can only appear once per certificate. + + Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + (CID) 0x0015 2 bytes Tag for this "extra" block type + TSize 2 bytes Size of data that follows + TData TSize Signature Data + + -X.509 Certificate ID and Signature for central directory (0x0016): + + This field contains the information about which certificate in + the PKCS#7 store was used to sign the central directory structure. + When the Central Directory Encryption feature is enabled for a + ZIP file, this record will appear in the Archive Extra Data Record, + otherwise it will appear in the first central directory record. + + Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + (CDID) 0x0016 2 bytes Tag for this "extra" block type + TSize 2 bytes Size of data that follows + TData TSize Data + + -Strong Encryption Header (0x0017): + + Value Size Description + ----- ---- ----------- + 0x0017 2 bytes Tag for this "extra" block type + TSize 2 bytes Size of data that follows + Format 2 bytes Format definition for this record + AlgID 2 bytes Encryption algorithm identifier + Bitlen 2 bytes Bit length of encryption key + Flags 2 bytes Processing flags + CertData TSize-8 Certificate decryption extra field data + (refer to the explanation for CertData + in the section describing the + Certificate Processing Method under + the Strong Encryption Specification) + + + -Record Management Controls (0x0018): + + Value Size Description + ----- ---- ----------- +(Rec-CTL) 0x0018 2 bytes Tag for this "extra" block type + CSize 2 bytes Size of total extra block data + Tag1 2 bytes Record control attribute 1 + Size1 2 bytes Size of attribute 1, in bytes + Data1 Size1 Attribute 1 data + . + . + . + TagN 2 bytes Record control attribute N + SizeN 2 bytes Size of attribute N, in bytes + DataN SizeN Attribute N data + + + -PKCS#7 Encryption Recipient Certificate List (0x0019): + + This field contains information about each of the certificates + used in encryption processing and it can be used to identify who is + allowed to decrypt encrypted files. This field should only appear + in the archive extra data record. This field is not required and + serves only to aide archive modifications by preserving public + encryption key data. Individual security requirements may dictate + that this data be omitted to deter information exposure. + + Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + (CStore) 0x0019 2 bytes Tag for this "extra" block type + TSize 2 bytes Size of the store data + TData TSize Data about the store + + TData: + + Value Size Description + ----- ---- ----------- + Version 2 bytes Format version number - must 0x0001 at this time + CStore (var) PKCS#7 data blob + + + -MVS Extra Field (0x0065): + + The following is the layout of the MVS "extra" block. + Note: Some fields are stored in Big Endian format. + All text is in EBCDIC format unless otherwise specified. + + Value Size Description + ----- ---- ----------- + (MVS) 0x0065 2 bytes Tag for this "extra" block type + TSize 2 bytes Size for the following data block + ID 4 bytes EBCDIC "Z390" 0xE9F3F9F0 or + "T4MV" for TargetFour + (var) TSize-4 Attribute data (see APPENDIX B) + + + -OS/400 Extra Field (0x0065): + + The following is the layout of the OS/400 "extra" block. + Note: Some fields are stored in Big Endian format. + All text is in EBCDIC format unless otherwise specified. + + Value Size Description + ----- ---- ----------- + (OS400) 0x0065 2 bytes Tag for this "extra" block type + TSize 2 bytes Size for the following data block + ID 4 bytes EBCDIC "I400" 0xC9F4F0F0 or + "T4MV" for TargetFour + (var) TSize-4 Attribute data (see APPENDIX A) + + + Third-party Mappings: + + -ZipIt Macintosh Extra Field (long) (0x2605): + + The following is the layout of the ZipIt extra block + for Macintosh. The local-header and central-header versions + are identical. This block must be present if the file is + stored MacBinary-encoded and it should not be used if the file + is not stored MacBinary-encoded. + + Value Size Description + ----- ---- ----------- + (Mac2) 0x2605 Short tag for this extra block type + TSize Short total data size for this block + "ZPIT" beLong extra-field signature + FnLen Byte length of FileName + FileName variable full Macintosh filename + FileType Byte[4] four-byte Mac file type string + Creator Byte[4] four-byte Mac creator string + + + -ZipIt Macintosh Extra Field (short, for files) (0x2705): + + The following is the layout of a shortened variant of the + ZipIt extra block for Macintosh (without "full name" entry). + This variant is used by ZipIt 1.3.5 and newer for entries of + files (not directories) that do not have a MacBinary encoded + file. The local-header and central-header versions are identical. + + Value Size Description + ----- ---- ----------- + (Mac2b) 0x2705 Short tag for this extra block type + TSize Short total data size for this block (12) + "ZPIT" beLong extra-field signature + FileType Byte[4] four-byte Mac file type string + Creator Byte[4] four-byte Mac creator string + fdFlags beShort attributes from FInfo.frFlags, + may be omitted + 0x0000 beShort reserved, may be omitted + + + -ZipIt Macintosh Extra Field (short, for directories) (0x2805): + + The following is the layout of a shortened variant of the + ZipIt extra block for Macintosh used only for directory + entries. This variant is used by ZipIt 1.3.5 and newer to + save some optional Mac-specific information about directories. + The local-header and central-header versions are identical. + + Value Size Description + ----- ---- ----------- + (Mac2c) 0x2805 Short tag for this extra block type + TSize Short total data size for this block (12) + "ZPIT" beLong extra-field signature + frFlags beShort attributes from DInfo.frFlags, may + be omitted + View beShort ZipIt view flag, may be omitted + + + The View field specifies ZipIt-internal settings as follows: + + Bits of the Flags: + bit 0 if set, the folder is shown expanded (open) + when the archive contents are viewed in ZipIt. + bits 1-15 reserved, zero; + + + -FWKCS MD5 Extra Field (0x4b46): + + The FWKCS Contents_Signature System, used in + automatically identifying files independent of file name, + optionally adds and uses an extra field to support the + rapid creation of an enhanced contents_signature: + + Header ID = 0x4b46 + Data Size = 0x0013 + Preface = 'M','D','5' + followed by 16 bytes containing the uncompressed file's + 128_bit MD5 hash(1), low byte first. + + When FWKCS revises a .ZIP file central directory to add + this extra field for a file, it also replaces the + central directory entry for that file's uncompressed + file length with a measured value. + + FWKCS provides an option to strip this extra field, if + present, from a .ZIP file central directory. In adding + this extra field, FWKCS preserves .ZIP file Authenticity + Verification; if stripping this extra field, FWKCS + preserves all versions of AV through PKZIP version 2.04g. + + FWKCS, and FWKCS Contents_Signature System, are + trademarks of Frederick W. Kantor. + + (1) R. Rivest, RFC1321.TXT, MIT Laboratory for Computer + Science and RSA Data Security, Inc., April 1992. + ll.76-77: "The MD5 algorithm is being placed in the + public domain for review and possible adoption as a + standard." + + + -Info-ZIP Unicode Comment Extra Field (0x6375): + + Stores the UTF-8 version of the file comment as stored in the + central directory header. (Last Revision 20070912) + + Value Size Description + ----- ---- ----------- + (UCom) 0x6375 Short tag for this extra block type ("uc") + TSize Short total data size for this block + Version 1 byte version of this extra field, currently 1 + ComCRC32 4 bytes Comment Field CRC32 Checksum + UnicodeCom Variable UTF-8 version of the entry comment + + Currently Version is set to the number 1. If there is a need + to change this field, the version will be incremented. Changes + may not be backward compatible so this extra field should not be + used if the version is not recognized. + + The ComCRC32 is the standard zip CRC32 checksum of the File Comment + field in the central directory header. This is used to verify that + the comment field has not changed since the Unicode Comment extra field + was created. This can happen if a utility changes the File Comment + field but does not update the UTF-8 Comment extra field. If the CRC + check fails, this Unicode Comment extra field should be ignored and + the File Comment field in the header should be used instead. + + The UnicodeCom field is the UTF-8 version of the File Comment field + in the header. As UnicodeCom is defined to be UTF-8, no UTF-8 byte + order mark (BOM) is used. The length of this field is determined by + subtracting the size of the previous fields from TSize. If both the + File Name and Comment fields are UTF-8, the new General Purpose Bit + Flag, bit 11 (Language encoding flag (EFS)), can be used to indicate + both the header File Name and Comment fields are UTF-8 and, in this + case, the Unicode Path and Unicode Comment extra fields are not + needed and should not be created. Note that, for backward + compatibility, bit 11 should only be used if the native character set + of the paths and comments being zipped up are already in UTF-8. It is + expected that the same file comment storage method, either general + purpose bit 11 or extra fields, be used in both the Local and Central + Directory Header for a file. + + + -Info-ZIP Unicode Path Extra Field (0x7075): + + Stores the UTF-8 version of the file name field as stored in the + local header and central directory header. (Last Revision 20070912) + + Value Size Description + ----- ---- ----------- + (UPath) 0x7075 Short tag for this extra block type ("up") + TSize Short total data size for this block + Version 1 byte version of this extra field, currently 1 + NameCRC32 4 bytes File Name Field CRC32 Checksum + UnicodeName Variable UTF-8 version of the entry File Name + + Currently Version is set to the number 1. If there is a need + to change this field, the version will be incremented. Changes + may not be backward compatible so this extra field should not be + used if the version is not recognized. + + The NameCRC32 is the standard zip CRC32 checksum of the File Name + field in the header. This is used to verify that the header + File Name field has not changed since the Unicode Path extra field + was created. This can happen if a utility renames the File Name but + does not update the UTF-8 path extra field. If the CRC check fails, + this UTF-8 Path Extra Field should be ignored and the File Name field + in the header should be used instead. + + The UnicodeName is the UTF-8 version of the contents of the File Name + field in the header. As UnicodeName is defined to be UTF-8, no UTF-8 + byte order mark (BOM) is used. The length of this field is determined + by subtracting the size of the previous fields from TSize. If both + the File Name and Comment fields are UTF-8, the new General Purpose + Bit Flag, bit 11 (Language encoding flag (EFS)), can be used to + indicate that both the header File Name and Comment fields are UTF-8 + and, in this case, the Unicode Path and Unicode Comment extra fields + are not needed and should not be created. Note that, for backward + compatibility, bit 11 should only be used if the native character set + of the paths and comments being zipped up are already in UTF-8. It is + expected that the same file name storage method, either general + purpose bit 11 or extra fields, be used in both the Local and Central + Directory Header for a file. + + + -Microsoft Open Packaging Growth Hint (0xa220): + + Value Size Description + ----- ---- ----------- + 0xa220 Short tag for this extra block type + TSize Short size of Sig + PadVal + Padding + Sig Short verification signature (A028) + PadVal Short Initial padding value + Padding variable filled with NULL characters + + + file comment: (Variable) + + The comment for this file. + + number of this disk: (2 bytes) + + The number of this disk, which contains central + directory end record. If an archive is in ZIP64 format + and the value in this field is 0xFFFF, the size will + be in the corresponding 4 byte zip64 end of central + directory field. + + + number of the disk with the start of the central + directory: (2 bytes) + + The number of the disk on which the central + directory starts. If an archive is in ZIP64 format + and the value in this field is 0xFFFF, the size will + be in the corresponding 4 byte zip64 end of central + directory field. + + total number of entries in the central dir on + this disk: (2 bytes) + + The number of central directory entries on this disk. + If an archive is in ZIP64 format and the value in + this field is 0xFFFF, the size will be in the + corresponding 8 byte zip64 end of central + directory field. + + total number of entries in the central dir: (2 bytes) + + The total number of files in the .ZIP file. If an + archive is in ZIP64 format and the value in this field + is 0xFFFF, the size will be in the corresponding 8 byte + zip64 end of central directory field. + + size of the central directory: (4 bytes) + + The size (in bytes) of the entire central directory. + If an archive is in ZIP64 format and the value in + this field is 0xFFFFFFFF, the size will be in the + corresponding 8 byte zip64 end of central + directory field. + + offset of start of central directory with respect to + the starting disk number: (4 bytes) + + Offset of the start of the central directory on the + disk on which the central directory starts. If an + archive is in ZIP64 format and the value in this + field is 0xFFFFFFFF, the size will be in the + corresponding 8 byte zip64 end of central + directory field. + + .ZIP file comment length: (2 bytes) + + The length of the comment for this .ZIP file. + + .ZIP file comment: (Variable) + + The comment for this .ZIP file. ZIP file comment data + is stored unsecured. No encryption or data authentication + is applied to this area at this time. Confidential information + should not be stored in this section. + + zip64 extensible data sector (variable size) + + (currently reserved for use by PKWARE) + + + K. Splitting and Spanning ZIP files + + Spanning is the process of segmenting a ZIP file across + multiple removable media. This support has typically only + been provided for DOS formatted floppy diskettes. + + File splitting is a newer derivative of spanning. + Splitting follows the same segmentation process as + spanning, however, it does not require writing each + segment to a unique removable medium and instead supports + placing all pieces onto local or non-removable locations + such as file systems, local drives, folders, etc... + + A key difference between spanned and split ZIP files is + that all pieces of a spanned ZIP file have the same name. + Since each piece is written to a separate volume, no name + collisions occur and each segment can reuse the original + .ZIP file name given to the archive. + + Sequence ordering for DOS spanned archives uses the DOS + volume label to determine segment numbers. Volume labels + for each segment are written using the form PKBACK#xxx, + where xxx is the segment number written as a decimal + value from 001 - nnn. + + Split ZIP files are typically written to the same location + and are subject to name collisions if the spanned name + format is used since each segment will reside on the same + drive. To avoid name collisions, split archives are named + as follows. + + Segment 1 = filename.z01 + Segment n-1 = filename.z(n-1) + Segment n = filename.zip + + The .ZIP extension is used on the last segment to support + quickly reading the central directory. The segment number + n should be a decimal value. + + Spanned ZIP files may be PKSFX Self-extracting ZIP files. + PKSFX files may also be split, however, in this case + the first segment must be named filename.exe. The first + segment of a split PKSFX archive must be large enough to + include the entire executable program. + + Capacities for split archives are as follows. + + Maximum number of segments = 4,294,967,295 - 1 + Maximum .ZIP segment size = 4,294,967,295 bytes + Minimum segment size = 64K + Maximum PKSFX segment size = 2,147,483,647 bytes + + Segment sizes may be different however by convention, all + segment sizes should be the same with the exception of the + last, which may be smaller. Local and central directory + header records must never be split across a segment boundary. + When writing a header record, if the number of bytes remaining + within a segment is less than the size of the header record, + end the current segment and write the header at the start + of the next segment. The central directory may span segment + boundaries, but no single record in the central directory + should be split across segments. + + Spanned/Split archives created using PKZIP for Windows + (V2.50 or greater), PKZIP Command Line (V2.50 or greater), + or PKZIP Explorer will include a special spanning + signature as the first 4 bytes of the first segment of + the archive. This signature (0x08074b50) will be + followed immediately by the local header signature for + the first file in the archive. + + A special spanning marker may also appear in spanned/split + archives if the spanning or splitting process starts but + only requires one segment. In this case the 0x08074b50 + signature will be replaced with the temporary spanning + marker signature of 0x30304b50. Split archives can + only be uncompressed by other versions of PKZIP that + know how to create a split archive. + + The signature value 0x08074b50 is also used by some + ZIP implementations as a marker for the Data Descriptor + record. Conflict in this alternate assignment can be + avoided by ensuring the position of the signature + within the ZIP file to determine the use for which it + is intended. + + L. General notes: + + 1) All fields unless otherwise noted are unsigned and stored + in Intel low-byte:high-byte, low-word:high-word order. + + 2) String fields are not null terminated, since the + length is given explicitly. + + 3) The entries in the central directory may not necessarily + be in the same order that files appear in the .ZIP file. + + 4) If one of the fields in the end of central directory + record is too small to hold required data, the field + should be set to -1 (0xFFFF or 0xFFFFFFFF) and the + ZIP64 format record should be created. + + 5) The end of central directory record and the + Zip64 end of central directory locator record must + reside on the same disk when splitting or spanning + an archive. + +VI. Explanation of compression methods +-------------------------------------- + +UnShrinking - Method 1 +---------------------- + +Shrinking is a Dynamic Ziv-Lempel-Welch compression algorithm +with partial clearing. The initial code size is 9 bits, and +the maximum code size is 13 bits. Shrinking differs from +conventional Dynamic Ziv-Lempel-Welch implementations in several +respects: + +1) The code size is controlled by the compressor, and is not + automatically increased when codes larger than the current + code size are created (but not necessarily used). When + the decompressor encounters the code sequence 256 + (decimal) followed by 1, it should increase the code size + read from the input stream to the next bit size. No + blocking of the codes is performed, so the next code at + the increased size should be read from the input stream + immediately after where the previous code at the smaller + bit size was read. Again, the decompressor should not + increase the code size used until the sequence 256,1 is + encountered. + +2) When the table becomes full, total clearing is not + performed. Rather, when the compressor emits the code + sequence 256,2 (decimal), the decompressor should clear + all leaf nodes from the Ziv-Lempel tree, and continue to + use the current code size. The nodes that are cleared + from the Ziv-Lempel tree are then re-used, with the lowest + code value re-used first, and the highest code value + re-used last. The compressor can emit the sequence 256,2 + at any time. + +Expanding - Methods 2-5 +----------------------- + +The Reducing algorithm is actually a combination of two +distinct algorithms. The first algorithm compresses repeated +byte sequences, and the second algorithm takes the compressed +stream from the first algorithm and applies a probabilistic +compression method. + +The probabilistic compression stores an array of 'follower +sets' S(j), for j=0 to 255, corresponding to each possible +ASCII character. Each set contains between 0 and 32 +characters, to be denoted as S(j)[0],...,S(j)[m], where m<32. +The sets are stored at the beginning of the data area for a +Reduced file, in reverse order, with S(255) first, and S(0) +last. + +The sets are encoded as { N(j), S(j)[0],...,S(j)[N(j)-1] }, +where N(j) is the size of set S(j). N(j) can be 0, in which +case the follower set for S(j) is empty. Each N(j) value is +encoded in 6 bits, followed by N(j) eight bit character values +corresponding to S(j)[0] to S(j)[N(j)-1] respectively. If +N(j) is 0, then no values for S(j) are stored, and the value +for N(j-1) immediately follows. + +Immediately after the follower sets, is the compressed data +stream. The compressed data stream can be interpreted for the +probabilistic decompression as follows: + +let Last-Character <- 0. +loop until done + if the follower set S(Last-Character) is empty then + read 8 bits from the input stream, and copy this + value to the output stream. + otherwise if the follower set S(Last-Character) is non-empty then + read 1 bit from the input stream. + if this bit is not zero then + read 8 bits from the input stream, and copy this + value to the output stream. + otherwise if this bit is zero then + read B(N(Last-Character)) bits from the input + stream, and assign this value to I. + Copy the value of S(Last-Character)[I] to the + output stream. + + assign the last value placed on the output stream to + Last-Character. +end loop + +B(N(j)) is defined as the minimal number of bits required to +encode the value N(j)-1. + +The decompressed stream from above can then be expanded to +re-create the original file as follows: + +let State <- 0. + +loop until done + read 8 bits from the input stream into C. + case State of + 0: if C is not equal to DLE (144 decimal) then + copy C to the output stream. + otherwise if C is equal to DLE then + let State <- 1. + + 1: if C is non-zero then + let V <- C. + let Len <- L(V) + let State <- F(Len). + otherwise if C is zero then + copy the value 144 (decimal) to the output stream. + let State <- 0 + + 2: let Len <- Len + C + let State <- 3. + + 3: move backwards D(V,C) bytes in the output stream + (if this position is before the start of the output + stream, then assume that all the data before the + start of the output stream is filled with zeros). + copy Len+3 bytes from this position to the output stream. + let State <- 0. + end case +end loop + +The functions F,L, and D are dependent on the 'compression +factor', 1 through 4, and are defined as follows: + +For compression factor 1: + L(X) equals the lower 7 bits of X. + F(X) equals 2 if X equals 127 otherwise F(X) equals 3. + D(X,Y) equals the (upper 1 bit of X) * 256 + Y + 1. +For compression factor 2: + L(X) equals the lower 6 bits of X. + F(X) equals 2 if X equals 63 otherwise F(X) equals 3. + D(X,Y) equals the (upper 2 bits of X) * 256 + Y + 1. +For compression factor 3: + L(X) equals the lower 5 bits of X. + F(X) equals 2 if X equals 31 otherwise F(X) equals 3. + D(X,Y) equals the (upper 3 bits of X) * 256 + Y + 1. +For compression factor 4: + L(X) equals the lower 4 bits of X. + F(X) equals 2 if X equals 15 otherwise F(X) equals 3. + D(X,Y) equals the (upper 4 bits of X) * 256 + Y + 1. + +Imploding - Method 6 +-------------------- + +The Imploding algorithm is actually a combination of two distinct +algorithms. The first algorithm compresses repeated byte +sequences using a sliding dictionary. The second algorithm is +used to compress the encoding of the sliding dictionary output, +using multiple Shannon-Fano trees. + +The Imploding algorithm can use a 4K or 8K sliding dictionary +size. The dictionary size used can be determined by bit 1 in the +general purpose flag word; a 0 bit indicates a 4K dictionary +while a 1 bit indicates an 8K dictionary. + +The Shannon-Fano trees are stored at the start of the compressed +file. The number of trees stored is defined by bit 2 in the +general purpose flag word; a 0 bit indicates two trees stored, a +1 bit indicates three trees are stored. If 3 trees are stored, +the first Shannon-Fano tree represents the encoding of the +Literal characters, the second tree represents the encoding of +the Length information, the third represents the encoding of the +Distance information. When 2 Shannon-Fano trees are stored, the +Length tree is stored first, followed by the Distance tree. + +The Literal Shannon-Fano tree, if present is used to represent +the entire ASCII character set, and contains 256 values. This +tree is used to compress any data not compressed by the sliding +dictionary algorithm. When this tree is present, the Minimum +Match Length for the sliding dictionary is 3. If this tree is +not present, the Minimum Match Length is 2. + +The Length Shannon-Fano tree is used to compress the Length part +of the (length,distance) pairs from the sliding dictionary +output. The Length tree contains 64 values, ranging from the +Minimum Match Length, to 63 plus the Minimum Match Length. + +The Distance Shannon-Fano tree is used to compress the Distance +part of the (length,distance) pairs from the sliding dictionary +output. The Distance tree contains 64 values, ranging from 0 to +63, representing the upper 6 bits of the distance value. The +distance values themselves will be between 0 and the sliding +dictionary size, either 4K or 8K. + +The Shannon-Fano trees themselves are stored in a compressed +format. The first byte of the tree data represents the number of +bytes of data representing the (compressed) Shannon-Fano tree +minus 1. The remaining bytes represent the Shannon-Fano tree +data encoded as: + + High 4 bits: Number of values at this bit length + 1. (1 - 16) + Low 4 bits: Bit Length needed to represent value + 1. (1 - 16) + +The Shannon-Fano codes can be constructed from the bit lengths +using the following algorithm: + +1) Sort the Bit Lengths in ascending order, while retaining the + order of the original lengths stored in the file. + +2) Generate the Shannon-Fano trees: + + Code <- 0 + CodeIncrement <- 0 + LastBitLength <- 0 + i <- number of Shannon-Fano codes - 1 (either 255 or 63) + + loop while i >= 0 + Code = Code + CodeIncrement + if BitLength(i) <> LastBitLength then + LastBitLength=BitLength(i) + CodeIncrement = 1 shifted left (16 - LastBitLength) + ShannonCode(i) = Code + i <- i - 1 + end loop + +3) Reverse the order of all the bits in the above ShannonCode() + vector, so that the most significant bit becomes the least + significant bit. For example, the value 0x1234 (hex) would + become 0x2C48 (hex). + +4) Restore the order of Shannon-Fano codes as originally stored + within the file. + +Example: + + This example will show the encoding of a Shannon-Fano tree + of size 8. Notice that the actual Shannon-Fano trees used + for Imploding are either 64 or 256 entries in size. + +Example: 0x02, 0x42, 0x01, 0x13 + + The first byte indicates 3 values in this table. Decoding the + bytes: + 0x42 = 5 codes of 3 bits long + 0x01 = 1 code of 2 bits long + 0x13 = 2 codes of 4 bits long + + This would generate the original bit length array of: + (3, 3, 3, 3, 3, 2, 4, 4) + + There are 8 codes in this table for the values 0 thru 7. Using + the algorithm to obtain the Shannon-Fano codes produces: + + Reversed Order Original +Val Sorted Constructed Code Value Restored Length +--- ------ ----------------- -------- -------- ------ +0: 2 1100000000000000 11 101 3 +1: 3 1010000000000000 101 001 3 +2: 3 1000000000000000 001 110 3 +3: 3 0110000000000000 110 010 3 +4: 3 0100000000000000 010 100 3 +5: 3 0010000000000000 100 11 2 +6: 4 0001000000000000 1000 1000 4 +7: 4 0000000000000000 0000 0000 4 + +The values in the Val, Order Restored and Original Length columns +now represent the Shannon-Fano encoding tree that can be used for +decoding the Shannon-Fano encoded data. How to parse the +variable length Shannon-Fano values from the data stream is beyond +the scope of this document. (See the references listed at the end of +this document for more information.) However, traditional decoding +schemes used for Huffman variable length decoding, such as the +Greenlaw algorithm, can be successfully applied. + +The compressed data stream begins immediately after the +compressed Shannon-Fano data. The compressed data stream can be +interpreted as follows: + +loop until done + read 1 bit from input stream. + + if this bit is non-zero then (encoded data is literal data) + if Literal Shannon-Fano tree is present + read and decode character using Literal Shannon-Fano tree. + otherwise + read 8 bits from input stream. + copy character to the output stream. + otherwise (encoded data is sliding dictionary match) + if 8K dictionary size + read 7 bits for offset Distance (lower 7 bits of offset). + otherwise + read 6 bits for offset Distance (lower 6 bits of offset). + + using the Distance Shannon-Fano tree, read and decode the + upper 6 bits of the Distance value. + + using the Length Shannon-Fano tree, read and decode + the Length value. + + Length <- Length + Minimum Match Length + + if Length = 63 + Minimum Match Length + read 8 bits from the input stream, + add this value to Length. + + move backwards Distance+1 bytes in the output stream, and + copy Length characters from this position to the output + stream. (if this position is before the start of the output + stream, then assume that all the data before the start of + the output stream is filled with zeros). +end loop + +Tokenizing - Method 7 +--------------------- + +This method is not used by PKZIP. + +Deflating - Method 8 +-------------------- + +The Deflate algorithm is similar to the Implode algorithm using +a sliding dictionary of up to 32K with secondary compression +from Huffman/Shannon-Fano codes. + +The compressed data is stored in blocks with a header describing +the block and the Huffman codes used in the data block. The header +format is as follows: + + Bit 0: Last Block bit This bit is set to 1 if this is the last + compressed block in the data. + Bits 1-2: Block type + 00 (0) - Block is stored - All stored data is byte aligned. + Skip bits until next byte, then next word = block + length, followed by the ones compliment of the block + length word. Remaining data in block is the stored + data. + + 01 (1) - Use fixed Huffman codes for literal and distance codes. + Lit Code Bits Dist Code Bits + --------- ---- --------- ---- + 0 - 143 8 0 - 31 5 + 144 - 255 9 + 256 - 279 7 + 280 - 287 8 + + Literal codes 286-287 and distance codes 30-31 are + never used but participate in the huffman construction. + + 10 (2) - Dynamic Huffman codes. (See expanding Huffman codes) + + 11 (3) - Reserved - Flag a "Error in compressed data" if seen. + +Expanding Huffman Codes +----------------------- +If the data block is stored with dynamic Huffman codes, the Huffman +codes are sent in the following compressed format: + + 5 Bits: # of Literal codes sent - 256 (256 - 286) + All other codes are never sent. + 5 Bits: # of Dist codes - 1 (1 - 32) + 4 Bits: # of Bit Length codes - 3 (3 - 19) + +The Huffman codes are sent as bit lengths and the codes are built as +described in the implode algorithm. The bit lengths themselves are +compressed with Huffman codes. There are 19 bit length codes: + + 0 - 15: Represent bit lengths of 0 - 15 + 16: Copy the previous bit length 3 - 6 times. + The next 2 bits indicate repeat length (0 = 3, ... ,3 = 6) + Example: Codes 8, 16 (+2 bits 11), 16 (+2 bits 10) will + expand to 12 bit lengths of 8 (1 + 6 + 5) + 17: Repeat a bit length of 0 for 3 - 10 times. (3 bits of length) + 18: Repeat a bit length of 0 for 11 - 138 times (7 bits of length) + +The lengths of the bit length codes are sent packed 3 bits per value +(0 - 7) in the following order: + + 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 + +The Huffman codes should be built as described in the Implode algorithm +except codes are assigned starting at the shortest bit length, i.e. the +shortest code should be all 0's rather than all 1's. Also, codes with +a bit length of zero do not participate in the tree construction. The +codes are then used to decode the bit lengths for the literal and +distance tables. + +The bit lengths for the literal tables are sent first with the number +of entries sent described by the 5 bits sent earlier. There are up +to 286 literal characters; the first 256 represent the respective 8 +bit character, code 256 represents the End-Of-Block code, the remaining +29 codes represent copy lengths of 3 thru 258. There are up to 30 +distance codes representing distances from 1 thru 32k as described +below. + + Length Codes + ------------ + Extra Extra Extra Extra + Code Bits Length Code Bits Lengths Code Bits Lengths Code Bits Length(s) + ---- ---- ------ ---- ---- ------- ---- ---- ------- ---- ---- --------- + 257 0 3 265 1 11,12 273 3 35-42 281 5 131-162 + 258 0 4 266 1 13,14 274 3 43-50 282 5 163-194 + 259 0 5 267 1 15,16 275 3 51-58 283 5 195-226 + 260 0 6 268 1 17,18 276 3 59-66 284 5 227-257 + 261 0 7 269 2 19-22 277 4 67-82 285 0 258 + 262 0 8 270 2 23-26 278 4 83-98 + 263 0 9 271 2 27-30 279 4 99-114 + 264 0 10 272 2 31-34 280 4 115-130 + + Distance Codes + -------------- + Extra Extra Extra Extra + Code Bits Dist Code Bits Dist Code Bits Distance Code Bits Distance + ---- ---- ---- ---- ---- ------ ---- ---- -------- ---- ---- -------- + 0 0 1 8 3 17-24 16 7 257-384 24 11 4097-6144 + 1 0 2 9 3 25-32 17 7 385-512 25 11 6145-8192 + 2 0 3 10 4 33-48 18 8 513-768 26 12 8193-12288 + 3 0 4 11 4 49-64 19 8 769-1024 27 12 12289-16384 + 4 1 5,6 12 5 65-96 20 9 1025-1536 28 13 16385-24576 + 5 1 7,8 13 5 97-128 21 9 1537-2048 29 13 24577-32768 + 6 2 9-12 14 6 129-192 22 10 2049-3072 + 7 2 13-16 15 6 193-256 23 10 3073-4096 + +The compressed data stream begins immediately after the +compressed header data. The compressed data stream can be +interpreted as follows: + +do + read header from input stream. + + if stored block + skip bits until byte aligned + read count and 1's compliment of count + copy count bytes data block + otherwise + loop until end of block code sent + decode literal character from input stream + if literal < 256 + copy character to the output stream + otherwise + if literal = end of block + break from loop + otherwise + decode distance from input stream + + move backwards distance bytes in the output stream, and + copy length characters from this position to the output + stream. + end loop +while not last block + +if data descriptor exists + skip bits until byte aligned + read crc and sizes +endif + +Enhanced Deflating - Method 9 +----------------------------- + +The Enhanced Deflating algorithm is similar to Deflate but +uses a sliding dictionary of up to 64K. Deflate64(tm) is supported +by the Deflate extractor. + +BZIP2 - Method 12 +----------------- + +BZIP2 is an open-source data compression algorithm developed by +Julian Seward. Information and source code for this algorithm +can be found on the internet. + +LZMA - Method 14 (EFS) +---------------------- + +LZMA is a block-oriented, general purpose data compression algorithm +developed and maintained by Igor Pavlov. It is a derivative of LZ77 +that utilizes Markov chains and a range coder. Information and +source code for this algorithm can be found on the internet. Consult +with the author of this algorithm for information on terms or +restrictions on use. + +Support for LZMA within the ZIP format is defined as follows: + +The Compression method field within the ZIP Local and Central +Header records will be set to the value 14 to indicate data was +compressed using LZMA. + +The Version needed to extract field within the ZIP Local and +Central Header records will be set to 6.3 to indicate the +minimum ZIP format version supporting this feature. + +File data compressed using the LZMA algorithm must be placed +immediately following the Local Header for the file. If a +standard ZIP encryption header is required, it will follow +the Local Header and will precede the LZMA compressed file +data segment. The location of LZMA compressed data segment +within the ZIP format will be as shown: + + [local header file 1] + [encryption header file 1] + [LZMA compressed data segment for file 1] + [data descriptor 1] + [local header file 2] + +The encryption header and data descriptor records may +be conditionally present. The LZMA Compressed Data Segment +will consist of an LZMA Properties Header followed by the +LZMA Compressed Data as shown: + + [LZMA properties header for file 1] + [LZMA compressed data for file 1] + +The LZMA Compressed Data will be stored as provided by the +LZMA compression library. Compressed size, uncompressed +size and other file characteristics about the file being +compressed must be stored in standard ZIP storage format. + +The LZMA Properties Header will store specific data required to +decompress the LZMA compressed Data. This data is set by the +LZMA compression engine using the function WriteCoderProperties() +as documented within the LZMA SDK. + +Storage fields for the property information within the LZMA +Properties Header are as follows: + + LZMA Version Information 2 bytes + LZMA Properties Size 2 bytes + LZMA Properties Data variable, defined by "LZMA Properties Size" + +LZMA Version Information - this field identifies which version of + the LZMA SDK was used to compress a file. The first byte will + store the major version number of the LZMA SDK and the second + byte will store the minor number. + +LZMA Properties Size - this field defines the size of the remaining + property data. Typically this size should be determined by the + version of the SDK. This size field is included as a convenience + and to help avoid any ambiguity should it arise in the future due + to changes in this compression algorithm. + +LZMA Property Data - this variable sized field records the required + values for the decompressor as defined by the LZMA SDK. The + data stored in this field should be obtained using the + WriteCoderProperties() in the version of the SDK defined by + the "LZMA Version Information" field. + +The layout of the "LZMA Properties Data" field is a function of the +LZMA compression algorithm. It is possible that this layout may be +changed by the author over time. The data layout in version 4.32 +of the LZMA SDK defines a 5 byte array that uses 4 bytes to store +the dictionary size in little-endian order. This is preceded by a +single packed byte as the first element of the array that contains +the following fields: + + PosStateBits + LiteralPosStateBits + LiteralContextBits + +Refer to the LZMA documentation for a more detailed explanation of +these fields. + +Data compressed with method 14, LZMA, may include an end-of-stream +(EOS) marker ending the compressed data stream. This marker is not +required, but its use is highly recommended to facilitate processing +and implementers should include the EOS marker whenever possible. +When the EOS marker is used, general purpose bit 1 must be set. If +general purpose bit 1 is not set, the EOS marker is not present. + +WavPack - Method 97 +------------------- + +Information describing the use of compression method 97 is +provided by WinZIP International, LLC. This method relies on the +open source WavPack audio compression utility developed by David Bryant. +Information on WavPack is available at www.wavpack.com. Please consult +with the author of this algorithm for information on terms and +restrictions on use. + +WavPack data for a file begins immediately after the end of the +local header data. This data is the output from WavPack compression +routines. Within the ZIP file, the use of WavPack compression is +indicated by setting the compression method field to a value of 97 +in both the local header and the central directory header. The Version +needed to extract and version made by fields use the same values as are +used for data compressed using the Deflate algorithm. + +An implementation note for storing digital sample data when using +WavPack compression within ZIP files is that all of the bytes of +the sample data should be compressed. This includes any unused +bits up to the byte boundary. An example is a 2 byte sample that +uses only 12 bits for the sample data with 4 unused bits. If only +12 bits are passed as the sample size to the WavPack routines, the 4 +unused bits will be set to 0 on extraction regardless of their original +state. To avoid this, the full 16 bits of the sample data size +should be provided. + +PPMd - Method 98 +---------------- + +PPMd is a data compression algorithm developed by Dmitry Shkarin +which includes a carryless rangecoder developed by Dmitry Subbotin. +This algorithm is based on predictive phrase matching on multiple +order contexts. Information and source code for this algorithm +can be found on the internet. Consult with the author of this +algorithm for information on terms or restrictions on use. + +Support for PPMd within the ZIP format currently is provided only +for version I, revision 1 of the algorithm. Storage requirements +for using this algorithm are as follows: + +Parameters needed to control the algorithm are stored in the two +bytes immediately preceding the compressed data. These bytes are +used to store the following fields: + +Model order - sets the maximum model order, default is 8, possible + values are from 2 to 16 inclusive + +Sub-allocator size - sets the size of sub-allocator in MB, default is 50, + possible values are from 1MB to 256MB inclusive + +Model restoration method - sets the method used to restart context + model at memory insufficiency, values are: + + 0 - restarts model from scratch - default + 1 - cut off model - decreases performance by as much as 2x + 2 - freeze context tree - not recommended + +An example for packing these fields into the 2 byte storage field is +illustrated below. These values are stored in Intel low-byte/high-byte +order. + +wPPMd = (Model order - 1) + + ((Sub-allocator size - 1) << 4) + + (Model restoration method << 12) + + +VII. Traditional PKWARE Encryption +---------------------------------- + +The following information discusses the decryption steps +required to support traditional PKWARE encryption. This +form of encryption is considered weak by today's standards +and its use is recommended only for situations with +low security needs or for compatibility with older .ZIP +applications. + +Decryption +---------- + +PKWARE is grateful to Mr. Roger Schlafly for his expert contribution +towards the development of PKWARE's traditional encryption. + +PKZIP encrypts the compressed data stream. Encrypted files must +be decrypted before they can be extracted. + +Each encrypted file has an extra 12 bytes stored at the start of +the data area defining the encryption header for that file. The +encryption header is originally set to random values, and then +itself encrypted, using three, 32-bit keys. The key values are +initialized using the supplied encryption password. After each byte +is encrypted, the keys are then updated using pseudo-random number +generation techniques in combination with the same CRC-32 algorithm +used in PKZIP and described elsewhere in this document. + +The following is the basic steps required to decrypt a file: + +1) Initialize the three 32-bit keys with the password. +2) Read and decrypt the 12-byte encryption header, further + initializing the encryption keys. +3) Read and decrypt the compressed data stream using the + encryption keys. + +Step 1 - Initializing the encryption keys +----------------------------------------- + +Key(0) <- 305419896 +Key(1) <- 591751049 +Key(2) <- 878082192 + +loop for i <- 0 to length(password)-1 + update_keys(password(i)) +end loop + +Where update_keys() is defined as: + +update_keys(char): + Key(0) <- crc32(key(0),char) + Key(1) <- Key(1) + (Key(0) & 000000ffH) + Key(1) <- Key(1) * 134775813 + 1 + Key(2) <- crc32(key(2),key(1) >> 24) +end update_keys + +Where crc32(old_crc,char) is a routine that given a CRC value and a +character, returns an updated CRC value after applying the CRC-32 +algorithm described elsewhere in this document. + +Step 2 - Decrypting the encryption header +----------------------------------------- + +The purpose of this step is to further initialize the encryption +keys, based on random data, to render a plaintext attack on the +data ineffective. + +Read the 12-byte encryption header into Buffer, in locations +Buffer(0) thru Buffer(11). + +loop for i <- 0 to 11 + C <- buffer(i) ^ decrypt_byte() + update_keys(C) + buffer(i) <- C +end loop + +Where decrypt_byte() is defined as: + +unsigned char decrypt_byte() + local unsigned short temp + temp <- Key(2) | 2 + decrypt_byte <- (temp * (temp ^ 1)) >> 8 +end decrypt_byte + +After the header is decrypted, the last 1 or 2 bytes in Buffer +should be the high-order word/byte of the CRC for the file being +decrypted, stored in Intel low-byte/high-byte order. Versions of +PKZIP prior to 2.0 used a 2 byte CRC check; a 1 byte CRC check is +used on versions after 2.0. This can be used to test if the password +supplied is correct or not. + +Step 3 - Decrypting the compressed data stream +---------------------------------------------- + +The compressed data stream can be decrypted as follows: + +loop until done + read a character into C + Temp <- C ^ decrypt_byte() + update_keys(temp) + output Temp +end loop + + +VIII. Strong Encryption Specification +------------------------------------- + +The Strong Encryption technology defined in this specification is +covered under a pending patent application. The use or implementation +in a product of certain technological aspects set forth in the current +APPNOTE, including those with regard to strong encryption, patching, +or extended tape operations requires a license from PKWARE. Portions +of this Strong Encryption technology are available for use at no charge. +Contact PKWARE for licensing terms and conditions. Refer to section II +of this APPNOTE (Contacting PKWARE) for information on how to +contact PKWARE. + +Version 5.x of this specification introduced support for strong +encryption algorithms. These algorithms can be used with either +a password or an X.509v3 digital certificate to encrypt each file. +This format specification supports either password or certificate +based encryption to meet the security needs of today, to enable +interoperability between users within both PKI and non-PKI +environments, and to ensure interoperability between different +computing platforms that are running a ZIP program. + +Password based encryption is the most common form of encryption +people are familiar with. However, inherent weaknesses with +passwords (e.g. susceptibility to dictionary/brute force attack) +as well as password management and support issues make certificate +based encryption a more secure and scalable option. Industry +efforts and support are defining and moving towards more advanced +security solutions built around X.509v3 digital certificates and +Public Key Infrastructures(PKI) because of the greater scalability, +administrative options, and more robust security over traditional +password based encryption. + +Most standard encryption algorithms are supported with this +specification. Reference implementations for many of these +algorithms are available from either commercial or open source +distributors. Readily available cryptographic toolkits make +implementation of the encryption features straight-forward. +This document is not intended to provide a treatise on data +encryption principles or theory. Its purpose is to document the +data structures required for implementing interoperable data +encryption within the .ZIP format. It is strongly recommended that +you have a good understanding of data encryption before reading +further. + +The algorithms introduced in Version 5.0 of this specification +include: + + RC2 40 bit, 64 bit, and 128 bit + RC4 40 bit, 64 bit, and 128 bit + DES + 3DES 112 bit and 168 bit + +Version 5.1 adds support for the following: + + AES 128 bit, 192 bit, and 256 bit + + +Version 6.1 introduces encryption data changes to support +interoperability with Smartcard and USB Token certificate storage +methods which do not support the OAEP strengthening standard. + +Version 6.2 introduces support for encrypting metadata by compressing +and encrypting the central directory data structure to reduce information +leakage. Information leakage can occur in legacy ZIP applications +through exposure of information about a file even though that file is +stored encrypted. The information exposed consists of file +characteristics stored within the records and fields defined by this +specification. This includes data such as a files name, its original +size, timestamp and CRC32 value. + +Version 6.3 introduces support for encrypting data using the Blowfish +and Twofish algorithms. These are symmetric block ciphers developed +by Bruce Schneier. Blowfish supports using a variable length key from +32 to 448 bits. Block size is 64 bits. Implementations should use 16 +rounds and the only mode supported within ZIP files is CBC. Twofish +supports key sizes 128, 192 and 256 bits. Block size is 128 bits. +Implementations should use 16 rounds and the only mode supported within +ZIP files is CBC. Information and source code for both Blowfish and +Twofish algorithms can be found on the internet. Consult with the author +of these algorithms for information on terms or restrictions on use. + +Central Directory Encryption provides greater protection against +information leakage by encrypting the Central Directory structure and +by masking key values that are replicated in the unencrypted Local +Header. ZIP compatible programs that cannot interpret an encrypted +Central Directory structure cannot rely on the data in the corresponding +Local Header for decompression information. + +Extra Field records that may contain information about a file that should +not be exposed should not be stored in the Local Header and should only +be written to the Central Directory where they can be encrypted. This +design currently does not support streaming. Information in the End of +Central Directory record, the Zip64 End of Central Directory Locator, +and the Zip64 End of Central Directory records are not encrypted. Access +to view data on files within a ZIP file with an encrypted Central Directory +requires the appropriate password or private key for decryption prior to +viewing any files, or any information about the files, in the archive. + +Older ZIP compatible programs not familiar with the Central Directory +Encryption feature will no longer be able to recognize the Central +Directory and may assume the ZIP file is corrupt. Programs that +attempt streaming access using Local Headers will see invalid +information for each file. Central Directory Encryption need not be +used for every ZIP file. Its use is recommended for greater security. +ZIP files not using Central Directory Encryption should operate as +in the past. + +This strong encryption feature specification is intended to provide for +scalable, cross-platform encryption needs ranging from simple password +encryption to authenticated public/private key encryption. + +Encryption provides data confidentiality and privacy. It is +recommended that you combine X.509 digital signing with encryption +to add authentication and non-repudiation. + + +Single Password Symmetric Encryption Method: +------------------------------------------- + +The Single Password Symmetric Encryption Method using strong +encryption algorithms operates similarly to the traditional +PKWARE encryption defined in this format. Additional data +structures are added to support the processing needs of the +strong algorithms. + +The Strong Encryption data structures are: + +1. General Purpose Bits - Bits 0 and 6 of the General Purpose bit +flag in both local and central header records. Both bits set +indicates strong encryption. Bit 13, when set indicates the Central +Directory is encrypted and that selected fields in the Local Header +are masked to hide their actual value. + + +2. Extra Field 0x0017 in central header only. + + Fields to consider in this record are: + + Format - the data format identifier for this record. The only + value allowed at this time is the integer value 2. + + AlgId - integer identifier of the encryption algorithm from the + following range + + 0x6601 - DES + 0x6602 - RC2 (version needed to extract < 5.2) + 0x6603 - 3DES 168 + 0x6609 - 3DES 112 + 0x660E - AES 128 + 0x660F - AES 192 + 0x6610 - AES 256 + 0x6702 - RC2 (version needed to extract >= 5.2) + 0x6720 - Blowfish + 0x6721 - Twofish + 0x6801 - RC4 + 0xFFFF - Unknown algorithm + + Bitlen - Explicit bit length of key + + 32 - 448 bits + + Flags - Processing flags needed for decryption + + 0x0001 - Password is required to decrypt + 0x0002 - Certificates only + 0x0003 - Password or certificate required to decrypt + + Values > 0x0003 reserved for certificate processing + + +3. Decryption header record preceding compressed file data. + + -Decryption Header: + + Value Size Description + ----- ---- ----------- + IVSize 2 bytes Size of initialization vector (IV) + IVData IVSize Initialization vector for this file + Size 4 bytes Size of remaining decryption header data + Format 2 bytes Format definition for this record + AlgID 2 bytes Encryption algorithm identifier + Bitlen 2 bytes Bit length of encryption key + Flags 2 bytes Processing flags + ErdSize 2 bytes Size of Encrypted Random Data + ErdData ErdSize Encrypted Random Data + Reserved1 4 bytes Reserved certificate processing data + Reserved2 (var) Reserved for certificate processing data + VSize 2 bytes Size of password validation data + VData VSize-4 Password validation data + VCRC32 4 bytes Standard ZIP CRC32 of password validation data + + IVData - The size of the IV should match the algorithm block size. + The IVData can be completely random data. If the size of + the randomly generated data does not match the block size + it should be complemented with zero's or truncated as + necessary. If IVSize is 0,then IV = CRC32 + Uncompressed + File Size (as a 64 bit little-endian, unsigned integer value). + + Format - the data format identifier for this record. The only + value allowed at this time is the integer value 3. + + AlgId - integer identifier of the encryption algorithm from the + following range + + 0x6601 - DES + 0x6602 - RC2 (version needed to extract < 5.2) + 0x6603 - 3DES 168 + 0x6609 - 3DES 112 + 0x660E - AES 128 + 0x660F - AES 192 + 0x6610 - AES 256 + 0x6702 - RC2 (version needed to extract >= 5.2) + 0x6720 - Blowfish + 0x6721 - Twofish + 0x6801 - RC4 + 0xFFFF - Unknown algorithm + + Bitlen - Explicit bit length of key + + 32 - 448 bits + + Flags - Processing flags needed for decryption + + 0x0001 - Password is required to decrypt + 0x0002 - Certificates only + 0x0003 - Password or certificate required to decrypt + + Values > 0x0003 reserved for certificate processing + + ErdData - Encrypted random data is used to store random data that + is used to generate a file session key for encrypting + each file. SHA1 is used to calculate hash data used to + derive keys. File session keys are derived from a master + session key generated from the user-supplied password. + If the Flags field in the decryption header contains + the value 0x4000, then the ErdData field must be + decrypted using 3DES. If the value 0x4000 is not set, + then the ErdData field must be decrypted using AlgId. + + + Reserved1 - Reserved for certificate processing, if value is + zero, then Reserved2 data is absent. See the explanation + under the Certificate Processing Method for details on + this data structure. + + Reserved2 - If present, the size of the Reserved2 data structure + is located by skipping the first 4 bytes of this field + and using the next 2 bytes as the remaining size. See + the explanation under the Certificate Processing Method + for details on this data structure. + + VSize - This size value will always include the 4 bytes of the + VCRC32 data and will be greater than 4 bytes. + + VData - Random data for password validation. This data is VSize + in length and VSize must be a multiple of the encryption + block size. VCRC32 is a checksum value of VData. + VData and VCRC32 are stored encrypted and start the + stream of encrypted data for a file. + + +4. Useful Tips + +Strong Encryption is always applied to a file after compression. The +block oriented algorithms all operate in Cypher Block Chaining (CBC) +mode. The block size used for AES encryption is 16. All other block +algorithms use a block size of 8. Two ID's are defined for RC2 to +account for a discrepancy found in the implementation of the RC2 +algorithm in the cryptographic library on Windows XP SP1 and all +earlier versions of Windows. It is recommended that zero length files +not be encrypted, however programs should be prepared to extract them +if they are found within a ZIP file. + +A pseudo-code representation of the encryption process is as follows: + +Password = GetUserPassword() +MasterSessionKey = DeriveKey(SHA1(Password)) +RD = CryptographicStrengthRandomData() +For Each File + IV = CryptographicStrengthRandomData() + VData = CryptographicStrengthRandomData() + VCRC32 = CRC32(VData) + FileSessionKey = DeriveKey(SHA1(IV + RD) + ErdData = Encrypt(RD,MasterSessionKey,IV) + Encrypt(VData + VCRC32 + FileData, FileSessionKey,IV) +Done + +The function names and parameter requirements will depend on +the choice of the cryptographic toolkit selected. Almost any +toolkit supporting the reference implementations for each +algorithm can be used. The RSA BSAFE(r), OpenSSL, and Microsoft +CryptoAPI libraries are all known to work well. + + +Single Password - Central Directory Encryption: +----------------------------------------------- + +Central Directory Encryption is achieved within the .ZIP format by +encrypting the Central Directory structure. This encapsulates the metadata +most often used for processing .ZIP files. Additional metadata is stored for +redundancy in the Local Header for each file. The process of concealing +metadata by encrypting the Central Directory does not protect the data within +the Local Header. To avoid information leakage from the exposed metadata +in the Local Header, the fields containing information about a file are masked. + +Local Header: + +Masking replaces the true content of the fields for a file in the Local +Header with false information. When masked, the Local Header is not +suitable for streaming access and the options for data recovery of damaged +archives is reduced. Extra Data fields that may contain confidential +data should not be stored within the Local Header. The value set into +the Version needed to extract field should be the correct value needed to +extract the file without regard to Central Directory Encryption. The fields +within the Local Header targeted for masking when the Central Directory is +encrypted are: + + Field Name Mask Value + ------------------ --------------------------- + compression method 0 + last mod file time 0 + last mod file date 0 + crc-32 0 + compressed size 0 + uncompressed size 0 + file name (variable size) Base 16 value from the + range 1 - 0xFFFFFFFFFFFFFFFF + represented as a string whose + size will be set into the + file name length field + +The Base 16 value assigned as a masked file name is simply a sequentially +incremented value for each file starting with 1 for the first file. +Modifications to a ZIP file may cause different values to be stored for +each file. For compatibility, the file name field in the Local Header +should never be left blank. As of Version 6.2 of this specification, +the Compression Method and Compressed Size fields are not yet masked. +Fields having a value of 0xFFFF or 0xFFFFFFFF for the ZIP64 format +should not be masked. + +Encrypting the Central Directory: + +Encryption of the Central Directory does not include encryption of the +Central Directory Signature data, the Zip64 End of Central Directory +record, the Zip64 End of Central Directory Locator, or the End +of Central Directory record. The ZIP file comment data is never +encrypted. + +Before encrypting the Central Directory, it may optionally be compressed. +Compression is not required, but for storage efficiency it is assumed +this structure will be compressed before encrypting. Similarly, this +specification supports compressing the Central Directory without +requiring that it also be encrypted. Early implementations of this +feature will assume the encryption method applied to files matches the +encryption applied to the Central Directory. + +Encryption of the Central Directory is done in a manner similar to +that of file encryption. The encrypted data is preceded by a +decryption header. The decryption header is known as the Archive +Decryption Header. The fields of this record are identical to +the decryption header preceding each encrypted file. The location +of the Archive Decryption Header is determined by the value in the +Start of the Central Directory field in the Zip64 End of Central +Directory record. When the Central Directory is encrypted, the +Zip64 End of Central Directory record will always be present. + +The layout of the Zip64 End of Central Directory record for all +versions starting with 6.2 of this specification will follow the +Version 2 format. The Version 2 format is as follows: + +The leading fixed size fields within the Version 1 format for this +record remain unchanged. The record signature for both Version 1 +and Version 2 will be 0x06064b50. Immediately following the last +byte of the field known as the Offset of Start of Central +Directory With Respect to the Starting Disk Number will begin the +new fields defining Version 2 of this record. + +New fields for Version 2: + +Note: all fields stored in Intel low-byte/high-byte order. + + Value Size Description + ----- ---- ----------- + Compression Method 2 bytes Method used to compress the + Central Directory + Compressed Size 8 bytes Size of the compressed data + Original Size 8 bytes Original uncompressed size + AlgId 2 bytes Encryption algorithm ID + BitLen 2 bytes Encryption key length + Flags 2 bytes Encryption flags + HashID 2 bytes Hash algorithm identifier + Hash Length 2 bytes Length of hash data + Hash Data (variable) Hash data + +The Compression Method accepts the same range of values as the +corresponding field in the Central Header. + +The Compressed Size and Original Size values will not include the +data of the Central Directory Signature which is compressed or +encrypted. + +The AlgId, BitLen, and Flags fields accept the same range of values +the corresponding fields within the 0x0017 record. + +Hash ID identifies the algorithm used to hash the Central Directory +data. This data does not have to be hashed, in which case the +values for both the HashID and Hash Length will be 0. Possible +values for HashID are: + + Value Algorithm + ------ --------- + 0x0000 none + 0x0001 CRC32 + 0x8003 MD5 + 0x8004 SHA1 + 0x8007 RIPEMD160 + 0x800C SHA256 + 0x800D SHA384 + 0x800E SHA512 + +When the Central Directory data is signed, the same hash algorithm +used to hash the Central Directory for signing should be used. +This is recommended for processing efficiency, however, it is +permissible for any of the above algorithms to be used independent +of the signing process. + +The Hash Data will contain the hash data for the Central Directory. +The length of this data will vary depending on the algorithm used. + +The Version Needed to Extract should be set to 62. + +The value for the Total Number of Entries on the Current Disk will +be 0. These records will no longer support random access when +encrypting the Central Directory. + +When the Central Directory is compressed and/or encrypted, the +End of Central Directory record will store the value 0xFFFFFFFF +as the value for the Total Number of Entries in the Central +Directory. The value stored in the Total Number of Entries in +the Central Directory on this Disk field will be 0. The actual +values will be stored in the equivalent fields of the Zip64 +End of Central Directory record. + +Decrypting and decompressing the Central Directory is accomplished +in the same manner as decrypting and decompressing a file. + +Certificate Processing Method: +----------------------------- + +The Certificate Processing Method of for ZIP file encryption +defines the following additional data fields: + +1. Certificate Flag Values + +Additional processing flags that can be present in the Flags field of both +the 0x0017 field of the central directory Extra Field and the Decryption +header record preceding compressed file data are: + + 0x0007 - reserved for future use + 0x000F - reserved for future use + 0x0100 - Indicates non-OAEP key wrapping was used. If this + this field is set, the version needed to extract must + be at least 61. This means OAEP key wrapping is not + used when generating a Master Session Key using + ErdData. + 0x4000 - ErdData must be decrypted using 3DES-168, otherwise use the + same algorithm used for encrypting the file contents. + 0x8000 - reserved for future use + + +2. CertData - Extra Field 0x0017 record certificate data structure + +The data structure used to store certificate data within the section +of the Extra Field defined by the CertData field of the 0x0017 +record are as shown: + + Value Size Description + ----- ---- ----------- + RCount 4 bytes Number of recipients. + HashAlg 2 bytes Hash algorithm identifier + HSize 2 bytes Hash size + SRList (var) Simple list of recipients hashed public keys + + + RCount This defines the number intended recipients whose + public keys were used for encryption. This identifies + the number of elements in the SRList. + + HashAlg This defines the hash algorithm used to calculate + the public key hash of each public key used + for encryption. This field currently supports + only the following value for SHA-1 + + 0x8004 - SHA1 + + HSize This defines the size of a hashed public key. + + SRList This is a variable length list of the hashed + public keys for each intended recipient. Each + element in this list is HSize. The total size of + SRList is determined using RCount * HSize. + + +3. Reserved1 - Certificate Decryption Header Reserved1 Data: + + Value Size Description + ----- ---- ----------- + RCount 4 bytes Number of recipients. + + RCount This defines the number intended recipients whose + public keys were used for encryption. This defines + the number of elements in the REList field defined below. + + +4. Reserved2 - Certificate Decryption Header Reserved2 Data Structures: + + + Value Size Description + ----- ---- ----------- + HashAlg 2 bytes Hash algorithm identifier + HSize 2 bytes Hash size + REList (var) List of recipient data elements + + + HashAlg This defines the hash algorithm used to calculate + the public key hash of each public key used + for encryption. This field currently supports + only the following value for SHA-1 + + 0x8004 - SHA1 + + HSize This defines the size of a hashed public key + defined in REHData. + + REList This is a variable length of list of recipient data. + Each element in this list consists of a Recipient + Element data structure as follows: + + + Recipient Element (REList) Data Structure: + + Value Size Description + ----- ---- ----------- + RESize 2 bytes Size of REHData + REKData + REHData HSize Hash of recipients public key + REKData (var) Simple key blob + + + RESize This defines the size of an individual REList + element. This value is the combined size of the + REHData field + REKData field. REHData is defined by + HSize. REKData is variable and can be calculated + for each REList element using RESize and HSize. + + REHData Hashed public key for this recipient. + + REKData Simple Key Blob. The format of this data structure + is identical to that defined in the Microsoft + CryptoAPI and generated using the CryptExportKey() + function. The version of the Simple Key Blob + supported at this time is 0x02 as defined by + Microsoft. + +Certificate Processing - Central Directory Encryption: +------------------------------------------------------ + +Central Directory Encryption using Digital Certificates will +operate in a manner similar to that of Single Password Central +Directory Encryption. This record will only be present when there +is data to place into it. Currently, data is placed into this +record when digital certificates are used for either encrypting +or signing the files within a ZIP file. When only password +encryption is used with no certificate encryption or digital +signing, this record is not currently needed. When present, this +record will appear before the start of the actual Central Directory +data structure and will be located immediately after the Archive +Decryption Header if the Central Directory is encrypted. + +The Archive Extra Data record will be used to store the following +information. Additional data may be added in future versions. + +Extra Data Fields: + +0x0014 - PKCS#7 Store for X.509 Certificates +0x0016 - X.509 Certificate ID and Signature for central directory +0x0019 - PKCS#7 Encryption Recipient Certificate List + +The 0x0014 and 0x0016 Extra Data records that otherwise would be +located in the first record of the Central Directory for digital +certificate processing. When encrypting or compressing the Central +Directory, the 0x0014 and 0x0016 records must be located in the +Archive Extra Data record and they should not remain in the first +Central Directory record. The Archive Extra Data record will also +be used to store the 0x0019 data. + +When present, the size of the Archive Extra Data record will be +included in the size of the Central Directory. The data of the +Archive Extra Data record will also be compressed and encrypted +along with the Central Directory data structure. + +Certificate Processing Differences: + +The Certificate Processing Method of encryption differs from the +Single Password Symmetric Encryption Method as follows. Instead +of using a user-defined password to generate a master session key, +cryptographically random data is used. The key material is then +wrapped using standard key-wrapping techniques. This key material +is wrapped using the public key of each recipient that will need +to decrypt the file using their corresponding private key. + +This specification currently assumes digital certificates will follow +the X.509 V3 format for 1024 bit and higher RSA format digital +certificates. Implementation of this Certificate Processing Method +requires supporting logic for key access and management. This logic +is outside the scope of this specification. + +OAEP Processing with Certificate-based Encryption: + +OAEP stands for Optimal Asymmetric Encryption Padding. It is a +strengthening technique used for small encoded items such as decryption +keys. This is commonly applied in cryptographic key-wrapping techniques +and is supported by PKCS #1. Versions 5.0 and 6.0 of this specification +were designed to support OAEP key-wrapping for certificate-based +decryption keys for additional security. + +Support for private keys stored on Smartcards or Tokens introduced +a conflict with this OAEP logic. Most card and token products do +not support the additional strengthening applied to OAEP key-wrapped +data. In order to resolve this conflict, versions 6.1 and above of this +specification will no longer support OAEP when encrypting using +digital certificates. + +Versions of PKZIP available during initial development of the +certificate processing method set a value of 61 into the +version needed to extract field for a file. This indicates that +non-OAEP key wrapping is used. This affects certificate encryption +only, and password encryption functions should not be affected by +this value. This means values of 61 may be found on files encrypted +with certificates only, or on files encrypted with both password +encryption and certificate encryption. Files encrypted with both +methods can safely be decrypted using the password methods documented. + +IX. Change Process +------------------ + +In order for the .ZIP file format to remain a viable definition, this +specification should be considered as open for periodic review and +revision. Although this format was originally designed with a +certain level of extensibility, not all changes in technology +(present or future) were or will be necessarily considered in its +design. If your application requires new definitions to the +extensible sections in this format, or if you would like to +submit new data structures, please forward your request to +zipformat@pkware.com. All submissions will be reviewed by the +ZIP File Specification Committee for possible inclusion into +future versions of this specification. Periodic revisions +to this specification will be published to ensure interoperability. +We encourage comments and feedback that may help improve clarity +or content. + +X. Incorporating PKWARE Proprietary Technology into Your Product +---------------------------------------------------------------- + +PKWARE is committed to the interoperability and advancement of the +.ZIP format. PKWARE offers a free license for certain technological +aspects described above under certain restrictions and conditions. +However, the use or implementation in a product of certain technological +aspects set forth in the current APPNOTE, including those with regard to +strong encryption, patching, or extended tape operations requires a +license from PKWARE. Please contact PKWARE with regard to acquiring +a license. + +XI. Acknowledgements +--------------------- + +In addition to the above mentioned contributors to PKZIP and PKUNZIP, +I would like to extend special thanks to Robert Mahoney for suggesting +the extension .ZIP for this software. + +XII. References +--------------- + + Fiala, Edward R., and Greene, Daniel H., "Data compression with + finite windows", Communications of the ACM, Volume 32, Number 4, + April 1989, pages 490-505. + + Held, Gilbert, "Data Compression, Techniques and Applications, + Hardware and Software Considerations", John Wiley & Sons, 1987. + + Huffman, D.A., "A method for the construction of minimum-redundancy + codes", Proceedings of the IRE, Volume 40, Number 9, September 1952, + pages 1098-1101. + + Nelson, Mark, "LZW Data Compression", Dr. Dobbs Journal, Volume 14, + Number 10, October 1989, pages 29-37. + + Nelson, Mark, "The Data Compression Book", M&T Books, 1991. + + Storer, James A., "Data Compression, Methods and Theory", + Computer Science Press, 1988 + + Welch, Terry, "A Technique for High-Performance Data Compression", + IEEE Computer, Volume 17, Number 6, June 1984, pages 8-19. + + Ziv, J. and Lempel, A., "A universal algorithm for sequential data + compression", Communications of the ACM, Volume 30, Number 6, + June 1987, pages 520-540. + + Ziv, J. and Lempel, A., "Compression of individual sequences via + variable-rate coding", IEEE Transactions on Information Theory, + Volume 24, Number 5, September 1978, pages 530-536. + + +APPENDIX A - AS/400 Extra Field (0x0065) Attribute Definitions +-------------------------------------------------------------- + +Field Definition Structure: + + a. field length including length 2 bytes + b. field code 2 bytes + c. data x bytes + +Field Code Description + 4001 Source type i.e. CLP etc + 4002 The text description of the library + 4003 The text description of the file + 4004 The text description of the member + 4005 x'F0' or 0 is PF-DTA, x'F1' or 1 is PF_SRC + 4007 Database Type Code 1 byte + 4008 Database file and fields definition + 4009 GZIP file type 2 bytes + 400B IFS code page 2 bytes + 400C IFS Creation Time 4 bytes + 400D IFS Access Time 4 bytes + 400E IFS Modification time 4 bytes + 005C Length of the records in the file 2 bytes + 0068 GZIP two words 8 bytes + +APPENDIX B - z/OS Extra Field (0x0065) Attribute Definitions +------------------------------------------------------------ + +Field Definition Structure: + + a. field length including length 2 bytes + b. field code 2 bytes + c. data x bytes + +Field Code Description + 0001 File Type 2 bytes + 0002 NonVSAM Record Format 1 byte + 0003 Reserved + 0004 NonVSAM Block Size 2 bytes Big Endian + 0005 Primary Space Allocation 3 bytes Big Endian + 0006 Secondary Space Allocation 3 bytes Big Endian + 0007 Space Allocation Type1 byte flag + 0008 Modification Date Retired with PKZIP 5.0 + + 0009 Expiration Date Retired with PKZIP 5.0 + + 000A PDS Directory Block Allocation 3 bytes Big Endian binary value + 000B NonVSAM Volume List variable + 000C UNIT Reference Retired with PKZIP 5.0 + + 000D DF/SMS Management Class 8 bytes EBCDIC Text Value + 000E DF/SMS Storage Class 8 bytes EBCDIC Text Value + 000F DF/SMS Data Class 8 bytes EBCDIC Text Value + 0010 PDS/PDSE Member Info. 30 bytes + 0011 VSAM sub-filetype 2 bytes + 0012 VSAM LRECL 13 bytes EBCDIC "(num_avg num_max)" + 0013 VSAM Cluster Name Retired with PKZIP 5.0 + + 0014 VSAM KSDS Key Information 13 bytes EBCDIC "(num_length num_position)" + 0015 VSAM Average LRECL 5 bytes EBCDIC num_value padded with blanks + 0016 VSAM Maximum LRECL 5 bytes EBCDIC num_value padded with blanks + 0017 VSAM KSDS Key Length 5 bytes EBCDIC num_value padded with blanks + 0018 VSAM KSDS Key Position 5 bytes EBCDIC num_value padded with blanks + 0019 VSAM Data Name 1-44 bytes EBCDIC text string + 001A VSAM KSDS Index Name 1-44 bytes EBCDIC text string + 001B VSAM Catalog Name 1-44 bytes EBCDIC text string + 001C VSAM Data Space Type 9 bytes EBCDIC text string + 001D VSAM Data Space Primary 9 bytes EBCDIC num_value left-justified + 001E VSAM Data Space Secondary 9 bytes EBCDIC num_value left-justified + 001F VSAM Data Volume List variable EBCDIC text list of 6-character Volume IDs + 0020 VSAM Data Buffer Space 8 bytes EBCDIC num_value left-justified + 0021 VSAM Data CISIZE 5 bytes EBCDIC num_value left-justified + 0022 VSAM Erase Flag 1 byte flag + 0023 VSAM Free CI % 3 bytes EBCDIC num_value left-justified + 0024 VSAM Free CA % 3 bytes EBCDIC num_value left-justified + 0025 VSAM Index Volume List variable EBCDIC text list of 6-character Volume IDs + 0026 VSAM Ordered Flag 1 byte flag + 0027 VSAM REUSE Flag 1 byte flag + 0028 VSAM SPANNED Flag 1 byte flag + 0029 VSAM Recovery Flag 1 byte flag + 002A VSAM WRITECHK Flag 1 byte flag + 002B VSAM Cluster/Data SHROPTS 3 bytes EBCDIC "n,y" + 002C VSAM Index SHROPTS 3 bytes EBCDIC "n,y" + 002D VSAM Index Space Type 9 bytes EBCDIC text string + 002E VSAM Index Space Primary 9 bytes EBCDIC num_value left-justified + 002F VSAM Index Space Secondary 9 bytes EBCDIC num_value left-justified + 0030 VSAM Index CISIZE 5 bytes EBCDIC num_value left-justified + 0031 VSAM Index IMBED 1 byte flag + 0032 VSAM Index Ordered Flag 1 byte flag + 0033 VSAM REPLICATE Flag 1 byte flag + 0034 VSAM Index REUSE Flag 1 byte flag + 0035 VSAM Index WRITECHK Flag 1 byte flag Retired with PKZIP 5.0 + + 0036 VSAM Owner 8 bytes EBCDIC text string + 0037 VSAM Index Owner 8 bytes EBCDIC text string + 0038 Reserved + 0039 Reserved + 003A Reserved + 003B Reserved + 003C Reserved + 003D Reserved + 003E Reserved + 003F Reserved + 0040 Reserved + 0041 Reserved + 0042 Reserved + 0043 Reserved + 0044 Reserved + 0045 Reserved + 0046 Reserved + 0047 Reserved + 0048 Reserved + 0049 Reserved + 004A Reserved + 004B Reserved + 004C Reserved + 004D Reserved + 004E Reserved + 004F Reserved + 0050 Reserved + 0051 Reserved + 0052 Reserved + 0053 Reserved + 0054 Reserved + 0055 Reserved + 0056 Reserved + 0057 Reserved + 0058 PDS/PDSE Member TTR Info. 6 bytes Big Endian + 0059 PDS 1st LMOD Text TTR 3 bytes Big Endian + 005A PDS LMOD EP Rec # 4 bytes Big Endian + 005B Reserved + 005C Max Length of records 2 bytes Big Endian + 005D PDSE Flag 1 byte flag + 005E Reserved + 005F Reserved + 0060 Reserved + 0061 Reserved + 0062 Reserved + 0063 Reserved + 0064 Reserved + 0065 Last Date Referenced 4 bytes Packed Hex "yyyymmdd" + 0066 Date Created 4 bytes Packed Hex "yyyymmdd" + 0068 GZIP two words 8 bytes + 0071 Extended NOTE Location 12 bytes Big Endian + 0072 Archive device UNIT 6 bytes EBCDIC + 0073 Archive 1st Volume 6 bytes EBCDIC + 0074 Archive 1st VOL File Seq# 2 bytes Binary + +APPENDIX C - Zip64 Extensible Data Sector Mappings (EFS) +-------------------------------------------------------- + + -Z390 Extra Field: + + The following is the general layout of the attributes for the + ZIP 64 "extra" block for extended tape operations. Portions of + this extended tape processing technology is covered under a + pending patent application. The use or implementation in a + product of certain technological aspects set forth in the + current APPNOTE, including those with regard to strong encryption, + patching or extended tape operations, requires a license from + PKWARE. Please contact PKWARE with regard to acquiring a license. + + + Note: some fields stored in Big Endian format. All text is + in EBCDIC format unless otherwise specified. + + Value Size Description + ----- ---- ----------- + (Z390) 0x0065 2 bytes Tag for this "extra" block type + Size 4 bytes Size for the following data block + Tag 4 bytes EBCDIC "Z390" + Length71 2 bytes Big Endian + Subcode71 2 bytes Enote type code + FMEPos 1 byte + Length72 2 bytes Big Endian + Subcode72 2 bytes Unit type code + Unit 1 byte Unit + Length73 2 bytes Big Endian + Subcode73 2 bytes Volume1 type code + FirstVol 1 byte Volume + Length74 2 bytes Big Endian + Subcode74 2 bytes FirstVol file sequence + FileSeq 2 bytes Sequence + +APPENDIX D - Language Encoding (EFS) +------------------------------------ + +The ZIP format has historically supported only the original IBM PC character +encoding set, commonly referred to as IBM Code Page 437. This limits storing +file name characters to only those within the original MS-DOS range of values +and does not properly support file names in other character encodings, or +languages. To address this limitation, this specification will support the +following change. + +If general purpose bit 11 is unset, the file name and comment should conform +to the original ZIP character encoding. If general purpose bit 11 is set, the +filename and comment must support The Unicode Standard, Version 4.1.0 or +greater using the character encoding form defined by the UTF-8 storage +specification. The Unicode Standard is published by the The Unicode +Consortium (www.unicode.org). UTF-8 encoded data stored within ZIP files +is expected to not include a byte order mark (BOM). + +Applications may choose to supplement this file name storage through the use +of the 0x0008 Extra Field. Storage for this optional field is currently +undefined, however it will be used to allow storing extended information +on source or target encoding that may further assist applications with file +name, or file content encoding tasks. Please contact PKWARE with any +requirements on how this field should be used. + +The 0x0008 Extra Field storage may be used with either setting for general +purpose bit 11. Examples of the intended usage for this field is to store +whether "modified-UTF-8" (JAVA) is used, or UTF-8-MAC. Similarly, other +commonly used character encoding (code page) designations can be indicated +through this field. Formalized values for use of the 0x0008 record remain +undefined at this time. The definition for the layout of the 0x0008 field +will be published when available. Use of the 0x0008 Extra Field provides +for storing data within a ZIP file in an encoding other than IBM Code +Page 437 or UTF-8. + +General purpose bit 11 will not imply any encoding of file content or +password. Values defining character encoding for file content or +password must be stored within the 0x0008 Extended Language Encoding +Extra Field. + +Ed Gordon of the Info-ZIP group has defined a pair of "extra field" records +that can be used to store UTF-8 file name and file comment fields. These +records can be used for cases when the general purpose bit 11 method +for storing UTF-8 data in the standard file name and comment fields is +not desirable. A common case for this alternate method is if backward +compatibility with older programs is required. + +Definitions for the record structure of these fields are included above +in the section on 3rd party mappings for "extra field" records. These +records are identified by Header ID's 0x6375 (Info-ZIP Unicode Comment +Extra Field) and 0x7075 (Info-ZIP Unicode Path Extra Field). + +The choice of which storage method to use when writing a ZIP file is left +to the implementation. Developers should expect that a ZIP file may +contain either method and should provide support for reading data in +either format. Use of general purpose bit 11 reduces storage requirements +for file name data by not requiring additional "extra field" data for +each file, but can result in older ZIP programs not being able to extract +files. Use of the 0x6375 and 0x7075 records will result in a ZIP file +that should always be readable by older ZIP programs, but requires more +storage per file to write file name and/or file comment fields. + + + + diff --git a/src/BZip2 Tests/BZip2UnitTest1.cs b/old/src/BZip2 Tests/BZip2UnitTest1.cs similarity index 97% rename from src/BZip2 Tests/BZip2UnitTest1.cs rename to old/src/BZip2 Tests/BZip2UnitTest1.cs index 05f2301..3a55fb8 100644 --- a/src/BZip2 Tests/BZip2UnitTest1.cs +++ b/old/src/BZip2 Tests/BZip2UnitTest1.cs @@ -1,711 +1,711 @@ -using System; -using System.Linq; -using System.Text; -using System.Collections.Generic; -using Ionic.BZip2; - -using Microsoft.VisualStudio.TestTools.UnitTesting; -using System.IO; - -namespace Ionic.BZip2.Tests -{ - /// - /// Summary description for UnitTest1 - /// - [TestClass] - public class UnitTest1 - { - private System.Random rnd; - - public UnitTest1() - { - this.rnd = new System.Random(); - FilesToRemove = new System.Collections.Generic.List(); - } - - static UnitTest1() - { - string lorem = TestStrings["LoremIpsum"]; - LoremIpsumWords = lorem.Split(" ".ToCharArray(), - System.StringSplitOptions.RemoveEmptyEntries); - } - - - private TestContext testContextInstance; - - /// - ///Gets or sets the test context which provides - ///information about and functionality for the current test run. - /// - public TestContext TestContext - { - get - { - return testContextInstance; - } - set - { - testContextInstance = value; - } - } - - #region Additional test attributes - // - // You can use the following additional attributes as you write your tests: - // - // Use ClassInitialize to run code before running the first test in the class - // [ClassInitialize()] - // public static void MyClassInitialize(TestContext testContext) { } - // - // Use ClassCleanup to run code after all tests in a class have run - // [ClassCleanup()] - // public static void MyClassCleanup() { } - // - // Use TestInitialize to run code before running each test - // [TestInitialize()] - // public void MyTestInitialize() { } - // - // Use TestCleanup to run code after each test has run - // [TestCleanup()] - // public void MyTestCleanup() { } - // - - private string CurrentDir = null; - private string TopLevelDir = null; - protected System.Collections.Generic.List FilesToRemove; - - // Use TestInitialize to run code before running each test - [TestInitialize()] - public void MyTestInitialize() - { - CurrentDir = System.IO.Directory.GetCurrentDirectory(); - Assert.AreNotEqual(System.IO.Path.GetFileName(CurrentDir), "Temp", "at start"); - - string parentDir = System.Environment.GetEnvironmentVariable("TEMP"); - - TopLevelDir = System.IO.Path.Combine(parentDir, String.Format("Ionic.ZlibTest-{0}.tmp", System.DateTime.Now.ToString("yyyyMMMdd-HHmmss"))); - System.IO.Directory.CreateDirectory(TopLevelDir); - System.IO.Directory.SetCurrentDirectory(TopLevelDir); - - FilesToRemove.Add(TopLevelDir); - } - - - // Use TestCleanup to run code after each test has run - [TestCleanup()] - public void MyTestCleanup() - { - Assert.AreNotEqual(Path.GetFileName(CurrentDir), "Temp", "at finish"); - Directory.SetCurrentDirectory(CurrentDir); - IOException GotException = null; - int Tries = 0; - do - { - try - { - GotException = null; - foreach (string filename in FilesToRemove) - { - if (Directory.Exists(filename)) - { - // turn off any ReadOnly attributes - ClearReadOnly(filename); - Directory.Delete(filename, true); - } - if (File.Exists(filename)) - { - File.Delete(filename); - } - } - Tries++; - } - catch (IOException ioexc) - { - GotException = ioexc; - // use an backoff interval before retry - System.Threading.Thread.Sleep(200 * Tries); - } - } while ((GotException != null) && (Tries < 4)); - if (GotException != null) throw GotException; - FilesToRemove.Clear(); - } - - - public static void ClearReadOnly(string dirname) - { - // don't traverse reparse points - if ((File.GetAttributes(dirname) & FileAttributes.ReparsePoint) != 0) - return; - - foreach (var d in Directory.GetDirectories(dirname)) - { - ClearReadOnly(d); // recurse - } - - foreach (var f in Directory.GetFiles(dirname)) - { - // clear ReadOnly and System attributes - var a = File.GetAttributes(f); - if ((a & FileAttributes.ReadOnly) == FileAttributes.ReadOnly) - { - a ^= FileAttributes.ReadOnly; - File.SetAttributes(f, a); - } - if ((a & FileAttributes.System) == FileAttributes.System) - { - a ^= FileAttributes.System; - File.SetAttributes(f, a); - } - } - } - - - #endregion - - #region Helpers - private static void CopyStream(System.IO.Stream src, System.IO.Stream dest) - { - byte[] buffer = new byte[4096]; - int n; - while ((n = src.Read(buffer, 0, buffer.Length)) > 0) - { - dest.Write(buffer, 0, n); - } - } - - private static string GetTestDependentDir(string startingPoint, string subdir) - { - var location = startingPoint; - for (int i = 0; i < 3; i++) - location = Path.GetDirectoryName(location); - - location = Path.Combine(location, subdir); - return location; - } - - private static string GetTestBinDir(string startingPoint) - { - return GetTestDependentDir(startingPoint, "BZip2 Tests\\bin\\Debug"); - } - - private string GetContentFile(string fileName) - { - string testBin = GetTestBinDir(CurrentDir); - string path = Path.Combine(testBin, String.Format("Resources\\{0}", fileName)); - Assert.IsTrue(File.Exists(path), "file ({0}) does not exist", path); - return path; - } - - private static Int32 GetCrc(string fname) - { - using (var fs1 = File.OpenRead(fname)) - { - var checker = new Ionic.Crc.CRC32(true); - return checker.GetCrc32(fs1); - } - } - - internal string Exec(string program, string args) - { - return Exec(program, args, true); - } - - internal string Exec(string program, string args, bool waitForExit) - { - return Exec(program, args, waitForExit, true); - } - - internal string Exec(string program, string args, bool waitForExit, bool emitOutput) - { - if (program == null) - throw new ArgumentException("program"); - - if (args == null) - throw new ArgumentException("args"); - - // Microsoft.VisualStudio.TestTools.UnitTesting - this.TestContext.WriteLine("running command: {0} {1}", program, args); - - string output; - int rc = Exec_NoContext(program, args, waitForExit, out output); - - if (rc != 0) - throw new Exception(String.Format("Non-zero RC {0}: {1}", program, output)); - - if (emitOutput) - this.TestContext.WriteLine("output: {0}", output); - else - this.TestContext.WriteLine("A-OK. (output suppressed)"); - - return output; - } - - internal static int Exec_NoContext(string program, string args, bool waitForExit, out string output) - { - System.Diagnostics.Process p = new System.Diagnostics.Process - { - StartInfo = - { - FileName = program, - CreateNoWindow = true, - Arguments = args, - WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden, - UseShellExecute = false, - } - - }; - - if (waitForExit) - { - StringBuilder sb = new StringBuilder(); - p.StartInfo.RedirectStandardOutput = true; - p.StartInfo.RedirectStandardError = true; - // must read at least one of the stderr or stdout asynchronously, - // to avoid deadlock - Action stdErrorRead = (o, e) => - { - if (!String.IsNullOrEmpty(e.Data)) - sb.Append(e.Data); - }; - - p.ErrorDataReceived += new System.Diagnostics.DataReceivedEventHandler(stdErrorRead); - p.Start(); - p.BeginErrorReadLine(); - output = p.StandardOutput.ReadToEnd(); - p.WaitForExit(); - if (sb.Length > 0) - output += sb.ToString(); - //output = CleanWzzipOut(output); // just in case - return p.ExitCode; - } - else - { - p.Start(); - } - output = ""; - return 0; - } - - - void CreateAndFillTextFile(string filename, Int64 minimumSize) - { - // fill the file with text data, selecting one word at a time - int L = LoremIpsumWords.Length - 2; - Int64 bytesRemaining = minimumSize; - using (StreamWriter sw = File.CreateText(filename)) - { - do - { - // pick a word at random - int n = this.rnd.Next(L); - int batchLength = LoremIpsumWords[n].Length + - LoremIpsumWords[n+1].Length + - LoremIpsumWords[n+2].Length + 3; - sw.Write(LoremIpsumWords[n]); - sw.Write(" "); - sw.Write(LoremIpsumWords[n+1]); - sw.Write(" "); - sw.Write(LoremIpsumWords[n+2]); - sw.Write(" "); - bytesRemaining -= batchLength; - } while (bytesRemaining > 0); - } - } - - #endregion - - - [TestMethod] - [Timeout(15 * 60*1000)] // 60*1000 = 1min - public void BZ_LargeParallel() - { - string filename = "LargeFile.txt"; - int minSize = 0x6000000 + this.rnd.Next(0x6000000); - TestContext.WriteLine("Creating large file, minimum {0} bytes", minSize); - - CreateAndFillTextFile(filename, minSize); - - Func[] getBzStream = { - new Func( s0 => { - return new Ionic.BZip2.BZip2OutputStream(s0); - }), - new Func( s1 => { - return new Ionic.BZip2.ParallelBZip2OutputStream(s1); - }) - }; - - var ts = new TimeSpan[2]; - for (int k=0; k < 2; k++) - { - var stopwatch = new System.Diagnostics.Stopwatch(); - TestContext.WriteLine("Trial {0}", k); - stopwatch.Start(); - string bzFname = Path.GetFileNameWithoutExtension(filename) + - "." + k + Path.GetExtension(filename) + ".bz2"; - using (Stream input = File.OpenRead(filename), - output = File.Create(bzFname), - compressor = getBzStream[k](output)) - { - CopyStream(input, compressor); - } - stopwatch.Stop(); - ts[k] = stopwatch.Elapsed; - TestContext.WriteLine("Trial complete {0} : {1}", k, ts[k]); - } - - Assert.IsTrue(ts[1][] getBzStream = { - new Func( s0 => { - var decorator = new Ionic.BZip2.BZip2OutputStream(s0, blockSize); - return decorator; - }), - new Func( s1 => { - var decorator = new Ionic.BZip2.ParallelBZip2OutputStream(s1, blockSize); - return decorator; - }) - }; - - int[] blockSizes = { 1,2,3,4,5,6,7,8,9 }; - - for (int k=0; k < getBzStream.Length; k++) - { - for (int m=0; m < blockSizes.Length; m++) - { - blockSize = blockSizes[m]; - var getStream = getBzStream[k]; - var root = Path.GetFileNameWithoutExtension(fname); - var ext = Path.GetExtension(fname); - // compress into bz2 - var bzFname = String.Format("{0}.{1}.blocksize{2}{3}.bz2", - root, - (k==0)?"SingleThread":"MultiThread", - blockSize, ext); - - TestContext.WriteLine("Compress cycle ({0},{1})", k,m); - TestContext.WriteLine("file {0}", bzFname); - using (var fs = File.OpenRead(fname)) - { - using (var output = File.Create(bzFname)) - { - using (var compressor = getStream(output)) - { - CopyStream(fs, compressor); - } - } - } - - TestContext.WriteLine("Decompress"); - var decompressedFname = Path.GetFileNameWithoutExtension(bzFname); - using (Stream fs = File.OpenRead(bzFname), - output = File.Create(decompressedFname), - decompressor = new Ionic.BZip2.BZip2InputStream(fs)) - { - CopyStream(decompressor, output); - } - - TestContext.WriteLine("Check CRC"); - int crcDecompressed = GetCrc(decompressedFname); - Assert.AreEqual(crcOriginal, crcDecompressed, - "CRC mismatch {0:X8} != {1:X8}", - crcOriginal, crcDecompressed); - TestContext.WriteLine(""); - - // just for the sake of disk space economy: - File.Delete(decompressedFname); - File.Delete(bzFname); - } - } - } - - - [TestMethod] - [ExpectedException(typeof(IOException))] - public void BZ_Error_1() - { - var bzbin = GetTestDependentDir(CurrentDir, "Tools\\BZip2\\bin\\Debug"); - var dnzBzip2exe = Path.Combine(bzbin, "bzip2.exe"); - string decompressedFname = "ThisWillNotWork.txt"; - using (Stream input = File.OpenRead(dnzBzip2exe), - decompressor = new Ionic.BZip2.BZip2InputStream(input), - output = File.Create(decompressedFname)) - CopyStream(decompressor, output); - } - - [TestMethod] - [ExpectedException(typeof(IOException))] - public void BZ_Error_2() - { - string decompressedFname = "ThisWillNotWork.txt"; - using (Stream input = new MemoryStream(), // empty stream - decompressor = new Ionic.BZip2.BZip2InputStream(input), - output = File.Create(decompressedFname)) - CopyStream(decompressor, output); - } - - - [TestMethod] - public void BZ_Utility() - { - var bzbin = GetTestDependentDir(CurrentDir, "Tools\\BZip2\\bin\\Debug"); - var dnzBzip2exe = Path.Combine(bzbin, "bzip2.exe"); - Assert.IsTrue(File.Exists(dnzBzip2exe), "Bzip2.exe is missing {0}", - dnzBzip2exe); - var unxBzip2exe = "\\bin\\bzip2.exe"; - Assert.IsTrue(File.Exists(unxBzip2exe), "Bzip2.exe is missing {0}", - unxBzip2exe); - - foreach (var key in TestStrings.Keys) - { - int count = this.rnd.Next(18) + 4; - TestContext.WriteLine("Doing string {0}", key); - var s = TestStrings[key]; - var fname = String.Format("Pippo-{0}.txt", key); - using (var sw = new StreamWriter(File.Create(fname))) - { - for (int k=0; k < count; k++) - { - sw.WriteLine(s); - } - } - - int crcOriginal = GetCrc(fname); - - string args = fname + " -keep -v"; - TestContext.WriteLine("Exec: bzip2 {0}", args); - string bzout = this.Exec(dnzBzip2exe, args); - - var bzfile = fname + ".bz2"; - Assert.IsTrue(File.Exists(bzfile), "File is missing. {0}", - bzfile); - - File.Delete(fname); - Assert.IsTrue(!File.Exists(fname), "The delete failed. {0}", - fname); - - System.Threading.Thread.Sleep(1200); - - args = "-dfk "+ bzfile; - TestContext.WriteLine("Exec: bzip2 {0}", args); - bzout = this.Exec(unxBzip2exe, args); - Assert.IsTrue(File.Exists(fname), "File is missing. {0}", - fname); - - int crcDecompressed = GetCrc(fname); - Assert.AreEqual(crcOriginal, crcDecompressed, - "CRC mismatch {0:X8}!={1:X8}", - crcOriginal, crcDecompressed); - } - } - - [TestMethod] - public void BZ_StreamCopy() - { - var src = new MemoryStream(Encoding.ASCII.GetBytes("Hello")); - - var ms = new MemoryStream(); - - using (var output = new BZip2OutputStream(ms, true)) - { - src.CopyTo(output); - } - - Assert.IsTrue(ms.Length > 0); - ms.Seek(0, SeekOrigin.Begin); - - using (var input = new BZip2InputStream(ms, true)) - { - var dst = new MemoryStream(); - input.CopyTo(dst); - - Assert.AreEqual(dst.Length, src.Length); - - src.Position = 0; - dst.Position = 0; - - while (src.Position != src.Length) - { - Assert.AreEqual(src.ReadByte(), dst.ReadByte()); - } - } - } - - [TestMethod] - public void BZ_Samples() - { - string testBin = GetTestBinDir(CurrentDir); - string resourceDir = Path.Combine(testBin, "Resources"); - var filesToDecompress = Directory.GetFiles(resourceDir, "*.bz2"); - - Assert.IsTrue(filesToDecompress.Length > 2, - "There are not enough sample files"); - - foreach (var filename in filesToDecompress) - { - TestContext.WriteLine("Decompressing {0}", filename); - var outFname = filename + ".decompressed"; - TestContext.WriteLine("Decompressing to {0}", outFname); - - using (var fs = File.OpenRead(filename)) - { - using (var output = File.Create(outFname)) - { - using (var decompressor = new Ionic.BZip2.BZip2InputStream(fs)) - { - CopyStream(decompressor, output); - } - } - } - TestContext.WriteLine(""); - } - } - - - - - internal static Dictionary TestStrings = new Dictionary() { - {"LetMeDoItNow", "I expect to pass through the world but once. Any good therefore that I can do, or any kindness I can show to any creature, let me do it now. Let me not defer it, for I shall not pass this way again. -- Anonymous, although some have attributed it to Stephen Grellet" }, - - {"UntilHeExtends", "Until he extends the circle of his compassion to all living things, man will not himself find peace. - Albert Schweitzer, early 20th-century German Nobel Peace Prize-winning mission doctor and theologian." }, - - {"WhatWouldThingsHaveBeenLike","'What would things have been like [in Russia] if during periods of mass arrests people had not simply sat there, paling with terror at every bang on the downstairs door and at every step on the staircase, but understood they had nothing to lose and had boldly set up in the downstairs hall an ambush of half a dozen people?' -- Alexander Solzhenitsyn" - }, - - {"GoPlacidly", - @"Go placidly amid the noise and haste, and remember what peace there may be in silence. - -As far as possible, without surrender, be on good terms with all persons. Speak your truth quietly and clearly; and listen to others, even to the dull and the ignorant, they too have their story. Avoid loud and aggressive persons, they are vexations to the spirit. - -If you compare yourself with others, you may become vain and bitter; for always there will be greater and lesser persons than yourself. Enjoy your achievements as well as your plans. Keep interested in your own career, however humble; it is a real possession in the changing fortunes of time. - -Exercise caution in your business affairs, for the world is full of trickery. But let this not blind you to what virtue there is; many persons strive for high ideals, and everywhere life is full of heroism. Be yourself. Especially, do not feign affection. Neither be cynical about love, for in the face of all aridity and disenchantment it is perennial as the grass. - -Take kindly to the counsel of the years, gracefully surrendering the things of youth. Nurture strength of spirit to shield you in sudden misfortune. But do not distress yourself with imaginings. Many fears are born of fatigue and loneliness. - -Beyond a wholesome discipline, be gentle with yourself. You are a child of the universe, no less than the trees and the stars; you have a right to be here. And whether or not it is clear to you, no doubt the universe is unfolding as it should. - -Therefore be at peace with God, whatever you conceive Him to be, and whatever your labors and aspirations, in the noisy confusion of life, keep peace in your soul. - -With all its sham, drudgery and broken dreams, it is still a beautiful world. - -Be cheerful. Strive to be happy. - -Max Ehrmann c.1920 -"}, - - {"IhaveaDream", @"Let us not wallow in the valley of despair, I say to you today, my friends. - -And so even though we face the difficulties of today and tomorrow, I still have a dream. It is a dream deeply rooted in the American dream. - -I have a dream that one day this nation will rise up and live out the true meaning of its creed: 'We hold these truths to be self-evident, that all men are created equal.' - -I have a dream that one day on the red hills of Georgia, the sons of former slaves and the sons of former slave owners will be able to sit down together at the table of brotherhood. - -I have a dream that one day even the state of Mississippi, a state sweltering with the heat of injustice, sweltering with the heat of oppression, will be transformed into an oasis of freedom and justice. - -I have a dream that my four little children will one day live in a nation where they will not be judged by the color of their skin but by the content of their character. - -I have a dream today! - -I have a dream that one day, down in Alabama, with its vicious racists, with its governor having his lips dripping with the words of 'interposition' and 'nullification' -- one day right there in Alabama little black boys and black girls will be able to join hands with little white boys and white girls as sisters and brothers. - -I have a dream today! - -I have a dream that one day every valley shall be exalted, and every hill and mountain shall be made low, the rough places will be made plain, and the crooked places will be made straight; 'and the glory of the Lord shall be revealed and all flesh shall see it together.'2 -"}, - - { "LoremIpsum", -"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer " + -"vulputate, nibh non rhoncus euismod, erat odio pellentesque lacus, sit " + -"amet convallis mi augue et odio. Phasellus cursus urna facilisis " + -"quam. Suspendisse nec metus et sapien scelerisque euismod. Nullam " + -"molestie sem quis nisl. Fusce pellentesque, ante sed semper egestas, sem " + -"nulla vestibulum nulla, quis sollicitudin leo lorem elementum " + -"wisi. Aliquam vestibulum nonummy orci. Sed in dolor sed enim ullamcorper " + -"accumsan. Duis vel nibh. Class aptent taciti sociosqu ad litora torquent " + -"per conubia nostra, per inceptos hymenaeos. Sed faucibus, enim sit amet " + -"venenatis laoreet, nisl elit posuere est, ut sollicitudin tortor velit " + -"ut ipsum. Aliquam erat volutpat. Phasellus tincidunt vehicula " + -"eros. Curabitur vitae erat. " + -"\n " + -"Quisque pharetra lacus quis sapien. Duis id est non wisi sagittis " + -"adipiscing. Nulla facilisi. Etiam quam erat, lobortis eu, facilisis nec, " + -"blandit hendrerit, metus. Fusce hendrerit. Nunc magna libero, " + -"sollicitudin non, vulputate non, ornare id, nulla. Suspendisse " + -"potenti. Nullam in mauris. Curabitur et nisl vel purus vehicula " + -"sodales. Class aptent taciti sociosqu ad litora torquent per conubia " + -"nostra, per inceptos hymenaeos. Cum sociis natoque penatibus et magnis " + -"dis parturient montes, nascetur ridiculus mus. Donec semper, arcu nec " + -"dignissim porta, eros odio tempus pede, et laoreet nibh arcu et " + -"nisl. Morbi pellentesque eleifend ante. Morbi dictum lorem non " + -"ante. Nullam et augue sit amet sapien varius mollis. " + -"\n " + -"Nulla erat lorem, fringilla eget, ultrices nec, dictum sed, " + -"sapien. Aliquam libero ligula, porttitor scelerisque, lobortis nec, " + -"dignissim eu, elit. Etiam feugiat, dui vitae laoreet faucibus, tellus " + -"urna molestie purus, sit amet pretium lorem pede in erat. Ut non libero " + -"et sapien porttitor eleifend. Vestibulum ante ipsum primis in faucibus " + -"orci luctus et ultrices posuere cubilia Curae; In at lorem et lacus " + -"feugiat iaculis. Nunc tempus eros nec arcu tristique egestas. Quisque " + -"metus arcu, pretium in, suscipit dictum, bibendum sit amet, " + -"mauris. Aliquam non urna. Suspendisse eget diam. Aliquam erat " + -"volutpat. In euismod aliquam lorem. Mauris dolor nisl, consectetuer sit " + -"amet, suscipit sodales, rutrum in, lorem. Nunc nec nisl. Nulla ante " + -"libero, aliquam porttitor, aliquet at, imperdiet sed, diam. Pellentesque " + -"tincidunt nisl et ipsum. Suspendisse purus urna, semper quis, laoreet " + -"in, vestibulum vel, arcu. Nunc elementum eros nec mauris. " + -"\n " + -"Vivamus congue pede at quam. Aliquam aliquam leo vel turpis. Ut " + -"commodo. Integer tincidunt sem a risus. Cras aliquam libero quis " + -"arcu. Integer posuere. Nulla malesuada, wisi ac elementum sollicitudin, " + -"libero libero molestie velit, eu faucibus est ante eu libero. Sed " + -"vestibulum, dolor ac ultricies consectetuer, tellus risus interdum diam, " + -"a imperdiet nibh eros eget mauris. Donec faucibus volutpat " + -"augue. Phasellus vitae arcu quis ipsum ultrices fermentum. Vivamus " + -"ultricies porta ligula. Nullam malesuada. Ut feugiat urna non " + -"turpis. Vivamus ipsum. Vivamus eleifend condimentum risus. Curabitur " + -"pede. Maecenas suscipit pretium tortor. Integer pellentesque. " + -"\n " + -"Mauris est. Aenean accumsan purus vitae ligula. Lorem ipsum dolor sit " + -"amet, consectetuer adipiscing elit. Nullam at mauris id turpis placerat " + -"accumsan. Sed pharetra metus ut ante. Aenean vel urna sit amet ante " + -"pretium dapibus. Sed nulla. Sed nonummy, lacus a suscipit semper, erat " + -"wisi convallis mi, et accumsan magna elit laoreet sem. Nam leo est, " + -"cursus ut, molestie ac, laoreet id, mauris. Suspendisse auctor nibh. " + - "\n"} - }; - - static string[] LoremIpsumWords; - - private const int WORKING_BUFFER_SIZE = 0x4000; - - } - - - -} +using System; +using System.Linq; +using System.Text; +using System.Collections.Generic; +using Ionic.BZip2; + +using Microsoft.VisualStudio.TestTools.UnitTesting; +using System.IO; + +namespace Ionic.BZip2.Tests +{ + /// + /// Summary description for UnitTest1 + /// + [TestClass] + public class UnitTest1 + { + private System.Random rnd; + + public UnitTest1() + { + this.rnd = new System.Random(); + FilesToRemove = new System.Collections.Generic.List(); + } + + static UnitTest1() + { + string lorem = TestStrings["LoremIpsum"]; + LoremIpsumWords = lorem.Split(" ".ToCharArray(), + System.StringSplitOptions.RemoveEmptyEntries); + } + + + private TestContext testContextInstance; + + /// + ///Gets or sets the test context which provides + ///information about and functionality for the current test run. + /// + public TestContext TestContext + { + get + { + return testContextInstance; + } + set + { + testContextInstance = value; + } + } + + #region Additional test attributes + // + // You can use the following additional attributes as you write your tests: + // + // Use ClassInitialize to run code before running the first test in the class + // [ClassInitialize()] + // public static void MyClassInitialize(TestContext testContext) { } + // + // Use ClassCleanup to run code after all tests in a class have run + // [ClassCleanup()] + // public static void MyClassCleanup() { } + // + // Use TestInitialize to run code before running each test + // [TestInitialize()] + // public void MyTestInitialize() { } + // + // Use TestCleanup to run code after each test has run + // [TestCleanup()] + // public void MyTestCleanup() { } + // + + private string CurrentDir = null; + private string TopLevelDir = null; + protected System.Collections.Generic.List FilesToRemove; + + // Use TestInitialize to run code before running each test + [TestInitialize()] + public void MyTestInitialize() + { + CurrentDir = System.IO.Directory.GetCurrentDirectory(); + Assert.AreNotEqual(System.IO.Path.GetFileName(CurrentDir), "Temp", "at start"); + + string parentDir = System.Environment.GetEnvironmentVariable("TEMP"); + + TopLevelDir = System.IO.Path.Combine(parentDir, String.Format("Ionic.ZlibTest-{0}.tmp", System.DateTime.Now.ToString("yyyyMMMdd-HHmmss"))); + System.IO.Directory.CreateDirectory(TopLevelDir); + System.IO.Directory.SetCurrentDirectory(TopLevelDir); + + FilesToRemove.Add(TopLevelDir); + } + + + // Use TestCleanup to run code after each test has run + [TestCleanup()] + public void MyTestCleanup() + { + Assert.AreNotEqual(Path.GetFileName(CurrentDir), "Temp", "at finish"); + Directory.SetCurrentDirectory(CurrentDir); + IOException GotException = null; + int Tries = 0; + do + { + try + { + GotException = null; + foreach (string filename in FilesToRemove) + { + if (Directory.Exists(filename)) + { + // turn off any ReadOnly attributes + ClearReadOnly(filename); + Directory.Delete(filename, true); + } + if (File.Exists(filename)) + { + File.Delete(filename); + } + } + Tries++; + } + catch (IOException ioexc) + { + GotException = ioexc; + // use an backoff interval before retry + System.Threading.Thread.Sleep(200 * Tries); + } + } while ((GotException != null) && (Tries < 4)); + if (GotException != null) throw GotException; + FilesToRemove.Clear(); + } + + + public static void ClearReadOnly(string dirname) + { + // don't traverse reparse points + if ((File.GetAttributes(dirname) & FileAttributes.ReparsePoint) != 0) + return; + + foreach (var d in Directory.GetDirectories(dirname)) + { + ClearReadOnly(d); // recurse + } + + foreach (var f in Directory.GetFiles(dirname)) + { + // clear ReadOnly and System attributes + var a = File.GetAttributes(f); + if ((a & FileAttributes.ReadOnly) == FileAttributes.ReadOnly) + { + a ^= FileAttributes.ReadOnly; + File.SetAttributes(f, a); + } + if ((a & FileAttributes.System) == FileAttributes.System) + { + a ^= FileAttributes.System; + File.SetAttributes(f, a); + } + } + } + + + #endregion + + #region Helpers + private static void CopyStream(System.IO.Stream src, System.IO.Stream dest) + { + byte[] buffer = new byte[4096]; + int n; + while ((n = src.Read(buffer, 0, buffer.Length)) > 0) + { + dest.Write(buffer, 0, n); + } + } + + private static string GetTestDependentDir(string startingPoint, string subdir) + { + var location = startingPoint; + for (int i = 0; i < 3; i++) + location = Path.GetDirectoryName(location); + + location = Path.Combine(location, subdir); + return location; + } + + private static string GetTestBinDir(string startingPoint) + { + return GetTestDependentDir(startingPoint, "BZip2 Tests\\bin\\Debug"); + } + + private string GetContentFile(string fileName) + { + string testBin = GetTestBinDir(CurrentDir); + string path = Path.Combine(testBin, String.Format("Resources\\{0}", fileName)); + Assert.IsTrue(File.Exists(path), "file ({0}) does not exist", path); + return path; + } + + private static Int32 GetCrc(string fname) + { + using (var fs1 = File.OpenRead(fname)) + { + var checker = new Ionic.Crc.CRC32(true); + return checker.GetCrc32(fs1); + } + } + + internal string Exec(string program, string args) + { + return Exec(program, args, true); + } + + internal string Exec(string program, string args, bool waitForExit) + { + return Exec(program, args, waitForExit, true); + } + + internal string Exec(string program, string args, bool waitForExit, bool emitOutput) + { + if (program == null) + throw new ArgumentException("program"); + + if (args == null) + throw new ArgumentException("args"); + + // Microsoft.VisualStudio.TestTools.UnitTesting + this.TestContext.WriteLine("running command: {0} {1}", program, args); + + string output; + int rc = Exec_NoContext(program, args, waitForExit, out output); + + if (rc != 0) + throw new Exception(String.Format("Non-zero RC {0}: {1}", program, output)); + + if (emitOutput) + this.TestContext.WriteLine("output: {0}", output); + else + this.TestContext.WriteLine("A-OK. (output suppressed)"); + + return output; + } + + internal static int Exec_NoContext(string program, string args, bool waitForExit, out string output) + { + System.Diagnostics.Process p = new System.Diagnostics.Process + { + StartInfo = + { + FileName = program, + CreateNoWindow = true, + Arguments = args, + WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden, + UseShellExecute = false, + } + + }; + + if (waitForExit) + { + StringBuilder sb = new StringBuilder(); + p.StartInfo.RedirectStandardOutput = true; + p.StartInfo.RedirectStandardError = true; + // must read at least one of the stderr or stdout asynchronously, + // to avoid deadlock + Action stdErrorRead = (o, e) => + { + if (!String.IsNullOrEmpty(e.Data)) + sb.Append(e.Data); + }; + + p.ErrorDataReceived += new System.Diagnostics.DataReceivedEventHandler(stdErrorRead); + p.Start(); + p.BeginErrorReadLine(); + output = p.StandardOutput.ReadToEnd(); + p.WaitForExit(); + if (sb.Length > 0) + output += sb.ToString(); + //output = CleanWzzipOut(output); // just in case + return p.ExitCode; + } + else + { + p.Start(); + } + output = ""; + return 0; + } + + + void CreateAndFillTextFile(string filename, Int64 minimumSize) + { + // fill the file with text data, selecting one word at a time + int L = LoremIpsumWords.Length - 2; + Int64 bytesRemaining = minimumSize; + using (StreamWriter sw = File.CreateText(filename)) + { + do + { + // pick a word at random + int n = this.rnd.Next(L); + int batchLength = LoremIpsumWords[n].Length + + LoremIpsumWords[n+1].Length + + LoremIpsumWords[n+2].Length + 3; + sw.Write(LoremIpsumWords[n]); + sw.Write(" "); + sw.Write(LoremIpsumWords[n+1]); + sw.Write(" "); + sw.Write(LoremIpsumWords[n+2]); + sw.Write(" "); + bytesRemaining -= batchLength; + } while (bytesRemaining > 0); + } + } + + #endregion + + + [TestMethod] + [Timeout(15 * 60*1000)] // 60*1000 = 1min + public void BZ_LargeParallel() + { + string filename = "LargeFile.txt"; + int minSize = 0x6000000 + this.rnd.Next(0x6000000); + TestContext.WriteLine("Creating large file, minimum {0} bytes", minSize); + + CreateAndFillTextFile(filename, minSize); + + Func[] getBzStream = { + new Func( s0 => { + return new Ionic.BZip2.BZip2OutputStream(s0); + }), + new Func( s1 => { + return new Ionic.BZip2.ParallelBZip2OutputStream(s1); + }) + }; + + var ts = new TimeSpan[2]; + for (int k=0; k < 2; k++) + { + var stopwatch = new System.Diagnostics.Stopwatch(); + TestContext.WriteLine("Trial {0}", k); + stopwatch.Start(); + string bzFname = Path.GetFileNameWithoutExtension(filename) + + "." + k + Path.GetExtension(filename) + ".bz2"; + using (Stream input = File.OpenRead(filename), + output = File.Create(bzFname), + compressor = getBzStream[k](output)) + { + CopyStream(input, compressor); + } + stopwatch.Stop(); + ts[k] = stopwatch.Elapsed; + TestContext.WriteLine("Trial complete {0} : {1}", k, ts[k]); + } + + Assert.IsTrue(ts[1][] getBzStream = { + new Func( s0 => { + var decorator = new Ionic.BZip2.BZip2OutputStream(s0, blockSize); + return decorator; + }), + new Func( s1 => { + var decorator = new Ionic.BZip2.ParallelBZip2OutputStream(s1, blockSize); + return decorator; + }) + }; + + int[] blockSizes = { 1,2,3,4,5,6,7,8,9 }; + + for (int k=0; k < getBzStream.Length; k++) + { + for (int m=0; m < blockSizes.Length; m++) + { + blockSize = blockSizes[m]; + var getStream = getBzStream[k]; + var root = Path.GetFileNameWithoutExtension(fname); + var ext = Path.GetExtension(fname); + // compress into bz2 + var bzFname = String.Format("{0}.{1}.blocksize{2}{3}.bz2", + root, + (k==0)?"SingleThread":"MultiThread", + blockSize, ext); + + TestContext.WriteLine("Compress cycle ({0},{1})", k,m); + TestContext.WriteLine("file {0}", bzFname); + using (var fs = File.OpenRead(fname)) + { + using (var output = File.Create(bzFname)) + { + using (var compressor = getStream(output)) + { + CopyStream(fs, compressor); + } + } + } + + TestContext.WriteLine("Decompress"); + var decompressedFname = Path.GetFileNameWithoutExtension(bzFname); + using (Stream fs = File.OpenRead(bzFname), + output = File.Create(decompressedFname), + decompressor = new Ionic.BZip2.BZip2InputStream(fs)) + { + CopyStream(decompressor, output); + } + + TestContext.WriteLine("Check CRC"); + int crcDecompressed = GetCrc(decompressedFname); + Assert.AreEqual(crcOriginal, crcDecompressed, + "CRC mismatch {0:X8} != {1:X8}", + crcOriginal, crcDecompressed); + TestContext.WriteLine(""); + + // just for the sake of disk space economy: + File.Delete(decompressedFname); + File.Delete(bzFname); + } + } + } + + + [TestMethod] + [ExpectedException(typeof(IOException))] + public void BZ_Error_1() + { + var bzbin = GetTestDependentDir(CurrentDir, "Tools\\BZip2\\bin\\Debug"); + var dnzBzip2exe = Path.Combine(bzbin, "bzip2.exe"); + string decompressedFname = "ThisWillNotWork.txt"; + using (Stream input = File.OpenRead(dnzBzip2exe), + decompressor = new Ionic.BZip2.BZip2InputStream(input), + output = File.Create(decompressedFname)) + CopyStream(decompressor, output); + } + + [TestMethod] + [ExpectedException(typeof(IOException))] + public void BZ_Error_2() + { + string decompressedFname = "ThisWillNotWork.txt"; + using (Stream input = new MemoryStream(), // empty stream + decompressor = new Ionic.BZip2.BZip2InputStream(input), + output = File.Create(decompressedFname)) + CopyStream(decompressor, output); + } + + + [TestMethod] + public void BZ_Utility() + { + var bzbin = GetTestDependentDir(CurrentDir, "Tools\\BZip2\\bin\\Debug"); + var dnzBzip2exe = Path.Combine(bzbin, "bzip2.exe"); + Assert.IsTrue(File.Exists(dnzBzip2exe), "Bzip2.exe is missing {0}", + dnzBzip2exe); + var unxBzip2exe = "\\bin\\bzip2.exe"; + Assert.IsTrue(File.Exists(unxBzip2exe), "Bzip2.exe is missing {0}", + unxBzip2exe); + + foreach (var key in TestStrings.Keys) + { + int count = this.rnd.Next(18) + 4; + TestContext.WriteLine("Doing string {0}", key); + var s = TestStrings[key]; + var fname = String.Format("Pippo-{0}.txt", key); + using (var sw = new StreamWriter(File.Create(fname))) + { + for (int k=0; k < count; k++) + { + sw.WriteLine(s); + } + } + + int crcOriginal = GetCrc(fname); + + string args = fname + " -keep -v"; + TestContext.WriteLine("Exec: bzip2 {0}", args); + string bzout = this.Exec(dnzBzip2exe, args); + + var bzfile = fname + ".bz2"; + Assert.IsTrue(File.Exists(bzfile), "File is missing. {0}", + bzfile); + + File.Delete(fname); + Assert.IsTrue(!File.Exists(fname), "The delete failed. {0}", + fname); + + System.Threading.Thread.Sleep(1200); + + args = "-dfk "+ bzfile; + TestContext.WriteLine("Exec: bzip2 {0}", args); + bzout = this.Exec(unxBzip2exe, args); + Assert.IsTrue(File.Exists(fname), "File is missing. {0}", + fname); + + int crcDecompressed = GetCrc(fname); + Assert.AreEqual(crcOriginal, crcDecompressed, + "CRC mismatch {0:X8}!={1:X8}", + crcOriginal, crcDecompressed); + } + } + + [TestMethod] + public void BZ_StreamCopy() + { + var src = new MemoryStream(Encoding.ASCII.GetBytes("Hello")); + + var ms = new MemoryStream(); + + using (var output = new BZip2OutputStream(ms, true)) + { + src.CopyTo(output); + } + + Assert.IsTrue(ms.Length > 0); + ms.Seek(0, SeekOrigin.Begin); + + using (var input = new BZip2InputStream(ms, true)) + { + var dst = new MemoryStream(); + input.CopyTo(dst); + + Assert.AreEqual(dst.Length, src.Length); + + src.Position = 0; + dst.Position = 0; + + while (src.Position != src.Length) + { + Assert.AreEqual(src.ReadByte(), dst.ReadByte()); + } + } + } + + [TestMethod] + public void BZ_Samples() + { + string testBin = GetTestBinDir(CurrentDir); + string resourceDir = Path.Combine(testBin, "Resources"); + var filesToDecompress = Directory.GetFiles(resourceDir, "*.bz2"); + + Assert.IsTrue(filesToDecompress.Length > 2, + "There are not enough sample files"); + + foreach (var filename in filesToDecompress) + { + TestContext.WriteLine("Decompressing {0}", filename); + var outFname = filename + ".decompressed"; + TestContext.WriteLine("Decompressing to {0}", outFname); + + using (var fs = File.OpenRead(filename)) + { + using (var output = File.Create(outFname)) + { + using (var decompressor = new Ionic.BZip2.BZip2InputStream(fs)) + { + CopyStream(decompressor, output); + } + } + } + TestContext.WriteLine(""); + } + } + + + + + internal static Dictionary TestStrings = new Dictionary() { + {"LetMeDoItNow", "I expect to pass through the world but once. Any good therefore that I can do, or any kindness I can show to any creature, let me do it now. Let me not defer it, for I shall not pass this way again. -- Anonymous, although some have attributed it to Stephen Grellet" }, + + {"UntilHeExtends", "Until he extends the circle of his compassion to all living things, man will not himself find peace. - Albert Schweitzer, early 20th-century German Nobel Peace Prize-winning mission doctor and theologian." }, + + {"WhatWouldThingsHaveBeenLike","'What would things have been like [in Russia] if during periods of mass arrests people had not simply sat there, paling with terror at every bang on the downstairs door and at every step on the staircase, but understood they had nothing to lose and had boldly set up in the downstairs hall an ambush of half a dozen people?' -- Alexander Solzhenitsyn" + }, + + {"GoPlacidly", + @"Go placidly amid the noise and haste, and remember what peace there may be in silence. + +As far as possible, without surrender, be on good terms with all persons. Speak your truth quietly and clearly; and listen to others, even to the dull and the ignorant, they too have their story. Avoid loud and aggressive persons, they are vexations to the spirit. + +If you compare yourself with others, you may become vain and bitter; for always there will be greater and lesser persons than yourself. Enjoy your achievements as well as your plans. Keep interested in your own career, however humble; it is a real possession in the changing fortunes of time. + +Exercise caution in your business affairs, for the world is full of trickery. But let this not blind you to what virtue there is; many persons strive for high ideals, and everywhere life is full of heroism. Be yourself. Especially, do not feign affection. Neither be cynical about love, for in the face of all aridity and disenchantment it is perennial as the grass. + +Take kindly to the counsel of the years, gracefully surrendering the things of youth. Nurture strength of spirit to shield you in sudden misfortune. But do not distress yourself with imaginings. Many fears are born of fatigue and loneliness. + +Beyond a wholesome discipline, be gentle with yourself. You are a child of the universe, no less than the trees and the stars; you have a right to be here. And whether or not it is clear to you, no doubt the universe is unfolding as it should. + +Therefore be at peace with God, whatever you conceive Him to be, and whatever your labors and aspirations, in the noisy confusion of life, keep peace in your soul. + +With all its sham, drudgery and broken dreams, it is still a beautiful world. + +Be cheerful. Strive to be happy. + +Max Ehrmann c.1920 +"}, + + {"IhaveaDream", @"Let us not wallow in the valley of despair, I say to you today, my friends. + +And so even though we face the difficulties of today and tomorrow, I still have a dream. It is a dream deeply rooted in the American dream. + +I have a dream that one day this nation will rise up and live out the true meaning of its creed: 'We hold these truths to be self-evident, that all men are created equal.' + +I have a dream that one day on the red hills of Georgia, the sons of former slaves and the sons of former slave owners will be able to sit down together at the table of brotherhood. + +I have a dream that one day even the state of Mississippi, a state sweltering with the heat of injustice, sweltering with the heat of oppression, will be transformed into an oasis of freedom and justice. + +I have a dream that my four little children will one day live in a nation where they will not be judged by the color of their skin but by the content of their character. + +I have a dream today! + +I have a dream that one day, down in Alabama, with its vicious racists, with its governor having his lips dripping with the words of 'interposition' and 'nullification' -- one day right there in Alabama little black boys and black girls will be able to join hands with little white boys and white girls as sisters and brothers. + +I have a dream today! + +I have a dream that one day every valley shall be exalted, and every hill and mountain shall be made low, the rough places will be made plain, and the crooked places will be made straight; 'and the glory of the Lord shall be revealed and all flesh shall see it together.'2 +"}, + + { "LoremIpsum", +"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer " + +"vulputate, nibh non rhoncus euismod, erat odio pellentesque lacus, sit " + +"amet convallis mi augue et odio. Phasellus cursus urna facilisis " + +"quam. Suspendisse nec metus et sapien scelerisque euismod. Nullam " + +"molestie sem quis nisl. Fusce pellentesque, ante sed semper egestas, sem " + +"nulla vestibulum nulla, quis sollicitudin leo lorem elementum " + +"wisi. Aliquam vestibulum nonummy orci. Sed in dolor sed enim ullamcorper " + +"accumsan. Duis vel nibh. Class aptent taciti sociosqu ad litora torquent " + +"per conubia nostra, per inceptos hymenaeos. Sed faucibus, enim sit amet " + +"venenatis laoreet, nisl elit posuere est, ut sollicitudin tortor velit " + +"ut ipsum. Aliquam erat volutpat. Phasellus tincidunt vehicula " + +"eros. Curabitur vitae erat. " + +"\n " + +"Quisque pharetra lacus quis sapien. Duis id est non wisi sagittis " + +"adipiscing. Nulla facilisi. Etiam quam erat, lobortis eu, facilisis nec, " + +"blandit hendrerit, metus. Fusce hendrerit. Nunc magna libero, " + +"sollicitudin non, vulputate non, ornare id, nulla. Suspendisse " + +"potenti. Nullam in mauris. Curabitur et nisl vel purus vehicula " + +"sodales. Class aptent taciti sociosqu ad litora torquent per conubia " + +"nostra, per inceptos hymenaeos. Cum sociis natoque penatibus et magnis " + +"dis parturient montes, nascetur ridiculus mus. Donec semper, arcu nec " + +"dignissim porta, eros odio tempus pede, et laoreet nibh arcu et " + +"nisl. Morbi pellentesque eleifend ante. Morbi dictum lorem non " + +"ante. Nullam et augue sit amet sapien varius mollis. " + +"\n " + +"Nulla erat lorem, fringilla eget, ultrices nec, dictum sed, " + +"sapien. Aliquam libero ligula, porttitor scelerisque, lobortis nec, " + +"dignissim eu, elit. Etiam feugiat, dui vitae laoreet faucibus, tellus " + +"urna molestie purus, sit amet pretium lorem pede in erat. Ut non libero " + +"et sapien porttitor eleifend. Vestibulum ante ipsum primis in faucibus " + +"orci luctus et ultrices posuere cubilia Curae; In at lorem et lacus " + +"feugiat iaculis. Nunc tempus eros nec arcu tristique egestas. Quisque " + +"metus arcu, pretium in, suscipit dictum, bibendum sit amet, " + +"mauris. Aliquam non urna. Suspendisse eget diam. Aliquam erat " + +"volutpat. In euismod aliquam lorem. Mauris dolor nisl, consectetuer sit " + +"amet, suscipit sodales, rutrum in, lorem. Nunc nec nisl. Nulla ante " + +"libero, aliquam porttitor, aliquet at, imperdiet sed, diam. Pellentesque " + +"tincidunt nisl et ipsum. Suspendisse purus urna, semper quis, laoreet " + +"in, vestibulum vel, arcu. Nunc elementum eros nec mauris. " + +"\n " + +"Vivamus congue pede at quam. Aliquam aliquam leo vel turpis. Ut " + +"commodo. Integer tincidunt sem a risus. Cras aliquam libero quis " + +"arcu. Integer posuere. Nulla malesuada, wisi ac elementum sollicitudin, " + +"libero libero molestie velit, eu faucibus est ante eu libero. Sed " + +"vestibulum, dolor ac ultricies consectetuer, tellus risus interdum diam, " + +"a imperdiet nibh eros eget mauris. Donec faucibus volutpat " + +"augue. Phasellus vitae arcu quis ipsum ultrices fermentum. Vivamus " + +"ultricies porta ligula. Nullam malesuada. Ut feugiat urna non " + +"turpis. Vivamus ipsum. Vivamus eleifend condimentum risus. Curabitur " + +"pede. Maecenas suscipit pretium tortor. Integer pellentesque. " + +"\n " + +"Mauris est. Aenean accumsan purus vitae ligula. Lorem ipsum dolor sit " + +"amet, consectetuer adipiscing elit. Nullam at mauris id turpis placerat " + +"accumsan. Sed pharetra metus ut ante. Aenean vel urna sit amet ante " + +"pretium dapibus. Sed nulla. Sed nonummy, lacus a suscipit semper, erat " + +"wisi convallis mi, et accumsan magna elit laoreet sem. Nam leo est, " + +"cursus ut, molestie ac, laoreet id, mauris. Suspendisse auctor nibh. " + + "\n"} + }; + + static string[] LoremIpsumWords; + + private const int WORKING_BUFFER_SIZE = 0x4000; + + } + + + +} diff --git a/src/BZip2 Tests/Bzip2 Tests.csproj b/old/src/BZip2 Tests/Bzip2 Tests.csproj similarity index 97% rename from src/BZip2 Tests/Bzip2 Tests.csproj rename to old/src/BZip2 Tests/Bzip2 Tests.csproj index 68f3da5..6d7fb1a 100644 --- a/src/BZip2 Tests/Bzip2 Tests.csproj +++ b/old/src/BZip2 Tests/Bzip2 Tests.csproj @@ -1,101 +1,101 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF} - Library - Properties - BZip2Test - BZip2Test - v4.0 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - - - - - - - - - - - 3.5 - - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - AllRules.ruleset - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - AllRules.ruleset - - - - - - - - - - Properties\SolutionInfo.cs - - - - - Always - - - Always - - - Always - - - - - {e2ce0d56-7af8-4404-bd0c-bc562cbd74d4} - BZip2 DLL - - - {c2241050-f23c-420b-aa67-60e94b34c2b2} - BZip2 - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF} + Library + Properties + BZip2Test + BZip2Test + v4.0 + 512 + {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + + + + + + + + + + + 3.5 + + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + AllRules.ruleset + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + AllRules.ruleset + + + + + + + + + + Properties\SolutionInfo.cs + + + + + Always + + + Always + + + Always + + + + + {e2ce0d56-7af8-4404-bd0c-bc562cbd74d4} + BZip2 DLL + + + {c2241050-f23c-420b-aa67-60e94b34c2b2} + BZip2 + + + + \ No newline at end of file diff --git a/src/BZip2 Tests/Properties/AssemblyInfo.cs b/old/src/BZip2 Tests/Properties/AssemblyInfo.cs similarity index 100% rename from src/BZip2 Tests/Properties/AssemblyInfo.cs rename to old/src/BZip2 Tests/Properties/AssemblyInfo.cs diff --git a/src/BZip2 Tests/Resources/dancing-color.ps.bz2 b/old/src/BZip2 Tests/Resources/dancing-color.ps.bz2 similarity index 100% rename from src/BZip2 Tests/Resources/dancing-color.ps.bz2 rename to old/src/BZip2 Tests/Resources/dancing-color.ps.bz2 diff --git a/src/BZip2 Tests/Resources/sample1.bz2 b/old/src/BZip2 Tests/Resources/sample1.bz2 similarity index 100% rename from src/BZip2 Tests/Resources/sample1.bz2 rename to old/src/BZip2 Tests/Resources/sample1.bz2 diff --git a/src/BZip2 Tests/Resources/sample2.bz2 b/old/src/BZip2 Tests/Resources/sample2.bz2 similarity index 100% rename from src/BZip2 Tests/Resources/sample2.bz2 rename to old/src/BZip2 Tests/Resources/sample2.bz2 diff --git a/src/BuildHelp.bat b/old/src/BuildHelp.bat similarity index 98% rename from src/BuildHelp.bat rename to old/src/BuildHelp.bat index 87b1f7b..ab236f0 100644 --- a/src/BuildHelp.bat +++ b/old/src/BuildHelp.bat @@ -1,3 +1,3 @@ -@REM "C:\Program Files\EWSoftware\Sandcastle Help File Builder\SandcastleBuilderConsole.exe" DotNetZip.shfb -c:\.net3.5\msbuild.exe /p:Configuration=Release Help\Dotnetzip.shfbproj -if exist c:\dinoch\dev\dotnet\pronounceword.exe (c:\dinoch\dev\dotnet\pronounceword.exe Build Complete > nul) +@REM "C:\Program Files\EWSoftware\Sandcastle Help File Builder\SandcastleBuilderConsole.exe" DotNetZip.shfb +c:\.net3.5\msbuild.exe /p:Configuration=Release Help\Dotnetzip.shfbproj +if exist c:\dinoch\dev\dotnet\pronounceword.exe (c:\dinoch\dev\dotnet\pronounceword.exe Build Complete > nul) diff --git a/src/BuildProcessTemplates/DefaultTemplate.11.1.xaml b/old/src/BuildProcessTemplates/DefaultTemplate.11.1.xaml similarity index 100% rename from src/BuildProcessTemplates/DefaultTemplate.11.1.xaml rename to old/src/BuildProcessTemplates/DefaultTemplate.11.1.xaml diff --git a/src/BuildProcessTemplates/DefaultTemplate.xaml b/old/src/BuildProcessTemplates/DefaultTemplate.xaml similarity index 99% rename from src/BuildProcessTemplates/DefaultTemplate.xaml rename to old/src/BuildProcessTemplates/DefaultTemplate.xaml index eae035b..12cc624 100644 --- a/src/BuildProcessTemplates/DefaultTemplate.xaml +++ b/old/src/BuildProcessTemplates/DefaultTemplate.xaml @@ -1,602 +1,602 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Assembly references and imported namespaces serialized as XML namespaces - - - True - - - - - - - - - True - - - - - - - True - - - - - - - - - - - True - - - - - - - - - - - - - - - - - - - - True - - - - - - - - - - - - - - - - - - - - - - - - - - - - True - - - - - - - - - - - - - - - - - - - True - - - - - - - - - - - - True - - - - - - - - - - - - - - True - - - - - - - - - - - - - - - - - - - True - - - - - - - - - - - - - - - - True - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - True - - - - - - - - - - - - - - - - - - - - - - True - - - - - - - - - True - - - - - - - - - - - - - - - True - - - - - - True - - - - - - - - - - - - - - - - - - - - - - - - - True - - - - - - - - - - - - - - - - - - False - - - - - - - - - - True - - - - - - - - - - - - - - - - - - - - - - - - - - True - - - - - - - - - - - - - - - - - - - - - True - - - - - - - - - - - - - - - - - - True - - - - - - - - - - - - - - - True - - - - - - - - - - - - - - - - - - - - - False - - - - - - - - - - True - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - False - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - True - - - - - - - - - - - - - - - - - - - - - - - - - False - - - - - - - - - - - - - - - - - - - - - - - - - - False - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Assembly references and imported namespaces serialized as XML namespaces + + + True + + + + + + + + + True + + + + + + + True + + + + + + + + + + + True + + + + + + + + + + + + + + + + + + + + True + + + + + + + + + + + + + + + + + + + + + + + + + + + + True + + + + + + + + + + + + + + + + + + + True + + + + + + + + + + + + True + + + + + + + + + + + + + + True + + + + + + + + + + + + + + + + + + + True + + + + + + + + + + + + + + + + True + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + True + + + + + + + + + + + + + + + + + + + + + + True + + + + + + + + + True + + + + + + + + + + + + + + + True + + + + + + True + + + + + + + + + + + + + + + + + + + + + + + + + True + + + + + + + + + + + + + + + + + + False + + + + + + + + + + True + + + + + + + + + + + + + + + + + + + + + + + + + + True + + + + + + + + + + + + + + + + + + + + + True + + + + + + + + + + + + + + + + + + True + + + + + + + + + + + + + + + True + + + + + + + + + + + + + + + + + + + + + False + + + + + + + + + + True + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + False + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + True + + + + + + + + + + + + + + + + + + + + + + + + + False + + + + + + + + + + + + + + + + + + + + + + + + + + False + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/BuildProcessTemplates/LabDefaultTemplate.11.xaml b/old/src/BuildProcessTemplates/LabDefaultTemplate.11.xaml similarity index 100% rename from src/BuildProcessTemplates/LabDefaultTemplate.11.xaml rename to old/src/BuildProcessTemplates/LabDefaultTemplate.11.xaml diff --git a/src/BuildProcessTemplates/UpgradeTemplate.xaml b/old/src/BuildProcessTemplates/UpgradeTemplate.xaml similarity index 98% rename from src/BuildProcessTemplates/UpgradeTemplate.xaml rename to old/src/BuildProcessTemplates/UpgradeTemplate.xaml index 4877aa3..166acb2 100644 --- a/src/BuildProcessTemplates/UpgradeTemplate.xaml +++ b/old/src/BuildProcessTemplates/UpgradeTemplate.xaml @@ -1,76 +1,76 @@ - - - - - - - - - - - - - - - - - - - - [New Microsoft.TeamFoundation.Build.Workflow.Activities.AgentSettings() With {.MaxWaitTime = New System.TimeSpan(4, 0, 0), .MaxExecutionTime = New System.TimeSpan(0, 0, 0), .TagComparison = Microsoft.TeamFoundation.Build.Workflow.Activities.TagComparison.MatchExactly }] - - - - [Microsoft.TeamFoundation.Build.Workflow.Activities.ToolPlatform.Auto] - [False] - [False] - - - - - - - - - - [Microsoft.TeamFoundation.VersionControl.Client.RecursionType.OneLevel] - [Microsoft.TeamFoundation.Build.Workflow.BuildVerbosity.Normal] - - - - All - Assembly references and imported namespaces serialized as XML namespaces - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + [New Microsoft.TeamFoundation.Build.Workflow.Activities.AgentSettings() With {.MaxWaitTime = New System.TimeSpan(4, 0, 0), .MaxExecutionTime = New System.TimeSpan(0, 0, 0), .TagComparison = Microsoft.TeamFoundation.Build.Workflow.Activities.TagComparison.MatchExactly }] + + + + [Microsoft.TeamFoundation.Build.Workflow.Activities.ToolPlatform.Auto] + [False] + [False] + + + + + + + + + + [Microsoft.TeamFoundation.VersionControl.Client.RecursionType.OneLevel] + [Microsoft.TeamFoundation.Build.Workflow.BuildVerbosity.Normal] + + + + All + Assembly references and imported namespaces serialized as XML namespaces + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/CommonSrc/CRC32.cs b/old/src/CommonSrc/CRC32.cs similarity index 100% rename from src/CommonSrc/CRC32.cs rename to old/src/CommonSrc/CRC32.cs diff --git a/src/DotNetZip-All.sln b/old/src/DotNetZip-All.sln similarity index 98% rename from src/DotNetZip-All.sln rename to old/src/DotNetZip-All.sln index e535187..4c66080 100644 --- a/src/DotNetZip-All.sln +++ b/old/src/DotNetZip-All.sln @@ -1,279 +1,279 @@ - -Microsoft Visual Studio Solution File, Format Version 11.00 -# Visual Studio 2010 -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{E1C14695-E75F-4317-919A-5341EA1F9C01}" - ProjectSection(SolutionItems) = preProject - DotNetZip.vsmdi = DotNetZip.vsmdi - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zip DLL", "Zip\Zip DLL.csproj", "{D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zip Tests", "Zip Tests\Zip Tests.csproj", "{549466CE-5CA6-4904-BA44-58141544BE70}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zlib DLL", "Zlib\Zlib DLL.csproj", "{9816BA86-9250-4C00-A912-25F07F8677D1}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zlib Tests", "Zlib Tests\Zlib Tests.csproj", "{047A98B2-BC96-41B4-ADD8-2167FB1B6502}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BZip2 DLL", "BZip2\BZip2 DLL.csproj", "{E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BZip2 Tests", "BZip2 Tests\BZip2 Tests.csproj", "{11DC3AE9-D19F-4426-A7C8-15F17DE815BF}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zip Reduced", "Zip Reduced\Zip Reduced.csproj", "{49A128D3-C3F2-46B1-8F7A-EECD209EA860}" -EndProject -Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "QuickUnzip", "Examples\VB\Quick-Unzip\QuickUnzip.vbproj", "{95D9690B-3B37-4800-A511-6FB21436638B}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZipDir", "Examples\C#\ZipDir\ZipDir.csproj", "{E04C2A53-3981-44D4-94AF-6AC07D97CDE8}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateZip", "Examples\C#\CreateZip\CreateZip.csproj", "{FB9FC8D7-7897-4802-9694-F379F25C00CB}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReadZip", "Examples\C#\ReadZip\ReadZip.csproj", "{F4024C01-1133-4A5A-B421-22EA8CA89EA5}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BZip2", "Tools\BZip2\BZip2.csproj", "{C2241050-F23C-420B-AA67-60E94B34C2B2}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GZip", "Tools\GZip\GZip.csproj", "{52542D59-25EC-4EE4-8AF2-85DE50C70EA6}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnZip", "Tools\UnZip\UnZip.csproj", "{A22C89E0-B5D4-4881-A61F-4B1FD82F2453}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZipIt", "Tools\ZipIt\ZipIt.csproj", "{98008721-C4DD-4F34-B3AE-A3453E29BB65}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConvertZipToSfx", "Tools\ConvertZipToSfx\ConvertZipToSfx.csproj", "{276B8174-A24E-4257-9969-42D692F8CAC2}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Win Forms App", "Tools\WinFormsApp\Win Forms App.csproj", "{6BCCF138-2EFB-464C-B872-E3079F0A4708}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZipTreeView", "Examples\C#\ZipTreeView\ZipTreeView.csproj", "{1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}" -EndProject -Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WinForms-TreeViewZip", "Examples\VB\WinForms-TreeViewZip\WinForms-TreeViewZip\WinForms-TreeViewZip.vbproj", "{2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{1BB61851-D01A-4788-8033-C1821FC3738B}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{E29C6340-FD50-4857-8C45-7BA227646B00}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Setups", "Setups", "{70D5B6AD-813F-4CBC-AB08-60045171C377}" -EndProject -Global - GlobalSection(TestCaseManagementSettings) = postSolution - CategoryFile = DotNetZip.vsmdi - EndGlobalSection - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Debug|Mixed Platforms = Debug|Mixed Platforms - Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU - Release|Mixed Platforms = Release|Mixed Platforms - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|x86.ActiveCfg = Debug|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|Any CPU.Build.0 = Release|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|x86.ActiveCfg = Release|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|Any CPU.Build.0 = Debug|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|x86.ActiveCfg = Debug|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Release|Any CPU.ActiveCfg = Release|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Release|Any CPU.Build.0 = Release|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Release|x86.ActiveCfg = Release|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|x86.ActiveCfg = Debug|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|Any CPU.Build.0 = Release|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|x86.ActiveCfg = Release|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|Any CPU.Build.0 = Debug|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|x86.ActiveCfg = Debug|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|Any CPU.ActiveCfg = Release|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|Any CPU.Build.0 = Release|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|x86.ActiveCfg = Release|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|x86.ActiveCfg = Debug|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|Any CPU.Build.0 = Release|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|x86.ActiveCfg = Release|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|Any CPU.Build.0 = Debug|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|x86.ActiveCfg = Debug|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|Any CPU.ActiveCfg = Release|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|Any CPU.Build.0 = Release|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|x86.ActiveCfg = Release|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|Any CPU.Build.0 = Debug|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|x86.ActiveCfg = Debug|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|Any CPU.ActiveCfg = Release|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|Any CPU.Build.0 = Release|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|x86.ActiveCfg = Release|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|x86.ActiveCfg = Debug|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Release|Any CPU.Build.0 = Release|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Release|x86.ActiveCfg = Release|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|x86.ActiveCfg = Debug|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|Any CPU.Build.0 = Release|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|x86.ActiveCfg = Release|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|x86.ActiveCfg = Debug|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|Any CPU.Build.0 = Release|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|x86.ActiveCfg = Release|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|x86.ActiveCfg = Debug|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|Any CPU.ActiveCfg = Release|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|Any CPU.Build.0 = Release|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|x86.ActiveCfg = Release|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|x86.ActiveCfg = Debug|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|Any CPU.Build.0 = Release|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|x86.ActiveCfg = Release|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|x86.ActiveCfg = Debug|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|Any CPU.Build.0 = Release|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|x86.ActiveCfg = Release|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|x86.ActiveCfg = Debug|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|Any CPU.Build.0 = Release|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|x86.ActiveCfg = Release|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|Any CPU.Build.0 = Debug|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|x86.ActiveCfg = Debug|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|Any CPU.ActiveCfg = Release|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|Any CPU.Build.0 = Release|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|x86.ActiveCfg = Release|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|x86.ActiveCfg = Debug|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|Any CPU.Build.0 = Release|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|x86.ActiveCfg = Release|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|x86.ActiveCfg = Debug|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|Any CPU.ActiveCfg = Release|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|Any CPU.Build.0 = Release|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|x86.ActiveCfg = Release|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|x86.ActiveCfg = Debug|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|Any CPU.Build.0 = Release|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|x86.ActiveCfg = Release|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|x86.ActiveCfg = Debug|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Any CPU.Build.0 = Release|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|x86.ActiveCfg = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {047A98B2-BC96-41B4-ADD8-2167FB1B6502} = {E29C6340-FD50-4857-8C45-7BA227646B00} - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF} = {E29C6340-FD50-4857-8C45-7BA227646B00} - {549466CE-5CA6-4904-BA44-58141544BE70} = {E29C6340-FD50-4857-8C45-7BA227646B00} - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} - {FB9FC8D7-7897-4802-9694-F379F25C00CB} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} - {F4024C01-1133-4A5A-B421-22EA8CA89EA5} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} - {95D9690B-3B37-4800-A511-6FB21436638B} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6} = {1BB61851-D01A-4788-8033-C1821FC3738B} - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453} = {1BB61851-D01A-4788-8033-C1821FC3738B} - {98008721-C4DD-4F34-B3AE-A3453E29BB65} = {1BB61851-D01A-4788-8033-C1821FC3738B} - {276B8174-A24E-4257-9969-42D692F8CAC2} = {1BB61851-D01A-4788-8033-C1821FC3738B} - {6BCCF138-2EFB-464C-B872-E3079F0A4708} = {1BB61851-D01A-4788-8033-C1821FC3738B} - {C2241050-F23C-420B-AA67-60E94B34C2B2} = {1BB61851-D01A-4788-8033-C1821FC3738B} - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{E1C14695-E75F-4317-919A-5341EA1F9C01}" + ProjectSection(SolutionItems) = preProject + DotNetZip.vsmdi = DotNetZip.vsmdi + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zip DLL", "Zip\Zip DLL.csproj", "{D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zip Tests", "Zip Tests\Zip Tests.csproj", "{549466CE-5CA6-4904-BA44-58141544BE70}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zlib DLL", "Zlib\Zlib DLL.csproj", "{9816BA86-9250-4C00-A912-25F07F8677D1}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zlib Tests", "Zlib Tests\Zlib Tests.csproj", "{047A98B2-BC96-41B4-ADD8-2167FB1B6502}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BZip2 DLL", "BZip2\BZip2 DLL.csproj", "{E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BZip2 Tests", "BZip2 Tests\BZip2 Tests.csproj", "{11DC3AE9-D19F-4426-A7C8-15F17DE815BF}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zip Reduced", "Zip Reduced\Zip Reduced.csproj", "{49A128D3-C3F2-46B1-8F7A-EECD209EA860}" +EndProject +Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "QuickUnzip", "Examples\VB\Quick-Unzip\QuickUnzip.vbproj", "{95D9690B-3B37-4800-A511-6FB21436638B}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZipDir", "Examples\C#\ZipDir\ZipDir.csproj", "{E04C2A53-3981-44D4-94AF-6AC07D97CDE8}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateZip", "Examples\C#\CreateZip\CreateZip.csproj", "{FB9FC8D7-7897-4802-9694-F379F25C00CB}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReadZip", "Examples\C#\ReadZip\ReadZip.csproj", "{F4024C01-1133-4A5A-B421-22EA8CA89EA5}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BZip2", "Tools\BZip2\BZip2.csproj", "{C2241050-F23C-420B-AA67-60E94B34C2B2}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GZip", "Tools\GZip\GZip.csproj", "{52542D59-25EC-4EE4-8AF2-85DE50C70EA6}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnZip", "Tools\UnZip\UnZip.csproj", "{A22C89E0-B5D4-4881-A61F-4B1FD82F2453}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZipIt", "Tools\ZipIt\ZipIt.csproj", "{98008721-C4DD-4F34-B3AE-A3453E29BB65}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConvertZipToSfx", "Tools\ConvertZipToSfx\ConvertZipToSfx.csproj", "{276B8174-A24E-4257-9969-42D692F8CAC2}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Win Forms App", "Tools\WinFormsApp\Win Forms App.csproj", "{6BCCF138-2EFB-464C-B872-E3079F0A4708}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZipTreeView", "Examples\C#\ZipTreeView\ZipTreeView.csproj", "{1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}" +EndProject +Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WinForms-TreeViewZip", "Examples\VB\WinForms-TreeViewZip\WinForms-TreeViewZip\WinForms-TreeViewZip.vbproj", "{2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{1BB61851-D01A-4788-8033-C1821FC3738B}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{E29C6340-FD50-4857-8C45-7BA227646B00}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Setups", "Setups", "{70D5B6AD-813F-4CBC-AB08-60045171C377}" +EndProject +Global + GlobalSection(TestCaseManagementSettings) = postSolution + CategoryFile = DotNetZip.vsmdi + EndGlobalSection + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|Mixed Platforms = Debug|Mixed Platforms + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|Mixed Platforms = Release|Mixed Platforms + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|x86.ActiveCfg = Debug|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|Any CPU.Build.0 = Release|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|x86.ActiveCfg = Release|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|Any CPU.Build.0 = Debug|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|x86.ActiveCfg = Debug|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Release|Any CPU.ActiveCfg = Release|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Release|Any CPU.Build.0 = Release|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Release|x86.ActiveCfg = Release|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|x86.ActiveCfg = Debug|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|Any CPU.Build.0 = Release|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|x86.ActiveCfg = Release|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|Any CPU.Build.0 = Debug|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|x86.ActiveCfg = Debug|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|Any CPU.ActiveCfg = Release|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|Any CPU.Build.0 = Release|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|x86.ActiveCfg = Release|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|x86.ActiveCfg = Debug|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|Any CPU.Build.0 = Release|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|x86.ActiveCfg = Release|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|x86.ActiveCfg = Debug|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|Any CPU.Build.0 = Release|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|x86.ActiveCfg = Release|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|Any CPU.Build.0 = Debug|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|x86.ActiveCfg = Debug|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|Any CPU.ActiveCfg = Release|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|Any CPU.Build.0 = Release|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|x86.ActiveCfg = Release|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|x86.ActiveCfg = Debug|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Release|Any CPU.Build.0 = Release|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Release|x86.ActiveCfg = Release|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|x86.ActiveCfg = Debug|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|Any CPU.Build.0 = Release|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|x86.ActiveCfg = Release|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|x86.ActiveCfg = Debug|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|Any CPU.Build.0 = Release|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|x86.ActiveCfg = Release|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|x86.ActiveCfg = Debug|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|Any CPU.Build.0 = Release|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|x86.ActiveCfg = Release|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|x86.ActiveCfg = Debug|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|Any CPU.Build.0 = Release|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|x86.ActiveCfg = Release|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|x86.ActiveCfg = Debug|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|Any CPU.Build.0 = Release|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|x86.ActiveCfg = Release|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|x86.ActiveCfg = Debug|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|Any CPU.Build.0 = Release|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|x86.ActiveCfg = Release|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|Any CPU.Build.0 = Debug|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|x86.ActiveCfg = Debug|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|Any CPU.ActiveCfg = Release|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|Any CPU.Build.0 = Release|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|x86.ActiveCfg = Release|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|x86.ActiveCfg = Debug|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|Any CPU.Build.0 = Release|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|x86.ActiveCfg = Release|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|x86.ActiveCfg = Debug|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|Any CPU.Build.0 = Release|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|x86.ActiveCfg = Release|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|x86.ActiveCfg = Debug|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|Any CPU.Build.0 = Release|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|x86.ActiveCfg = Release|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|x86.ActiveCfg = Debug|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Any CPU.Build.0 = Release|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|x86.ActiveCfg = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {047A98B2-BC96-41B4-ADD8-2167FB1B6502} = {E29C6340-FD50-4857-8C45-7BA227646B00} + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF} = {E29C6340-FD50-4857-8C45-7BA227646B00} + {549466CE-5CA6-4904-BA44-58141544BE70} = {E29C6340-FD50-4857-8C45-7BA227646B00} + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} + {FB9FC8D7-7897-4802-9694-F379F25C00CB} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} + {F4024C01-1133-4A5A-B421-22EA8CA89EA5} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} + {95D9690B-3B37-4800-A511-6FB21436638B} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6} = {1BB61851-D01A-4788-8033-C1821FC3738B} + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453} = {1BB61851-D01A-4788-8033-C1821FC3738B} + {98008721-C4DD-4F34-B3AE-A3453E29BB65} = {1BB61851-D01A-4788-8033-C1821FC3738B} + {276B8174-A24E-4257-9969-42D692F8CAC2} = {1BB61851-D01A-4788-8033-C1821FC3738B} + {6BCCF138-2EFB-464C-B872-E3079F0A4708} = {1BB61851-D01A-4788-8033-C1821FC3738B} + {C2241050-F23C-420B-AA67-60E94B34C2B2} = {1BB61851-D01A-4788-8033-C1821FC3738B} + EndGlobalSection +EndGlobal diff --git a/src/DotNetZip.sln b/old/src/DotNetZip.sln similarity index 98% rename from src/DotNetZip.sln rename to old/src/DotNetZip.sln index ebfc4cc..9f014a3 100644 --- a/src/DotNetZip.sln +++ b/old/src/DotNetZip.sln @@ -1,471 +1,471 @@ -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27130.2024 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{E1C14695-E75F-4317-919A-5341EA1F9C01}" - ProjectSection(SolutionItems) = preProject - DotNetZip.vsmdi = DotNetZip.vsmdi - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zip DLL", "Zip\Zip DLL.csproj", "{D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zip Tests", "Zip Tests\Zip Tests.csproj", "{549466CE-5CA6-4904-BA44-58141544BE70}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zlib DLL", "Zlib\Zlib DLL.csproj", "{9816BA86-9250-4C00-A912-25F07F8677D1}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zlib Tests", "Zlib Tests\Zlib Tests.csproj", "{047A98B2-BC96-41B4-ADD8-2167FB1B6502}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BZip2 DLL", "BZip2\BZip2 DLL.csproj", "{E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BZip2 Tests", "BZip2 Tests\BZip2 Tests.csproj", "{11DC3AE9-D19F-4426-A7C8-15F17DE815BF}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zip Reduced", "Zip Reduced\Zip Reduced.csproj", "{49A128D3-C3F2-46B1-8F7A-EECD209EA860}" -EndProject -Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "QuickUnzip", "Examples\VB\Quick-Unzip\QuickUnzip.vbproj", "{95D9690B-3B37-4800-A511-6FB21436638B}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZipDir", "Examples\C#\ZipDir\ZipDir.csproj", "{E04C2A53-3981-44D4-94AF-6AC07D97CDE8}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateZip", "Examples\C#\CreateZip\CreateZip.csproj", "{FB9FC8D7-7897-4802-9694-F379F25C00CB}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReadZip", "Examples\C#\ReadZip\ReadZip.csproj", "{F4024C01-1133-4A5A-B421-22EA8CA89EA5}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BZip2", "Tools\BZip2\BZip2.csproj", "{C2241050-F23C-420B-AA67-60E94B34C2B2}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GZip", "Tools\GZip\GZip.csproj", "{52542D59-25EC-4EE4-8AF2-85DE50C70EA6}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnZip", "Tools\UnZip\UnZip.csproj", "{A22C89E0-B5D4-4881-A61F-4B1FD82F2453}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZipIt", "Tools\ZipIt\ZipIt.csproj", "{98008721-C4DD-4F34-B3AE-A3453E29BB65}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConvertZipToSfx", "Tools\ConvertZipToSfx\ConvertZipToSfx.csproj", "{276B8174-A24E-4257-9969-42D692F8CAC2}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Win Forms App", "Tools\WinFormsApp\Win Forms App.csproj", "{6BCCF138-2EFB-464C-B872-E3079F0A4708}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZipTreeView", "Examples\C#\ZipTreeView\ZipTreeView.csproj", "{1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}" -EndProject -Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WinForms-TreeViewZip", "Examples\VB\WinForms-TreeViewZip\WinForms-TreeViewZip\WinForms-TreeViewZip.vbproj", "{2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{1BB61851-D01A-4788-8033-C1821FC3738B}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Portable", "Portable", "{7CFA8083-4960-4BFE-8DF0-16034C828CDE}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{E29C6340-FD50-4857-8C45-7BA227646B00}" -EndProject -Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Zlib.Shared", "Zlib.Shared\Zlib.Shared.shproj", "{C6B960DA-45D1-4D38-8697-05C0BA439503}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zlib.Portable", "Zlib.Portable\Zlib.Portable.csproj", "{27C3F919-13F1-4F71-A169-56EB5982CD6D}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zip.Android", "Zip.Android\Zip.Android.csproj", "{D4BC9EF7-EE33-461C-BCF5-AF0B48217061}" -EndProject -Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Zip.Shared", "Zip.Shared\Zip.Shared.shproj", "{7949FE94-56F9-4CC4-BA24-B9C3B3CDF325}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zip.iOS", "Zip.iOS\Zip.iOS.csproj", "{4AD2A092-2C90-4C76-A8D5-4B56F718626F}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Zip NetStandard", "Zip NetStandard\Zip NetStandard.csproj", "{C609AB31-BFBA-47BF-B0C4-CF0FE381C938}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ListContents", "ListContents\ListContents.csproj", "{D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}" -EndProject -Global - GlobalSection(SharedMSBuildProjectFiles) = preSolution - Zlib.Shared\Zlib.Shared.projitems*{27c3f919-13f1-4f71-a169-56eb5982cd6d}*SharedItemsImports = 4 - Zip.Shared\Zip.Shared.projitems*{49a128d3-c3f2-46b1-8f7a-eecd209ea860}*SharedItemsImports = 4 - Zlib.Shared\Zlib.Shared.projitems*{49a128d3-c3f2-46b1-8f7a-eecd209ea860}*SharedItemsImports = 4 - Zip.Shared\Zip.Shared.projitems*{4ad2a092-2c90-4c76-a8d5-4b56f718626f}*SharedItemsImports = 4 - Zip.Shared\Zip.Shared.projitems*{7949fe94-56f9-4cc4-ba24-b9c3b3cdf325}*SharedItemsImports = 13 - Zlib.Shared\Zlib.Shared.projitems*{9816ba86-9250-4c00-a912-25f07f8677d1}*SharedItemsImports = 4 - Zlib.Shared\Zlib.Shared.projitems*{c6b960da-45d1-4d38-8697-05c0ba439503}*SharedItemsImports = 13 - Zip.Shared\Zip.Shared.projitems*{d3b0ad67-44d8-4b3d-bed9-ce1fd6de2c5a}*SharedItemsImports = 4 - Zlib.Shared\Zlib.Shared.projitems*{d3b0ad67-44d8-4b3d-bed9-ce1fd6de2c5a}*SharedItemsImports = 4 - Zip.Shared\Zip.Shared.projitems*{d4bc9ef7-ee33-461c-bcf5-af0b48217061}*SharedItemsImports = 4 - EndGlobalSection - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Debug|ARM = Debug|ARM - Debug|Mixed Platforms = Debug|Mixed Platforms - Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU - Release|ARM = Release|ARM - Release|Mixed Platforms = Release|Mixed Platforms - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|ARM.ActiveCfg = Debug|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|ARM.Build.0 = Debug|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|x86.ActiveCfg = Debug|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|Any CPU.Build.0 = Release|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|ARM.ActiveCfg = Release|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|ARM.Build.0 = Release|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|x86.ActiveCfg = Release|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|Any CPU.Build.0 = Debug|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|ARM.ActiveCfg = Debug|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|ARM.Build.0 = Debug|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|x86.ActiveCfg = Debug|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Release|Any CPU.ActiveCfg = Release|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Release|Any CPU.Build.0 = Release|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Release|ARM.ActiveCfg = Release|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Release|ARM.Build.0 = Release|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {549466CE-5CA6-4904-BA44-58141544BE70}.Release|x86.ActiveCfg = Release|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|ARM.ActiveCfg = Debug|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|ARM.Build.0 = Debug|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|x86.ActiveCfg = Debug|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|Any CPU.Build.0 = Release|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|ARM.ActiveCfg = Release|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|ARM.Build.0 = Release|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|x86.ActiveCfg = Release|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|Any CPU.Build.0 = Debug|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|ARM.ActiveCfg = Debug|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|ARM.Build.0 = Debug|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|x86.ActiveCfg = Debug|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|Any CPU.ActiveCfg = Release|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|Any CPU.Build.0 = Release|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|ARM.ActiveCfg = Release|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|ARM.Build.0 = Release|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|x86.ActiveCfg = Release|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|ARM.ActiveCfg = Debug|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|ARM.Build.0 = Debug|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|x86.ActiveCfg = Debug|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|Any CPU.Build.0 = Release|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|ARM.ActiveCfg = Release|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|ARM.Build.0 = Release|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|x86.ActiveCfg = Release|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|Any CPU.Build.0 = Debug|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|ARM.ActiveCfg = Debug|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|ARM.Build.0 = Debug|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|x86.ActiveCfg = Debug|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|Any CPU.ActiveCfg = Release|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|Any CPU.Build.0 = Release|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|ARM.ActiveCfg = Release|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|ARM.Build.0 = Release|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|x86.ActiveCfg = Release|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|Any CPU.Build.0 = Debug|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|ARM.ActiveCfg = Debug|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|ARM.Build.0 = Debug|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|x86.ActiveCfg = Debug|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|Any CPU.ActiveCfg = Release|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|Any CPU.Build.0 = Release|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|ARM.ActiveCfg = Release|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|ARM.Build.0 = Release|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|x86.ActiveCfg = Release|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|ARM.ActiveCfg = Debug|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|ARM.Build.0 = Debug|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|x86.ActiveCfg = Debug|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Release|Any CPU.Build.0 = Release|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Release|ARM.ActiveCfg = Release|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Release|ARM.Build.0 = Release|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {95D9690B-3B37-4800-A511-6FB21436638B}.Release|x86.ActiveCfg = Release|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|ARM.ActiveCfg = Debug|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|ARM.Build.0 = Debug|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|x86.ActiveCfg = Debug|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|Any CPU.Build.0 = Release|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|ARM.ActiveCfg = Release|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|ARM.Build.0 = Release|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|x86.ActiveCfg = Release|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|ARM.ActiveCfg = Debug|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|ARM.Build.0 = Debug|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|x86.ActiveCfg = Debug|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|Any CPU.Build.0 = Release|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|ARM.ActiveCfg = Release|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|ARM.Build.0 = Release|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|x86.ActiveCfg = Release|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|ARM.ActiveCfg = Debug|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|ARM.Build.0 = Debug|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|x86.ActiveCfg = Debug|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|Any CPU.ActiveCfg = Release|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|Any CPU.Build.0 = Release|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|ARM.ActiveCfg = Release|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|ARM.Build.0 = Release|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|x86.ActiveCfg = Release|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|ARM.ActiveCfg = Debug|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|ARM.Build.0 = Debug|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|x86.ActiveCfg = Debug|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|Any CPU.Build.0 = Release|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|ARM.ActiveCfg = Release|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|ARM.Build.0 = Release|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|x86.ActiveCfg = Release|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|ARM.ActiveCfg = Debug|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|ARM.Build.0 = Debug|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|x86.ActiveCfg = Debug|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|Any CPU.Build.0 = Release|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|ARM.ActiveCfg = Release|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|ARM.Build.0 = Release|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|x86.ActiveCfg = Release|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|ARM.ActiveCfg = Debug|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|ARM.Build.0 = Debug|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|x86.ActiveCfg = Debug|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|Any CPU.Build.0 = Release|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|ARM.ActiveCfg = Release|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|ARM.Build.0 = Release|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|x86.ActiveCfg = Release|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|Any CPU.Build.0 = Debug|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|ARM.ActiveCfg = Debug|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|ARM.Build.0 = Debug|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|x86.ActiveCfg = Debug|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|Any CPU.ActiveCfg = Release|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|Any CPU.Build.0 = Release|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|ARM.ActiveCfg = Release|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|ARM.Build.0 = Release|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|x86.ActiveCfg = Release|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|ARM.ActiveCfg = Debug|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|ARM.Build.0 = Debug|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|x86.ActiveCfg = Debug|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|Any CPU.Build.0 = Release|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|ARM.ActiveCfg = Release|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|ARM.Build.0 = Release|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|x86.ActiveCfg = Release|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|ARM.ActiveCfg = Debug|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|ARM.Build.0 = Debug|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|x86.ActiveCfg = Debug|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|Any CPU.ActiveCfg = Release|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|Any CPU.Build.0 = Release|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|ARM.ActiveCfg = Release|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|ARM.Build.0 = Release|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|x86.ActiveCfg = Release|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|ARM.ActiveCfg = Debug|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|ARM.Build.0 = Debug|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|x86.ActiveCfg = Debug|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|Any CPU.Build.0 = Release|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|ARM.ActiveCfg = Release|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|ARM.Build.0 = Release|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|x86.ActiveCfg = Release|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|ARM.ActiveCfg = Debug|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|ARM.Build.0 = Debug|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|x86.ActiveCfg = Debug|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Any CPU.Build.0 = Release|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|ARM.ActiveCfg = Release|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|ARM.Build.0 = Release|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|x86.ActiveCfg = Release|Any CPU - {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Debug|ARM.ActiveCfg = Debug|Any CPU - {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Debug|ARM.Build.0 = Debug|Any CPU - {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Debug|x86.ActiveCfg = Debug|Any CPU - {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Debug|x86.Build.0 = Debug|Any CPU - {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Release|Any CPU.Build.0 = Release|Any CPU - {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Release|ARM.ActiveCfg = Release|Any CPU - {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Release|ARM.Build.0 = Release|Any CPU - {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Release|x86.ActiveCfg = Release|Any CPU - {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Release|x86.Build.0 = Release|Any CPU - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Debug|ARM.ActiveCfg = Debug|Any CPU - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Debug|ARM.Build.0 = Debug|Any CPU - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Debug|x86.ActiveCfg = Debug|Any CPU - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Debug|x86.Build.0 = Debug|Any CPU - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Release|Any CPU.Build.0 = Release|Any CPU - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Release|ARM.ActiveCfg = Release|Any CPU - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Release|ARM.Build.0 = Release|Any CPU - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Release|x86.ActiveCfg = Release|Any CPU - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Release|x86.Build.0 = Release|Any CPU - {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Debug|ARM.ActiveCfg = Debug|Any CPU - {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Debug|ARM.Build.0 = Debug|Any CPU - {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Debug|x86.ActiveCfg = Debug|Any CPU - {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Debug|x86.Build.0 = Debug|Any CPU - {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Release|Any CPU.Build.0 = Release|Any CPU - {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Release|ARM.ActiveCfg = Release|Any CPU - {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Release|ARM.Build.0 = Release|Any CPU - {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Release|x86.ActiveCfg = Release|Any CPU - {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Release|x86.Build.0 = Release|Any CPU - {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Debug|ARM.ActiveCfg = Debug|Any CPU - {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Debug|ARM.Build.0 = Debug|Any CPU - {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Debug|x86.ActiveCfg = Debug|Any CPU - {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Debug|x86.Build.0 = Debug|Any CPU - {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Release|Any CPU.Build.0 = Release|Any CPU - {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Release|ARM.ActiveCfg = Release|Any CPU - {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Release|ARM.Build.0 = Release|Any CPU - {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Release|x86.ActiveCfg = Release|Any CPU - {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Release|x86.Build.0 = Release|Any CPU - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Debug|ARM.ActiveCfg = Debug|Any CPU - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Debug|ARM.Build.0 = Debug|Any CPU - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Debug|x86.ActiveCfg = Debug|Any CPU - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Debug|x86.Build.0 = Debug|Any CPU - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Release|Any CPU.Build.0 = Release|Any CPU - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Release|ARM.ActiveCfg = Release|Any CPU - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Release|ARM.Build.0 = Release|Any CPU - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Release|x86.ActiveCfg = Release|Any CPU - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Release|x86.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {549466CE-5CA6-4904-BA44-58141544BE70} = {E29C6340-FD50-4857-8C45-7BA227646B00} - {047A98B2-BC96-41B4-ADD8-2167FB1B6502} = {E29C6340-FD50-4857-8C45-7BA227646B00} - {11DC3AE9-D19F-4426-A7C8-15F17DE815BF} = {E29C6340-FD50-4857-8C45-7BA227646B00} - {95D9690B-3B37-4800-A511-6FB21436638B} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} - {FB9FC8D7-7897-4802-9694-F379F25C00CB} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} - {F4024C01-1133-4A5A-B421-22EA8CA89EA5} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} - {C2241050-F23C-420B-AA67-60E94B34C2B2} = {1BB61851-D01A-4788-8033-C1821FC3738B} - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6} = {1BB61851-D01A-4788-8033-C1821FC3738B} - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453} = {1BB61851-D01A-4788-8033-C1821FC3738B} - {98008721-C4DD-4F34-B3AE-A3453E29BB65} = {1BB61851-D01A-4788-8033-C1821FC3738B} - {276B8174-A24E-4257-9969-42D692F8CAC2} = {1BB61851-D01A-4788-8033-C1821FC3738B} - {6BCCF138-2EFB-464C-B872-E3079F0A4708} = {1BB61851-D01A-4788-8033-C1821FC3738B} - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} - {27C3F919-13F1-4F71-A169-56EB5982CD6D} = {7CFA8083-4960-4BFE-8DF0-16034C828CDE} - {D4BC9EF7-EE33-461C-BCF5-AF0B48217061} = {7CFA8083-4960-4BFE-8DF0-16034C828CDE} - {4AD2A092-2C90-4C76-A8D5-4B56F718626F} = {7CFA8083-4960-4BFE-8DF0-16034C828CDE} - {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {6C3B477A-4BA3-4067-BDE0-0B28496004B7} - EndGlobalSection - GlobalSection(TestCaseManagementSettings) = postSolution - CategoryFile = DotNetZip.vsmdi - EndGlobalSection -EndGlobal +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27130.2024 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{E1C14695-E75F-4317-919A-5341EA1F9C01}" + ProjectSection(SolutionItems) = preProject + DotNetZip.vsmdi = DotNetZip.vsmdi + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zip DLL", "Zip\Zip DLL.csproj", "{D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zip Tests", "Zip Tests\Zip Tests.csproj", "{549466CE-5CA6-4904-BA44-58141544BE70}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zlib DLL", "Zlib\Zlib DLL.csproj", "{9816BA86-9250-4C00-A912-25F07F8677D1}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zlib Tests", "Zlib Tests\Zlib Tests.csproj", "{047A98B2-BC96-41B4-ADD8-2167FB1B6502}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BZip2 DLL", "BZip2\BZip2 DLL.csproj", "{E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BZip2 Tests", "BZip2 Tests\BZip2 Tests.csproj", "{11DC3AE9-D19F-4426-A7C8-15F17DE815BF}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zip Reduced", "Zip Reduced\Zip Reduced.csproj", "{49A128D3-C3F2-46B1-8F7A-EECD209EA860}" +EndProject +Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "QuickUnzip", "Examples\VB\Quick-Unzip\QuickUnzip.vbproj", "{95D9690B-3B37-4800-A511-6FB21436638B}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZipDir", "Examples\C#\ZipDir\ZipDir.csproj", "{E04C2A53-3981-44D4-94AF-6AC07D97CDE8}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateZip", "Examples\C#\CreateZip\CreateZip.csproj", "{FB9FC8D7-7897-4802-9694-F379F25C00CB}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReadZip", "Examples\C#\ReadZip\ReadZip.csproj", "{F4024C01-1133-4A5A-B421-22EA8CA89EA5}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BZip2", "Tools\BZip2\BZip2.csproj", "{C2241050-F23C-420B-AA67-60E94B34C2B2}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GZip", "Tools\GZip\GZip.csproj", "{52542D59-25EC-4EE4-8AF2-85DE50C70EA6}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnZip", "Tools\UnZip\UnZip.csproj", "{A22C89E0-B5D4-4881-A61F-4B1FD82F2453}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZipIt", "Tools\ZipIt\ZipIt.csproj", "{98008721-C4DD-4F34-B3AE-A3453E29BB65}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConvertZipToSfx", "Tools\ConvertZipToSfx\ConvertZipToSfx.csproj", "{276B8174-A24E-4257-9969-42D692F8CAC2}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Win Forms App", "Tools\WinFormsApp\Win Forms App.csproj", "{6BCCF138-2EFB-464C-B872-E3079F0A4708}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZipTreeView", "Examples\C#\ZipTreeView\ZipTreeView.csproj", "{1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}" +EndProject +Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WinForms-TreeViewZip", "Examples\VB\WinForms-TreeViewZip\WinForms-TreeViewZip\WinForms-TreeViewZip.vbproj", "{2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{1BB61851-D01A-4788-8033-C1821FC3738B}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Portable", "Portable", "{7CFA8083-4960-4BFE-8DF0-16034C828CDE}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{E29C6340-FD50-4857-8C45-7BA227646B00}" +EndProject +Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Zlib.Shared", "Zlib.Shared\Zlib.Shared.shproj", "{C6B960DA-45D1-4D38-8697-05C0BA439503}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zlib.Portable", "Zlib.Portable\Zlib.Portable.csproj", "{27C3F919-13F1-4F71-A169-56EB5982CD6D}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zip.Android", "Zip.Android\Zip.Android.csproj", "{D4BC9EF7-EE33-461C-BCF5-AF0B48217061}" +EndProject +Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Zip.Shared", "Zip.Shared\Zip.Shared.shproj", "{7949FE94-56F9-4CC4-BA24-B9C3B3CDF325}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Zip.iOS", "Zip.iOS\Zip.iOS.csproj", "{4AD2A092-2C90-4C76-A8D5-4B56F718626F}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Zip NetStandard", "Zip NetStandard\Zip NetStandard.csproj", "{C609AB31-BFBA-47BF-B0C4-CF0FE381C938}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ListContents", "ListContents\ListContents.csproj", "{D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}" +EndProject +Global + GlobalSection(SharedMSBuildProjectFiles) = preSolution + Zlib.Shared\Zlib.Shared.projitems*{27c3f919-13f1-4f71-a169-56eb5982cd6d}*SharedItemsImports = 4 + Zip.Shared\Zip.Shared.projitems*{49a128d3-c3f2-46b1-8f7a-eecd209ea860}*SharedItemsImports = 4 + Zlib.Shared\Zlib.Shared.projitems*{49a128d3-c3f2-46b1-8f7a-eecd209ea860}*SharedItemsImports = 4 + Zip.Shared\Zip.Shared.projitems*{4ad2a092-2c90-4c76-a8d5-4b56f718626f}*SharedItemsImports = 4 + Zip.Shared\Zip.Shared.projitems*{7949fe94-56f9-4cc4-ba24-b9c3b3cdf325}*SharedItemsImports = 13 + Zlib.Shared\Zlib.Shared.projitems*{9816ba86-9250-4c00-a912-25f07f8677d1}*SharedItemsImports = 4 + Zlib.Shared\Zlib.Shared.projitems*{c6b960da-45d1-4d38-8697-05c0ba439503}*SharedItemsImports = 13 + Zip.Shared\Zip.Shared.projitems*{d3b0ad67-44d8-4b3d-bed9-ce1fd6de2c5a}*SharedItemsImports = 4 + Zlib.Shared\Zlib.Shared.projitems*{d3b0ad67-44d8-4b3d-bed9-ce1fd6de2c5a}*SharedItemsImports = 4 + Zip.Shared\Zip.Shared.projitems*{d4bc9ef7-ee33-461c-bcf5-af0b48217061}*SharedItemsImports = 4 + EndGlobalSection + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|ARM = Debug|ARM + Debug|Mixed Platforms = Debug|Mixed Platforms + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|ARM = Release|ARM + Release|Mixed Platforms = Release|Mixed Platforms + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|ARM.ActiveCfg = Debug|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|ARM.Build.0 = Debug|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Debug|x86.ActiveCfg = Debug|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|Any CPU.Build.0 = Release|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|ARM.ActiveCfg = Release|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|ARM.Build.0 = Release|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A}.Release|x86.ActiveCfg = Release|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|Any CPU.Build.0 = Debug|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|ARM.ActiveCfg = Debug|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|ARM.Build.0 = Debug|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Debug|x86.ActiveCfg = Debug|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Release|Any CPU.ActiveCfg = Release|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Release|Any CPU.Build.0 = Release|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Release|ARM.ActiveCfg = Release|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Release|ARM.Build.0 = Release|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {549466CE-5CA6-4904-BA44-58141544BE70}.Release|x86.ActiveCfg = Release|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|ARM.ActiveCfg = Debug|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|ARM.Build.0 = Debug|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Debug|x86.ActiveCfg = Debug|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|Any CPU.Build.0 = Release|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|ARM.ActiveCfg = Release|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|ARM.Build.0 = Release|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {9816BA86-9250-4C00-A912-25F07F8677D1}.Release|x86.ActiveCfg = Release|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|Any CPU.Build.0 = Debug|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|ARM.ActiveCfg = Debug|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|ARM.Build.0 = Debug|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Debug|x86.ActiveCfg = Debug|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|Any CPU.ActiveCfg = Release|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|Any CPU.Build.0 = Release|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|ARM.ActiveCfg = Release|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|ARM.Build.0 = Release|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {047A98B2-BC96-41B4-ADD8-2167FB1B6502}.Release|x86.ActiveCfg = Release|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|ARM.ActiveCfg = Debug|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|ARM.Build.0 = Debug|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Debug|x86.ActiveCfg = Debug|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|Any CPU.Build.0 = Release|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|ARM.ActiveCfg = Release|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|ARM.Build.0 = Release|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4}.Release|x86.ActiveCfg = Release|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|ARM.ActiveCfg = Debug|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|ARM.Build.0 = Debug|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Debug|x86.ActiveCfg = Debug|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|Any CPU.Build.0 = Release|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|ARM.ActiveCfg = Release|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|ARM.Build.0 = Release|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF}.Release|x86.ActiveCfg = Release|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|Any CPU.Build.0 = Debug|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|ARM.ActiveCfg = Debug|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|ARM.Build.0 = Debug|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Debug|x86.ActiveCfg = Debug|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|Any CPU.ActiveCfg = Release|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|Any CPU.Build.0 = Release|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|ARM.ActiveCfg = Release|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|ARM.Build.0 = Release|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {49A128D3-C3F2-46B1-8F7A-EECD209EA860}.Release|x86.ActiveCfg = Release|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|ARM.ActiveCfg = Debug|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|ARM.Build.0 = Debug|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Debug|x86.ActiveCfg = Debug|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Release|Any CPU.Build.0 = Release|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Release|ARM.ActiveCfg = Release|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Release|ARM.Build.0 = Release|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {95D9690B-3B37-4800-A511-6FB21436638B}.Release|x86.ActiveCfg = Release|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|ARM.ActiveCfg = Debug|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|ARM.Build.0 = Debug|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Debug|x86.ActiveCfg = Debug|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|Any CPU.Build.0 = Release|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|ARM.ActiveCfg = Release|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|ARM.Build.0 = Release|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8}.Release|x86.ActiveCfg = Release|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|ARM.ActiveCfg = Debug|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|ARM.Build.0 = Debug|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Debug|x86.ActiveCfg = Debug|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|Any CPU.Build.0 = Release|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|ARM.ActiveCfg = Release|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|ARM.Build.0 = Release|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {FB9FC8D7-7897-4802-9694-F379F25C00CB}.Release|x86.ActiveCfg = Release|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|ARM.ActiveCfg = Debug|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|ARM.Build.0 = Debug|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Debug|x86.ActiveCfg = Debug|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|Any CPU.Build.0 = Release|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|ARM.ActiveCfg = Release|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|ARM.Build.0 = Release|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {F4024C01-1133-4A5A-B421-22EA8CA89EA5}.Release|x86.ActiveCfg = Release|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|ARM.ActiveCfg = Debug|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|ARM.Build.0 = Debug|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Debug|x86.ActiveCfg = Debug|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|Any CPU.Build.0 = Release|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|ARM.ActiveCfg = Release|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|ARM.Build.0 = Release|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {C2241050-F23C-420B-AA67-60E94B34C2B2}.Release|x86.ActiveCfg = Release|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|ARM.ActiveCfg = Debug|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|ARM.Build.0 = Debug|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Debug|x86.ActiveCfg = Debug|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|Any CPU.Build.0 = Release|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|ARM.ActiveCfg = Release|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|ARM.Build.0 = Release|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6}.Release|x86.ActiveCfg = Release|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|ARM.ActiveCfg = Debug|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|ARM.Build.0 = Debug|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Debug|x86.ActiveCfg = Debug|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|Any CPU.Build.0 = Release|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|ARM.ActiveCfg = Release|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|ARM.Build.0 = Release|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453}.Release|x86.ActiveCfg = Release|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|Any CPU.Build.0 = Debug|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|ARM.ActiveCfg = Debug|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|ARM.Build.0 = Debug|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Debug|x86.ActiveCfg = Debug|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|Any CPU.ActiveCfg = Release|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|Any CPU.Build.0 = Release|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|ARM.ActiveCfg = Release|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|ARM.Build.0 = Release|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {98008721-C4DD-4F34-B3AE-A3453E29BB65}.Release|x86.ActiveCfg = Release|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|ARM.ActiveCfg = Debug|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|ARM.Build.0 = Debug|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Debug|x86.ActiveCfg = Debug|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|Any CPU.Build.0 = Release|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|ARM.ActiveCfg = Release|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|ARM.Build.0 = Release|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {276B8174-A24E-4257-9969-42D692F8CAC2}.Release|x86.ActiveCfg = Release|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|ARM.ActiveCfg = Debug|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|ARM.Build.0 = Debug|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Debug|x86.ActiveCfg = Debug|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|Any CPU.Build.0 = Release|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|ARM.ActiveCfg = Release|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|ARM.Build.0 = Release|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {6BCCF138-2EFB-464C-B872-E3079F0A4708}.Release|x86.ActiveCfg = Release|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|ARM.ActiveCfg = Debug|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|ARM.Build.0 = Debug|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Debug|x86.ActiveCfg = Debug|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|Any CPU.Build.0 = Release|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|ARM.ActiveCfg = Release|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|ARM.Build.0 = Release|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF}.Release|x86.ActiveCfg = Release|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|ARM.ActiveCfg = Debug|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|ARM.Build.0 = Debug|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|x86.ActiveCfg = Debug|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Any CPU.Build.0 = Release|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|ARM.ActiveCfg = Release|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|ARM.Build.0 = Release|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|x86.ActiveCfg = Release|Any CPU + {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Debug|ARM.ActiveCfg = Debug|Any CPU + {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Debug|ARM.Build.0 = Debug|Any CPU + {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Debug|x86.ActiveCfg = Debug|Any CPU + {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Debug|x86.Build.0 = Debug|Any CPU + {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Release|Any CPU.Build.0 = Release|Any CPU + {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Release|ARM.ActiveCfg = Release|Any CPU + {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Release|ARM.Build.0 = Release|Any CPU + {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Release|x86.ActiveCfg = Release|Any CPU + {27C3F919-13F1-4F71-A169-56EB5982CD6D}.Release|x86.Build.0 = Release|Any CPU + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Debug|ARM.ActiveCfg = Debug|Any CPU + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Debug|ARM.Build.0 = Debug|Any CPU + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Debug|x86.ActiveCfg = Debug|Any CPU + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Debug|x86.Build.0 = Debug|Any CPU + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Release|Any CPU.Build.0 = Release|Any CPU + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Release|ARM.ActiveCfg = Release|Any CPU + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Release|ARM.Build.0 = Release|Any CPU + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Release|x86.ActiveCfg = Release|Any CPU + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061}.Release|x86.Build.0 = Release|Any CPU + {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Debug|ARM.ActiveCfg = Debug|Any CPU + {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Debug|ARM.Build.0 = Debug|Any CPU + {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Debug|x86.ActiveCfg = Debug|Any CPU + {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Debug|x86.Build.0 = Debug|Any CPU + {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Release|Any CPU.Build.0 = Release|Any CPU + {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Release|ARM.ActiveCfg = Release|Any CPU + {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Release|ARM.Build.0 = Release|Any CPU + {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Release|x86.ActiveCfg = Release|Any CPU + {4AD2A092-2C90-4C76-A8D5-4B56F718626F}.Release|x86.Build.0 = Release|Any CPU + {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Debug|ARM.ActiveCfg = Debug|Any CPU + {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Debug|ARM.Build.0 = Debug|Any CPU + {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Debug|x86.ActiveCfg = Debug|Any CPU + {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Debug|x86.Build.0 = Debug|Any CPU + {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Release|Any CPU.Build.0 = Release|Any CPU + {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Release|ARM.ActiveCfg = Release|Any CPU + {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Release|ARM.Build.0 = Release|Any CPU + {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Release|x86.ActiveCfg = Release|Any CPU + {C609AB31-BFBA-47BF-B0C4-CF0FE381C938}.Release|x86.Build.0 = Release|Any CPU + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Debug|ARM.ActiveCfg = Debug|Any CPU + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Debug|ARM.Build.0 = Debug|Any CPU + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Debug|x86.ActiveCfg = Debug|Any CPU + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Debug|x86.Build.0 = Debug|Any CPU + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Release|Any CPU.Build.0 = Release|Any CPU + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Release|ARM.ActiveCfg = Release|Any CPU + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Release|ARM.Build.0 = Release|Any CPU + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Release|x86.ActiveCfg = Release|Any CPU + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {549466CE-5CA6-4904-BA44-58141544BE70} = {E29C6340-FD50-4857-8C45-7BA227646B00} + {047A98B2-BC96-41B4-ADD8-2167FB1B6502} = {E29C6340-FD50-4857-8C45-7BA227646B00} + {11DC3AE9-D19F-4426-A7C8-15F17DE815BF} = {E29C6340-FD50-4857-8C45-7BA227646B00} + {95D9690B-3B37-4800-A511-6FB21436638B} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} + {FB9FC8D7-7897-4802-9694-F379F25C00CB} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} + {F4024C01-1133-4A5A-B421-22EA8CA89EA5} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} + {C2241050-F23C-420B-AA67-60E94B34C2B2} = {1BB61851-D01A-4788-8033-C1821FC3738B} + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6} = {1BB61851-D01A-4788-8033-C1821FC3738B} + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453} = {1BB61851-D01A-4788-8033-C1821FC3738B} + {98008721-C4DD-4F34-B3AE-A3453E29BB65} = {1BB61851-D01A-4788-8033-C1821FC3738B} + {276B8174-A24E-4257-9969-42D692F8CAC2} = {1BB61851-D01A-4788-8033-C1821FC3738B} + {6BCCF138-2EFB-464C-B872-E3079F0A4708} = {1BB61851-D01A-4788-8033-C1821FC3738B} + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} + {27C3F919-13F1-4F71-A169-56EB5982CD6D} = {7CFA8083-4960-4BFE-8DF0-16034C828CDE} + {D4BC9EF7-EE33-461C-BCF5-AF0B48217061} = {7CFA8083-4960-4BFE-8DF0-16034C828CDE} + {4AD2A092-2C90-4C76-A8D5-4B56F718626F} = {7CFA8083-4960-4BFE-8DF0-16034C828CDE} + {D269BAF7-02BD-4E29-93E9-81E4CBB0BD59} = {F0743B6A-25EB-4D79-B5ED-AFB4F25C91B5} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {6C3B477A-4BA3-4067-BDE0-0B28496004B7} + EndGlobalSection + GlobalSection(TestCaseManagementSettings) = postSolution + CategoryFile = DotNetZip.vsmdi + EndGlobalSection +EndGlobal diff --git a/src/DotNetZip.vsmdi b/old/src/DotNetZip.vsmdi similarity index 99% rename from src/DotNetZip.vsmdi rename to old/src/DotNetZip.vsmdi index 120072c..e6bdfed 100644 --- a/src/DotNetZip.vsmdi +++ b/old/src/DotNetZip.vsmdi @@ -1,404 +1,404 @@ - - - - Basic smoke test - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Tests for WinZip AES Encryption - - - - - - - - - - - - - - - - - - - - - - - - - - various tests for Streams, ZipOutputStream, etc - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Tests for compatibility with COM and other zip tools. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The standard list of tests. This is every test, except the "large number of small files" test, which takes a long time, and the winforms self extractor test, which requires user intervention. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + Basic smoke test + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tests for WinZip AES Encryption + + + + + + + + + + + + + + + + + + + + + + + + + + various tests for Streams, ZipOutputStream, etc + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tests for compatibility with COM and other zip tools. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The standard list of tests. This is every test, except the "large number of small files" test, which takes a long time, and the winforms self extractor test, which requires user intervention. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/DotNetZip.vssscc b/old/src/DotNetZip.vssscc similarity index 96% rename from src/DotNetZip.vssscc rename to old/src/DotNetZip.vssscc index 794f014..6cb031b 100644 --- a/src/DotNetZip.vssscc +++ b/old/src/DotNetZip.vssscc @@ -1,10 +1,10 @@ -"" -{ -"FILE_VERSION" = "9237" -"ENLISTMENT_CHOICE" = "NEVER" -"PROJECT_FILE_RELATIVE_PATH" = "" -"NUMBER_OF_EXCLUDED_FILES" = "0" -"ORIGINAL_PROJECT_FILE_PATH" = "" -"NUMBER_OF_NESTED_PROJECTS" = "0" -"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROJECT" -} +"" +{ +"FILE_VERSION" = "9237" +"ENLISTMENT_CHOICE" = "NEVER" +"PROJECT_FILE_RELATIVE_PATH" = "" +"NUMBER_OF_EXCLUDED_FILES" = "0" +"ORIGINAL_PROJECT_FILE_PATH" = "" +"NUMBER_OF_NESTED_PROJECTS" = "0" +"SOURCE_CONTROL_SETTINGS_PROVIDER" = "PROJECT" +} diff --git a/src/DotNetZip1.vsmdi b/old/src/DotNetZip1.vsmdi similarity index 99% rename from src/DotNetZip1.vsmdi rename to old/src/DotNetZip1.vsmdi index c2267df..568b317 100644 --- a/src/DotNetZip1.vsmdi +++ b/old/src/DotNetZip1.vsmdi @@ -1,444 +1,444 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - testing spanned or split steams - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + testing spanned or split steams + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/EditCsproj.exe b/old/src/EditCsproj.exe similarity index 100% rename from src/EditCsproj.exe rename to old/src/EditCsproj.exe diff --git a/src/Examples/ASP/AspClassic-ReadZip.asp b/old/src/Examples/ASP/AspClassic-ReadZip.asp similarity index 96% rename from src/Examples/ASP/AspClassic-ReadZip.asp rename to old/src/Examples/ASP/AspClassic-ReadZip.asp index 5b7eb2f..da84ce0 100644 --- a/src/Examples/ASP/AspClassic-ReadZip.asp +++ b/old/src/Examples/ASP/AspClassic-ReadZip.asp @@ -1,184 +1,184 @@ -<%@ LANGUAGE = VBScript %> -<% Option Explicit %> -<% - -' ------------------------------------------------------- -' ASP DotNetZip Example -' ------------------------------------------------------- -' This example ASP page uses DotNetZip (Ionic.Zip.dll) via COM -' interop. The page opens a zip file, then allows the user -' to download any individual file within the zip file. -' -'' To get this to work, you must be sure to register DotNetZip for COM -'' interop (regasm). Also you need to be sure that IIS/ASP has the correct -'' permissions to instantiate the ZipFile object. In my experience I Was -'' able to do this by copying Ionic.Zip.dll to the -'' c:\windows\system32\inetsrv directory, then calling "regasm /codebbase -'' Ionic.Zip.dll" from within that directory. - -'' This example assumes that the ASP page is deployed into a directory, -'' that contains a subdirectory called "fodder". Fodder must be readable, -'' and should contain one or more zip files. This page allows the user to -'' select a zip file, then select a file within the zip file, and download -'' that file. -'' -'' - - - -If Request.Form("Submit") = "Download" Then - dim pathForZipFile, fileToDownload - pathForZipFile= Request.Form("zipFile") - if pathForZipFile <> "" Then - fileToDownload = Request.Form("fileToDownload") - Response.Clear - Response.AddHeader "Content-Disposition", "attachment; filename=" & fileToDownload - Response.ContentType = "application/octet-stream" - - pathForZipFile = Server.MapPath("fodder\" & pathForZipFile) - - dim zip, ms - set zip = Server.CreateObject("Ionic.Zip.ZipFile") - zip.Initialize(pathForZipFile) - - set ms = Server.CreateObject("System.IO.MemoryStream") - - dim selectedEntry, entry - For Each entry in zip - If entry.FileName = fileToDownload Then - set selectedEntry = entry - End If - Next - - selectedEntry.Extract_3(ms) - zip.Dispose - - dim fred - fred = ms.ToArray - - Response.BinaryWrite(fred) - ms.Dispose - End If - -Else - -%> - - - - Simple DotNetZip Example - - - - - - - - - - - - -

ASP DotNetZip

- -

This page shows how to use DotNetZip from an ASP (Classic) -page. This page reads zip files and allows the browser to download -items from the zip files.

- -
- - - - - - -
Select a Zip file: -
- - - - -<% - DisplayContentsOfZip -%> - -
- - - - -<% -End If +<%@ LANGUAGE = VBScript %> +<% Option Explicit %> +<% + +' ------------------------------------------------------- +' ASP DotNetZip Example +' ------------------------------------------------------- +' This example ASP page uses DotNetZip (Ionic.Zip.dll) via COM +' interop. The page opens a zip file, then allows the user +' to download any individual file within the zip file. +' +'' To get this to work, you must be sure to register DotNetZip for COM +'' interop (regasm). Also you need to be sure that IIS/ASP has the correct +'' permissions to instantiate the ZipFile object. In my experience I Was +'' able to do this by copying Ionic.Zip.dll to the +'' c:\windows\system32\inetsrv directory, then calling "regasm /codebbase +'' Ionic.Zip.dll" from within that directory. + +'' This example assumes that the ASP page is deployed into a directory, +'' that contains a subdirectory called "fodder". Fodder must be readable, +'' and should contain one or more zip files. This page allows the user to +'' select a zip file, then select a file within the zip file, and download +'' that file. +'' +'' + + + +If Request.Form("Submit") = "Download" Then + dim pathForZipFile, fileToDownload + pathForZipFile= Request.Form("zipFile") + if pathForZipFile <> "" Then + fileToDownload = Request.Form("fileToDownload") + Response.Clear + Response.AddHeader "Content-Disposition", "attachment; filename=" & fileToDownload + Response.ContentType = "application/octet-stream" + + pathForZipFile = Server.MapPath("fodder\" & pathForZipFile) + + dim zip, ms + set zip = Server.CreateObject("Ionic.Zip.ZipFile") + zip.Initialize(pathForZipFile) + + set ms = Server.CreateObject("System.IO.MemoryStream") + + dim selectedEntry, entry + For Each entry in zip + If entry.FileName = fileToDownload Then + set selectedEntry = entry + End If + Next + + selectedEntry.Extract_3(ms) + zip.Dispose + + dim fred + fred = ms.ToArray + + Response.BinaryWrite(fred) + ms.Dispose + End If + +Else + +%> + + + + Simple DotNetZip Example + + + + + + + + + + + + +

ASP DotNetZip

+ +

This page shows how to use DotNetZip from an ASP (Classic) +page. This page reads zip files and allows the browser to download +items from the zip files.

+ +
+ + + + + + +
Select a Zip file: +
+ + + + +<% + DisplayContentsOfZip +%> + +
+ + + + +<% +End If %> \ No newline at end of file diff --git a/src/Examples/ASPNET/GenerateZip-Csharp-FileStream.aspx b/old/src/Examples/ASPNET/GenerateZip-Csharp-FileStream.aspx similarity index 97% rename from src/Examples/ASPNET/GenerateZip-Csharp-FileStream.aspx rename to old/src/Examples/ASPNET/GenerateZip-Csharp-FileStream.aspx index bfd13de..6461e58 100644 --- a/src/Examples/ASPNET/GenerateZip-Csharp-FileStream.aspx +++ b/old/src/Examples/ASPNET/GenerateZip-Csharp-FileStream.aspx @@ -1,249 +1,249 @@ -<%@ Page - Language="C#" - Debug="true" -%> - - -<%@ Import Namespace="System.Text" %> -<%@ Import Namespace="System.IO" %> -<%@ Import Namespace="Ionic.Zip" %> -<%@ Import Namespace="System.Collections.Generic" %> - - - - - - - - - - - - -
- -

Zip Files from ASP.NET

- -

This page uses the .NET Zip library (see http://DotNetZip.codeplex.com) - to dynamically create a zip archive, and then download it to the - browser through Response.OutputStream, via a FileStream. This page is implemented in C#.

- -

In some cases, saving a zip directly to Response.OutputStream can - present problems for the unzipper, especially on Macintosh. - To workaround that, you can save to a file, then copy the contents of the file, via a FileStream, to - the Response.OutputStream. -

- - Check the boxes to select the files, set a password if you like, - then click the button to zip them up. -
-
- Password: - (Optional) -
-
- Use AES?: -
-
- - -
-
- -
- - - - - - -
-
- - - - - - - - - -
Nothing to see here...
-
- -
- - - - - - - - +<%@ Page + Language="C#" + Debug="true" +%> + + +<%@ Import Namespace="System.Text" %> +<%@ Import Namespace="System.IO" %> +<%@ Import Namespace="Ionic.Zip" %> +<%@ Import Namespace="System.Collections.Generic" %> + + + + + + + + + + + + +
+ +

Zip Files from ASP.NET

+ +

This page uses the .NET Zip library (see http://DotNetZip.codeplex.com) + to dynamically create a zip archive, and then download it to the + browser through Response.OutputStream, via a FileStream. This page is implemented in C#.

+ +

In some cases, saving a zip directly to Response.OutputStream can + present problems for the unzipper, especially on Macintosh. + To workaround that, you can save to a file, then copy the contents of the file, via a FileStream, to + the Response.OutputStream. +

+ + Check the boxes to select the files, set a password if you like, + then click the button to zip them up. +
+
+ Password: + (Optional) +
+
+ Use AES?: +
+
+ + +
+
+ +
+ + + + + + +
+
+ + + + + + + + + +
Nothing to see here...
+
+ +
+ + + + + + + + diff --git a/src/Examples/ASPNET/GenerateZip-Csharp-MemoryStream.aspx b/old/src/Examples/ASPNET/GenerateZip-Csharp-MemoryStream.aspx similarity index 97% rename from src/Examples/ASPNET/GenerateZip-Csharp-MemoryStream.aspx rename to old/src/Examples/ASPNET/GenerateZip-Csharp-MemoryStream.aspx index fdb6a75..fd5afc3 100644 --- a/src/Examples/ASPNET/GenerateZip-Csharp-MemoryStream.aspx +++ b/old/src/Examples/ASPNET/GenerateZip-Csharp-MemoryStream.aspx @@ -1,243 +1,243 @@ -<%@ Page - Language="C#" - Debug="true" -%> - - -<%@ Import Namespace="System.Text" %> -<%@ Import Namespace="System.IO" %> -<%@ Import Namespace="Ionic.Zip" %> -<%@ Import Namespace="System.Collections.Generic" %> - - - - - - - - - - - - -
- -

Zip Files from ASP.NET

- -

This page uses the .NET Zip library (see http://DotNetZip.codeplex.com) - to dynamically create a zip archive, and then download it to the - browser through Response.OutputStream, via a MemoryStream. This page is implemented in C#.

- - Check the boxes to select the files, set a password if you like, - then click the button to zip them up. -
-
- Password: - (Optional) -
-
- Use AES?: -
-
- - -
-
- -
- - - - - - -
-
- - - - - - - - - -
Nothing to see here...
-
- -
- - - - - - - - +<%@ Page + Language="C#" + Debug="true" +%> + + +<%@ Import Namespace="System.Text" %> +<%@ Import Namespace="System.IO" %> +<%@ Import Namespace="Ionic.Zip" %> +<%@ Import Namespace="System.Collections.Generic" %> + + + + + + + + + + + + +
+ +

Zip Files from ASP.NET

+ +

This page uses the .NET Zip library (see http://DotNetZip.codeplex.com) + to dynamically create a zip archive, and then download it to the + browser through Response.OutputStream, via a MemoryStream. This page is implemented in C#.

+ + Check the boxes to select the files, set a password if you like, + then click the button to zip them up. +
+
+ Password: + (Optional) +
+
+ Use AES?: +
+
+ + +
+
+ +
+ + + + + + +
+
+ + + + + + + + + +
Nothing to see here...
+
+ +
+ + + + + + + + diff --git a/src/Examples/ASPNET/GenerateZip-Csharp.aspx b/old/src/Examples/ASPNET/GenerateZip-Csharp.aspx similarity index 97% rename from src/Examples/ASPNET/GenerateZip-Csharp.aspx rename to old/src/Examples/ASPNET/GenerateZip-Csharp.aspx index 25855d1..734851b 100644 --- a/src/Examples/ASPNET/GenerateZip-Csharp.aspx +++ b/old/src/Examples/ASPNET/GenerateZip-Csharp.aspx @@ -1,230 +1,230 @@ -<%@ Page - Language="C#" - Debug="true" -%> - - -<%@ Import Namespace="System.Text" %> -<%@ Import Namespace="System.IO" %> -<%@ Import Namespace="Ionic.Zip" %> -<%@ Import Namespace="System.Collections.Generic" %> - - - - - - - - - - - - -
- -

Zip Files from ASP.NET

- -

This page uses the .NET Zip library (see http://DotNetZip.codeplex.com) - to dynamically create a zip archive, and then download it to the - browser through Response.OutputStream. This page is implemented in C#.

- - Check the boxes to select the files, set a password if you like, - then click the button to zip them up. -
-
- Password: - (Optional) -
-
- Use AES?: -
-
- - -
-
- -
- - - - - - -
-
- - - - - - - - - -
Nothing to see here...
-
- -
- - - - - - - - +<%@ Page + Language="C#" + Debug="true" +%> + + +<%@ Import Namespace="System.Text" %> +<%@ Import Namespace="System.IO" %> +<%@ Import Namespace="Ionic.Zip" %> +<%@ Import Namespace="System.Collections.Generic" %> + + + + + + + + + + + + +
+ +

Zip Files from ASP.NET

+ +

This page uses the .NET Zip library (see http://DotNetZip.codeplex.com) + to dynamically create a zip archive, and then download it to the + browser through Response.OutputStream. This page is implemented in C#.

+ + Check the boxes to select the files, set a password if you like, + then click the button to zip them up. +
+
+ Password: + (Optional) +
+
+ Use AES?: +
+
+ + +
+
+ +
+ + + + + + +
+
+ + + + + + + + + +
Nothing to see here...
+
+ +
+ + + + + + + + diff --git a/src/Examples/ASPNET/GenerateZip-VB-FileStream.aspx b/old/src/Examples/ASPNET/GenerateZip-VB-FileStream.aspx similarity index 97% rename from src/Examples/ASPNET/GenerateZip-VB-FileStream.aspx rename to old/src/Examples/ASPNET/GenerateZip-VB-FileStream.aspx index 4a672d1..6df7510 100644 --- a/src/Examples/ASPNET/GenerateZip-VB-FileStream.aspx +++ b/old/src/Examples/ASPNET/GenerateZip-VB-FileStream.aspx @@ -1,255 +1,255 @@ -<%@ Page - Language="VB" - Debug="true" -%> - -<%@ Import Namespace="System.Text" %> -<%@ Import Namespace="System.IO" %> -<%@ Import Namespace="Ionic.Zip" %> -<%@ Import Namespace="System.Collections.Generic" %> - - - - - - - - - - - - -
- -

Zip Files from ASP.NET

- -

This page uses the .NET Zip library (see http://DotNetZip.codeplex.com/) - to dynamically create a zip archive, and then download it to the - browser through Response.OutputStream, via a FileStream. This page is implemented - in VB.NET.

- -

In some cases, saving a zip directly to Response.OutputStream can - present problems for the unzipper, especially on Macintosh. - To workaround that, you can save to a file, then copy the contents of - the file, via a FileStream, to the Response.OutputStream. -

- - Check the boxes to select the files, set a password if you like, - then click the button to zip them up. -
-
- Password: - (Optional) -
-
- Use AES?: -
-
- - -
-
- -
- - - - - - -
-
- - - - - - - - - -
Nothing to see here...
-
- -
- - - - - - - - +<%@ Page + Language="VB" + Debug="true" +%> + +<%@ Import Namespace="System.Text" %> +<%@ Import Namespace="System.IO" %> +<%@ Import Namespace="Ionic.Zip" %> +<%@ Import Namespace="System.Collections.Generic" %> + + + + + + + + + + + + +
+ +

Zip Files from ASP.NET

+ +

This page uses the .NET Zip library (see http://DotNetZip.codeplex.com/) + to dynamically create a zip archive, and then download it to the + browser through Response.OutputStream, via a FileStream. This page is implemented + in VB.NET.

+ +

In some cases, saving a zip directly to Response.OutputStream can + present problems for the unzipper, especially on Macintosh. + To workaround that, you can save to a file, then copy the contents of + the file, via a FileStream, to the Response.OutputStream. +

+ + Check the boxes to select the files, set a password if you like, + then click the button to zip them up. +
+
+ Password: + (Optional) +
+
+ Use AES?: +
+
+ + +
+
+ +
+ + + + + + +
+
+ + + + + + + + + +
Nothing to see here...
+
+ +
+ + + + + + + + diff --git a/src/Examples/ASPNET/GenerateZip-VB.aspx b/old/src/Examples/ASPNET/GenerateZip-VB.aspx similarity index 97% rename from src/Examples/ASPNET/GenerateZip-VB.aspx rename to old/src/Examples/ASPNET/GenerateZip-VB.aspx index 668f5af..174310e 100644 --- a/src/Examples/ASPNET/GenerateZip-VB.aspx +++ b/old/src/Examples/ASPNET/GenerateZip-VB.aspx @@ -1,229 +1,229 @@ -<%@ Page - Language="VB" - Debug="true" -%> - -<%@ Import Namespace="System.Text" %> -<%@ Import Namespace="System.IO" %> -<%@ Import Namespace="Ionic.Zip" %> -<%@ Import Namespace="System.Collections.Generic" %> - - - - - - - - - - - - -
- -

Zip Files from ASP.NET

- -

This page uses the .NET Zip library (see http://DotNetZip.codeplex.com/) - to dynamically create a zip archive, and then download it to the - browser through Response.OutputStream. This page is implemented - in VB.NET.

- - Check the boxes to select the files, set a password if you like, - then click the button to zip them up. -
-
- Password: - (Optional) -
-
- Use AES?: -
-
- - -
-
- -
- - - - - - -
-
- - - - - - - - - -
Nothing to see here...
-
- -
- - - - - - - - +<%@ Page + Language="VB" + Debug="true" +%> + +<%@ Import Namespace="System.Text" %> +<%@ Import Namespace="System.IO" %> +<%@ Import Namespace="Ionic.Zip" %> +<%@ Import Namespace="System.Collections.Generic" %> + + + + + + + + + + + + +
+ +

Zip Files from ASP.NET

+ +

This page uses the .NET Zip library (see http://DotNetZip.codeplex.com/) + to dynamically create a zip archive, and then download it to the + browser through Response.OutputStream. This page is implemented + in VB.NET.

+ + Check the boxes to select the files, set a password if you like, + then click the button to zip them up. +
+
+ Password: + (Optional) +
+
+ Use AES?: +
+
+ + +
+
+ +
+ + + + + + +
+
+ + + + + + + + + +
Nothing to see here...
+
+ +
+ + + + + + + + diff --git a/src/Examples/C#/CreateZip/CreateZip.cs b/old/src/Examples/C#/CreateZip/CreateZip.cs similarity index 97% rename from src/Examples/C#/CreateZip/CreateZip.cs rename to old/src/Examples/C#/CreateZip/CreateZip.cs index e0a79b9..5895198 100644 --- a/src/Examples/C#/CreateZip/CreateZip.cs +++ b/old/src/Examples/C#/CreateZip/CreateZip.cs @@ -1,89 +1,89 @@ -// CreateZip.cs -// -// ---------------------------------------------------------------------- -// Copyright (c) 2006, 2007, 2008 Microsoft Corporation. All rights reserved. -// -// This example is released under the Microsoft Permissive License of -// October 2006. See the license.txt file accompanying this release for -// full details. -// -// ---------------------------------------------------------------------- -// -// This simplistic utility gets a list of all the files in the specified directory, -// and zips them into a single archive. This utility does not recurse through -// the directory tree. -// -// compile with: -// csc /debug+ /target:exe /R:Ionic.Utils.Zip.dll /out:CreateZip.exe CreateZip.cs -// -// -// Wed, 29 Mar 2006 14:36 -// - -using System; -using Ionic.Zip; - -namespace Ionic.Zip.Examples -{ - public class CreateZip - { - private static void Usage() - { - Console.WriteLine("usage:\n CreateZip "); - Environment.Exit(1); - } - - public static void Main(String[] args) - { - if (args.Length != 2) Usage(); - if (!System.IO.Directory.Exists(args[1])) - { - Console.WriteLine("The directory does not exist!\n"); - Usage(); - } - if (System.IO.File.Exists(args[0])) - { - Console.WriteLine("That zipfile already exists!\n"); - Usage(); - } - if (!args[0].EndsWith(".zip")) - { - Console.WriteLine("The filename must end with .zip!\n"); - Usage(); - } - - string ZipFileToCreate = args[0]; - string DirectoryToZip = args[1]; - try - { - using (ZipFile zip = new ZipFile()) - { - // note: this does not recurse directories! - String[] filenames = System.IO.Directory.GetFiles(DirectoryToZip); - - // This is just a sample, provided to illustrate the DotNetZip interface. - // This logic does not recurse through sub-directories. - // If you are zipping up a directory, you may want to see the AddDirectory() method, - // which operates recursively. - foreach (String filename in filenames) - { - Console.WriteLine("Adding {0}...", filename); - ZipEntry e= zip.AddFile(filename); - e.Comment = "Added by Cheeso's CreateZip utility."; - } - - zip.Comment= String.Format("This zip archive was created by the CreateZip example application on machine '{0}'", - System.Net.Dns.GetHostName()); - - zip.Save(ZipFileToCreate); - } - - } - catch (System.Exception ex1) - { - System.Console.Error.WriteLine("exception: " + ex1); - } - - } - } +// CreateZip.cs +// +// ---------------------------------------------------------------------- +// Copyright (c) 2006, 2007, 2008 Microsoft Corporation. All rights reserved. +// +// This example is released under the Microsoft Permissive License of +// October 2006. See the license.txt file accompanying this release for +// full details. +// +// ---------------------------------------------------------------------- +// +// This simplistic utility gets a list of all the files in the specified directory, +// and zips them into a single archive. This utility does not recurse through +// the directory tree. +// +// compile with: +// csc /debug+ /target:exe /R:Ionic.Utils.Zip.dll /out:CreateZip.exe CreateZip.cs +// +// +// Wed, 29 Mar 2006 14:36 +// + +using System; +using Ionic.Zip; + +namespace Ionic.Zip.Examples +{ + public class CreateZip + { + private static void Usage() + { + Console.WriteLine("usage:\n CreateZip "); + Environment.Exit(1); + } + + public static void Main(String[] args) + { + if (args.Length != 2) Usage(); + if (!System.IO.Directory.Exists(args[1])) + { + Console.WriteLine("The directory does not exist!\n"); + Usage(); + } + if (System.IO.File.Exists(args[0])) + { + Console.WriteLine("That zipfile already exists!\n"); + Usage(); + } + if (!args[0].EndsWith(".zip")) + { + Console.WriteLine("The filename must end with .zip!\n"); + Usage(); + } + + string ZipFileToCreate = args[0]; + string DirectoryToZip = args[1]; + try + { + using (ZipFile zip = new ZipFile()) + { + // note: this does not recurse directories! + String[] filenames = System.IO.Directory.GetFiles(DirectoryToZip); + + // This is just a sample, provided to illustrate the DotNetZip interface. + // This logic does not recurse through sub-directories. + // If you are zipping up a directory, you may want to see the AddDirectory() method, + // which operates recursively. + foreach (String filename in filenames) + { + Console.WriteLine("Adding {0}...", filename); + ZipEntry e= zip.AddFile(filename); + e.Comment = "Added by Cheeso's CreateZip utility."; + } + + zip.Comment= String.Format("This zip archive was created by the CreateZip example application on machine '{0}'", + System.Net.Dns.GetHostName()); + + zip.Save(ZipFileToCreate); + } + + } + catch (System.Exception ex1) + { + System.Console.Error.WriteLine("exception: " + ex1); + } + + } + } } \ No newline at end of file diff --git a/src/Examples/C#/CreateZip/CreateZip.csproj b/old/src/Examples/C#/CreateZip/CreateZip.csproj similarity index 97% rename from src/Examples/C#/CreateZip/CreateZip.csproj rename to old/src/Examples/C#/CreateZip/CreateZip.csproj index 923d0de..a34e2bc 100644 --- a/src/Examples/C#/CreateZip/CreateZip.csproj +++ b/old/src/Examples/C#/CreateZip/CreateZip.csproj @@ -1,86 +1,86 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {FB9FC8D7-7897-4802-9694-F379F25C00CB} - Exe - Properties - CreateZip - CreateZip - - - - - 3.5 - - - - - - - - - v4.0 - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - AllRules.ruleset - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - AllRules.ruleset - - - - - - - - - - - Properties\SolutionInfo.cs - - - - - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} - Zip DLL - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {FB9FC8D7-7897-4802-9694-F379F25C00CB} + Exe + Properties + CreateZip + CreateZip + + + + + 3.5 + + + + + + + + + v4.0 + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + AllRules.ruleset + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + AllRules.ruleset + + + + + + + + + + + Properties\SolutionInfo.cs + + + + + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} + Zip DLL + + + + \ No newline at end of file diff --git a/src/Examples/C#/CreateZip/Properties/AssemblyInfo.cs b/old/src/Examples/C#/CreateZip/Properties/AssemblyInfo.cs similarity index 100% rename from src/Examples/C#/CreateZip/Properties/AssemblyInfo.cs rename to old/src/Examples/C#/CreateZip/Properties/AssemblyInfo.cs diff --git a/src/Examples/C#/ReadZip/Properties/AssemblyInfo.cs b/old/src/Examples/C#/ReadZip/Properties/AssemblyInfo.cs similarity index 100% rename from src/Examples/C#/ReadZip/Properties/AssemblyInfo.cs rename to old/src/Examples/C#/ReadZip/Properties/AssemblyInfo.cs diff --git a/src/Examples/C#/ReadZip/ReadZip.cs b/old/src/Examples/C#/ReadZip/ReadZip.cs similarity index 97% rename from src/Examples/C#/ReadZip/ReadZip.cs rename to old/src/Examples/C#/ReadZip/ReadZip.cs index b272856..485eac6 100644 --- a/src/Examples/C#/ReadZip/ReadZip.cs +++ b/old/src/Examples/C#/ReadZip/ReadZip.cs @@ -1,70 +1,70 @@ -// ReadZip.cs -// -// ---------------------------------------------------------------------- -// Copyright (c) 2006-2009 Microsoft Corporation. All rights reserved. -// -// This example is released under the Microsoft Public License . -// See the license.txt file accompanying this release for -// full details. -// -// ---------------------------------------------------------------------- -// -// This simple example utility simply reads a zip archive and extracts -// all elements in it, to the specified target directory. -// -// compile with: -// csc /target:exe /r:Ionic.Zip.dll /out:ReadZip.exe ReadZip.cs -// -// Wed, 29 Mar 2006 14:36 -// - - -using System; -using Ionic.Zip; - -namespace Ionic.Zip.Examples -{ - public class ReadZip - { - private static void Usage() - { - Console.WriteLine("usage:\n ReadZip2 "); - Environment.Exit(1); - } - - - public static void Main(String[] args) - { - - if (args.Length != 2) Usage(); - if (!System.IO.File.Exists(args[0])) - { - Console.WriteLine("That zip file does not exist!\n"); - Usage(); - } - - try - { - // Specifying Console.Out here causes diagnostic msgs to be sent to the Console - // In a WinForms or WPF or Web app, you could specify nothing, or an alternate - // TextWriter to capture diagnostic messages. - - var options = new ReadOptions { StatusMessageWriter = System.Console.Out }; - using (ZipFile zip = ZipFile.Read(args[0], options)) - { - // This call to ExtractAll() assumes: - // - none of the entries are password-protected. - // - want to extract all entries to current working directory - // - none of the files in the zip already exist in the directory; - // if they do, the method will throw. - zip.ExtractAll(args[1]); - } - } - catch (System.Exception ex1) - { - System.Console.Error.WriteLine("exception: " + ex1); - } - - } - } +// ReadZip.cs +// +// ---------------------------------------------------------------------- +// Copyright (c) 2006-2009 Microsoft Corporation. All rights reserved. +// +// This example is released under the Microsoft Public License . +// See the license.txt file accompanying this release for +// full details. +// +// ---------------------------------------------------------------------- +// +// This simple example utility simply reads a zip archive and extracts +// all elements in it, to the specified target directory. +// +// compile with: +// csc /target:exe /r:Ionic.Zip.dll /out:ReadZip.exe ReadZip.cs +// +// Wed, 29 Mar 2006 14:36 +// + + +using System; +using Ionic.Zip; + +namespace Ionic.Zip.Examples +{ + public class ReadZip + { + private static void Usage() + { + Console.WriteLine("usage:\n ReadZip2 "); + Environment.Exit(1); + } + + + public static void Main(String[] args) + { + + if (args.Length != 2) Usage(); + if (!System.IO.File.Exists(args[0])) + { + Console.WriteLine("That zip file does not exist!\n"); + Usage(); + } + + try + { + // Specifying Console.Out here causes diagnostic msgs to be sent to the Console + // In a WinForms or WPF or Web app, you could specify nothing, or an alternate + // TextWriter to capture diagnostic messages. + + var options = new ReadOptions { StatusMessageWriter = System.Console.Out }; + using (ZipFile zip = ZipFile.Read(args[0], options)) + { + // This call to ExtractAll() assumes: + // - none of the entries are password-protected. + // - want to extract all entries to current working directory + // - none of the files in the zip already exist in the directory; + // if they do, the method will throw. + zip.ExtractAll(args[1]); + } + } + catch (System.Exception ex1) + { + System.Console.Error.WriteLine("exception: " + ex1); + } + + } + } } \ No newline at end of file diff --git a/src/Examples/C#/ReadZip/ReadZip.csproj b/old/src/Examples/C#/ReadZip/ReadZip.csproj similarity index 97% rename from src/Examples/C#/ReadZip/ReadZip.csproj rename to old/src/Examples/C#/ReadZip/ReadZip.csproj index ab37f55..e040884 100644 --- a/src/Examples/C#/ReadZip/ReadZip.csproj +++ b/old/src/Examples/C#/ReadZip/ReadZip.csproj @@ -1,86 +1,86 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {F4024C01-1133-4A5A-B421-22EA8CA89EA5} - Exe - Properties - ReadZip - ReadZip - - - - - 3.5 - - - - - - - - - v4.0 - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - AllRules.ruleset - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - AllRules.ruleset - - - - - - - - - - - Properties\SolutionInfo.cs - - - - - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} - Zip DLL - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {F4024C01-1133-4A5A-B421-22EA8CA89EA5} + Exe + Properties + ReadZip + ReadZip + + + + + 3.5 + + + + + + + + + v4.0 + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + AllRules.ruleset + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + AllRules.ruleset + + + + + + + + + + + Properties\SolutionInfo.cs + + + + + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} + Zip DLL + + + + \ No newline at end of file diff --git a/src/Examples/C#/WinForms-QuickZip/AssemblyInfo.cs b/old/src/Examples/C#/WinForms-QuickZip/AssemblyInfo.cs similarity index 100% rename from src/Examples/C#/WinForms-QuickZip/AssemblyInfo.cs rename to old/src/Examples/C#/WinForms-QuickZip/AssemblyInfo.cs diff --git a/src/Examples/C#/WinForms-QuickZip/QuickZip.cs b/old/src/Examples/C#/WinForms-QuickZip/QuickZip.cs similarity index 97% rename from src/Examples/C#/WinForms-QuickZip/QuickZip.cs rename to old/src/Examples/C#/WinForms-QuickZip/QuickZip.cs index 0770783..b187ef0 100644 --- a/src/Examples/C#/WinForms-QuickZip/QuickZip.cs +++ b/old/src/Examples/C#/WinForms-QuickZip/QuickZip.cs @@ -1,226 +1,226 @@ -// QuickZip.cs -// ------------------------------------------------------------------ -// -// A simple app that creates a zip file, zipping up a files and -// directories specified on the command line. This application needs to -// be run from the console, in order to specify arguments, but it is -// also a winforms app. -// -// It correctly does the multi-threading to allow smooth UI update. -// -// compile it with: -// c:\.net3.5\csc.exe /t:exe /debug:full /optimize- /R:System.dll /R:Ionic.Zip.dll -// /out:QuickZip.exe QuickZip.cs -// -// last saved: -// Time-stamp: <2010-March-16 14:11:42> -// ------------------------------------------------------------------ -// -// Copyright (c) 2010 by Dino Chiesa -// All rights reserved! -// -// Licensed under the Microsoft Public License. -// see http://www.opensource.org/licenses/ms-pl.html -// -// ------------------------------------------------------------------ - -using System; -//using System.Reflection; -using System.Windows.Forms; // Form, Label, ProgressBar -using Ionic.Zip; // ZipFile, ZipEntry -using System.ComponentModel; // BackgroundWorker -using Interop=System.Runtime.InteropServices; // DllImport - -namespace Ionic.Zip.Examples.CS -{ - public class QuickZip - { - [Interop.DllImport("kernel32.dll")] - private static extern bool AllocConsole(); - - [Interop.DllImport("kernel32.dll")] - private static extern bool AttachConsole(int pid); - - [STAThread] - public static void Main(string[] args) - { - if (args.Length != 2) - { - // open a new window so we can write to it. - QuickZip.AllocConsole(); - QuickZip.Usage(args); - return; - } - else - { - Application.EnableVisualStyles(); - Application.SetCompatibleTextRenderingDefault(false); - var f = new QuickZipForm(args[0], args[1]); - Application.Run(f); - } - return; - } - - private static int Usage(string[] args) - { - Console.WriteLine("QuickUnzip. Usage: QuickZip "); - Console.WriteLine("\n to continue..."); - Console.ReadLine(); - return 1; - } - - } - - - - public class QuickZipForm : Form - { - - private QuickZipForm() - { - this.components = null; - this.InitializeComponent(); - } - - public QuickZipForm(string zipfile, string selectionCriteria) : this() - { - this.zipfileName = zipfile; - this.selectionCriteria = selectionCriteria; - } - - protected override void Dispose(Boolean disposing) - { - if (disposing && (this.components != null)) - this.components.Dispose(); - - base.Dispose(disposing); - } - - private void FixTitle() - { - this.Text = String.Format("Quick Zip {0}", this.zipfileName); - } - - private void InitializeComponent() - { - this.components = new System.ComponentModel.Container(); - this.label1 = new Label(); - this.progressBar1 = new ProgressBar(); - base.SuspendLayout(); - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(12, 12); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(50, 13); - this.label1.TabIndex = 2; - this.label1.Text = "Zipping..."; - this.progressBar1.Anchor = (AnchorStyles.Right | (AnchorStyles.Left | AnchorStyles.Top)); - this.progressBar1.Location = new System.Drawing.Point(12, 36); - this.progressBar1.Name = "progressBar1"; - this.progressBar1.Size = new System.Drawing.Size(436, 18); - this.progressBar1.Step = 1; - this.progressBar1.TabIndex = 7; - base.AutoScaleDimensions = new System.Drawing.SizeF(6, 13); - base.AutoScaleMode = AutoScaleMode.Font; - base.ClientSize = new System.Drawing.Size(460, 80); - base.Controls.Add(this.label1); - base.Controls.Add(this.progressBar1); - base.Name = "QuickUnzipForm"; - this.Text = "QuickUnzip"; - this.Load += this.QuickZipForm_Load; - this.Shown += this.QuickZipForm_Shown; - base.ResumeLayout(false); - base.PerformLayout(); - } - - public void OnTimerEvent(Object source, EventArgs e) - { - base.Close(); - } - - private void QuickZipForm_Load(Object sender, EventArgs e) - { - this.FixTitle(); - } - - private void QuickZipForm_Shown(Object sender, EventArgs e) - { - // For info on running long-running tasks in response to button clicks, - // in VB.NET WinForms, see - // http://msdn.microsoft.com/en-us/library/ms951089.aspx - - var backgroundWorker1 = new System.ComponentModel.BackgroundWorker(); - backgroundWorker1.WorkerSupportsCancellation = false; - backgroundWorker1.WorkerReportsProgress = true; - backgroundWorker1.DoWork += this.Zipit; - backgroundWorker1.RunWorkerAsync(); - } - - - public void SaveProgress(object sender, SaveProgressEventArgs e) - { - if (this.InvokeRequired) - { - this.Invoke(new Action(SaveProgress), new Object[] { sender, e }); - } - else - { - switch (e.EventType) - { - case ZipProgressEventType.Saving_Started: - //Console.WriteLine("pb max {0}", e.EntriesTotal); - this.progressBar1.Maximum = e.EntriesTotal; - this.progressBar1.Value = 0; - this.progressBar1.Minimum = 0; - this.progressBar1.Step = 1; - break; - - case ZipProgressEventType.Saving_BeforeWriteEntry: - //Console.WriteLine("entry {0}", e.CurrentEntry.FileName); - this.label1.Text = e.CurrentEntry.FileName; - break; - - case ZipProgressEventType.Saving_AfterWriteEntry: - this.progressBar1.PerformStep(); - break; - } - this.Update(); - Application.DoEvents(); - } - } - - - private void Zipit(object sender, DoWorkEventArgs e) - { - int delay = 1200; // ms to keep form open after completion - try - { - using (var zip = new ZipFile()) - { - zip.AddSelectedFiles(selectionCriteria, ".", "", true); - zip.SaveProgress += this.SaveProgress; - zip.Save(zipfileName); - } - } - catch (Exception ex1) - { - this.label1.Text = "Exception: " + ex1.ToString(); - delay = 4000; - } - - var timer1 = new System.Timers.Timer(delay); - timer1.Enabled = true; - timer1.AutoReset = false; - timer1.Elapsed += this.OnTimerEvent; - } - - - // Fields - private String selectionCriteria; - private String zipfileName; - private System.ComponentModel.IContainer components ; - private Label label1; - private ProgressBar progressBar1; - } - -} - +// QuickZip.cs +// ------------------------------------------------------------------ +// +// A simple app that creates a zip file, zipping up a files and +// directories specified on the command line. This application needs to +// be run from the console, in order to specify arguments, but it is +// also a winforms app. +// +// It correctly does the multi-threading to allow smooth UI update. +// +// compile it with: +// c:\.net3.5\csc.exe /t:exe /debug:full /optimize- /R:System.dll /R:Ionic.Zip.dll +// /out:QuickZip.exe QuickZip.cs +// +// last saved: +// Time-stamp: <2010-March-16 14:11:42> +// ------------------------------------------------------------------ +// +// Copyright (c) 2010 by Dino Chiesa +// All rights reserved! +// +// Licensed under the Microsoft Public License. +// see http://www.opensource.org/licenses/ms-pl.html +// +// ------------------------------------------------------------------ + +using System; +//using System.Reflection; +using System.Windows.Forms; // Form, Label, ProgressBar +using Ionic.Zip; // ZipFile, ZipEntry +using System.ComponentModel; // BackgroundWorker +using Interop=System.Runtime.InteropServices; // DllImport + +namespace Ionic.Zip.Examples.CS +{ + public class QuickZip + { + [Interop.DllImport("kernel32.dll")] + private static extern bool AllocConsole(); + + [Interop.DllImport("kernel32.dll")] + private static extern bool AttachConsole(int pid); + + [STAThread] + public static void Main(string[] args) + { + if (args.Length != 2) + { + // open a new window so we can write to it. + QuickZip.AllocConsole(); + QuickZip.Usage(args); + return; + } + else + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + var f = new QuickZipForm(args[0], args[1]); + Application.Run(f); + } + return; + } + + private static int Usage(string[] args) + { + Console.WriteLine("QuickUnzip. Usage: QuickZip "); + Console.WriteLine("\n to continue..."); + Console.ReadLine(); + return 1; + } + + } + + + + public class QuickZipForm : Form + { + + private QuickZipForm() + { + this.components = null; + this.InitializeComponent(); + } + + public QuickZipForm(string zipfile, string selectionCriteria) : this() + { + this.zipfileName = zipfile; + this.selectionCriteria = selectionCriteria; + } + + protected override void Dispose(Boolean disposing) + { + if (disposing && (this.components != null)) + this.components.Dispose(); + + base.Dispose(disposing); + } + + private void FixTitle() + { + this.Text = String.Format("Quick Zip {0}", this.zipfileName); + } + + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.label1 = new Label(); + this.progressBar1 = new ProgressBar(); + base.SuspendLayout(); + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(12, 12); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(50, 13); + this.label1.TabIndex = 2; + this.label1.Text = "Zipping..."; + this.progressBar1.Anchor = (AnchorStyles.Right | (AnchorStyles.Left | AnchorStyles.Top)); + this.progressBar1.Location = new System.Drawing.Point(12, 36); + this.progressBar1.Name = "progressBar1"; + this.progressBar1.Size = new System.Drawing.Size(436, 18); + this.progressBar1.Step = 1; + this.progressBar1.TabIndex = 7; + base.AutoScaleDimensions = new System.Drawing.SizeF(6, 13); + base.AutoScaleMode = AutoScaleMode.Font; + base.ClientSize = new System.Drawing.Size(460, 80); + base.Controls.Add(this.label1); + base.Controls.Add(this.progressBar1); + base.Name = "QuickUnzipForm"; + this.Text = "QuickUnzip"; + this.Load += this.QuickZipForm_Load; + this.Shown += this.QuickZipForm_Shown; + base.ResumeLayout(false); + base.PerformLayout(); + } + + public void OnTimerEvent(Object source, EventArgs e) + { + base.Close(); + } + + private void QuickZipForm_Load(Object sender, EventArgs e) + { + this.FixTitle(); + } + + private void QuickZipForm_Shown(Object sender, EventArgs e) + { + // For info on running long-running tasks in response to button clicks, + // in VB.NET WinForms, see + // http://msdn.microsoft.com/en-us/library/ms951089.aspx + + var backgroundWorker1 = new System.ComponentModel.BackgroundWorker(); + backgroundWorker1.WorkerSupportsCancellation = false; + backgroundWorker1.WorkerReportsProgress = true; + backgroundWorker1.DoWork += this.Zipit; + backgroundWorker1.RunWorkerAsync(); + } + + + public void SaveProgress(object sender, SaveProgressEventArgs e) + { + if (this.InvokeRequired) + { + this.Invoke(new Action(SaveProgress), new Object[] { sender, e }); + } + else + { + switch (e.EventType) + { + case ZipProgressEventType.Saving_Started: + //Console.WriteLine("pb max {0}", e.EntriesTotal); + this.progressBar1.Maximum = e.EntriesTotal; + this.progressBar1.Value = 0; + this.progressBar1.Minimum = 0; + this.progressBar1.Step = 1; + break; + + case ZipProgressEventType.Saving_BeforeWriteEntry: + //Console.WriteLine("entry {0}", e.CurrentEntry.FileName); + this.label1.Text = e.CurrentEntry.FileName; + break; + + case ZipProgressEventType.Saving_AfterWriteEntry: + this.progressBar1.PerformStep(); + break; + } + this.Update(); + Application.DoEvents(); + } + } + + + private void Zipit(object sender, DoWorkEventArgs e) + { + int delay = 1200; // ms to keep form open after completion + try + { + using (var zip = new ZipFile()) + { + zip.AddSelectedFiles(selectionCriteria, ".", "", true); + zip.SaveProgress += this.SaveProgress; + zip.Save(zipfileName); + } + } + catch (Exception ex1) + { + this.label1.Text = "Exception: " + ex1.ToString(); + delay = 4000; + } + + var timer1 = new System.Timers.Timer(delay); + timer1.Enabled = true; + timer1.AutoReset = false; + timer1.Elapsed += this.OnTimerEvent; + } + + + // Fields + private String selectionCriteria; + private String zipfileName; + private System.ComponentModel.IContainer components ; + private Label label1; + private ProgressBar progressBar1; + } + +} + diff --git a/src/Examples/C#/WinForms-QuickZip/QuickZip.csproj b/old/src/Examples/C#/WinForms-QuickZip/QuickZip.csproj similarity index 97% rename from src/Examples/C#/WinForms-QuickZip/QuickZip.csproj rename to old/src/Examples/C#/WinForms-QuickZip/QuickZip.csproj index 37bf6e8..325f564 100644 --- a/src/Examples/C#/WinForms-QuickZip/QuickZip.csproj +++ b/old/src/Examples/C#/WinForms-QuickZip/QuickZip.csproj @@ -1,66 +1,66 @@ - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {4bc34fff-1fa8-4f1d-86ff-4842045785de} - Exe - Properties - QuickZip - QuickZip - - - - - 2.0 - SAK - SAK - SAK - SAK - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - Properties\SolutionInfo.cs - - - - - {4F7A9BBE-5221-46C5-9E47-1E8B547CF258} - Zip Full DLL - - - - - + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {4bc34fff-1fa8-4f1d-86ff-4842045785de} + Exe + Properties + QuickZip + QuickZip + + + + + 2.0 + SAK + SAK + SAK + SAK + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + Properties\SolutionInfo.cs + + + + + {4F7A9BBE-5221-46C5-9E47-1E8B547CF258} + Zip Full DLL + + + + + diff --git a/src/Examples/C#/ZLIB/ParallelGZipOutputStream.cs b/old/src/Examples/C#/ZLIB/ParallelGZipOutputStream.cs similarity index 97% rename from src/Examples/C#/ZLIB/ParallelGZipOutputStream.cs rename to old/src/Examples/C#/ZLIB/ParallelGZipOutputStream.cs index 5f05cef..1302d7a 100644 --- a/src/Examples/C#/ZLIB/ParallelGZipOutputStream.cs +++ b/old/src/Examples/C#/ZLIB/ParallelGZipOutputStream.cs @@ -1,1217 +1,1217 @@ -//#define Trace - -// ParallelGZipOutputStream.cs -// ------------------------------------------------------------------ -// -// A GzipStream that does compression only, and only in output. It uses a -// divide-and-conquer approach with multiple threads to exploit multiple -// CPUs for the DEFLATE computation. -// -// Last Saved: <2011-July-11 14:36:48> -// ------------------------------------------------------------------ -// -// Copyright (c) 2009-2011 by Dino Chiesa -// All rights reserved! -// -// ------------------------------------------------------------------ -// -// compile: c:\.net4.0\csc.exe /t:module /R:Ionic.Zip.dll @@ORIG@@ -// flymake: c:\.net4.0\csc.exe /t:module /R:Ionic.Zip.dll @@FILE@@ -// - -using System; -using System.Collections.Concurrent; -using System.Threading.Tasks; -using System.Threading; -using Ionic.Zlib; -using System.IO; - - -namespace Ionic.Exploration -{ - internal class WorkItem - { - public byte[] buffer; - public byte[] compressed; - public int crc; - public int index; - public int ordinal; - public int inputBytesAvailable; - public int compressedBytesAvailable; - - public ZlibCodec compressor; - - public WorkItem(int size, - Ionic.Zlib.CompressionLevel compressLevel, - CompressionStrategy strategy) - { - buffer= new byte[size]; - // alloc 5 bytes overhead for every block (margin of safety= 2) - int n = size + ((size / 32768)+1) * 5 * 2; - compressed = new byte[n]; - - compressor = new ZlibCodec(); - compressor.InitializeDeflate(compressLevel, false); - compressor.OutputBuffer = compressed; - compressor.InputBuffer = buffer; - } - } - - /// - /// A class for compressing and decompressing streams using the - /// Deflate algorithm with multiple threads. - /// - /// - /// - /// - /// This class is for compression only, and that can be only - /// through writing. - /// - /// - /// - /// For more information on the Deflate algorithm, see IETF RFC 1952, - /// "GZIP file format specification version 4.3" http://tools.ietf.org/html/rfc1952 - /// - /// - /// - /// This class is similar to , except that this - /// implementation uses an approach that employs multiple worker threads - /// to perform the compression. On a multi-cpu or multi-core computer, - /// the performance of this class can be significantly higher than the - /// single-threaded DeflateStream, particularly for larger streams. How - /// large? In my experience, Anything over 10mb is a good candidate for parallel - /// compression. - /// - /// - /// - /// The tradeoff is that this class uses more memory and more CPU than the - /// vanilla DeflateStream, and also is slightly less efficient as a compressor. For - /// large files the size of the compressed data stream can be less than 1% - /// larger than the size of a compressed data stream from the vanialla - /// DeflateStream. For smaller files the difference can be larger. The - /// difference will also be larger if you set the BufferSize to be lower - /// than the default value. Your mileage may vary. Finally, for small - /// files, the ParallelGZipOutputStream can be much slower than the vanilla - /// DeflateStream, because of the overhead of using the thread pool. - /// - /// - /// - /// - public class ParallelGZipOutputStream : System.IO.Stream - { - private static readonly int IO_BUFFER_SIZE_DEFAULT = 64 * 1024; - - private System.Collections.Generic.List _pool; - private bool _leaveOpen; - private bool emitting; - private System.IO.Stream _outStream; - private Ionic.Zlib.CRC32 _runningCrc; - private int _currentlyFilling; - private AutoResetEvent _newlyCompressedBlob; - private int _lastWritten; - private int _latestCompressed; - private string _comment; - private string _FileName; - private int _lastFilled; - private int _bufferSize; - private int _nBuckets; - private object _latestLock = new object(); - private object _outputLock = new object(); - private bool _isClosed; - private bool _firstWriteDone; - private int _Crc32; - private Int64 _totalBytesProcessed; - private Ionic.Zlib.CompressionLevel _compressLevel; - private volatile Exception _pendingException; - private object _eLock = new Object(); // protects _pendingException - private BlockingCollection _toWrite; - private BlockingCollection _toCompress; - private BlockingCollection _toFill; - - // This bitfield is used only when Trace is defined. - - //private TraceBits _DesiredTrace = TraceBits.All; - private TraceBits _DesiredTrace = TraceBits.Compress | - TraceBits.Session | - TraceBits.WriteTake | - TraceBits.WriteEnter | - TraceBits.EmitEnter | - TraceBits.EmitDone | - TraceBits.EmitLock | - TraceBits.EmitSkip | - TraceBits.EmitBegin; - - /// - /// Create a ParallelGZipOutputStream. - /// - /// - /// - /// - /// This stream compresses data written into it via the DEFLATE - /// algorithm (see RFC 1951), and writes out the compressed byte stream. - /// - /// - /// - /// The instance will use the default compression level, the default - /// buffer sizes and the default number of threads and buffers per - /// thread. - /// - /// - /// - /// This class is similar to , - /// except that this implementation uses an approach that employs - /// multiple worker threads to perform the DEFLATE. On a multi-cpu or - /// multi-core computer, the performance of this class can be - /// significantly higher than the single-threaded DeflateStream, - /// particularly for larger streams. How large? Anything over 10mb is - /// a good candidate for parallel compression. - /// - /// - /// - /// - /// - /// - /// This example shows how to use a ParallelGZipOutputStream to compress - /// data. It reads a file, compresses it, and writes the compressed data to - /// a second, output file. - /// - /// - /// byte[] buffer = new byte[WORKING_BUFFER_SIZE]; - /// int n= -1; - /// String outputFile = fileToCompress + ".compressed"; - /// using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) - /// { - /// using (var raw = System.IO.File.Create(outputFile)) - /// { - /// using (Stream compressor = new ParallelGZipOutputStream(raw)) - /// { - /// while ((n= input.Read(buffer, 0, buffer.Length)) != 0) - /// { - /// compressor.Write(buffer, 0, n); - /// } - /// } - /// } - /// } - /// - /// - /// Dim buffer As Byte() = New Byte(4096) {} - /// Dim n As Integer = -1 - /// Dim outputFile As String = (fileToCompress & ".compressed") - /// Using input As Stream = File.OpenRead(fileToCompress) - /// Using raw As FileStream = File.Create(outputFile) - /// Using compressor As Stream = New ParallelGZipOutputStream(raw) - /// Do While (n <> 0) - /// If (n > 0) Then - /// compressor.Write(buffer, 0, n) - /// End If - /// n = input.Read(buffer, 0, buffer.Length) - /// Loop - /// End Using - /// End Using - /// End Using - /// - /// - /// The stream to which compressed data will be written. - public ParallelGZipOutputStream(System.IO.Stream stream) - : this(stream, CompressionLevel.Default, CompressionStrategy.Default, false) - { - } - - /// - /// Create a ParallelDeflateOutputStream using the specified CompressionLevel. - /// - /// - /// See the - /// constructor for example code. - /// - /// The stream to which compressed data will be written. - /// A tuning knob to trade speed for effectiveness. - public ParallelGZipOutputStream(System.IO.Stream stream, CompressionLevel level) - : this(stream, level, CompressionStrategy.Default, false) - { - } - - /// - /// Create a ParallelDeflateOutputStream and specify whether to leave the captive stream open - /// when the ParallelDeflateOutputStream is closed. - /// - /// - /// See the - /// constructor for example code. - /// - /// The stream to which compressed data will be written. - /// - /// true if the application would like the stream to remain open after inflation/deflation. - /// - public ParallelGZipOutputStream(System.IO.Stream stream, bool leaveOpen) - : this(stream, CompressionLevel.Default, CompressionStrategy.Default, leaveOpen) - { - } - - /// - /// Create a ParallelDeflateOutputStream and specify whether to leave the captive stream open - /// when the ParallelDeflateOutputStream is closed. - /// - /// - /// See the - /// constructor for example code. - /// - /// The stream to which compressed data will be written. - /// A tuning knob to trade speed for effectiveness. - /// - /// true if the application would like the stream to remain open after inflation/deflation. - /// - public ParallelGZipOutputStream(System.IO.Stream stream, CompressionLevel level, bool leaveOpen) - : this(stream, CompressionLevel.Default, CompressionStrategy.Default, leaveOpen) - { - } - - /// - /// Create a ParallelDeflateOutputStream using the specified - /// CompressionLevel and CompressionStrategy, and specifying whether to - /// leave the captive stream open when the ParallelDeflateOutputStream is - /// closed. - /// - /// - /// See the - /// constructor for example code. - /// - /// The stream to which compressed data will be written. - /// A tuning knob to trade speed for effectiveness. - /// - /// By tweaking this parameter, you may be able to optimize the compression for - /// data with particular characteristics. - /// - /// - /// true if the application would like the stream to remain open after inflation/deflation. - /// - public ParallelGZipOutputStream(System.IO.Stream stream, - CompressionLevel level, - CompressionStrategy strategy, - bool leaveOpen) - { - TraceOutput(TraceBits.Lifecycle | TraceBits.Session, "-------------------------------------------------------"); - TraceOutput(TraceBits.Lifecycle | TraceBits.Session, "Create {0:X8}", this.GetHashCode()); - _outStream = stream; - _compressLevel= level; - Strategy = strategy; - _leaveOpen = leaveOpen; - - _nBuckets = 4; // default - _bufferSize = IO_BUFFER_SIZE_DEFAULT; - } - - - /// - /// The ZLIB strategy to be used during compression. - /// - /// - public CompressionStrategy Strategy - { - get; - private set; - } - - /// - /// The number of buffers to use. - /// - /// - /// - /// - /// This property sets the number of memory buffers to create. This - /// sets an upper limit on the amount of memory the stream can use, - /// and also the degree of parallelism the stream can employ. - /// - /// - /// - /// The divide-and-conquer approach taken by this class assumes a - /// single thread from the application will call Write(). There - /// will be multiple Tasks that then compress (DEFLATE) the data - /// written into the stream. The application's thread aggregates - /// those results and emits the compressed output. - /// - /// - /// - /// The default value is 4. Different values may deliver better or - /// worse results, depending on the dynamic performance - /// characteristics of your storage and compute resources. If you - /// have more than 2 CPUs, or more than 3gb memory, you probably - /// want to increase this value. - /// - /// - /// - /// The total amount of storage space allocated for buffering will - /// be (M*S*2), where M is the multiple (this property), S is the - /// size of each buffer (). There are 2 - /// buffers used by the compressor, one for input and one for - /// output. If you retain the default values for Buckets (4), and - /// BufferSize (64k), then the ParallelDeflateOutputStream will use - /// 512kb of buffer memory in total. - /// - /// - /// - /// The application can set this value at any time, but it is effective - /// only before the first call to Write(), which is when the buffers are - /// allocated. - /// - /// - public int Buckets - { - get - { - return _nBuckets; - } - set - { - if (value < 1 || value > 10240) - throw new ArgumentOutOfRangeException("Buckets", - "Buckets must be between 1 and 10240"); - _nBuckets = value; - TraceOutput(TraceBits.Instance, "Buckets {0}", _nBuckets); - } - } - - /// - /// The size of the buffers used by the compressor threads. - /// - /// - /// - /// - /// The default buffer size is 128k. The application can set - /// this value at any time, but it is effective only before - /// the first Write(). - /// - /// - /// - /// Larger buffer sizes implies larger memory consumption but allows - /// more efficient compression. Using smaller buffer sizes consumes less - /// memory but result in less effective compression. For example, using - /// the default buffer size of 128k, the compression delivered is within - /// 1% of the compression delivered by the single-threaded . On the other hand, using a - /// BufferSize of 8k can result in a compressed data stream that is 5% - /// larger than that delivered by the single-threaded - /// DeflateStream. Excessively small buffer sizes can also cause - /// the speed of the ParallelDeflateOutputStream to drop, because of - /// larger thread scheduling overhead dealing with many many small - /// buffers. - /// - /// - /// - /// The total amount of storage space allocated for buffering will be - /// (n*M*S*2), where n is the number of CPUs, M is the multiple (), S is the size of each buffer (this - /// property), and there are 2 buffers used by the compressor, one for - /// input and one for output. For example, if your machine has a total - /// of 4 cores, and if you set to 3, and - /// you keep the default buffer size of 128k, then the - /// ParallelDeflateOutputStream will use 3mb of buffer memory in - /// total. - /// - /// - /// - public int BufferSize - { - get { return _bufferSize;} - set - { - if (value < 1024) - throw new ArgumentOutOfRangeException("BufferSize", - "BufferSize must be greater than 1024 bytes"); - _bufferSize = value; - TraceOutput(TraceBits.Instance, "BufferSize {0}", _bufferSize); - } - } - - /// - /// The CRC32 for the pre-compressed data that was written through the stream. - /// - /// - /// This value is meaningful only after a call to Close(). - /// - public int Crc32 { get { return _Crc32; } } - - - /// - /// The total number of uncompressed bytes processed by the ParallelGZipOutputStream. - /// - /// - /// This value is meaningful only after a call to Close(). - /// - public Int64 BytesProcessed { get { return _totalBytesProcessed; } } - - - /// - /// The comment on the GZIP stream. - /// - /// - /// - /// - /// The GZIP format allows for each file to optionally have an associated - /// comment stored with the file. The comment is encoded with the ISO-8859-1 - /// code page. To include a comment in a GZIP stream you create, set this - /// property before calling Write() for the first time on the - /// ParallelGZipOutputStream. - /// - /// - /// - public String Comment - { - get - { - return _comment; - } - set - { - if (_firstWriteDone) - throw new InvalidOperationException(); - - _comment = value; - } - } - - - /// - /// The FileName for the GZIP stream. - /// - /// - /// - /// - /// - /// The GZIP format optionally allows each compressed file to embed an - /// associated filename. This property holds that value. Set this - /// property before calling Write() the first time on the - /// ParallelGZipOutputStream. The actual filename is encoded - /// into the GZIP bytestream with the ISO-8859-1 code page, according - /// to RFC 1952. It is the application's responsibility to insure that - /// the FileName can be encoded and decoded correctly with this code - /// page. - /// - /// - /// - /// The value of this property is merely written into the GZIP output. - /// There is nothing in this class that verifies that the value you - /// set here is consistent with any filesystem file the compressed - /// data eventually written to, if any. - /// - /// - public String FileName - { - get { return _FileName; } - set - { - if (_firstWriteDone) - throw new InvalidOperationException(); - - _FileName = value; - if (_FileName == null) return; - if (_FileName.IndexOf("/") != -1) - _FileName = _FileName.Replace("/", "\\"); - - if (_FileName.EndsWith("\\")) - throw new ArgumentException("FileName", "The FileName property may not end in slash."); - - if (_FileName.IndexOf("\\") != -1) - _FileName = Path.GetFileName(_FileName); - } - } - - - /// - /// The last modified time for the GZIP stream. - /// - /// - /// - /// GZIP allows the storage of a last modified time with each GZIP entry. - /// When compressing data, you must set this before the first call to - /// Write(), in order for it to be written to the output stream. - /// - public DateTime? LastModified; - - - private void _TakeAndCompress() - { - var rnd = new System.Random(); - - while (!_toCompress.IsCompleted) - { - WorkItem workitem = null; - int ix = -1; - try - { - ix = _toCompress.Take(); - workitem = _pool[ix]; - } - catch (InvalidOperationException) - { - // The collection has been completed. - // Some other thread has called CompleteAdding() - // after this thread passed the - // IsCompleted check. - } - if (workitem == null) continue; - - try - { - TraceOutput(TraceBits.Compress, - "Compress lock wi({0}) ord({1})", - workitem.index, - workitem.ordinal); - - // compress one buffer - Ionic.Zlib.CRC32 crc = new CRC32(); - int ib = workitem.inputBytesAvailable; - crc.SlurpBlock(workitem.buffer, 0, workitem.inputBytesAvailable); - DeflateOneSegment(workitem); - workitem.crc = crc.Crc32Result; - TraceOutput(TraceBits.Compress, - "Compress done wi({0}) ord({1}) ib-({2}) cba({3})", - workitem.index, - workitem.ordinal, - ib, - workitem.compressedBytesAvailable - ); - - lock(_latestLock) - { - if (workitem.ordinal > _latestCompressed) - _latestCompressed = workitem.ordinal; - } - - _toWrite.Add(workitem.index); - _newlyCompressedBlob.Set(); - } - catch (System.Exception exc1) - { - lock(_eLock) - { - // expose the exception to the main thread - if (_pendingException!=null) - _pendingException = exc1; - } - } - } - } - - - - private void _InitializeBuffers() - { - _toCompress = new BlockingCollection(Buckets); - _toFill = new BlockingCollection(Buckets); - _toWrite = new BlockingCollection(new ConcurrentQueue()); - _pool = new System.Collections.Generic.List(); - for(int i=0; i < Buckets; i++) - { - _pool.Add(new WorkItem(_bufferSize, _compressLevel, Strategy)); - _toFill.Add(i); - - // Start one perpetual compressor task per bucket. - Task.Factory.StartNew( _TakeAndCompress ); - } - - // for diagnostic purposes only - for(int i=0; i < _pool.Count; i++) - _pool[i].index= i; - - _newlyCompressedBlob = new AutoResetEvent(false); - _runningCrc = new Ionic.Zlib.CRC32(); - _currentlyFilling = -1; - _lastFilled = -1; - _lastWritten = -1; - _latestCompressed = -1; - } - - - internal static readonly System.DateTime _unixEpoch = new System.DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc); - internal static readonly System.Text.Encoding iso8859dash1 = System.Text.Encoding.GetEncoding("iso-8859-1"); - - - private int EmitHeader() - { - byte[] commentBytes = (Comment == null) ? null : iso8859dash1.GetBytes(Comment); - byte[] filenameBytes = (FileName == null) ? null : iso8859dash1.GetBytes(FileName); - - int cbLength = (Comment == null) ? 0 : commentBytes.Length + 1; - int fnLength = (FileName == null) ? 0 : filenameBytes.Length + 1; - - int bufferLength = 10 + cbLength + fnLength; - byte[] header = new byte[bufferLength]; - int i = 0; - // ID - header[i++] = 0x1F; - header[i++] = 0x8B; - - // compression method - header[i++] = 8; - byte flag = 0; - if (Comment != null) - flag ^= 0x10; - if (FileName != null) - flag ^= 0x8; - - // flag - header[i++] = flag; - - // mtime - if (!LastModified.HasValue) LastModified = DateTime.Now; - System.TimeSpan delta = LastModified.Value - _unixEpoch; - Int32 timet = (Int32)delta.TotalSeconds; - Array.Copy(BitConverter.GetBytes(timet), 0, header, i, 4); - i += 4; - - // xflg - header[i++] = 0; // this field is totally useless - // OS - header[i++] = 0xFF; // 0xFF == unspecified - - // extra field length - only if FEXTRA is set, which it is not. - //header[i++]= 0; - //header[i++]= 0; - - // filename - if (fnLength != 0) - { - Array.Copy(filenameBytes, 0, header, i, fnLength - 1); - i += fnLength - 1; - header[i++] = 0; // terminate - } - - // comment - if (cbLength != 0) - { - Array.Copy(commentBytes, 0, header, i, cbLength - 1); - i += cbLength - 1; - header[i++] = 0; // terminate - } - - _outStream.Write(header, 0, header.Length); - - return header.Length; // bytes written - } - - - - private void _EmitPendingBuffers(bool doAll, bool mustWait) - { - // When combining parallel deflation with a ZipSegmentedStream, it's - // possible for the ZSS to throw from within this method. In that - // case, Close/Dispose will be called on this stream, if this stream - // is employed within a using or try/finally pair as required. But - // this stream is unaware of the pending exception, so the Close() - // method invokes this method AGAIN. This can lead to a deadlock. - // Therefore, failfast if re-entering. - - if (emitting) return; - emitting = true; - - if (doAll || mustWait) - _newlyCompressedBlob.WaitOne(); - - do - { - int firstSkip = -1; - int millisecondsToWait = doAll ? 200 : (mustWait ? -1 : 0); - int nextToWrite; - - while (_toWrite.TryTake(out nextToWrite, millisecondsToWait)) - { - WorkItem workitem = _pool[nextToWrite]; - if (workitem.ordinal != _lastWritten + 1) - { - // not the needed ordinal, so requeue and try again. - TraceOutput(TraceBits.EmitSkip, - "Emit skip wi({0}) ord({1}) lw({2}) fs({3})", - workitem.index, - workitem.ordinal, - _lastWritten, - firstSkip); - - _toWrite.Add(nextToWrite); - - if (firstSkip == nextToWrite) - { - // We went around the list once. - // None of the items in the list is the one we want. - // Now wait for a compressor to signal. - _newlyCompressedBlob.WaitOne(); - firstSkip = -1; - } - else if (firstSkip == -1) - firstSkip = nextToWrite; - - continue; - } - - firstSkip = -1; - - TraceOutput(TraceBits.EmitBegin, - "Emit begin wi({0}) ord({1}) cba({2})", - workitem.index, - workitem.ordinal, - workitem.compressedBytesAvailable); - - _outStream.Write(workitem.compressed, 0, workitem.compressedBytesAvailable); - _runningCrc.Combine(workitem.crc, workitem.inputBytesAvailable); - _totalBytesProcessed += workitem.inputBytesAvailable; - workitem.inputBytesAvailable= 0; - - TraceOutput(TraceBits.EmitDone, - "Emit done wi({0}) ord({1}) cba({2}) mtw({3})", - workitem.index, - workitem.ordinal, - workitem.compressedBytesAvailable, - millisecondsToWait); - - _lastWritten = workitem.ordinal; - _toFill.Add(workitem.index); - - // don't wait next time through - if (millisecondsToWait == -1) millisecondsToWait = 0; - } - - } while (doAll && - !_toCompress.IsCompleted && - (_lastWritten != _latestCompressed)); - - emitting = false; - } - - - - - - /// - /// Write data to the stream. - /// - /// - /// - /// - /// - /// To use the ParallelGZipOutputStream to compress data, create a - /// ParallelGZipOutputStream, passing a writable output stream. - /// Then call Write() on that ParallelGZipOutputStream, providing - /// uncompressed data as input. The data sent to the output stream - /// will be the compressed form of the data written into the stream. - /// - /// - /// - /// To decompress data, use the class. - /// Any RFC-1951 - /// - /// - /// - /// The buffer holding data to write to the stream. - /// the offset within that data array to find the first byte to write. - /// the number of bytes to write. - public override void Write(byte[] buffer, int offset, int count) - { - bool wantWaitEmit = false; - if (_isClosed) - throw new InvalidOperationException(); - - // dispense any exception that occurred on the BG threads - if (_pendingException != null) - throw _pendingException; - - if (count == 0) return; // NOP - - TraceOutput(TraceBits.WriteEnter, "Write enter"); - - if (!_firstWriteDone) - { - _InitializeBuffers(); - _firstWriteDone = true; - EmitHeader(); - } - - do - { - // may need to make buffers available - _EmitPendingBuffers(false, wantWaitEmit); - - wantWaitEmit = false; - // use current, or get a buffer to fill - int ix = -1; - if (_currentlyFilling >= 0) - { - ix = _currentlyFilling; - TraceOutput(TraceBits.WriteTake, - "Write notake wi({0}) lf({1})", - ix, - _lastFilled); - } - else - { - TraceOutput(TraceBits.WriteTake, "Write take?"); - if (!_toFill.TryTake(out ix, 0)) - { - // no available buffers, so... need to emit - // compressed buffers. - wantWaitEmit = true; - continue; - } - - TraceOutput(TraceBits.WriteTake, - "Write take wi({0}) lf({1})", - ix, - _lastFilled); - ++_lastFilled; // TODO: consider rollover? - } - - WorkItem workitem = _pool[ix]; - - int limit = ((workitem.buffer.Length - workitem.inputBytesAvailable) > count) - ? count - : (workitem.buffer.Length - workitem.inputBytesAvailable); - - workitem.ordinal = _lastFilled; - - TraceOutput(TraceBits.Write, - "Write lock wi({0}) ord({1}) iba({2})", - workitem.index, - workitem.ordinal, - workitem.inputBytesAvailable ); - - // copy from the provided buffer to our workitem, starting at - // the tail end of whatever data we might have in there currently. - Array.Copy(buffer, - offset, - workitem.buffer, - workitem.inputBytesAvailable, - limit); - - count -= limit; - offset += limit; - workitem.inputBytesAvailable += limit; - - if (workitem.inputBytesAvailable==workitem.buffer.Length) - { - TraceOutput(TraceBits.Write, - "Write full wi({0}) ord({1}) iba({2})", - workitem.index, - workitem.ordinal, - workitem.inputBytesAvailable ); - _toCompress.Add(ix); - _currentlyFilling = -1; // will get a new buffer next time - } - else - { - _currentlyFilling = ix; - } - - if (count > 0) - TraceOutput(TraceBits.WriteEnter, "Write more"); - } - while (count > 0); // until no more to write - - TraceOutput(TraceBits.WriteEnter, "Write exit"); - return; - } - - - - private void _FlushFinish() - { - // After writing a series of compressed buffers, each one closed - // with Flush.Sync, we now write the final one as Flush.Finish, - // and then stop. - byte[] buffer = new byte[128]; - var compressor = new ZlibCodec(); - int rc = compressor.InitializeDeflate(_compressLevel, false); - compressor.InputBuffer = null; - compressor.NextIn = 0; - compressor.AvailableBytesIn = 0; - compressor.OutputBuffer = buffer; - compressor.NextOut = 0; - compressor.AvailableBytesOut = buffer.Length; - rc = compressor.Deflate(FlushType.Finish); - - if (rc != ZlibConstants.Z_STREAM_END && rc != ZlibConstants.Z_OK) - throw new Exception("deflating: " + compressor.Message); - - if (buffer.Length - compressor.AvailableBytesOut > 0) - { - TraceOutput(TraceBits.EmitBegin, - "Emit begin flush bytes({0})", - buffer.Length - compressor.AvailableBytesOut); - - _outStream.Write(buffer, 0, buffer.Length - compressor.AvailableBytesOut); - - TraceOutput(TraceBits.EmitDone, - "Emit done flush"); - } - - compressor.EndDeflate(); - - _Crc32 = _runningCrc.Crc32Result; - } - - - private void _EmitTrailer() - { - // Emit the GZIP trailer: CRC32 and size mod 2^32 - _outStream.Write(BitConverter.GetBytes(_runningCrc.Crc32Result), 0, 4); - - int c2 = (Int32)(_totalBytesProcessed & 0x00000000FFFFFFFF); - _outStream.Write(BitConverter.GetBytes(c2), 0, 4); - } - - - private void _Flush(bool lastInput) - { - if (_isClosed) - throw new InvalidOperationException(); - - // post the current partial buffer to the _toCompress queue - if (_currentlyFilling>=0) - { - _toCompress.Add(_currentlyFilling); - TraceOutput(TraceBits.Flush, - "Flush filled wi({0})", - _currentlyFilling); - - _currentlyFilling = -1; // get a new buffer next Write() - } - - if (lastInput) - { - //_toWrite.CompleteAdding(); // cannot do because of sifting - _toCompress.CompleteAdding(); - _EmitPendingBuffers(true, false); - _FlushFinish(); - _EmitTrailer(); - } - else - { - _EmitPendingBuffers(false, false); - } - } - - - - /// - /// Flush the stream. - /// - public override void Flush() - { - _Flush(false); - } - - - - /// - /// Close the stream. - /// - /// - /// - /// The application must call Close() on this stream to guarantee - /// that all of the data written in has been compressed, and the - /// compressed data has been written out. - /// - /// - /// Close() is called implicitly when this stream is used within - /// a using clause. - /// - /// - public override void Close() - { - TraceOutput(TraceBits.Session, "Close {0:X8}", this.GetHashCode()); - - if (_isClosed) return; - - _Flush(true); - - if (!_leaveOpen) - _outStream.Close(); - - _isClosed= true; - } - - - - /// Dispose the object - /// - /// - /// Because ParallelDeflateOutputStream is IDisposable, the - /// application must call this method when finished using the instance. - /// - /// - /// This method is generally called implicitly upon exit from - /// a using scope in C# (Using in VB). - /// - /// - new public void Dispose() - { - TraceOutput(TraceBits.Lifecycle, "Dispose {0:X8}", this.GetHashCode()); - _pool = null; - Close(); - Dispose(true); - } - - - - /// The Dispose method - protected override void Dispose(bool disposeManagedResources) - { - if (disposeManagedResources) - { - // dispose managed resources - } - } - - - - private bool DeflateOneSegment(WorkItem workitem) - { - ZlibCodec compressor = workitem.compressor; - int rc= 0; - compressor.ResetDeflate(); - compressor.NextIn = 0; - - compressor.AvailableBytesIn = workitem.inputBytesAvailable; - - // step 1: deflate the buffer - compressor.NextOut = 0; - compressor.AvailableBytesOut = workitem.compressed.Length; - do - { - compressor.Deflate(FlushType.None); - } - while (compressor.AvailableBytesIn > 0 || compressor.AvailableBytesOut == 0); - - // step 2: flush (sync) - rc = compressor.Deflate(FlushType.Sync); - - workitem.compressedBytesAvailable = (int) compressor.TotalBytesOut; - return true; - } - - - - [System.Diagnostics.ConditionalAttribute("Trace")] - private void TraceOutput(TraceBits bits, string format, params object[] varParams) - { - if ((bits & _DesiredTrace) != 0) - { - lock(_outputLock) - { - int tid = Thread.CurrentThread.GetHashCode(); - Console.ForegroundColor = (ConsoleColor) (tid % 8 + 8); - Console.Write("{0:000} PGOS ", tid); - Console.WriteLine(format, varParams); - Console.ResetColor(); - } - } - } - - - - // used only when Trace is defined - [Flags] - enum TraceBits : uint - { - None = 0, - NotUsed1 = 1, - EmitLock = 2, - EmitEnter = 4, // enter _EmitPending - EmitBegin = 8, // begin to write out - EmitDone = 16, // done writing out - EmitSkip = 32, // writer skipping a workitem - EmitAll = 58, // All Emit flags - Flush = 64, - Lifecycle = 128, // constructor/disposer - Session = 256, // Close/Reset - Synch = 512, // thread synchronization - Instance = 1024, // instance settings - Compress = 2048, // compress task - Write = 4096, // filling buffers, when caller invokes Write() - WriteEnter = 8192, // upon entry to Write() - WriteTake = 16384, // on _toFill.Take() - All = 0xffffffff, - } - - - - /// - /// Indicates whether the stream supports Seek operations. - /// - /// - /// Always returns false. - /// - public override bool CanSeek - { - get { return false; } - } - - - /// - /// Indicates whether the stream supports Read operations. - /// - /// - /// Always returns false. - /// - public override bool CanRead - { - get {return false;} - } - - /// - /// Indicates whether the stream supports Write operations. - /// - /// - /// Returns true if the provided stream is writable. - /// - public override bool CanWrite - { - get { return _outStream.CanWrite; } - } - - /// - /// Reading this property always throws a NotSupportedException. - /// - public override long Length - { - get { throw new NotSupportedException(); } - } - - /// - /// Writing this property always throws a NotSupportedException. - /// On Read, the value is the number of bytes written so far to the - /// output. - /// - /// - public override long Position - { - get { return _outStream.Position; } - set { throw new NotSupportedException(); } - } - - /// - /// This method always throws a NotSupportedException. - /// - public override int Read(byte[] buffer, int offset, int count) - { - throw new NotSupportedException(); - } - - /// - /// This method always throws a NotSupportedException. - /// - public override long Seek(long offset, System.IO.SeekOrigin origin) - { - throw new NotSupportedException(); - } - - /// - /// This method always throws a NotSupportedException. - /// - public override void SetLength(long value) - { - throw new NotSupportedException(); - } - } -} - - +//#define Trace + +// ParallelGZipOutputStream.cs +// ------------------------------------------------------------------ +// +// A GzipStream that does compression only, and only in output. It uses a +// divide-and-conquer approach with multiple threads to exploit multiple +// CPUs for the DEFLATE computation. +// +// Last Saved: <2011-July-11 14:36:48> +// ------------------------------------------------------------------ +// +// Copyright (c) 2009-2011 by Dino Chiesa +// All rights reserved! +// +// ------------------------------------------------------------------ +// +// compile: c:\.net4.0\csc.exe /t:module /R:Ionic.Zip.dll @@ORIG@@ +// flymake: c:\.net4.0\csc.exe /t:module /R:Ionic.Zip.dll @@FILE@@ +// + +using System; +using System.Collections.Concurrent; +using System.Threading.Tasks; +using System.Threading; +using Ionic.Zlib; +using System.IO; + + +namespace Ionic.Exploration +{ + internal class WorkItem + { + public byte[] buffer; + public byte[] compressed; + public int crc; + public int index; + public int ordinal; + public int inputBytesAvailable; + public int compressedBytesAvailable; + + public ZlibCodec compressor; + + public WorkItem(int size, + Ionic.Zlib.CompressionLevel compressLevel, + CompressionStrategy strategy) + { + buffer= new byte[size]; + // alloc 5 bytes overhead for every block (margin of safety= 2) + int n = size + ((size / 32768)+1) * 5 * 2; + compressed = new byte[n]; + + compressor = new ZlibCodec(); + compressor.InitializeDeflate(compressLevel, false); + compressor.OutputBuffer = compressed; + compressor.InputBuffer = buffer; + } + } + + /// + /// A class for compressing and decompressing streams using the + /// Deflate algorithm with multiple threads. + /// + /// + /// + /// + /// This class is for compression only, and that can be only + /// through writing. + /// + /// + /// + /// For more information on the Deflate algorithm, see IETF RFC 1952, + /// "GZIP file format specification version 4.3" http://tools.ietf.org/html/rfc1952 + /// + /// + /// + /// This class is similar to , except that this + /// implementation uses an approach that employs multiple worker threads + /// to perform the compression. On a multi-cpu or multi-core computer, + /// the performance of this class can be significantly higher than the + /// single-threaded DeflateStream, particularly for larger streams. How + /// large? In my experience, Anything over 10mb is a good candidate for parallel + /// compression. + /// + /// + /// + /// The tradeoff is that this class uses more memory and more CPU than the + /// vanilla DeflateStream, and also is slightly less efficient as a compressor. For + /// large files the size of the compressed data stream can be less than 1% + /// larger than the size of a compressed data stream from the vanialla + /// DeflateStream. For smaller files the difference can be larger. The + /// difference will also be larger if you set the BufferSize to be lower + /// than the default value. Your mileage may vary. Finally, for small + /// files, the ParallelGZipOutputStream can be much slower than the vanilla + /// DeflateStream, because of the overhead of using the thread pool. + /// + /// + /// + /// + public class ParallelGZipOutputStream : System.IO.Stream + { + private static readonly int IO_BUFFER_SIZE_DEFAULT = 64 * 1024; + + private System.Collections.Generic.List _pool; + private bool _leaveOpen; + private bool emitting; + private System.IO.Stream _outStream; + private Ionic.Zlib.CRC32 _runningCrc; + private int _currentlyFilling; + private AutoResetEvent _newlyCompressedBlob; + private int _lastWritten; + private int _latestCompressed; + private string _comment; + private string _FileName; + private int _lastFilled; + private int _bufferSize; + private int _nBuckets; + private object _latestLock = new object(); + private object _outputLock = new object(); + private bool _isClosed; + private bool _firstWriteDone; + private int _Crc32; + private Int64 _totalBytesProcessed; + private Ionic.Zlib.CompressionLevel _compressLevel; + private volatile Exception _pendingException; + private object _eLock = new Object(); // protects _pendingException + private BlockingCollection _toWrite; + private BlockingCollection _toCompress; + private BlockingCollection _toFill; + + // This bitfield is used only when Trace is defined. + + //private TraceBits _DesiredTrace = TraceBits.All; + private TraceBits _DesiredTrace = TraceBits.Compress | + TraceBits.Session | + TraceBits.WriteTake | + TraceBits.WriteEnter | + TraceBits.EmitEnter | + TraceBits.EmitDone | + TraceBits.EmitLock | + TraceBits.EmitSkip | + TraceBits.EmitBegin; + + /// + /// Create a ParallelGZipOutputStream. + /// + /// + /// + /// + /// This stream compresses data written into it via the DEFLATE + /// algorithm (see RFC 1951), and writes out the compressed byte stream. + /// + /// + /// + /// The instance will use the default compression level, the default + /// buffer sizes and the default number of threads and buffers per + /// thread. + /// + /// + /// + /// This class is similar to , + /// except that this implementation uses an approach that employs + /// multiple worker threads to perform the DEFLATE. On a multi-cpu or + /// multi-core computer, the performance of this class can be + /// significantly higher than the single-threaded DeflateStream, + /// particularly for larger streams. How large? Anything over 10mb is + /// a good candidate for parallel compression. + /// + /// + /// + /// + /// + /// + /// This example shows how to use a ParallelGZipOutputStream to compress + /// data. It reads a file, compresses it, and writes the compressed data to + /// a second, output file. + /// + /// + /// byte[] buffer = new byte[WORKING_BUFFER_SIZE]; + /// int n= -1; + /// String outputFile = fileToCompress + ".compressed"; + /// using (System.IO.Stream input = System.IO.File.OpenRead(fileToCompress)) + /// { + /// using (var raw = System.IO.File.Create(outputFile)) + /// { + /// using (Stream compressor = new ParallelGZipOutputStream(raw)) + /// { + /// while ((n= input.Read(buffer, 0, buffer.Length)) != 0) + /// { + /// compressor.Write(buffer, 0, n); + /// } + /// } + /// } + /// } + /// + /// + /// Dim buffer As Byte() = New Byte(4096) {} + /// Dim n As Integer = -1 + /// Dim outputFile As String = (fileToCompress & ".compressed") + /// Using input As Stream = File.OpenRead(fileToCompress) + /// Using raw As FileStream = File.Create(outputFile) + /// Using compressor As Stream = New ParallelGZipOutputStream(raw) + /// Do While (n <> 0) + /// If (n > 0) Then + /// compressor.Write(buffer, 0, n) + /// End If + /// n = input.Read(buffer, 0, buffer.Length) + /// Loop + /// End Using + /// End Using + /// End Using + /// + /// + /// The stream to which compressed data will be written. + public ParallelGZipOutputStream(System.IO.Stream stream) + : this(stream, CompressionLevel.Default, CompressionStrategy.Default, false) + { + } + + /// + /// Create a ParallelDeflateOutputStream using the specified CompressionLevel. + /// + /// + /// See the + /// constructor for example code. + /// + /// The stream to which compressed data will be written. + /// A tuning knob to trade speed for effectiveness. + public ParallelGZipOutputStream(System.IO.Stream stream, CompressionLevel level) + : this(stream, level, CompressionStrategy.Default, false) + { + } + + /// + /// Create a ParallelDeflateOutputStream and specify whether to leave the captive stream open + /// when the ParallelDeflateOutputStream is closed. + /// + /// + /// See the + /// constructor for example code. + /// + /// The stream to which compressed data will be written. + /// + /// true if the application would like the stream to remain open after inflation/deflation. + /// + public ParallelGZipOutputStream(System.IO.Stream stream, bool leaveOpen) + : this(stream, CompressionLevel.Default, CompressionStrategy.Default, leaveOpen) + { + } + + /// + /// Create a ParallelDeflateOutputStream and specify whether to leave the captive stream open + /// when the ParallelDeflateOutputStream is closed. + /// + /// + /// See the + /// constructor for example code. + /// + /// The stream to which compressed data will be written. + /// A tuning knob to trade speed for effectiveness. + /// + /// true if the application would like the stream to remain open after inflation/deflation. + /// + public ParallelGZipOutputStream(System.IO.Stream stream, CompressionLevel level, bool leaveOpen) + : this(stream, CompressionLevel.Default, CompressionStrategy.Default, leaveOpen) + { + } + + /// + /// Create a ParallelDeflateOutputStream using the specified + /// CompressionLevel and CompressionStrategy, and specifying whether to + /// leave the captive stream open when the ParallelDeflateOutputStream is + /// closed. + /// + /// + /// See the + /// constructor for example code. + /// + /// The stream to which compressed data will be written. + /// A tuning knob to trade speed for effectiveness. + /// + /// By tweaking this parameter, you may be able to optimize the compression for + /// data with particular characteristics. + /// + /// + /// true if the application would like the stream to remain open after inflation/deflation. + /// + public ParallelGZipOutputStream(System.IO.Stream stream, + CompressionLevel level, + CompressionStrategy strategy, + bool leaveOpen) + { + TraceOutput(TraceBits.Lifecycle | TraceBits.Session, "-------------------------------------------------------"); + TraceOutput(TraceBits.Lifecycle | TraceBits.Session, "Create {0:X8}", this.GetHashCode()); + _outStream = stream; + _compressLevel= level; + Strategy = strategy; + _leaveOpen = leaveOpen; + + _nBuckets = 4; // default + _bufferSize = IO_BUFFER_SIZE_DEFAULT; + } + + + /// + /// The ZLIB strategy to be used during compression. + /// + /// + public CompressionStrategy Strategy + { + get; + private set; + } + + /// + /// The number of buffers to use. + /// + /// + /// + /// + /// This property sets the number of memory buffers to create. This + /// sets an upper limit on the amount of memory the stream can use, + /// and also the degree of parallelism the stream can employ. + /// + /// + /// + /// The divide-and-conquer approach taken by this class assumes a + /// single thread from the application will call Write(). There + /// will be multiple Tasks that then compress (DEFLATE) the data + /// written into the stream. The application's thread aggregates + /// those results and emits the compressed output. + /// + /// + /// + /// The default value is 4. Different values may deliver better or + /// worse results, depending on the dynamic performance + /// characteristics of your storage and compute resources. If you + /// have more than 2 CPUs, or more than 3gb memory, you probably + /// want to increase this value. + /// + /// + /// + /// The total amount of storage space allocated for buffering will + /// be (M*S*2), where M is the multiple (this property), S is the + /// size of each buffer (). There are 2 + /// buffers used by the compressor, one for input and one for + /// output. If you retain the default values for Buckets (4), and + /// BufferSize (64k), then the ParallelDeflateOutputStream will use + /// 512kb of buffer memory in total. + /// + /// + /// + /// The application can set this value at any time, but it is effective + /// only before the first call to Write(), which is when the buffers are + /// allocated. + /// + /// + public int Buckets + { + get + { + return _nBuckets; + } + set + { + if (value < 1 || value > 10240) + throw new ArgumentOutOfRangeException("Buckets", + "Buckets must be between 1 and 10240"); + _nBuckets = value; + TraceOutput(TraceBits.Instance, "Buckets {0}", _nBuckets); + } + } + + /// + /// The size of the buffers used by the compressor threads. + /// + /// + /// + /// + /// The default buffer size is 128k. The application can set + /// this value at any time, but it is effective only before + /// the first Write(). + /// + /// + /// + /// Larger buffer sizes implies larger memory consumption but allows + /// more efficient compression. Using smaller buffer sizes consumes less + /// memory but result in less effective compression. For example, using + /// the default buffer size of 128k, the compression delivered is within + /// 1% of the compression delivered by the single-threaded . On the other hand, using a + /// BufferSize of 8k can result in a compressed data stream that is 5% + /// larger than that delivered by the single-threaded + /// DeflateStream. Excessively small buffer sizes can also cause + /// the speed of the ParallelDeflateOutputStream to drop, because of + /// larger thread scheduling overhead dealing with many many small + /// buffers. + /// + /// + /// + /// The total amount of storage space allocated for buffering will be + /// (n*M*S*2), where n is the number of CPUs, M is the multiple (), S is the size of each buffer (this + /// property), and there are 2 buffers used by the compressor, one for + /// input and one for output. For example, if your machine has a total + /// of 4 cores, and if you set to 3, and + /// you keep the default buffer size of 128k, then the + /// ParallelDeflateOutputStream will use 3mb of buffer memory in + /// total. + /// + /// + /// + public int BufferSize + { + get { return _bufferSize;} + set + { + if (value < 1024) + throw new ArgumentOutOfRangeException("BufferSize", + "BufferSize must be greater than 1024 bytes"); + _bufferSize = value; + TraceOutput(TraceBits.Instance, "BufferSize {0}", _bufferSize); + } + } + + /// + /// The CRC32 for the pre-compressed data that was written through the stream. + /// + /// + /// This value is meaningful only after a call to Close(). + /// + public int Crc32 { get { return _Crc32; } } + + + /// + /// The total number of uncompressed bytes processed by the ParallelGZipOutputStream. + /// + /// + /// This value is meaningful only after a call to Close(). + /// + public Int64 BytesProcessed { get { return _totalBytesProcessed; } } + + + /// + /// The comment on the GZIP stream. + /// + /// + /// + /// + /// The GZIP format allows for each file to optionally have an associated + /// comment stored with the file. The comment is encoded with the ISO-8859-1 + /// code page. To include a comment in a GZIP stream you create, set this + /// property before calling Write() for the first time on the + /// ParallelGZipOutputStream. + /// + /// + /// + public String Comment + { + get + { + return _comment; + } + set + { + if (_firstWriteDone) + throw new InvalidOperationException(); + + _comment = value; + } + } + + + /// + /// The FileName for the GZIP stream. + /// + /// + /// + /// + /// + /// The GZIP format optionally allows each compressed file to embed an + /// associated filename. This property holds that value. Set this + /// property before calling Write() the first time on the + /// ParallelGZipOutputStream. The actual filename is encoded + /// into the GZIP bytestream with the ISO-8859-1 code page, according + /// to RFC 1952. It is the application's responsibility to insure that + /// the FileName can be encoded and decoded correctly with this code + /// page. + /// + /// + /// + /// The value of this property is merely written into the GZIP output. + /// There is nothing in this class that verifies that the value you + /// set here is consistent with any filesystem file the compressed + /// data eventually written to, if any. + /// + /// + public String FileName + { + get { return _FileName; } + set + { + if (_firstWriteDone) + throw new InvalidOperationException(); + + _FileName = value; + if (_FileName == null) return; + if (_FileName.IndexOf("/") != -1) + _FileName = _FileName.Replace("/", "\\"); + + if (_FileName.EndsWith("\\")) + throw new ArgumentException("FileName", "The FileName property may not end in slash."); + + if (_FileName.IndexOf("\\") != -1) + _FileName = Path.GetFileName(_FileName); + } + } + + + /// + /// The last modified time for the GZIP stream. + /// + /// + /// + /// GZIP allows the storage of a last modified time with each GZIP entry. + /// When compressing data, you must set this before the first call to + /// Write(), in order for it to be written to the output stream. + /// + public DateTime? LastModified; + + + private void _TakeAndCompress() + { + var rnd = new System.Random(); + + while (!_toCompress.IsCompleted) + { + WorkItem workitem = null; + int ix = -1; + try + { + ix = _toCompress.Take(); + workitem = _pool[ix]; + } + catch (InvalidOperationException) + { + // The collection has been completed. + // Some other thread has called CompleteAdding() + // after this thread passed the + // IsCompleted check. + } + if (workitem == null) continue; + + try + { + TraceOutput(TraceBits.Compress, + "Compress lock wi({0}) ord({1})", + workitem.index, + workitem.ordinal); + + // compress one buffer + Ionic.Zlib.CRC32 crc = new CRC32(); + int ib = workitem.inputBytesAvailable; + crc.SlurpBlock(workitem.buffer, 0, workitem.inputBytesAvailable); + DeflateOneSegment(workitem); + workitem.crc = crc.Crc32Result; + TraceOutput(TraceBits.Compress, + "Compress done wi({0}) ord({1}) ib-({2}) cba({3})", + workitem.index, + workitem.ordinal, + ib, + workitem.compressedBytesAvailable + ); + + lock(_latestLock) + { + if (workitem.ordinal > _latestCompressed) + _latestCompressed = workitem.ordinal; + } + + _toWrite.Add(workitem.index); + _newlyCompressedBlob.Set(); + } + catch (System.Exception exc1) + { + lock(_eLock) + { + // expose the exception to the main thread + if (_pendingException!=null) + _pendingException = exc1; + } + } + } + } + + + + private void _InitializeBuffers() + { + _toCompress = new BlockingCollection(Buckets); + _toFill = new BlockingCollection(Buckets); + _toWrite = new BlockingCollection(new ConcurrentQueue()); + _pool = new System.Collections.Generic.List(); + for(int i=0; i < Buckets; i++) + { + _pool.Add(new WorkItem(_bufferSize, _compressLevel, Strategy)); + _toFill.Add(i); + + // Start one perpetual compressor task per bucket. + Task.Factory.StartNew( _TakeAndCompress ); + } + + // for diagnostic purposes only + for(int i=0; i < _pool.Count; i++) + _pool[i].index= i; + + _newlyCompressedBlob = new AutoResetEvent(false); + _runningCrc = new Ionic.Zlib.CRC32(); + _currentlyFilling = -1; + _lastFilled = -1; + _lastWritten = -1; + _latestCompressed = -1; + } + + + internal static readonly System.DateTime _unixEpoch = new System.DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc); + internal static readonly System.Text.Encoding iso8859dash1 = System.Text.Encoding.GetEncoding("iso-8859-1"); + + + private int EmitHeader() + { + byte[] commentBytes = (Comment == null) ? null : iso8859dash1.GetBytes(Comment); + byte[] filenameBytes = (FileName == null) ? null : iso8859dash1.GetBytes(FileName); + + int cbLength = (Comment == null) ? 0 : commentBytes.Length + 1; + int fnLength = (FileName == null) ? 0 : filenameBytes.Length + 1; + + int bufferLength = 10 + cbLength + fnLength; + byte[] header = new byte[bufferLength]; + int i = 0; + // ID + header[i++] = 0x1F; + header[i++] = 0x8B; + + // compression method + header[i++] = 8; + byte flag = 0; + if (Comment != null) + flag ^= 0x10; + if (FileName != null) + flag ^= 0x8; + + // flag + header[i++] = flag; + + // mtime + if (!LastModified.HasValue) LastModified = DateTime.Now; + System.TimeSpan delta = LastModified.Value - _unixEpoch; + Int32 timet = (Int32)delta.TotalSeconds; + Array.Copy(BitConverter.GetBytes(timet), 0, header, i, 4); + i += 4; + + // xflg + header[i++] = 0; // this field is totally useless + // OS + header[i++] = 0xFF; // 0xFF == unspecified + + // extra field length - only if FEXTRA is set, which it is not. + //header[i++]= 0; + //header[i++]= 0; + + // filename + if (fnLength != 0) + { + Array.Copy(filenameBytes, 0, header, i, fnLength - 1); + i += fnLength - 1; + header[i++] = 0; // terminate + } + + // comment + if (cbLength != 0) + { + Array.Copy(commentBytes, 0, header, i, cbLength - 1); + i += cbLength - 1; + header[i++] = 0; // terminate + } + + _outStream.Write(header, 0, header.Length); + + return header.Length; // bytes written + } + + + + private void _EmitPendingBuffers(bool doAll, bool mustWait) + { + // When combining parallel deflation with a ZipSegmentedStream, it's + // possible for the ZSS to throw from within this method. In that + // case, Close/Dispose will be called on this stream, if this stream + // is employed within a using or try/finally pair as required. But + // this stream is unaware of the pending exception, so the Close() + // method invokes this method AGAIN. This can lead to a deadlock. + // Therefore, failfast if re-entering. + + if (emitting) return; + emitting = true; + + if (doAll || mustWait) + _newlyCompressedBlob.WaitOne(); + + do + { + int firstSkip = -1; + int millisecondsToWait = doAll ? 200 : (mustWait ? -1 : 0); + int nextToWrite; + + while (_toWrite.TryTake(out nextToWrite, millisecondsToWait)) + { + WorkItem workitem = _pool[nextToWrite]; + if (workitem.ordinal != _lastWritten + 1) + { + // not the needed ordinal, so requeue and try again. + TraceOutput(TraceBits.EmitSkip, + "Emit skip wi({0}) ord({1}) lw({2}) fs({3})", + workitem.index, + workitem.ordinal, + _lastWritten, + firstSkip); + + _toWrite.Add(nextToWrite); + + if (firstSkip == nextToWrite) + { + // We went around the list once. + // None of the items in the list is the one we want. + // Now wait for a compressor to signal. + _newlyCompressedBlob.WaitOne(); + firstSkip = -1; + } + else if (firstSkip == -1) + firstSkip = nextToWrite; + + continue; + } + + firstSkip = -1; + + TraceOutput(TraceBits.EmitBegin, + "Emit begin wi({0}) ord({1}) cba({2})", + workitem.index, + workitem.ordinal, + workitem.compressedBytesAvailable); + + _outStream.Write(workitem.compressed, 0, workitem.compressedBytesAvailable); + _runningCrc.Combine(workitem.crc, workitem.inputBytesAvailable); + _totalBytesProcessed += workitem.inputBytesAvailable; + workitem.inputBytesAvailable= 0; + + TraceOutput(TraceBits.EmitDone, + "Emit done wi({0}) ord({1}) cba({2}) mtw({3})", + workitem.index, + workitem.ordinal, + workitem.compressedBytesAvailable, + millisecondsToWait); + + _lastWritten = workitem.ordinal; + _toFill.Add(workitem.index); + + // don't wait next time through + if (millisecondsToWait == -1) millisecondsToWait = 0; + } + + } while (doAll && + !_toCompress.IsCompleted && + (_lastWritten != _latestCompressed)); + + emitting = false; + } + + + + + + /// + /// Write data to the stream. + /// + /// + /// + /// + /// + /// To use the ParallelGZipOutputStream to compress data, create a + /// ParallelGZipOutputStream, passing a writable output stream. + /// Then call Write() on that ParallelGZipOutputStream, providing + /// uncompressed data as input. The data sent to the output stream + /// will be the compressed form of the data written into the stream. + /// + /// + /// + /// To decompress data, use the class. + /// Any RFC-1951 + /// + /// + /// + /// The buffer holding data to write to the stream. + /// the offset within that data array to find the first byte to write. + /// the number of bytes to write. + public override void Write(byte[] buffer, int offset, int count) + { + bool wantWaitEmit = false; + if (_isClosed) + throw new InvalidOperationException(); + + // dispense any exception that occurred on the BG threads + if (_pendingException != null) + throw _pendingException; + + if (count == 0) return; // NOP + + TraceOutput(TraceBits.WriteEnter, "Write enter"); + + if (!_firstWriteDone) + { + _InitializeBuffers(); + _firstWriteDone = true; + EmitHeader(); + } + + do + { + // may need to make buffers available + _EmitPendingBuffers(false, wantWaitEmit); + + wantWaitEmit = false; + // use current, or get a buffer to fill + int ix = -1; + if (_currentlyFilling >= 0) + { + ix = _currentlyFilling; + TraceOutput(TraceBits.WriteTake, + "Write notake wi({0}) lf({1})", + ix, + _lastFilled); + } + else + { + TraceOutput(TraceBits.WriteTake, "Write take?"); + if (!_toFill.TryTake(out ix, 0)) + { + // no available buffers, so... need to emit + // compressed buffers. + wantWaitEmit = true; + continue; + } + + TraceOutput(TraceBits.WriteTake, + "Write take wi({0}) lf({1})", + ix, + _lastFilled); + ++_lastFilled; // TODO: consider rollover? + } + + WorkItem workitem = _pool[ix]; + + int limit = ((workitem.buffer.Length - workitem.inputBytesAvailable) > count) + ? count + : (workitem.buffer.Length - workitem.inputBytesAvailable); + + workitem.ordinal = _lastFilled; + + TraceOutput(TraceBits.Write, + "Write lock wi({0}) ord({1}) iba({2})", + workitem.index, + workitem.ordinal, + workitem.inputBytesAvailable ); + + // copy from the provided buffer to our workitem, starting at + // the tail end of whatever data we might have in there currently. + Array.Copy(buffer, + offset, + workitem.buffer, + workitem.inputBytesAvailable, + limit); + + count -= limit; + offset += limit; + workitem.inputBytesAvailable += limit; + + if (workitem.inputBytesAvailable==workitem.buffer.Length) + { + TraceOutput(TraceBits.Write, + "Write full wi({0}) ord({1}) iba({2})", + workitem.index, + workitem.ordinal, + workitem.inputBytesAvailable ); + _toCompress.Add(ix); + _currentlyFilling = -1; // will get a new buffer next time + } + else + { + _currentlyFilling = ix; + } + + if (count > 0) + TraceOutput(TraceBits.WriteEnter, "Write more"); + } + while (count > 0); // until no more to write + + TraceOutput(TraceBits.WriteEnter, "Write exit"); + return; + } + + + + private void _FlushFinish() + { + // After writing a series of compressed buffers, each one closed + // with Flush.Sync, we now write the final one as Flush.Finish, + // and then stop. + byte[] buffer = new byte[128]; + var compressor = new ZlibCodec(); + int rc = compressor.InitializeDeflate(_compressLevel, false); + compressor.InputBuffer = null; + compressor.NextIn = 0; + compressor.AvailableBytesIn = 0; + compressor.OutputBuffer = buffer; + compressor.NextOut = 0; + compressor.AvailableBytesOut = buffer.Length; + rc = compressor.Deflate(FlushType.Finish); + + if (rc != ZlibConstants.Z_STREAM_END && rc != ZlibConstants.Z_OK) + throw new Exception("deflating: " + compressor.Message); + + if (buffer.Length - compressor.AvailableBytesOut > 0) + { + TraceOutput(TraceBits.EmitBegin, + "Emit begin flush bytes({0})", + buffer.Length - compressor.AvailableBytesOut); + + _outStream.Write(buffer, 0, buffer.Length - compressor.AvailableBytesOut); + + TraceOutput(TraceBits.EmitDone, + "Emit done flush"); + } + + compressor.EndDeflate(); + + _Crc32 = _runningCrc.Crc32Result; + } + + + private void _EmitTrailer() + { + // Emit the GZIP trailer: CRC32 and size mod 2^32 + _outStream.Write(BitConverter.GetBytes(_runningCrc.Crc32Result), 0, 4); + + int c2 = (Int32)(_totalBytesProcessed & 0x00000000FFFFFFFF); + _outStream.Write(BitConverter.GetBytes(c2), 0, 4); + } + + + private void _Flush(bool lastInput) + { + if (_isClosed) + throw new InvalidOperationException(); + + // post the current partial buffer to the _toCompress queue + if (_currentlyFilling>=0) + { + _toCompress.Add(_currentlyFilling); + TraceOutput(TraceBits.Flush, + "Flush filled wi({0})", + _currentlyFilling); + + _currentlyFilling = -1; // get a new buffer next Write() + } + + if (lastInput) + { + //_toWrite.CompleteAdding(); // cannot do because of sifting + _toCompress.CompleteAdding(); + _EmitPendingBuffers(true, false); + _FlushFinish(); + _EmitTrailer(); + } + else + { + _EmitPendingBuffers(false, false); + } + } + + + + /// + /// Flush the stream. + /// + public override void Flush() + { + _Flush(false); + } + + + + /// + /// Close the stream. + /// + /// + /// + /// The application must call Close() on this stream to guarantee + /// that all of the data written in has been compressed, and the + /// compressed data has been written out. + /// + /// + /// Close() is called implicitly when this stream is used within + /// a using clause. + /// + /// + public override void Close() + { + TraceOutput(TraceBits.Session, "Close {0:X8}", this.GetHashCode()); + + if (_isClosed) return; + + _Flush(true); + + if (!_leaveOpen) + _outStream.Close(); + + _isClosed= true; + } + + + + /// Dispose the object + /// + /// + /// Because ParallelDeflateOutputStream is IDisposable, the + /// application must call this method when finished using the instance. + /// + /// + /// This method is generally called implicitly upon exit from + /// a using scope in C# (Using in VB). + /// + /// + new public void Dispose() + { + TraceOutput(TraceBits.Lifecycle, "Dispose {0:X8}", this.GetHashCode()); + _pool = null; + Close(); + Dispose(true); + } + + + + /// The Dispose method + protected override void Dispose(bool disposeManagedResources) + { + if (disposeManagedResources) + { + // dispose managed resources + } + } + + + + private bool DeflateOneSegment(WorkItem workitem) + { + ZlibCodec compressor = workitem.compressor; + int rc= 0; + compressor.ResetDeflate(); + compressor.NextIn = 0; + + compressor.AvailableBytesIn = workitem.inputBytesAvailable; + + // step 1: deflate the buffer + compressor.NextOut = 0; + compressor.AvailableBytesOut = workitem.compressed.Length; + do + { + compressor.Deflate(FlushType.None); + } + while (compressor.AvailableBytesIn > 0 || compressor.AvailableBytesOut == 0); + + // step 2: flush (sync) + rc = compressor.Deflate(FlushType.Sync); + + workitem.compressedBytesAvailable = (int) compressor.TotalBytesOut; + return true; + } + + + + [System.Diagnostics.ConditionalAttribute("Trace")] + private void TraceOutput(TraceBits bits, string format, params object[] varParams) + { + if ((bits & _DesiredTrace) != 0) + { + lock(_outputLock) + { + int tid = Thread.CurrentThread.GetHashCode(); + Console.ForegroundColor = (ConsoleColor) (tid % 8 + 8); + Console.Write("{0:000} PGOS ", tid); + Console.WriteLine(format, varParams); + Console.ResetColor(); + } + } + } + + + + // used only when Trace is defined + [Flags] + enum TraceBits : uint + { + None = 0, + NotUsed1 = 1, + EmitLock = 2, + EmitEnter = 4, // enter _EmitPending + EmitBegin = 8, // begin to write out + EmitDone = 16, // done writing out + EmitSkip = 32, // writer skipping a workitem + EmitAll = 58, // All Emit flags + Flush = 64, + Lifecycle = 128, // constructor/disposer + Session = 256, // Close/Reset + Synch = 512, // thread synchronization + Instance = 1024, // instance settings + Compress = 2048, // compress task + Write = 4096, // filling buffers, when caller invokes Write() + WriteEnter = 8192, // upon entry to Write() + WriteTake = 16384, // on _toFill.Take() + All = 0xffffffff, + } + + + + /// + /// Indicates whether the stream supports Seek operations. + /// + /// + /// Always returns false. + /// + public override bool CanSeek + { + get { return false; } + } + + + /// + /// Indicates whether the stream supports Read operations. + /// + /// + /// Always returns false. + /// + public override bool CanRead + { + get {return false;} + } + + /// + /// Indicates whether the stream supports Write operations. + /// + /// + /// Returns true if the provided stream is writable. + /// + public override bool CanWrite + { + get { return _outStream.CanWrite; } + } + + /// + /// Reading this property always throws a NotSupportedException. + /// + public override long Length + { + get { throw new NotSupportedException(); } + } + + /// + /// Writing this property always throws a NotSupportedException. + /// On Read, the value is the number of bytes written so far to the + /// output. + /// + /// + public override long Position + { + get { return _outStream.Position; } + set { throw new NotSupportedException(); } + } + + /// + /// This method always throws a NotSupportedException. + /// + public override int Read(byte[] buffer, int offset, int count) + { + throw new NotSupportedException(); + } + + /// + /// This method always throws a NotSupportedException. + /// + public override long Seek(long offset, System.IO.SeekOrigin origin) + { + throw new NotSupportedException(); + } + + /// + /// This method always throws a NotSupportedException. + /// + public override void SetLength(long value) + { + throw new NotSupportedException(); + } + } +} + + diff --git a/src/Examples/C#/ZLIB/QuickCompress.cs b/old/src/Examples/C#/ZLIB/QuickCompress.cs similarity index 100% rename from src/Examples/C#/ZLIB/QuickCompress.cs rename to old/src/Examples/C#/ZLIB/QuickCompress.cs diff --git a/src/Examples/C#/ZLIB/ZlibDeflateInflate.cs b/old/src/Examples/C#/ZLIB/ZlibDeflateInflate.cs similarity index 97% rename from src/Examples/C#/ZLIB/ZlibDeflateInflate.cs rename to old/src/Examples/C#/ZLIB/ZlibDeflateInflate.cs index 7875fb2..3161580 100644 --- a/src/Examples/C#/ZLIB/ZlibDeflateInflate.cs +++ b/old/src/Examples/C#/ZLIB/ZlibDeflateInflate.cs @@ -1,210 +1,210 @@ -// ZlibDeflateInflate.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009 by Dino Chiesa -// All rights reserved! -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// Purpose: Demonstrate compression and decompression with the ZlibCodec -// class, which is part of the Ionic.Zlib namespace. -// -// ------------------------------------------------------------------ -// - -using System; -using System.Text; -using System.IO; -using System.Reflection; -using System.Security.Cryptography; // HashAlgorithm -using Ionic.Zlib; - -// to allow fast ngen -[assembly: AssemblyTitle("ZlibDeflateInflate.cs")] -[assembly: AssemblyDescription("Demonstrate compression and decompression with the ZlibCodec class")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Dino Chiesa")] -[assembly: AssemblyProduct("DotNetZip Examples")] -[assembly: AssemblyCopyright("Copyright Dino Chiesa 2009")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: AssemblyVersion("1.1.1.1")] - - -namespace Ionic.ToolsAndTests -{ - public class ZlibDeflateInflate - { - private HashAlgorithm alg = new SHA256CryptoServiceProvider(); - - public ZlibDeflateInflate () {} - - public byte[] ComputeHash(byte[] data) - { - return alg.ComputeHash(data); - } - - - public byte[] ComputeHash(string text) - { - return alg.ComputeHash(UTF8Encoding.UTF8.GetBytes( text )); - } - - private static string ByteArrayToString(byte[] buffer) - { - System.Text.StringBuilder sb = new System.Text.StringBuilder(); - foreach (byte b in buffer) - sb.Append(b.ToString("X2")); - - return (sb.ToString()); - } - - - - public void Run() - { - System.Console.WriteLine("\nThis program demonstrates compression of strings with the\nIonic.Zlib.ZlibCodec class.\n"); - - string textToCompress = File.ReadAllText("ZlibDeflateInflate.cs"); - string hashOfOriginal = ByteArrayToString(ComputeHash(textToCompress)); - System.Console.WriteLine("hash of original: {0}", hashOfOriginal); - System.Console.WriteLine("length of original: {0}", textToCompress.Length); - - byte[] compressed = ZlibCodecCompress(textToCompress); - System.Console.WriteLine("length of compressed: {0}", compressed.Length); - - double compRatio = 100 * (1.0 - (1.0 * compressed.Length) / (1.0 * textToCompress.Length)) ; - - System.Console.WriteLine("compression rate: {0:N1}%", compRatio); - - string decompressed = ZlibCodecDecompress(compressed); - string hashOfDecompressed = ByteArrayToString(ComputeHash(textToCompress)); - System.Console.WriteLine("hash of decompressed: {0}", hashOfDecompressed); - System.Console.WriteLine(); - - if (hashOfOriginal == hashOfDecompressed) - System.Console.WriteLine("Round trip SUCCESS: After compress and decompress, we obtained the original text."); - else - System.Console.WriteLine("Round trip FAIL: After compress and decompress, we did not obtain the original text."); - } - - - private byte[] ZlibCodecCompress(string textToCompress) - { - int outputSize = 2048; - byte[] output = new Byte[ outputSize ]; - byte[] uncompressed = UTF8Encoding.UTF8.GetBytes( textToCompress ); - int lengthToCompress = uncompressed.Length; - - // If you want a ZLIB stream, set this to true. If you want - // a bare DEFLATE stream, set this to false. - bool wantRfc1950Header = false; - - using ( MemoryStream ms = new MemoryStream()) - { - ZlibCodec compressor = new ZlibCodec(); - compressor.InitializeDeflate(CompressionLevel.BestCompression, wantRfc1950Header); - - compressor.InputBuffer = uncompressed; - compressor.AvailableBytesIn = lengthToCompress; - compressor.NextIn = 0; - compressor.OutputBuffer = output; - - foreach (var f in new FlushType[] { FlushType.None, FlushType.Finish } ) - { - int bytesToWrite = 0; - do - { - compressor.AvailableBytesOut = outputSize; - compressor.NextOut = 0; - compressor.Deflate(f); - - bytesToWrite = outputSize - compressor.AvailableBytesOut ; - if (bytesToWrite > 0) - ms.Write(output, 0, bytesToWrite); - } - while (( f == FlushType.None && (compressor.AvailableBytesIn != 0 || compressor.AvailableBytesOut == 0)) || - ( f == FlushType.Finish && bytesToWrite != 0)); - } - - compressor.EndDeflate(); - - ms.Flush(); - return ms.ToArray(); - } - } - - - private string ZlibCodecDecompress(byte[] compressed) - { - int outputSize = 2048; - byte[] output = new Byte[ outputSize ]; - - // If you have a ZLIB stream, set this to true. If you have - // a bare DEFLATE stream, set this to false. - bool expectRfc1950Header = false; - - using ( MemoryStream ms = new MemoryStream()) - { - ZlibCodec compressor = new ZlibCodec(); - compressor.InitializeInflate(expectRfc1950Header); - - compressor.InputBuffer = compressed; - compressor.AvailableBytesIn = compressed.Length; - compressor.NextIn = 0; - compressor.OutputBuffer = output; - - foreach (var f in new FlushType[] { FlushType.None, FlushType.Finish } ) - { - int bytesToWrite = 0; - do - { - compressor.AvailableBytesOut = outputSize; - compressor.NextOut = 0; - compressor.Inflate(f); - - bytesToWrite = outputSize - compressor.AvailableBytesOut ; - if (bytesToWrite > 0) - ms.Write(output, 0, bytesToWrite); - } - while (( f == FlushType.None && (compressor.AvailableBytesIn != 0 || compressor.AvailableBytesOut == 0)) || - ( f == FlushType.Finish && bytesToWrite != 0)); - } - - compressor.EndInflate(); - - return UTF8Encoding.UTF8.GetString( ms.ToArray() ); - } - } - - - public static void Usage() - { - Console.WriteLine("\nZlibDeflateInflate: .\n"); - Console.WriteLine("Usage:\n ZlibDeflateInflate [-arg1 ] [-arg2]"); - } - - - public static void Main(string[] args) - { - try - { - new ZlibDeflateInflate() - .Run(); - } - catch (System.Exception exc1) - { - Console.WriteLine("Exception: {0}", exc1.ToString()); - Usage(); - } - } - } -} +// ZlibDeflateInflate.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009 by Dino Chiesa +// All rights reserved! +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// Purpose: Demonstrate compression and decompression with the ZlibCodec +// class, which is part of the Ionic.Zlib namespace. +// +// ------------------------------------------------------------------ +// + +using System; +using System.Text; +using System.IO; +using System.Reflection; +using System.Security.Cryptography; // HashAlgorithm +using Ionic.Zlib; + +// to allow fast ngen +[assembly: AssemblyTitle("ZlibDeflateInflate.cs")] +[assembly: AssemblyDescription("Demonstrate compression and decompression with the ZlibCodec class")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Dino Chiesa")] +[assembly: AssemblyProduct("DotNetZip Examples")] +[assembly: AssemblyCopyright("Copyright Dino Chiesa 2009")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] +[assembly: AssemblyVersion("1.1.1.1")] + + +namespace Ionic.ToolsAndTests +{ + public class ZlibDeflateInflate + { + private HashAlgorithm alg = new SHA256CryptoServiceProvider(); + + public ZlibDeflateInflate () {} + + public byte[] ComputeHash(byte[] data) + { + return alg.ComputeHash(data); + } + + + public byte[] ComputeHash(string text) + { + return alg.ComputeHash(UTF8Encoding.UTF8.GetBytes( text )); + } + + private static string ByteArrayToString(byte[] buffer) + { + System.Text.StringBuilder sb = new System.Text.StringBuilder(); + foreach (byte b in buffer) + sb.Append(b.ToString("X2")); + + return (sb.ToString()); + } + + + + public void Run() + { + System.Console.WriteLine("\nThis program demonstrates compression of strings with the\nIonic.Zlib.ZlibCodec class.\n"); + + string textToCompress = File.ReadAllText("ZlibDeflateInflate.cs"); + string hashOfOriginal = ByteArrayToString(ComputeHash(textToCompress)); + System.Console.WriteLine("hash of original: {0}", hashOfOriginal); + System.Console.WriteLine("length of original: {0}", textToCompress.Length); + + byte[] compressed = ZlibCodecCompress(textToCompress); + System.Console.WriteLine("length of compressed: {0}", compressed.Length); + + double compRatio = 100 * (1.0 - (1.0 * compressed.Length) / (1.0 * textToCompress.Length)) ; + + System.Console.WriteLine("compression rate: {0:N1}%", compRatio); + + string decompressed = ZlibCodecDecompress(compressed); + string hashOfDecompressed = ByteArrayToString(ComputeHash(textToCompress)); + System.Console.WriteLine("hash of decompressed: {0}", hashOfDecompressed); + System.Console.WriteLine(); + + if (hashOfOriginal == hashOfDecompressed) + System.Console.WriteLine("Round trip SUCCESS: After compress and decompress, we obtained the original text."); + else + System.Console.WriteLine("Round trip FAIL: After compress and decompress, we did not obtain the original text."); + } + + + private byte[] ZlibCodecCompress(string textToCompress) + { + int outputSize = 2048; + byte[] output = new Byte[ outputSize ]; + byte[] uncompressed = UTF8Encoding.UTF8.GetBytes( textToCompress ); + int lengthToCompress = uncompressed.Length; + + // If you want a ZLIB stream, set this to true. If you want + // a bare DEFLATE stream, set this to false. + bool wantRfc1950Header = false; + + using ( MemoryStream ms = new MemoryStream()) + { + ZlibCodec compressor = new ZlibCodec(); + compressor.InitializeDeflate(CompressionLevel.BestCompression, wantRfc1950Header); + + compressor.InputBuffer = uncompressed; + compressor.AvailableBytesIn = lengthToCompress; + compressor.NextIn = 0; + compressor.OutputBuffer = output; + + foreach (var f in new FlushType[] { FlushType.None, FlushType.Finish } ) + { + int bytesToWrite = 0; + do + { + compressor.AvailableBytesOut = outputSize; + compressor.NextOut = 0; + compressor.Deflate(f); + + bytesToWrite = outputSize - compressor.AvailableBytesOut ; + if (bytesToWrite > 0) + ms.Write(output, 0, bytesToWrite); + } + while (( f == FlushType.None && (compressor.AvailableBytesIn != 0 || compressor.AvailableBytesOut == 0)) || + ( f == FlushType.Finish && bytesToWrite != 0)); + } + + compressor.EndDeflate(); + + ms.Flush(); + return ms.ToArray(); + } + } + + + private string ZlibCodecDecompress(byte[] compressed) + { + int outputSize = 2048; + byte[] output = new Byte[ outputSize ]; + + // If you have a ZLIB stream, set this to true. If you have + // a bare DEFLATE stream, set this to false. + bool expectRfc1950Header = false; + + using ( MemoryStream ms = new MemoryStream()) + { + ZlibCodec compressor = new ZlibCodec(); + compressor.InitializeInflate(expectRfc1950Header); + + compressor.InputBuffer = compressed; + compressor.AvailableBytesIn = compressed.Length; + compressor.NextIn = 0; + compressor.OutputBuffer = output; + + foreach (var f in new FlushType[] { FlushType.None, FlushType.Finish } ) + { + int bytesToWrite = 0; + do + { + compressor.AvailableBytesOut = outputSize; + compressor.NextOut = 0; + compressor.Inflate(f); + + bytesToWrite = outputSize - compressor.AvailableBytesOut ; + if (bytesToWrite > 0) + ms.Write(output, 0, bytesToWrite); + } + while (( f == FlushType.None && (compressor.AvailableBytesIn != 0 || compressor.AvailableBytesOut == 0)) || + ( f == FlushType.Finish && bytesToWrite != 0)); + } + + compressor.EndInflate(); + + return UTF8Encoding.UTF8.GetString( ms.ToArray() ); + } + } + + + public static void Usage() + { + Console.WriteLine("\nZlibDeflateInflate: .\n"); + Console.WriteLine("Usage:\n ZlibDeflateInflate [-arg1 ] [-arg2]"); + } + + + public static void Main(string[] args) + { + try + { + new ZlibDeflateInflate() + .Run(); + } + catch (System.Exception exc1) + { + Console.WriteLine("Exception: {0}", exc1.ToString()); + Usage(); + } + } + } +} diff --git a/src/Examples/C#/ZLIB/ZlibStreamExample.cs b/old/src/Examples/C#/ZLIB/ZlibStreamExample.cs similarity index 97% rename from src/Examples/C#/ZLIB/ZlibStreamExample.cs rename to old/src/Examples/C#/ZLIB/ZlibStreamExample.cs index a4b1f22..1745eb7 100644 --- a/src/Examples/C#/ZLIB/ZlibStreamExample.cs +++ b/old/src/Examples/C#/ZLIB/ZlibStreamExample.cs @@ -1,118 +1,118 @@ -// ZlibDeflateInflate.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009-2011 by Dino Chiesa -// All rights reserved! -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// Purpose: Demonstrate compression and decompression with the ZlibStream -// class, which is part of the Ionic.Zlib namespace. -// -// ------------------------------------------------------------------ -// - -using System; -using System.Reflection; -using Ionic.Zlib; - - -// to allow fast ngen -[assembly: AssemblyTitle("ZlibStreamExample.cs")] -[assembly: AssemblyDescription("Demonstrate compression and decompression using the ZlibStream class")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Dino Chiesa")] -[assembly: AssemblyProduct("DotNetZip Examples")] -[assembly: AssemblyCopyright("Copyright Dino Chiesa 2009-2011")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: AssemblyVersion("1.1.1.1")] - - -namespace Ionic.ToolsAndTests -{ - - public class ZlibStreamExample - { - - /// - /// Converts a string to a MemoryStream. - /// - static System.IO.MemoryStream StringToMemoryStream(string s) - { - byte[] a = System.Text.Encoding.ASCII.GetBytes(s); - return new System.IO.MemoryStream(a); - } - - /// - /// Converts a MemoryStream to a string. Makes some assumptions about the content of the stream. - /// - /// - /// - static String MemoryStreamToString(System.IO.MemoryStream ms) - { - byte[] ByteArray = ms.ToArray(); - return System.Text.Encoding.ASCII.GetString(ByteArray); - } - - - static void CopyStream(System.IO.Stream src, System.IO.Stream dest) - { - byte[] buffer = new byte[1024]; - int len; - while ((len = src.Read(buffer, 0, buffer.Length)) > 0) - dest.Write(buffer, 0, len); - dest.Flush(); - } - - [STAThread] - public static void Main(System.String[] args) - { - try - { - System.IO.MemoryStream msSinkCompressed; - System.IO.MemoryStream msSinkDecompressed; - ZlibStream zOut; - String originalText = "Hello, World! This String will be compressed... "; - - System.Console.Out.WriteLine("original: {0}", originalText); - - // first, compress: - msSinkCompressed = new System.IO.MemoryStream(); - zOut = new ZlibStream(msSinkCompressed, CompressionMode.Compress, CompressionLevel.BestCompression, true); - CopyStream(StringToMemoryStream(originalText), zOut); - zOut.Close(); - - // at this point, msSinkCompressed contains the compressed bytes - - // now, decompress: - msSinkCompressed.Seek(0, System.IO.SeekOrigin.Begin); - msSinkDecompressed = new System.IO.MemoryStream(); - zOut = new ZlibStream(msSinkDecompressed, CompressionMode.Decompress, true); - CopyStream(msSinkCompressed, zOut); - - // at this point, msSinkDecompressed contains the decompressed bytes - string decompressed = MemoryStreamToString(msSinkDecompressed); - System.Console.Out.WriteLine("decompressed: {0}", decompressed); - System.Console.WriteLine(); - - if (originalText == decompressed) - System.Console.WriteLine("A-OK. Compression followed by decompression gets the original text."); - else - System.Console.WriteLine("The compression/decompression cycle failed."); - } - catch (System.Exception e1) - { - Console.WriteLine("Exception: " + e1); - } - } - } +// ZlibDeflateInflate.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009-2011 by Dino Chiesa +// All rights reserved! +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// Purpose: Demonstrate compression and decompression with the ZlibStream +// class, which is part of the Ionic.Zlib namespace. +// +// ------------------------------------------------------------------ +// + +using System; +using System.Reflection; +using Ionic.Zlib; + + +// to allow fast ngen +[assembly: AssemblyTitle("ZlibStreamExample.cs")] +[assembly: AssemblyDescription("Demonstrate compression and decompression using the ZlibStream class")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Dino Chiesa")] +[assembly: AssemblyProduct("DotNetZip Examples")] +[assembly: AssemblyCopyright("Copyright Dino Chiesa 2009-2011")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] +[assembly: AssemblyVersion("1.1.1.1")] + + +namespace Ionic.ToolsAndTests +{ + + public class ZlibStreamExample + { + + /// + /// Converts a string to a MemoryStream. + /// + static System.IO.MemoryStream StringToMemoryStream(string s) + { + byte[] a = System.Text.Encoding.ASCII.GetBytes(s); + return new System.IO.MemoryStream(a); + } + + /// + /// Converts a MemoryStream to a string. Makes some assumptions about the content of the stream. + /// + /// + /// + static String MemoryStreamToString(System.IO.MemoryStream ms) + { + byte[] ByteArray = ms.ToArray(); + return System.Text.Encoding.ASCII.GetString(ByteArray); + } + + + static void CopyStream(System.IO.Stream src, System.IO.Stream dest) + { + byte[] buffer = new byte[1024]; + int len; + while ((len = src.Read(buffer, 0, buffer.Length)) > 0) + dest.Write(buffer, 0, len); + dest.Flush(); + } + + [STAThread] + public static void Main(System.String[] args) + { + try + { + System.IO.MemoryStream msSinkCompressed; + System.IO.MemoryStream msSinkDecompressed; + ZlibStream zOut; + String originalText = "Hello, World! This String will be compressed... "; + + System.Console.Out.WriteLine("original: {0}", originalText); + + // first, compress: + msSinkCompressed = new System.IO.MemoryStream(); + zOut = new ZlibStream(msSinkCompressed, CompressionMode.Compress, CompressionLevel.BestCompression, true); + CopyStream(StringToMemoryStream(originalText), zOut); + zOut.Close(); + + // at this point, msSinkCompressed contains the compressed bytes + + // now, decompress: + msSinkCompressed.Seek(0, System.IO.SeekOrigin.Begin); + msSinkDecompressed = new System.IO.MemoryStream(); + zOut = new ZlibStream(msSinkDecompressed, CompressionMode.Decompress, true); + CopyStream(msSinkCompressed, zOut); + + // at this point, msSinkDecompressed contains the decompressed bytes + string decompressed = MemoryStreamToString(msSinkDecompressed); + System.Console.Out.WriteLine("decompressed: {0}", decompressed); + System.Console.WriteLine(); + + if (originalText == decompressed) + System.Console.WriteLine("A-OK. Compression followed by decompression gets the original text."); + else + System.Console.WriteLine("The compression/decompression cycle failed."); + } + catch (System.Exception e1) + { + Console.WriteLine("Exception: " + e1); + } + } + } } \ No newline at end of file diff --git a/src/Examples/C#/ZLIB/makefile b/old/src/Examples/C#/ZLIB/makefile similarity index 97% rename from src/Examples/C#/ZLIB/makefile rename to old/src/Examples/C#/ZLIB/makefile index 96faaf5..9515aa7 100644 --- a/src/Examples/C#/ZLIB/makefile +++ b/old/src/Examples/C#/ZLIB/makefile @@ -1,34 +1,34 @@ -.SUFFIXES: .tlb .il .dll .cpp .cs .vb .rc .ocx .jsl .java - -#_NETHOME=$(WINDIR)\Microsoft.NET\Framework\v1.1.4322 -#_NETHOME=c:\.net2.0 -_NETHOME=c:\.net3.5 -#_NETSDK=c:\Progra~1\Microsoft.NET\SDK\v1.1\Bin -#_NETSDK=c:\netsdk2.0\bin -_NETSDK=c:\netsdk3.5\bin - -_CS_DBG_FLAGS=/debug+ -_CS_DLL_FLAGS=/t:library $(_CS_DBG_FLAGS) -_CS_EXE_FLAGS=/t:exe $(_CS_DBG_FLAGS) - -_CSC=$(_NETHOME)\csc.exe - -_BASE_IMPORTS=/R:System.dll /R:Ionic.Zlib.dll - - -default: Ionic.Zlib.dll ZlibDeflateInflate.exe test_dict_deflate_inflate.exe test_flush_sync.exe test_large_deflate_inflate.exe ZlibStreamExample.exe QuickCompress.exe - - -Ionic.Zlib.dll: ..\..\..\Zlib\obj\Debug\Ionic.Zlib.dll ..\..\..\Zlib\obj\Debug\Ionic.Zlib.pdb - copy /y ..\..\..\Zlib\obj\Debug\Ionic.Zlib.* . - -.cs.exe: - if not exist Ionic.Zlib.dll ( copy ..\..\..\Zlib\obj\Debug\Ionic.Zlib.* . ) - $(_CSC) $(_CS_EXE_FLAGS) $(_BASE_IMPORTS) /out:$@ $** - - -clean: - -del ZlibDeflateInflate.exe test_dict_deflate_inflate.exe test_flush_sync.exe test_large_deflate_inflate.exe ZlibStreamExample.exe QuickCompress.exe - -del Ionic.Zlib.dll - -del *.pdb - +.SUFFIXES: .tlb .il .dll .cpp .cs .vb .rc .ocx .jsl .java + +#_NETHOME=$(WINDIR)\Microsoft.NET\Framework\v1.1.4322 +#_NETHOME=c:\.net2.0 +_NETHOME=c:\.net3.5 +#_NETSDK=c:\Progra~1\Microsoft.NET\SDK\v1.1\Bin +#_NETSDK=c:\netsdk2.0\bin +_NETSDK=c:\netsdk3.5\bin + +_CS_DBG_FLAGS=/debug+ +_CS_DLL_FLAGS=/t:library $(_CS_DBG_FLAGS) +_CS_EXE_FLAGS=/t:exe $(_CS_DBG_FLAGS) + +_CSC=$(_NETHOME)\csc.exe + +_BASE_IMPORTS=/R:System.dll /R:Ionic.Zlib.dll + + +default: Ionic.Zlib.dll ZlibDeflateInflate.exe test_dict_deflate_inflate.exe test_flush_sync.exe test_large_deflate_inflate.exe ZlibStreamExample.exe QuickCompress.exe + + +Ionic.Zlib.dll: ..\..\..\Zlib\obj\Debug\Ionic.Zlib.dll ..\..\..\Zlib\obj\Debug\Ionic.Zlib.pdb + copy /y ..\..\..\Zlib\obj\Debug\Ionic.Zlib.* . + +.cs.exe: + if not exist Ionic.Zlib.dll ( copy ..\..\..\Zlib\obj\Debug\Ionic.Zlib.* . ) + $(_CSC) $(_CS_EXE_FLAGS) $(_BASE_IMPORTS) /out:$@ $** + + +clean: + -del ZlibDeflateInflate.exe test_dict_deflate_inflate.exe test_flush_sync.exe test_large_deflate_inflate.exe ZlibStreamExample.exe QuickCompress.exe + -del Ionic.Zlib.dll + -del *.pdb + diff --git a/src/Examples/C#/ZLIB/test_dict_deflate_inflate.cs b/old/src/Examples/C#/ZLIB/test_dict_deflate_inflate.cs similarity index 97% rename from src/Examples/C#/ZLIB/test_dict_deflate_inflate.cs rename to old/src/Examples/C#/ZLIB/test_dict_deflate_inflate.cs index 13951e5..52f2075 100644 --- a/src/Examples/C#/ZLIB/test_dict_deflate_inflate.cs +++ b/old/src/Examples/C#/ZLIB/test_dict_deflate_inflate.cs @@ -1,118 +1,118 @@ -using System; -using Ionic.Zlib; - -// Test deflate() with preset dictionary -class test_dict_deflate_inflate -{ - [STAThread] - public static void Main(String[] arg) - { - try - { - var x = new test_dict_deflate_inflate(); - x.Run(); - } - catch (System.Exception e1) - { - Console.WriteLine("Exception: " + e1); - } - } - - private void Run() - { - int rc; - int bufferSize = 40000; - byte[] compressedBytes = new byte[bufferSize]; - byte[] decompressedBytes = new byte[bufferSize]; - - ZlibCodec compressingStream = new ZlibCodec(); - rc = compressingStream.InitializeDeflate(CompressionLevel.LEVEL9_BEST_COMPRESSION); - CheckForError(compressingStream, rc, "InitializeDeflate"); - - string dictionaryWord = "hello "; - byte[] dictionary = System.Text.ASCIIEncoding.ASCII.GetBytes(dictionaryWord); - string TextToCompress = "hello, hello! How are you, Joe? "; - byte[] BytesToCompress = System.Text.ASCIIEncoding.ASCII.GetBytes(TextToCompress); - - rc = compressingStream.SetDictionary(dictionary); - CheckForError(compressingStream, rc, "SetDeflateDictionary"); - - long dictId = compressingStream.Adler32; - - compressingStream.OutputBuffer = compressedBytes; - compressingStream.NextOut = 0; - compressingStream.AvailableBytesOut = bufferSize; - - compressingStream.InputBuffer = BytesToCompress; - compressingStream.NextIn = 0; - compressingStream.AvailableBytesIn = BytesToCompress.Length; - - rc = compressingStream.Deflate(ZlibConstants.Z_FINISH); - if (rc != ZlibConstants.Z_STREAM_END) - { - System.Console.Out.WriteLine("deflate should report Z_STREAM_END"); - System.Environment.Exit(1); - } - rc = compressingStream.EndDeflate(); - CheckForError(compressingStream, rc, "deflateEnd"); - - ZlibCodec decompressingStream = new ZlibCodec(); - - decompressingStream.InputBuffer = compressedBytes; - decompressingStream.NextIn = 0; - decompressingStream.AvailableBytesIn = bufferSize; - - rc = decompressingStream.InitializeInflate(); - CheckForError(decompressingStream, rc, "inflateInit"); - decompressingStream.OutputBuffer = decompressedBytes; - decompressingStream.NextOut = 0; - decompressingStream.AvailableBytesOut = decompressedBytes.Length; - - while (true) - { - rc = decompressingStream.Inflate(ZlibConstants.Z_NO_FLUSH); - if (rc == ZlibConstants.Z_STREAM_END) - { - break; - } - if (rc == ZlibConstants.Z_NEED_DICT) - { - if ((int)decompressingStream.Adler32 != (int)dictId) - { - System.Console.Out.WriteLine("unexpected dictionary"); - System.Environment.Exit(1); - } - rc = decompressingStream.SetDictionary(dictionary); - } - CheckForError(decompressingStream, rc, "inflate with dict"); - } - - rc = decompressingStream.EndInflate(); - CheckForError(decompressingStream, rc, "EndInflate"); - - int j = 0; - for (; j < decompressedBytes.Length; j++) - if (decompressedBytes[j] == 0) - break; - - var result = System.Text.ASCIIEncoding.ASCII.GetString(decompressedBytes, 0, j); - - Console.WriteLine("orig length: {0}", TextToCompress.Length); - Console.WriteLine("compressed length: {0}", compressingStream.TotalBytesOut); - Console.WriteLine("decompressed length: {0}", decompressingStream.TotalBytesOut); - Console.WriteLine("result length: {0}", result.Length); - Console.WriteLine("result of inflate:\n{0}", result); - } - - internal static void CheckForError(ZlibCodec z, int err, System.String msg) - { - if (err != ZlibConstants.Z_OK) - { - if (z.Message != null) - System.Console.Out.Write(z.Message + " "); - System.Console.Out.WriteLine(msg + " error: " + err); - - System.Environment.Exit(1); - } - } +using System; +using Ionic.Zlib; + +// Test deflate() with preset dictionary +class test_dict_deflate_inflate +{ + [STAThread] + public static void Main(String[] arg) + { + try + { + var x = new test_dict_deflate_inflate(); + x.Run(); + } + catch (System.Exception e1) + { + Console.WriteLine("Exception: " + e1); + } + } + + private void Run() + { + int rc; + int bufferSize = 40000; + byte[] compressedBytes = new byte[bufferSize]; + byte[] decompressedBytes = new byte[bufferSize]; + + ZlibCodec compressingStream = new ZlibCodec(); + rc = compressingStream.InitializeDeflate(CompressionLevel.LEVEL9_BEST_COMPRESSION); + CheckForError(compressingStream, rc, "InitializeDeflate"); + + string dictionaryWord = "hello "; + byte[] dictionary = System.Text.ASCIIEncoding.ASCII.GetBytes(dictionaryWord); + string TextToCompress = "hello, hello! How are you, Joe? "; + byte[] BytesToCompress = System.Text.ASCIIEncoding.ASCII.GetBytes(TextToCompress); + + rc = compressingStream.SetDictionary(dictionary); + CheckForError(compressingStream, rc, "SetDeflateDictionary"); + + long dictId = compressingStream.Adler32; + + compressingStream.OutputBuffer = compressedBytes; + compressingStream.NextOut = 0; + compressingStream.AvailableBytesOut = bufferSize; + + compressingStream.InputBuffer = BytesToCompress; + compressingStream.NextIn = 0; + compressingStream.AvailableBytesIn = BytesToCompress.Length; + + rc = compressingStream.Deflate(ZlibConstants.Z_FINISH); + if (rc != ZlibConstants.Z_STREAM_END) + { + System.Console.Out.WriteLine("deflate should report Z_STREAM_END"); + System.Environment.Exit(1); + } + rc = compressingStream.EndDeflate(); + CheckForError(compressingStream, rc, "deflateEnd"); + + ZlibCodec decompressingStream = new ZlibCodec(); + + decompressingStream.InputBuffer = compressedBytes; + decompressingStream.NextIn = 0; + decompressingStream.AvailableBytesIn = bufferSize; + + rc = decompressingStream.InitializeInflate(); + CheckForError(decompressingStream, rc, "inflateInit"); + decompressingStream.OutputBuffer = decompressedBytes; + decompressingStream.NextOut = 0; + decompressingStream.AvailableBytesOut = decompressedBytes.Length; + + while (true) + { + rc = decompressingStream.Inflate(ZlibConstants.Z_NO_FLUSH); + if (rc == ZlibConstants.Z_STREAM_END) + { + break; + } + if (rc == ZlibConstants.Z_NEED_DICT) + { + if ((int)decompressingStream.Adler32 != (int)dictId) + { + System.Console.Out.WriteLine("unexpected dictionary"); + System.Environment.Exit(1); + } + rc = decompressingStream.SetDictionary(dictionary); + } + CheckForError(decompressingStream, rc, "inflate with dict"); + } + + rc = decompressingStream.EndInflate(); + CheckForError(decompressingStream, rc, "EndInflate"); + + int j = 0; + for (; j < decompressedBytes.Length; j++) + if (decompressedBytes[j] == 0) + break; + + var result = System.Text.ASCIIEncoding.ASCII.GetString(decompressedBytes, 0, j); + + Console.WriteLine("orig length: {0}", TextToCompress.Length); + Console.WriteLine("compressed length: {0}", compressingStream.TotalBytesOut); + Console.WriteLine("decompressed length: {0}", decompressingStream.TotalBytesOut); + Console.WriteLine("result length: {0}", result.Length); + Console.WriteLine("result of inflate:\n{0}", result); + } + + internal static void CheckForError(ZlibCodec z, int err, System.String msg) + { + if (err != ZlibConstants.Z_OK) + { + if (z.Message != null) + System.Console.Out.Write(z.Message + " "); + System.Console.Out.WriteLine(msg + " error: " + err); + + System.Environment.Exit(1); + } + } } \ No newline at end of file diff --git a/src/Examples/C#/ZLIB/test_flush_sync.cs b/old/src/Examples/C#/ZLIB/test_flush_sync.cs similarity index 97% rename from src/Examples/C#/ZLIB/test_flush_sync.cs rename to old/src/Examples/C#/ZLIB/test_flush_sync.cs index 438fe95..a5ad84e 100644 --- a/src/Examples/C#/ZLIB/test_flush_sync.cs +++ b/old/src/Examples/C#/ZLIB/test_flush_sync.cs @@ -1,120 +1,120 @@ -using System; -using Ionic.Zlib; - -// Test deflate() with full flush -class test_flush_sync -{ - - [STAThread] - public static void Main(System.String[] args) - { - try - { - var x = new test_flush_sync(); - x.Run(); - } - catch (System.Exception e1) - { - Console.WriteLine("Exception: " + e1); - } - } - - private void Run() - { - int rc; - int comprLen = 40000; - int uncomprLen = comprLen; - byte[] CompressedBytes = new byte[comprLen]; - byte[] DecompressedBytes = new byte[uncomprLen]; - string TextToCompress = "This is the text that will be compressed."; - byte[] BytesToCompress = System.Text.ASCIIEncoding.ASCII.GetBytes(TextToCompress); - - ZlibCodec compressor = new ZlibCodec(CompressionMode.Compress); - - compressor.InputBuffer = BytesToCompress; - compressor.NextIn = 0; - compressor.OutputBuffer = CompressedBytes; - compressor.NextOut = 0; - compressor.AvailableBytesIn = 3; - compressor.AvailableBytesOut = CompressedBytes.Length; - - rc = compressor.Deflate(ZlibConstants.Z_FULL_FLUSH); - CheckForError(compressor, rc, "Deflate"); - - CompressedBytes[3]++; // force an error in first compressed block // dinoch - compressor.AvailableBytesIn = TextToCompress.Length - 3; - - rc = compressor.Deflate(ZlibConstants.Z_FINISH); - if (rc != ZlibConstants.Z_STREAM_END) - { - CheckForError(compressor, rc, "Deflate"); - } - rc = compressor.EndDeflate(); - CheckForError(compressor, rc, "EndDeflate"); - comprLen = (int) (compressor.TotalBytesOut); - - ZlibCodec decompressor = new ZlibCodec(CompressionMode.Decompress); - - decompressor.InputBuffer = CompressedBytes; - decompressor.NextIn = 0; - decompressor.AvailableBytesIn = 2; - - decompressor.OutputBuffer = DecompressedBytes; - decompressor.NextOut = 0; - decompressor.AvailableBytesOut = DecompressedBytes.Length; - - rc = decompressor.Inflate(ZlibConstants.Z_NO_FLUSH); - CheckForError(decompressor, rc, "Inflate"); - - decompressor.AvailableBytesIn = CompressedBytes.Length - 2; - - rc = decompressor.SyncInflate(); - CheckForError(decompressor, rc, "SyncInflate"); - - bool gotException = false; - try - { - rc = decompressor.Inflate(ZlibConstants.Z_FINISH); - } - catch (ZlibException ex1) - { - Console.WriteLine("Got Expected Exception: " + ex1); - gotException = true; - } - - if (!gotException) - { - System.Console.Out.WriteLine("inflate should report DATA_ERROR"); - /* Because of incorrect adler32 */ - System.Environment.Exit(1); - } - - rc = decompressor.EndInflate(); - CheckForError(decompressor, rc, "EndInflate"); - - int j = 0; - for (; j < DecompressedBytes.Length; j++) - if (DecompressedBytes[j] == 0) - break; - - var result = System.Text.ASCIIEncoding.ASCII.GetString(DecompressedBytes, 0, j); - - Console.WriteLine("orig length: {0}", TextToCompress.Length); - Console.WriteLine("compressed length: {0}", compressor.TotalBytesOut); - Console.WriteLine("uncompressed length: {0}", decompressor.TotalBytesOut); - Console.WriteLine("result length: {0}", result.Length); - Console.WriteLine("result of inflate:\n(Thi){0}", result); - } - - internal static void CheckForError(ZlibCodec z, int rc, System.String msg) - { - if (rc != ZlibConstants.Z_OK) - { - if (z.Message != null) - System.Console.Out.Write(z.Message + " "); - System.Console.Out.WriteLine(msg + " error: " + rc); - - System.Environment.Exit(1); - } - } +using System; +using Ionic.Zlib; + +// Test deflate() with full flush +class test_flush_sync +{ + + [STAThread] + public static void Main(System.String[] args) + { + try + { + var x = new test_flush_sync(); + x.Run(); + } + catch (System.Exception e1) + { + Console.WriteLine("Exception: " + e1); + } + } + + private void Run() + { + int rc; + int comprLen = 40000; + int uncomprLen = comprLen; + byte[] CompressedBytes = new byte[comprLen]; + byte[] DecompressedBytes = new byte[uncomprLen]; + string TextToCompress = "This is the text that will be compressed."; + byte[] BytesToCompress = System.Text.ASCIIEncoding.ASCII.GetBytes(TextToCompress); + + ZlibCodec compressor = new ZlibCodec(CompressionMode.Compress); + + compressor.InputBuffer = BytesToCompress; + compressor.NextIn = 0; + compressor.OutputBuffer = CompressedBytes; + compressor.NextOut = 0; + compressor.AvailableBytesIn = 3; + compressor.AvailableBytesOut = CompressedBytes.Length; + + rc = compressor.Deflate(ZlibConstants.Z_FULL_FLUSH); + CheckForError(compressor, rc, "Deflate"); + + CompressedBytes[3]++; // force an error in first compressed block // dinoch + compressor.AvailableBytesIn = TextToCompress.Length - 3; + + rc = compressor.Deflate(ZlibConstants.Z_FINISH); + if (rc != ZlibConstants.Z_STREAM_END) + { + CheckForError(compressor, rc, "Deflate"); + } + rc = compressor.EndDeflate(); + CheckForError(compressor, rc, "EndDeflate"); + comprLen = (int) (compressor.TotalBytesOut); + + ZlibCodec decompressor = new ZlibCodec(CompressionMode.Decompress); + + decompressor.InputBuffer = CompressedBytes; + decompressor.NextIn = 0; + decompressor.AvailableBytesIn = 2; + + decompressor.OutputBuffer = DecompressedBytes; + decompressor.NextOut = 0; + decompressor.AvailableBytesOut = DecompressedBytes.Length; + + rc = decompressor.Inflate(ZlibConstants.Z_NO_FLUSH); + CheckForError(decompressor, rc, "Inflate"); + + decompressor.AvailableBytesIn = CompressedBytes.Length - 2; + + rc = decompressor.SyncInflate(); + CheckForError(decompressor, rc, "SyncInflate"); + + bool gotException = false; + try + { + rc = decompressor.Inflate(ZlibConstants.Z_FINISH); + } + catch (ZlibException ex1) + { + Console.WriteLine("Got Expected Exception: " + ex1); + gotException = true; + } + + if (!gotException) + { + System.Console.Out.WriteLine("inflate should report DATA_ERROR"); + /* Because of incorrect adler32 */ + System.Environment.Exit(1); + } + + rc = decompressor.EndInflate(); + CheckForError(decompressor, rc, "EndInflate"); + + int j = 0; + for (; j < DecompressedBytes.Length; j++) + if (DecompressedBytes[j] == 0) + break; + + var result = System.Text.ASCIIEncoding.ASCII.GetString(DecompressedBytes, 0, j); + + Console.WriteLine("orig length: {0}", TextToCompress.Length); + Console.WriteLine("compressed length: {0}", compressor.TotalBytesOut); + Console.WriteLine("uncompressed length: {0}", decompressor.TotalBytesOut); + Console.WriteLine("result length: {0}", result.Length); + Console.WriteLine("result of inflate:\n(Thi){0}", result); + } + + internal static void CheckForError(ZlibCodec z, int rc, System.String msg) + { + if (rc != ZlibConstants.Z_OK) + { + if (z.Message != null) + System.Console.Out.Write(z.Message + " "); + System.Console.Out.WriteLine(msg + " error: " + rc); + + System.Environment.Exit(1); + } + } } \ No newline at end of file diff --git a/src/Examples/C#/ZLIB/test_large_deflate_inflate.cs b/old/src/Examples/C#/ZLIB/test_large_deflate_inflate.cs similarity index 97% rename from src/Examples/C#/ZLIB/test_large_deflate_inflate.cs rename to old/src/Examples/C#/ZLIB/test_large_deflate_inflate.cs index d7f726e..2a24d82 100644 --- a/src/Examples/C#/ZLIB/test_large_deflate_inflate.cs +++ b/old/src/Examples/C#/ZLIB/test_large_deflate_inflate.cs @@ -1,147 +1,147 @@ -using System; -using Ionic.Zlib; - -// Test deflate() with large buffers and dynamic change of compression level -class test_large_deflate_inflate -{ - [STAThread] - public static void Main(System.String[] arg) - { - try - { - var x = new test_large_deflate_inflate(); - x.Run(); - } - catch (System.Exception e1) - { - Console.WriteLine("Exception: " + e1); - } - } - - private void Run() - { - int rc; - int j; - int bufferSize = 40000; - byte[] compressedBytes = new byte[bufferSize]; - byte[] bufferToCompress= new byte[bufferSize]; - byte[] decompressedBytes = new byte[bufferSize]; - - ZlibCodec compressingStream= new ZlibCodec(); - - rc = compressingStream.InitializeDeflate(CompressionLevel.BestSpeed); - CheckForError(compressingStream, rc, "InitializeDeflate"); - - compressingStream.OutputBuffer = compressedBytes; - compressingStream.NextOut = 0; - compressingStream.AvailableBytesOut = compressedBytes.Length; - - // At this point, bufferToCompress is all zeroes, so it should compress - // very well: - compressingStream.InputBuffer = bufferToCompress; - compressingStream.AvailableBytesIn = bufferToCompress.Length; - rc = compressingStream.Deflate(FlushType.None); - CheckForError(compressingStream, rc, "deflate"); - if (compressingStream.AvailableBytesIn != 0) - { - System.Console.Out.WriteLine("deflate not greedy"); - System.Environment.Exit(1); - } - - Console.WriteLine("Stage 1: uncompressed bytes in so far: {0,6}", compressingStream.TotalBytesIn); - Console.WriteLine(" compressed bytes out so far: {0,6}", compressingStream.TotalBytesOut); - - - // Feed in already compressed data and switch to no compression: - compressingStream.SetDeflateParams(CompressionLevel.None, CompressionStrategy.Default); - compressingStream.InputBuffer = compressedBytes; - compressingStream.NextIn = 0; - compressingStream.AvailableBytesIn = bufferSize / 2; // why? - for fun - rc = compressingStream.Deflate(FlushType.None); - CheckForError(compressingStream, rc, "Deflate"); - - Console.WriteLine("Stage 2: uncompressed bytes in so far: {0,6}", compressingStream.TotalBytesIn); - Console.WriteLine(" compressed bytes out so far: {0,6}", compressingStream.TotalBytesOut); - - // Insert data into bufferToCompress, and Switch back to compressing mode: - System.Random rnd = new Random(); - - for (int i = 0; i < bufferToCompress.Length / 1000; i++) - { - byte b = (byte) rnd.Next(); - int n = 500 + rnd.Next(500); - for (j = 0; j < n; j++) - bufferToCompress[j + i] = b; - i += j-1; - } - - compressingStream.SetDeflateParams(CompressionLevel.BestCompression, CompressionStrategy.Filtered); - compressingStream.InputBuffer = bufferToCompress; - compressingStream.NextIn = 0; - compressingStream.AvailableBytesIn = bufferToCompress.Length; - rc = compressingStream.Deflate(FlushType.None); - CheckForError(compressingStream, rc, "Deflate"); - - Console.WriteLine("Stage 3: uncompressed bytes in so far: {0,6}", compressingStream.TotalBytesIn); - Console.WriteLine(" compressed bytes out so far: {0,6}", compressingStream.TotalBytesOut); - - rc = compressingStream.Deflate(FlushType.Finish); - if (rc != ZlibConstants.Z_STREAM_END) - { - Console.WriteLine("deflate reported {0}, should report Z_STREAM_END", rc); - Environment.Exit(1); - } - rc = compressingStream.EndDeflate(); - CheckForError(compressingStream, rc, "EndDeflate"); - - Console.WriteLine("Stage 4: uncompressed bytes in (final): {0,6}", compressingStream.TotalBytesIn); - Console.WriteLine(" compressed bytes out (final): {0,6}", compressingStream.TotalBytesOut); - - ZlibCodec decompressingStream = new ZlibCodec(CompressionMode.Decompress); - - decompressingStream.InputBuffer = compressedBytes; - decompressingStream.NextIn = 0; - decompressingStream.AvailableBytesIn = bufferSize; - - // upon inflating, we overwrite the decompressedBytes buffer repeatedly - while (true) - { - decompressingStream.OutputBuffer = decompressedBytes; - decompressingStream.NextOut = 0; - decompressingStream.AvailableBytesOut = decompressedBytes.Length; - rc = decompressingStream.Inflate(FlushType.None); - if (rc == ZlibConstants.Z_STREAM_END) - break; - CheckForError(decompressingStream, rc, "inflate large"); - } - - rc = decompressingStream.EndInflate(); - CheckForError(decompressingStream, rc, "EndInflate"); - - if (decompressingStream.TotalBytesOut != 2 * decompressedBytes.Length + bufferSize / 2) - { - System.Console.WriteLine("bad large inflate: " + decompressingStream.TotalBytesOut); - System.Environment.Exit(1); - } - - for (j = 0; j < decompressedBytes.Length; j++) - if (decompressedBytes[j] == 0) - break; - - Console.WriteLine("compressed length: {0}", compressingStream.TotalBytesOut); - Console.WriteLine("decompressed length (expected): {0}", 2 * decompressedBytes.Length + bufferSize / 2); - Console.WriteLine("decompressed length (actual) : {0}", decompressingStream.TotalBytesOut); - } - - internal static void CheckForError(ZlibCodec z, int rc, System.String msg) - { - if (rc != ZlibConstants.Z_OK) - { - if (z.Message != null) - System.Console.Out.Write(z.Message + " "); - System.Console.Out.WriteLine(msg + " error: " + rc); - - System.Environment.Exit(1); - } - } +using System; +using Ionic.Zlib; + +// Test deflate() with large buffers and dynamic change of compression level +class test_large_deflate_inflate +{ + [STAThread] + public static void Main(System.String[] arg) + { + try + { + var x = new test_large_deflate_inflate(); + x.Run(); + } + catch (System.Exception e1) + { + Console.WriteLine("Exception: " + e1); + } + } + + private void Run() + { + int rc; + int j; + int bufferSize = 40000; + byte[] compressedBytes = new byte[bufferSize]; + byte[] bufferToCompress= new byte[bufferSize]; + byte[] decompressedBytes = new byte[bufferSize]; + + ZlibCodec compressingStream= new ZlibCodec(); + + rc = compressingStream.InitializeDeflate(CompressionLevel.BestSpeed); + CheckForError(compressingStream, rc, "InitializeDeflate"); + + compressingStream.OutputBuffer = compressedBytes; + compressingStream.NextOut = 0; + compressingStream.AvailableBytesOut = compressedBytes.Length; + + // At this point, bufferToCompress is all zeroes, so it should compress + // very well: + compressingStream.InputBuffer = bufferToCompress; + compressingStream.AvailableBytesIn = bufferToCompress.Length; + rc = compressingStream.Deflate(FlushType.None); + CheckForError(compressingStream, rc, "deflate"); + if (compressingStream.AvailableBytesIn != 0) + { + System.Console.Out.WriteLine("deflate not greedy"); + System.Environment.Exit(1); + } + + Console.WriteLine("Stage 1: uncompressed bytes in so far: {0,6}", compressingStream.TotalBytesIn); + Console.WriteLine(" compressed bytes out so far: {0,6}", compressingStream.TotalBytesOut); + + + // Feed in already compressed data and switch to no compression: + compressingStream.SetDeflateParams(CompressionLevel.None, CompressionStrategy.Default); + compressingStream.InputBuffer = compressedBytes; + compressingStream.NextIn = 0; + compressingStream.AvailableBytesIn = bufferSize / 2; // why? - for fun + rc = compressingStream.Deflate(FlushType.None); + CheckForError(compressingStream, rc, "Deflate"); + + Console.WriteLine("Stage 2: uncompressed bytes in so far: {0,6}", compressingStream.TotalBytesIn); + Console.WriteLine(" compressed bytes out so far: {0,6}", compressingStream.TotalBytesOut); + + // Insert data into bufferToCompress, and Switch back to compressing mode: + System.Random rnd = new Random(); + + for (int i = 0; i < bufferToCompress.Length / 1000; i++) + { + byte b = (byte) rnd.Next(); + int n = 500 + rnd.Next(500); + for (j = 0; j < n; j++) + bufferToCompress[j + i] = b; + i += j-1; + } + + compressingStream.SetDeflateParams(CompressionLevel.BestCompression, CompressionStrategy.Filtered); + compressingStream.InputBuffer = bufferToCompress; + compressingStream.NextIn = 0; + compressingStream.AvailableBytesIn = bufferToCompress.Length; + rc = compressingStream.Deflate(FlushType.None); + CheckForError(compressingStream, rc, "Deflate"); + + Console.WriteLine("Stage 3: uncompressed bytes in so far: {0,6}", compressingStream.TotalBytesIn); + Console.WriteLine(" compressed bytes out so far: {0,6}", compressingStream.TotalBytesOut); + + rc = compressingStream.Deflate(FlushType.Finish); + if (rc != ZlibConstants.Z_STREAM_END) + { + Console.WriteLine("deflate reported {0}, should report Z_STREAM_END", rc); + Environment.Exit(1); + } + rc = compressingStream.EndDeflate(); + CheckForError(compressingStream, rc, "EndDeflate"); + + Console.WriteLine("Stage 4: uncompressed bytes in (final): {0,6}", compressingStream.TotalBytesIn); + Console.WriteLine(" compressed bytes out (final): {0,6}", compressingStream.TotalBytesOut); + + ZlibCodec decompressingStream = new ZlibCodec(CompressionMode.Decompress); + + decompressingStream.InputBuffer = compressedBytes; + decompressingStream.NextIn = 0; + decompressingStream.AvailableBytesIn = bufferSize; + + // upon inflating, we overwrite the decompressedBytes buffer repeatedly + while (true) + { + decompressingStream.OutputBuffer = decompressedBytes; + decompressingStream.NextOut = 0; + decompressingStream.AvailableBytesOut = decompressedBytes.Length; + rc = decompressingStream.Inflate(FlushType.None); + if (rc == ZlibConstants.Z_STREAM_END) + break; + CheckForError(decompressingStream, rc, "inflate large"); + } + + rc = decompressingStream.EndInflate(); + CheckForError(decompressingStream, rc, "EndInflate"); + + if (decompressingStream.TotalBytesOut != 2 * decompressedBytes.Length + bufferSize / 2) + { + System.Console.WriteLine("bad large inflate: " + decompressingStream.TotalBytesOut); + System.Environment.Exit(1); + } + + for (j = 0; j < decompressedBytes.Length; j++) + if (decompressedBytes[j] == 0) + break; + + Console.WriteLine("compressed length: {0}", compressingStream.TotalBytesOut); + Console.WriteLine("decompressed length (expected): {0}", 2 * decompressedBytes.Length + bufferSize / 2); + Console.WriteLine("decompressed length (actual) : {0}", decompressingStream.TotalBytesOut); + } + + internal static void CheckForError(ZlibCodec z, int rc, System.String msg) + { + if (rc != ZlibConstants.Z_OK) + { + if (z.Message != null) + System.Console.Out.Write(z.Message + " "); + System.Console.Out.WriteLine(msg + " error: " + rc); + + System.Environment.Exit(1); + } + } } \ No newline at end of file diff --git a/src/Examples/C#/ZipDir/Properties/AssemblyInfo.cs b/old/src/Examples/C#/ZipDir/Properties/AssemblyInfo.cs similarity index 100% rename from src/Examples/C#/ZipDir/Properties/AssemblyInfo.cs rename to old/src/Examples/C#/ZipDir/Properties/AssemblyInfo.cs diff --git a/src/Examples/C#/ZipDir/ZipDir.cs b/old/src/Examples/C#/ZipDir/ZipDir.cs similarity index 96% rename from src/Examples/C#/ZipDir/ZipDir.cs rename to old/src/Examples/C#/ZipDir/ZipDir.cs index 97691a9..c5fcdd2 100644 --- a/src/Examples/C#/ZipDir/ZipDir.cs +++ b/old/src/Examples/C#/ZipDir/ZipDir.cs @@ -1,73 +1,73 @@ -// ZipDir.cs -// -// ---------------------------------------------------------------------- -// Copyright (c) 2006, 2007, 2008 Microsoft Corporation. All rights reserved. -// -// This example is released under the Microsoft Permissive License of -// October 2006. See the license.txt file accompanying this release for -// full details. -// -// ---------------------------------------------------------------------- -// -// This utility zips up a single directory specified on the command line. -// It is like a specialized ZipIt tool (See ZipIt.cs). -// -// compile with: -// csc /debug+ /target:exe /r:Zip.dll /out:ZipDir.exe ZipDir.cs -// -// Wed, 29 Mar 2006 14:36 -// - -using System; -using Ionic.Zip; - -namespace Ionic.Zip.Examples -{ - - public class ZipDir - { - - private static void Usage() - { - Console.WriteLine("usage:\n ZipDir "); - Environment.Exit(1); - } - - public static void Main(String[] args) - { - if (args.Length != 2) Usage(); - if (!System.IO.Directory.Exists(args[1])) - { - Console.WriteLine("The directory does not exist!\n"); - Usage(); - } - if (System.IO.File.Exists(args[0])) - { - Console.WriteLine("That zipfile already exists!\n"); - Usage(); - } - if (!args[0].EndsWith(".zip")) - { - Console.WriteLine("The filename must end with .zip!\n"); - Usage(); - } - - string ZipFileToCreate = args[0]; - string DirectoryToZip = args[1]; - try - { - using (ZipFile zip = new ZipFile()) - { - zip.StatusMessageTextWriter = System.Console.Out; - zip.AddDirectory(DirectoryToZip); // recurses subdirectories - zip.Save(ZipFileToCreate); - } - } - catch (System.Exception ex1) - { - System.Console.Error.WriteLine("exception: " + ex1); - } - - } - } +// ZipDir.cs +// +// ---------------------------------------------------------------------- +// Copyright (c) 2006, 2007, 2008 Microsoft Corporation. All rights reserved. +// +// This example is released under the Microsoft Permissive License of +// October 2006. See the license.txt file accompanying this release for +// full details. +// +// ---------------------------------------------------------------------- +// +// This utility zips up a single directory specified on the command line. +// It is like a specialized ZipIt tool (See ZipIt.cs). +// +// compile with: +// csc /debug+ /target:exe /r:Zip.dll /out:ZipDir.exe ZipDir.cs +// +// Wed, 29 Mar 2006 14:36 +// + +using System; +using Ionic.Zip; + +namespace Ionic.Zip.Examples +{ + + public class ZipDir + { + + private static void Usage() + { + Console.WriteLine("usage:\n ZipDir "); + Environment.Exit(1); + } + + public static void Main(String[] args) + { + if (args.Length != 2) Usage(); + if (!System.IO.Directory.Exists(args[1])) + { + Console.WriteLine("The directory does not exist!\n"); + Usage(); + } + if (System.IO.File.Exists(args[0])) + { + Console.WriteLine("That zipfile already exists!\n"); + Usage(); + } + if (!args[0].EndsWith(".zip")) + { + Console.WriteLine("The filename must end with .zip!\n"); + Usage(); + } + + string ZipFileToCreate = args[0]; + string DirectoryToZip = args[1]; + try + { + using (ZipFile zip = new ZipFile()) + { + zip.StatusMessageTextWriter = System.Console.Out; + zip.AddDirectory(DirectoryToZip); // recurses subdirectories + zip.Save(ZipFileToCreate); + } + } + catch (System.Exception ex1) + { + System.Console.Error.WriteLine("exception: " + ex1); + } + + } + } } \ No newline at end of file diff --git a/src/Examples/C#/ZipDir/ZipDir.csproj b/old/src/Examples/C#/ZipDir/ZipDir.csproj similarity index 97% rename from src/Examples/C#/ZipDir/ZipDir.csproj rename to old/src/Examples/C#/ZipDir/ZipDir.csproj index 36d8d8d..a58f1f0 100644 --- a/src/Examples/C#/ZipDir/ZipDir.csproj +++ b/old/src/Examples/C#/ZipDir/ZipDir.csproj @@ -1,86 +1,86 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {E04C2A53-3981-44D4-94AF-6AC07D97CDE8} - Exe - Properties - ZipDir - ZipDir - - - - - 3.5 - - - - - - - - - v4.0 - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - AllRules.ruleset - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - AllRules.ruleset - - - - - - - - - Properties\SolutionInfo.cs - - - - - - - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} - Zip DLL - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {E04C2A53-3981-44D4-94AF-6AC07D97CDE8} + Exe + Properties + ZipDir + ZipDir + + + + + 3.5 + + + + + + + + + v4.0 + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + AllRules.ruleset + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + AllRules.ruleset + + + + + + + + + Properties\SolutionInfo.cs + + + + + + + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} + Zip DLL + + + + \ No newline at end of file diff --git a/src/Examples/C#/ZipTreeView/Form1.Designer.cs b/old/src/Examples/C#/ZipTreeView/Form1.Designer.cs similarity index 97% rename from src/Examples/C#/ZipTreeView/Form1.Designer.cs rename to old/src/Examples/C#/ZipTreeView/Form1.Designer.cs index d14eb31..029f6c6 100644 --- a/src/Examples/C#/ZipTreeView/Form1.Designer.cs +++ b/old/src/Examples/C#/ZipTreeView/Form1.Designer.cs @@ -1,92 +1,92 @@ -namespace ZipTreeView -{ - partial class Form1 - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); - this.treeView1 = new System.Windows.Forms.TreeView(); - this.textBox1 = new System.Windows.Forms.TextBox(); - this.button1 = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // treeView1 - // - this.treeView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.treeView1.Location = new System.Drawing.Point(12, 39); - this.treeView1.Name = "treeView1"; - this.treeView1.Size = new System.Drawing.Size(260, 213); - this.treeView1.TabIndex = 0; - // - // textBox1 - // - this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.textBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; - this.textBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem; - this.textBox1.Location = new System.Drawing.Point(12, 12); - this.textBox1.Name = "textBox1"; - this.textBox1.Size = new System.Drawing.Size(206, 20); - this.textBox1.TabIndex = 1; - // - // button1 - // - this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.button1.Location = new System.Drawing.Point(225, 11); - this.button1.Name = "button1"; - this.button1.Size = new System.Drawing.Size(47, 23); - this.button1.TabIndex = 2; - this.button1.Text = "open"; - this.button1.UseVisualStyleBackColor = true; - this.button1.Click += new System.EventHandler(this.button1_Click); - // - // Form1 - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(284, 264); - this.Controls.Add(this.button1); - this.Controls.Add(this.textBox1); - this.Controls.Add(this.treeView1); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Name = "Form1"; - this.Text = "Zip TreeView (C#)"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.TreeView treeView1; - private System.Windows.Forms.TextBox textBox1; - private System.Windows.Forms.Button button1; - } -} - +namespace ZipTreeView +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); + this.treeView1 = new System.Windows.Forms.TreeView(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.button1 = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // treeView1 + // + this.treeView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.treeView1.Location = new System.Drawing.Point(12, 39); + this.treeView1.Name = "treeView1"; + this.treeView1.Size = new System.Drawing.Size(260, 213); + this.treeView1.TabIndex = 0; + // + // textBox1 + // + this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.textBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.textBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem; + this.textBox1.Location = new System.Drawing.Point(12, 12); + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(206, 20); + this.textBox1.TabIndex = 1; + // + // button1 + // + this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.button1.Location = new System.Drawing.Point(225, 11); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(47, 23); + this.button1.TabIndex = 2; + this.button1.Text = "open"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(284, 264); + this.Controls.Add(this.button1); + this.Controls.Add(this.textBox1); + this.Controls.Add(this.treeView1); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Name = "Form1"; + this.Text = "Zip TreeView (C#)"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.TreeView treeView1; + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.Button button1; + } +} + diff --git a/src/Examples/C#/ZipTreeView/Form1.cs b/old/src/Examples/C#/ZipTreeView/Form1.cs similarity index 96% rename from src/Examples/C#/ZipTreeView/Form1.cs rename to old/src/Examples/C#/ZipTreeView/Form1.cs index 9d4c9ea..1d05b92 100644 --- a/src/Examples/C#/ZipTreeView/Form1.cs +++ b/old/src/Examples/C#/ZipTreeView/Form1.cs @@ -1,77 +1,77 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Drawing; -using System.Text; -using System.IO; -using System.Windows.Forms; -using Ionic.Zip; - -namespace ZipTreeView -{ - public partial class Form1 : Form - { - public Form1() - { - InitializeComponent(); - } - - private void button1_Click(object sender, EventArgs e) - { - this.textBox1.BackColor = System.Drawing.Color.White; - string txt = this.textBox1.Text; - try - { - this.treeView1.Nodes.Clear(); - using (var zip = ZipFile.Read(txt)) - { - foreach (var entry in zip) - { - AddTreeNode(entry.FileName); - } - } - } - catch - { - this.textBox1.BackColor = System.Drawing.Color.MistyRose; - MessageBox.Show("Exception reading that zip file."); - } - } - - private TreeNode AddTreeNode(string name) - { - if (name.EndsWith("/")) - name = name.Substring(0, name.Length - 1); - - TreeNode node = FindNodeForTag(name, this.treeView1.Nodes); - if (node != null) - return node; - String parent = Path.GetDirectoryName(name); - TreeNodeCollection pnodeCollection = (parent == "") - ? this.treeView1.Nodes - : AddTreeNode(parent.Replace("\\", "/")).Nodes; - - node = new TreeNode() - { - Text = Path.GetFileName(name), - Tag = name // ' full path - }; - pnodeCollection.Add(node); - return node; - } - - // Returns the TreeNode for a given name - private TreeNode FindNodeForTag(string name, TreeNodeCollection nodes) - { - foreach (TreeNode node in nodes) - { - if (name == (string) node.Tag) - return node; - else if (name.StartsWith(node.Tag + "/")) - return FindNodeForTag(name, node.Nodes); - } - return null; - } - - } -} +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Text; +using System.IO; +using System.Windows.Forms; +using Ionic.Zip; + +namespace ZipTreeView +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + private void button1_Click(object sender, EventArgs e) + { + this.textBox1.BackColor = System.Drawing.Color.White; + string txt = this.textBox1.Text; + try + { + this.treeView1.Nodes.Clear(); + using (var zip = ZipFile.Read(txt)) + { + foreach (var entry in zip) + { + AddTreeNode(entry.FileName); + } + } + } + catch + { + this.textBox1.BackColor = System.Drawing.Color.MistyRose; + MessageBox.Show("Exception reading that zip file."); + } + } + + private TreeNode AddTreeNode(string name) + { + if (name.EndsWith("/")) + name = name.Substring(0, name.Length - 1); + + TreeNode node = FindNodeForTag(name, this.treeView1.Nodes); + if (node != null) + return node; + String parent = Path.GetDirectoryName(name); + TreeNodeCollection pnodeCollection = (parent == "") + ? this.treeView1.Nodes + : AddTreeNode(parent.Replace("\\", "/")).Nodes; + + node = new TreeNode() + { + Text = Path.GetFileName(name), + Tag = name // ' full path + }; + pnodeCollection.Add(node); + return node; + } + + // Returns the TreeNode for a given name + private TreeNode FindNodeForTag(string name, TreeNodeCollection nodes) + { + foreach (TreeNode node in nodes) + { + if (name == (string) node.Tag) + return node; + else if (name.StartsWith(node.Tag + "/")) + return FindNodeForTag(name, node.Nodes); + } + return null; + } + + } +} diff --git a/src/Examples/C#/ZipTreeView/Form1.resx b/old/src/Examples/C#/ZipTreeView/Form1.resx similarity index 98% rename from src/Examples/C#/ZipTreeView/Form1.resx rename to old/src/Examples/C#/ZipTreeView/Form1.resx index 7d33e4f..e3fee67 100644 --- a/src/Examples/C#/ZipTreeView/Form1.resx +++ b/old/src/Examples/C#/ZipTreeView/Form1.resx @@ -1,1119 +1,1119 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - AAABAAoAMDAQAAEABABoBgAApgAAACAgEAABAAQA6AIAAA4HAAAQEBAAAQAEACgBAAD2CQAAMDAAAAEA - CACoDgAAHgsAACAgAAABAAgAqAgAAMYZAAAQEAAAAQAIAGgFAABuIgAAAAAAAAEAIABJhgAA1icAADAw - AAABACAAqCUAAB+uAAAgIAAAAQAgAKgQAADH0wAAEBAAAAEAIABoBAAAb+QAACgAAAAwAAAAYAAAAAEA - BAAAAAAAgAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDA - wAAAAP8AAP8AAAD//wD/AAAA/wD/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIuIAAAAAAAAAAAAAAAAAAAAAA - AAAAB4uLiLgAAAAAAAAAAAAAAAAAAAAAAAiLiHeIuIuIgAAAAAAAAAAAAAAAAAAIi4uIiHi4uLiLgAAA - AAAAAAAAAAAACIi4iL+4t4e4i4iIgAAAAAAAAAAAAAiIi4v7i4iLiHeLiLiIsAAAAAAAAAAACIi4v4iL - +Li/eIiLi4iIgAAAAAAAAAAACL+Ii4v4uIi4h3OIuLj4sAAAAAAAAAAACIuL+IuL+4v7iIi4i4j4gAAA - AAAAAAAACIiIuIiIiIiIt3iLiLj7gAAAAAAAAAAACLi/i4uLi4uLiIe4uLj4gAAAAAAAAAAACPiL+IiI - iL+IiHiIi4j7gAAAAAAAAAAACLiIuLi4v4uLh4O4uLj/gAAAAAAAAAAACPuIiIiIi/i/iIeIi4iLgAAA - AAAAAAAACIi/v7+4iL+Lh3i4uLi/gAAAAAAAAAAACL+IiIiLiIuIiIOIiIiL8AAAAAAAAAAAD4v7+4v4 - i/i4uHi4uLiAAAAAAAAAAAAACIiIiIiL+L+IiIeL+/uAAAAAAAAAAAAACIuL+/v4v4uLiIe4iIiwAAAA - AAAAAAAACIiPiIi/i/iIiHuIuLiAAAAAAAAAAAAACIv7+/iIiL+4h4V4iPvwAAAAAAAAAAAACIiIiL+/ - v4iLd397i/iwAAAAAAAAAAAACIv7+IiIiL+3R3hoiPuAAAAAAAAAAAAACIiIi/v7+IiHGHh4v4iAAAAA - AAAAAAAACIv7+PiIv7+4d3hoi/vwAAAAAAAAAAAACIiPi/v4iIiIiIgIv/iAAAAAAAAAAAAAD4v7+I+/ - v7+IiOhYiPuAAAAAAAAAAAAACIiPiL+I+Ii4iIgov/iAAAAAAAAAAAAACIv7+PiL+/iIiIhYiIuAAAAA - AAAAAAAAD4iPv7+Ij7+4+I8oiPiAAAAAAAAAAAAACIv4+Ii/iIj4j/h4v/uAAAAAAAAAAAAACIiL+/j7 - +/v4j/84+PiAAAAAAAAAAAAAD4v/j4v/j4+/j494v/vwAAAAAAAAAAAACIiIv4+L+/iIhnh4j/iwAAAA - AAAAAAAAD4v4+L+Pj7+/h3h4v/iAAAAAAAAAAAAACIiIv/i/v4+IiHeP//vwAAAAAAAAAAAAD4v4+L/4 - +Iv4+HeI+PiwAAAAAAAAAAAACIiL+Pi/v4+IiHh4i4jwAAAAAAAAAAAAD4v/i/j4+L+/iDeL/wAAAAAA - AAAAAAAACIiL/4v4v4+IgAAAAAAAAAAAAAAAAAAACIiPiI+P8AAAAAAAAAAAAAAAAAAAAAAAD4iIAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////AAD///////8AAP// - /////wAA////////AAD///////8AAP///h///wAA///gD///AAD//gAB//8AAP/gAAH//wAA/gAAAf// - AADgAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAA - AAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// - AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAA - AAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// - AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAA///8AAIAAH////wAAgAf/////AACD//////8AAP// - /////wAAKAAAACAAAABAAAAAAQAEAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAIAAAACA - gACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8AAAD/AP8A//8AAP///wAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAh4uIgAAAAAAAAAAAAAAI - i4eLi7gAAAAAAAAAAIiLi4iHeLh4gAAAAAAACIi4v4i4h7iLiIAAAAAACIuL+IuLi4h7iPuAAAAAAAiI - iLi/v4iHiLv4gAAAAAAIuL+IiIuLhziI+4AAAAAACPiLi4uIv3iLuPiAAAAAAAi4iIiIv4uHeIv4gAAA - AAAPi4uLi/uIh4uLiwAAAAAACIiIiIiIuIg4iIgAAAAAAAiL+/uLiIuHi4uAAAAAAAAIiIiIiIv4iHiL - gAAAAAAACIv7+/v4uIeL+LAAAAAAAAiIiIiIv4t4eLiAAAAAAAAIi/v7+Iv3eHv4sAAAAAAACIiIiL+I - h3d4iIAAAAAAAA+L+/iL+/iHeIuAAAAAAAAIiI+/iIiIiHv4sAAAAAAACIv4iL+/v/h4+IAAAAAAAA+I - iL/4iPj/ePuAAAAAAAAIi/j4v4v4iHv4sAAAAAAAD4iL+IiIi4Z4+IAAAAAAAAiL/7+L+I+FePuAAAAA - AAAPiIj4j7+/h4j4gAAAAAAACIv4v7///4eIi/AAAAAAAA+PiPj4iIj3ewAAAAAAAAAIi/iIiIAAAAAA - AAAAAAAAAP+AAAAAAAAAAAAAAAAAAP/////////////////8B///4AP//AAB/+AAAf+AAAH/gAAB/4AA - Af+AAAH/gAAB/4AAA/+AAAP/gAAH/4AAB/+AAAf/gAAH/4AAB/+AAAf/gAAH/4AAB/+AAAf/gAAH/4AA - B/+AAAf/gAAH/4AAB/+AAAf/gAA//4Af///H////KAAAABAAAAAgAAAAAQAEAAAAAACAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAIAAAIAAAACAgACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8A - AAD/AP8A//8AAP///wADMzMzMzMzAAO7u7t4s7swA7u7u4ezvDADu7u7eLO8MAO7u7uHs78wA7u7u3iz - vzADu7u7h7O/MAO7u7t4uzswA7u7u4e7swADu7u7eLswAAO7u7uHuzAAA7u7u3i7MAADu7u7d7swAAO7 - u7t3uzAAAzMzMzMzAAAAAAAAAAAAAIADAACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAMAAIAH - AACABwAAgAcAAIAHAACABwAAgA8AAP//AAAoAAAAMAAAAGAAAAABAAgAAAAAAAAJAAAAAAAAAAAAAAAB - AAAAAQAAAAAAABssNQA5NTgAOzs+AEY+PwBJOzoAQEJGAEFESgBTUE0AXFBJAEJNVQBNTlIAaFdKAGNa - WQBoXlgARlliAExibQBecXkAWXJ/AH9qZAB/cmwAYnR+AHV0dgB8c3AAhGNZAIduYwCAeXMAjn54AH6C - fACGgH4ApIFvAP+hYwD/tX8AUXWGAFl9jwB6hYgAZI6dAFeNpQB8m6cAep+tAHmltwB2p7wAeKe7AF+n - xgBrp8QAaq7MAHKtxQB0rcQAdLDLAHqzzAB2u9UAfrnSAHK72QBtxd4AWs/sAFzQ7ABsxekAcMbhAHTJ - 5QB3z+oAcs/vAGLT7QBs1+8AdNHrAHjS7QBy2e8Acc3xAHXO8QB1zvQAeM7xAHfQ8QB31PAAdNf1AHzS - 8QB12/YAd973AHrd9QB84PcAfuD4AIGJjwCQh4MAkIiGAJ6UjACDj5QAhZKXAIyYngCSkpIAkZqeAKqR - gwCjlo4AsJWLALGcigC7n4gApZqUAKuckACgnpoAs56TALKflgC1npQApqCcAKuinQC2oJYAu6WbAIud - pQCInKgAi6CoAJehpQCZpKkAkqivAJWttwCNsbwAnbC3AKinpAChqq4AqqyrALGurwChr7QAq7e5AMCf - kgDBqpYAxKybAMuxnADStJ8AyK6iAMy2ogDOuKMAyLKqAM27qQDUt6AA1rykANO7qQDAurQAncS/ANrB - qwDHxL4A1MKzAN/ItgDXx7gA3Mq6AODHsgDgy7oAhK/BAIO6zACOu84AkbfGAJi1wQCfu8UAob7GAKG+ - yACbycYAisPaAJ/I1wCVxNgAmMnbAJvK3QCc0tMArcPLAK7IyQCpytUApsvcAKjO3ACxz9oAhcvgAIzO - 5gCEzusAhdfnAInY5ACE0OoAjtHoAJXQ4ACd1eEAldnjAJDV6wCU3O8Ags/wAIHS8gCF0vEAhtTyAIvV - 8gCD2vQAjdv1AI3e/ACS1vEAkNjzAJXY8gCQ3vAAld3wAJLY9ACV2fQAl9z1AJzc8wCR3/wAo9LkAKbd - 8gCi3fUApd71AKjf9QCM4vUAg+P4AIvm+QCO6PoAleP0AJrj9ACU4vwAm+D4AJPp+gCb7PsAuuTvAKHh - 9wCr4fUApOb5AKHu/ACu6voAs+P1ALzm9gC26PcAv+z1ALTs+gC76vgApPD9AKv0/gCy9f4AvPX9AMXC - wADWycMA0c7LAOrUxwDl2MwA6NrNAOTb1QDt3tQA8tzSAPPd2AD54dEA9eXcAMPu+gDa7vMAxfL8AM30 - /ADR9PwA1Pj9ANr4/gDs5+QA6u/pAPrn4ADz6+MA/OvmAPPu6QD/8eoA5Pr+AOn7/gD18/AA///5AP7+ - /gAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuEWkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAnLzg8SEpDuJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AMGwSJFgVBI1SktDQTs6lpwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0bKvr0uzTjOYZnM/S0tD - PkGmpZoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVuLCzs7PGxsZOTilYaC0/TkpDPYQfm6MAAAAAAAAA - AAAAAAAAAAAAAAAAANa+uLS0xcfHxsbGxsbGTpTfZB05TU1CN5Ugm6gAAAAAAAAAAAAAAAAAAAAAAADB - uMzHx8fHx8fHx8fGxsbGxi9vY59IS01DN6vzyqgAAAAAAAAAAAAAAAAAAAAAAAC+zsvLzc3Ix8fHx8bH - xsbGxm52VSE6TU1DNsn9yqgAAAAAAAAAAAAAAAAAAAAAAAC+zrXNyM3IyMfHx8fHx8fGxjGhYHI8xk1D - N8r9yagAAAAAAAAAAAAAAAAAAAAAAAC+zrXNzc3NzcjHx8fHx8bHxipWZzRAxk5DN8r9yqgAAAAAAAAA - AAAAAAAAAAAAAADBzrXNzc3Nzc3NyMfHx8fHx5DfZBY6xk5DN8r9yqgAAAAAAAAAAAAAAAAAAAAAAADB - zrXOzs3NzcjNzcjHx8fHxjCTXaBLxsZDPcr9yqwAAAAAAAAAAAAAAAAAAAAAAADC07XOzc7Nzc3NyM3N - yMfHx21gayVAx8ZFPcr9yqwAAAAAAAAAAAAAAAAAAAAAAADB07XOzs7Nzs3Nzc3IzcjHxzOgYFc7xsZF - PsnvyqwAAAAAAAAAAAAAAAAAAAAAAADR07/Ozs7Ozs7Nzc3NyM3Ix41waa6zx8ZFP0vFyawAAAAAAAAA - AAAAAAAAAAAAAADR07/Ozs7Ozs7Ozc3Nzc3NyJJ+ZBU5x8evs8rKus8AAAAAAAAAAAAAAAAAAAAAAADR - 27/TztvOzs7Ozs7Nzc3NzTSeX4+vxs2zr7O6AAAAAAAAAAAAAAAAAAAAAAAAAADR27/bztvOzs7Ozs7O - zs3NzZN7bCuvyMfHxbCsAAAAAAAAAAAAAAAAAAAAAAAAAADR28vT287bztPOzs7Nzs3NzZaXYE86yMfH - za+4AAAAAAAAAAAAAAAAAAAAAAAAAADV28vb29vO29POzs7Ozs7OyJZyaixDyMjN06+5AAAAAAAAAAAA - AAAAAAAAAAAAAADV28vb29vb09PT087Ozs7NxnVlWRkiy8jN2a+4AAAAAAAAAAAAAAAAAAAAAAAAAADV - 28zb29vb09PT087Ozs7OkBsXUOkTxc3N7a/JAAAAAAAAAAAAAAAAAAAAAAAAAADV3cvb29vb29vT09PT - zs5HHgULUYsMyc3O77DJAAAAAAAAAAAAAAAAAAAAAAAAAADV28vb3Nzb29vT09PTztOlGAExY4EJxc3T - 7rDJAAAAAAAAAAAAAAAAAAAAAAAAAADW3cvb3Nvc29vb29PT09OpdxojW4AJzc3T8LDJAAAAAAAAAAAA - AAAAAAAAAAAAAADV3cvb3Nzc3Nvb29vb09O5fYp9XHkEzc7T8bDKAAAAAAAAAAAAAAAAAAAAAAAAAADW - 3cvb3dzc3Nzb29vb29vOeX15d4ICzs7d8bLLAAAAAAAAAAAAAAAAAAAAAAAAAADW3cvc3Nzc3Nzc3Nvb - 29vNf4mDfYwDzs7d77LNAAAAAAAAAAAAAAAAAAAAAAAAAADW3czc3N3c3Nzc29zc29vNieOJieIGzs7d - 8bLNAAAAAAAAAAAAAAAAAAAAAAAAAADW3cvc3dzc3Nzc3Nzb3NvThubm5uYHzs7t+bjNAAAAAAAAAAAA - AAAAAAAAAAAAAADW3czc3d3c3dzc3Nzc3NvbnePz8vQKztPu+bjNAAAAAAAAAAAAAAAAAAAAAAAAAADW - 3cvd3d3c3dzd3Nzc3Nzbq4r7/PgP09Pw+bjOAAAAAAAAAAAAAAAAAAAAAAAAAADW3svd3d3d3N3c3Nzc - 3NzczYX1+/YQ09vu+rjOAAAAAAAAAAAAAAAAAAAAAAAAAADW3czc3d3d3dzd3dzc3Nzc3IAOCOgo29vw - +bjOAAAAAAAAAAAAAAAAAAAAAAAAAADY3c7d3d3d3d3d3N3d3Nzc3HlSGuBTztvx+bjOAAAAAAAAAAAA - AAAAAAAAAAAAAADW3czc3d3d3d3d3d3c3dzd23mDF11a2Pr9+b7OAAAAAAAAAAAAAAAAAAAAAAAAAADW - 3svd3d3d3d3d3dzd3dzd3erhDl5m7PHw3r7OAAAAAAAAAAAAAAAAAAAAAAAAAADW3czc3d3d3d3d3d3d - 3dze3t7lHHQn0NLQyszuAAAAAAAAAAAAAAAAAAAAAAAAAADW3c7d3d3d3d3d3d3d3d3d3dRxEiSO0dbu - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAADW3tPd3d3d3d3d3t3X19fX2u0AAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAADa3d3e3dje1t7W7e4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADW - 1trW7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////wAA////////AAD///////8AAP// - /////wAA////////AAD///4f//8AAP//4A///wAA//4AAf//AAD/4AAB//8AAP4AAAH//wAA4AAAAf// - AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAA - AAH//wAAgAAAAf//AACAAAAB//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// - AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAA - AAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// - AACAAAAH//8AAIAAAAf//wAAgAAAP///AACAAB////8AAIAH/////wAAg///////AAD///////8AACgA - AAAgAAAAQAAAAAEACAAAAAAAAAQAAAAAAAAAAAAAAAEAAAABAAAAAAAAWEpEAHBPQQBxY14AaWpqAHpt - ZQBhaXAAYnB7AJNtWwCFdWwAnYF5AJeIfwC2jnIAa3yIAHF/igBpgY4AZYSWAHeIkQBmlqgAaJaoAGeZ - qwBrmqsAfpmnAHecqwBvoLEAc6S2AHujswB9q7sAarHNAH25zgBayt8AYc3fAE/N6ABnzegAZ87vAHbL - 5QBzz+oAec3tAGPU7ABl1OwAa9btAGzX7gBx1+4AeNDrAHHZ7wB22e8Acc3xAHbO8QB50PIAfdHyAHzV - 8gB81fQAdNj1AHfe9wB62fUAfdv3AHne9wB83/cAf935AH/g9wB+4PkAj4WCAIuPkQCSj5EAjZCSAI+W - mACRkJIAlZaWAJSXmQCUmZkAlpqcAKKJgQC4loYAtZqNAKOenAC9oIkAv6mIAJueoQCIo6sAn6CgAJOl - rgCkq64Ava6iALesqQDKq5UA1babAM2zpgDZu68A5r+yAOLHpADlx7MA68u0AOLNvQCAr8EAiL3PAIS+ - 0gChvMYAhMDVAIPB2ACRxdgAtsPHALjEyQClxtEApMfUAKfL1wCvydMAqc7bAL/L0QCt098AtdDZALLU - 3QCIzeYAhM/rAIfX6wCF1uwAiNbrAIzW6wCI0ewAhtjsAIXd7gCJ2u0AjNvuAI7c7gCW0eYAn9PiAJHU - 7gCf1+4AgdLxAITT8gCH1PMAitXzAI3W8gCF3/AAhtn1AITc9gCQ1/MAk97wAJLY9ACW2fQAk972AJXf - 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 - 9QB32/AAddzxAHjd8QB93vEAeeDyAH7g8gB94vQAg4WGAKKQgQC5lYcAqpyRAKOqpwCsrq4Ap7K1AKmy - tADKuasA78y7AIm1xwCjy98AgMvpAITO6wCE1egAh9DtAJPd8gCi0uYApt33AIDh8wCG4fIAgeL0AILl - 9QCG5PQAiOHzAIjl9ACH6PYAiej3AI3o9gCN6vgAkOf2AJDp9gCU6/cAkuv4AJHt+QCW7vkAmO74AJbw - +gCa8vsAnPH6AJ/0/AC75/cAven9AKDx+gCg9PwApPX8AKj2/ACn+P0Aqvj9AK35/QCx+v4AtPv/ALj8 - /wDu3dgA7uriAOzs7AD/+esA///+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAACAgICAgICAgICAgHEwAAAAhLRT8o - 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 - CCMDcH2jtx6+NYFhCy2joCWOh//63332C8DfAOq3HrnfCIP5B65cqd0HnNQ08cbZmXxkECZMxso6CoXU - 8lGzX+ggpMHaukNlvcqhA+OE5JBGDk3TEVLih4rFq3UunjkFii8MyLvPNTrf/osFuzFscoSXNrLekT6X - +lfeOaeNzd5StAvT9wkhTyLkA5omXzMzk2d8zKJYNEBBveHx/Ol11pcWnpiaObg+NV2eKxWNY7qhbE36 - OA3fOX/ufPPpb30tAN703g9dfWJvb/H6xcgAjLCr+JV3zrUq5Awgb1jFcmnq+ANSM14hhHaLUmHOc+ve - +tKFL6xvGH8FYd3UnOWc1dQnpuZvEVK7eWXxwjRRJd+H3/uhq8+8oDf0EsfIAIywp/iVd84ZRBV2ZaJK - OwlU3vuhq1fe/dAdAsDQXC1vbSg6tfzaez90dTsj+kYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGE - EUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGE - EUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEa4Z/P8GlX/ISWG3BgAAAABJRU5ErkJggigAAAAw - AAAAYAAAAAEAIAAAAAAAgCUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARz87AW+NmgFx - zfEYds3ubXXM7sNzzPD1fcvq8IbE3MFxpblkAAAAHAAAABkAAAASAAAACQAAAAMAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHbO8Q9t - udZtXIqb0HGrw/hsxen/cs/v/3TX9f912/b/dc/x/5De8P+BvdTJAAAAOAAAADYAAAAwAAAAJAAAABQA - AAAHAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfdHyBn/P711+ - z++xe8/w63fQ8f+YtcH/tJ6U/4WSl/9Zcn//bcXe/3fe9/933vf/cc3x/3nc8P93zOb/dsnk/3O71NRe - ipqBAAAAOwAAAC8AAAAdAAAADAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhtHvWITR76uC - 0fDnftHy/33W9P992fX/ft33/37h+P9+udP/lcTY/7mkmf+xrq//dNHr/3je9/943vf/cc3x/2zX7/90 - 2u//idjk/4XX5/+BvdTQAAAAQAAAAD8AAAA2AAAAJgAAABQAAAAGAAAAAQAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACM0+5Ii9Tvp4nT8OWH - 1PL+hdj0/4Tb9f+D3vf/g+P4/4Li+P+B4vj/gOL4/3/h+P92p7z/qpGD/4icqP9qrsz/c9Lt/3rf9/95 - 3/f/cc3x/2LT7f+dxL///6Fj/53Q0P+Mzub/AAAAQAAAAEAAAAA/AAAAOQAAACsAAAAXAAAACAAAAAEA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJLV7j6V1/Glkdbx4pDW8v2O - 2vT/jN32/4rh9/+J5Pn/iOX5/4bk+f+F5Pn/hOP5/4Pj+P+C4/j/geL4/4Dh+P+hvsj/xsLA/66kn/+G - gH7/ccfh/3vf9/963/f/cc3x/13Q7P+bycb//7V//5vU1v+Nz+f/AAAAPwAAAD0AAAA7AAAAOQAAADQA - AAAlAAAADwAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAltfw1Jfc9f+b - 4Pj/kOL4/4/n+v+N5/r/jOf6/4vm+v+K5vn/ieX5/4jl+f+H5fn/huT5/4Xk+f+E4/n/g+P4/4Lh+P9y - rcX/nbC3/6Wgnv+my9z/d9Tw/3zg9/984Pf/cs3x/1vQ7P+V2eP/6u/p/5nk9P+Nz+f/AAAAOwAAADkA - AAA2AAAANAAAADEAAAAsAAAAGQAAAAYAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAnNv0/5jr+/+S4vz/kOj6/5Do+v+P6Pr/juj6/43n+v+M5/r/i+b5/4rm+f+I5fn/h+X5/4bk+f+F - 5Pn/hOP5/4Li+P+PsLr/wJ+S/4yYnv9RdYb/csrl/33g+P994Pf/c83x/1rP7P+Y4vP//v7+/5jk9P+O - 0Oj/AAAANgAAADQAAAAxAAAALgAAACwAAAApAAAAHwAAABEAAAAGAAAAAQAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAndz0/5vs+/+M3vz/kun7/5Lp+v+R6fr/kOj6/47o+v+N5/r/jOf6/4vm+v+K - 5vn/ieX5/4jl+f+H5Pn/huT5/4Tj+P94tM7/sc/a/7Gfl/+pqqr/d8/q/3/h+P9+4fj/c87x/1vQ7P+Z - 4vP//////5jj9P+O0ej/AAAAMQAAAC4AAAArAAAAKQAAACYAAAAiAAAAHwAAABgAAAAPAAAABwAAAAIA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAn931/5zs+/+M3vz/lOn7/5Pq+/+S6fv/ken6/5Do+v+P - 6Pr/juf6/43n+v+M5vr/iub5/4nm+f+I5fn/h+X5/4Xj+P94p7v/kpKS/4udpf9yu9n/edXx/4Di+P9/ - 4fj/dM7x/13Q7f+Z4/P//////5nk9P+P0un/AAAALAAAACkAAAAlAAAAIwAAACAAAAAcAAAAGQAAABYA - AAASAAAADAAAAAYAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAod31/53s+/+N3vz/ler7/5Xq+/+U - 6vv/k+r7/5Lp+v+Q6fr/j+j6/47o+v+N5/r/jOf6/4vm+v+K5vn/ieX5/4fk+P+Rt8b/xcPA/6ihnf91 - dHb/dcrk/4Hi+P+A4vj/dc7x/1/Q7f+b4/T//////5nk9P+P0+r/AAAAJQAAACIAAAAfAAAAHAAAABkA - AAAWAAAAEwAAABAAAAANAAAACwAAAAcAAAAEAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAo971/5/t/P+O - 3vz/l+v7/5fr+/+V6/v/lOr7/5Pq+/+S6fv/ken6/5Do+v+P6Pr/juf6/4zn+v+L5vr/iub5/4jk+P90 - sMv/ob7G/6aclv+ozd3/ftj0/4Pj+P+C4vj/ds/x/2DS7f+c4/T//////5zl9P+Q1Or/AAAAHwAAABwA - AAAZAAAAFQAAABMAAAAQAAAADQAAAAsAAAAIAAAABgAAAAQAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAA - AAAApN71/6Dt/P+O3/z/mOv8/5js+/+X6/v/luv7/5Xq+/+U6vv/k+n7/5Hp+v+Q6fr/j+j6/47o+v+N - 5/r/jOf6/4rl+f+Vrbf/s5+V/5mkqf9XjaX/eNLt/4Tj+f+D4/j/d8/x/2PT7v+e5PT//////57m9P+Q - 1ev/AAAAGQAAABYAAAASAAAAEAAAAA0AAAALAAAACAAAAAYAAAAEAAAAAgAAAAEAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAApt/1/6Lu/P+P3/z/muz8/5rt/P+Z7Pv/l+z7/5br+/+V6/v/lOr7/5Pq+/+S - 6fr/ken6/5Do+v+P6Pr/jef6/4vm+v9/udH/qc/b/7Oek/+Rmp7/d9Dr/4bk+f+F5Pn/ec/y/2bU7v+X - 4vT/0fL6/5Xj9P+R1uz/AAAAEwAAABAAAAANAAAACgAAAAgAAAAGAAAABAAAAAIAAAABAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqN/1/6Pv/P+P3/z/m+38/5vt/P+a7fz/mez8/5js+/+X - 6/v/luv7/5Xq+/+T6vv/kun7/5Hp+v+Q6Pr/j+j6/47n+v+Er8H/qKek/4ugqP+Cz/D/gdv3/4fl+f+G - 5Pn/etDy/3DY7/+A2/L/ieHy/5fl9P+R1+z/AAAADQAAAAoAAAAIAAAABgAAAAQAAAACAAAAAQAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqeD1/6Tv/P+P3/z/ne38/53u/P+c - 7fz/m+38/5rs/P+Y7Pv/l+v7/5br+/+V6/v/lOr7/5Pq+/+S6fr/ken6/4/o+v+fu8X/yLKq/6yjnf9i - dH7/cMXh/4nl+f+L5vn/e9Dy/4bd8v+a5PT/mOL0/5je8P+O0+aaAAAACAAAAAYAAAAEAAAAAgAAAAEA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAq+H2/6Xw/f+P - 3/z/nu78/57u/P+d7vz/nO78/5vt/P+a7fz/mez7/5js+/+X6/v/luv7/5Tq+/+T6vv/kun7/5Hp+v92 - u9X/qcrV/6Cemv+Ou87/fdTy/4rm+f+S6Pn/g9j0/3zQ8v+H2vT/lt3v/4vO4VwAAAAGAAAABAAAAAIA - AAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAArOH2/6fw/f+R3/z/oO/9/6Dv/P+f7/z/nu78/53u/P+c7fz/mu38/5ns/P+Y7Pv/l+v7/5br+/+V - 6vv/lOr7/5Pq+/+fvMX/yK6i/5Kor/9fp8b/fdTw/4zn+v+L5vr/jOb5/4vj+P9/0/L/lNzv/2aYpg0A - AAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAruL2/6jx/f+R4Pz/oe/9/6Hw/f+g7/3/n+/8/57u/P+d7vz/nO38/5vt/P+a - 7fz/mez7/5fr+/+W6/v/lev7/5Pp+/+Kwdn/n8jX/7aelP+BiY//c8jm/43n+v+M5/r/i+b6/5bp+v98 - 0fL/lNzv/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAr+L2/6ry/f+S4Pz/o/D9/6Pw/f+i8P3/oe/9/6Dv/P+f - 7/z/ne78/5zu/P+b7fz/mu38/5ns/P+Y7Pv/l+v7/5Lo+/+Lwtr/rK6t/5ehpf9rp8T/dc70/4/o+v+O - 6Pr/kej6/6Ts+/990fL/lN3w/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAseP2/6vy/f+S4fz/pPD9/6Tx/f+j - 8P3/ovD9/6Hw/f+g7/z/n+/8/57u/P+d7vz/nO38/5vt/P+a7Pz/mOz7/4fi/f+rt7n/tqCW/6OWjv+H - bmP/WX2P/5Dn+v+Q6Pr/k+n6/7Pv/P9/0vL/ld7x/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsuP2/6zz/v+S - 4fz/pfH9/6Xx/f+k8f3/o/H9/6Lw/f+h8P3/oO/9/5/v/P+e7/z/ne78/5zu/P+b7fz/l+r8/4yzvv+O - fnj/f3Js/5CHg//54dH/f2pk/4/k9/+R6fr/len6/8j0/f+A0vL/lt/y/wAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAs+P2/6zz/v+T4f3/p/H+/6fy/f+m8v3/pfH9/6Tx/f+j8P3/ovD9/6Hw/f+g7/z/n+/8/57u/P+b - 7Pz/hNDq/6SBb/9JOzr/TU5S/5CIhv/gx7L/aFdK/4/k9f+T6vv/nOv6/8/1/f+C0/L/luHz/wAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAteT2/670/v+T4f3/qPL+/6jz/v+n8v3/pvL9/6Xx/f+k8f3/o/H9/6Lw/f+h - 8P3/oO/9/5/v/P+b7Pz/hcvg/4RjWf8bLDX/fLLL/6ehm//WvKT/XlBI/5Hl9v+U6vv/ou38/8z0/f+D - 0/L/l+Lz/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtuT2/6/0/v+U4v3/qPL+/6nz/v+o8/7/p/L+/6fy/f+m - 8v3/pfH9/6Tx/f+j8P3/ovD9/6Hv/f+f7vz/ldDg/8Kolv+BenX/eoWI/7Gciv/Ut6D/WlBL/5Tm9/+W - 6/v/o+38/9H2/v+F1PP/l+P0/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAt+X2/7D0/v+U4v3/qfP+/6r0/v+q - 8/7/qfP+/6jz/v+n8v3/pvL9/6Xx/f+k8f3/o/H9/6Lw/f+h8P3/l9zw/824o//eybj/z7ik/7ufiP/K - sJ3/Rj4//5bo+P+X7Pv/pe78/9n4/v+G1PP/mOT1/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuOX3/7H0/v+V - 4v3/qvP+/6z0/v+r9P7/qvP+/6nz/v+o8/7/p/L+/6by/f+l8v3/pfH9/6Tx/f+j8P3/leb7/8ixnP/P - u6n/wq6c/8Gslv/Tu6n/OTU4/5fq+f+Z7Pz/sfH8/9n4/f+I1fP/meX2/wAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAueb3/7L0//+V4v3/qvT+/631/v+s9P7/q/T+/6r0/v+p8/7/qfP+/6jy/v+n8v3/pvL9/6Xx/f+k - 8f3/lOn+/8y2ov/ay73/y7us/868qP/gy7r/Ozs+/5nq+v+b7fz/tfH9/9f4/f+K1fP/meb2/wAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAuub3/7P1//+W4v3/q/T+/671/v+t9f7/rPT+/6v0/v+r9P7/qvP+/6nz/v+o - 8/7/p/L9/6by/f+l8f3/kur+/9TCs//l2Mz/18rB/9fHuP/q1Mf/QEJG/5rs+v+c7vz/tfL9/9b4/f+L - 1vP/muf3/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAu+b3/7P1//+W4v3/rfX//6/1//+u9f7/rfX+/631/v+s - 9P7/q/T+/6r0/v+p8/7/qPP+/6jy/v+n8v3/ne79/8fEvv/t3tT/5NrU/+jcz//y3NL/QURK/5zs+/+e - 7vz/v/T9/+P6/v+N1vP/muj4/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvOb3/7T2//+W4v3/rvX//7D2//+v - 9v//rvX+/671/v+t9f7/rPT+/6v0/v+q9P7/qvP+/6nz/v+o8/7/p/L9/67Iyf/o2Mv/7Ofk//Pr4//6 - 5+D/Qk1V/53t/P+f7/z/zvb9/+j7/v+P1/P/m+n4/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvef3/7X2//+W - 4/3/r/X//7D2//+w9v//r/b//6/1//+u9f7/rfX+/6z0/v+s9P7/q/T+/6rz/v+p8/7/qPP+/53V4f/f - yLb/9/Pw////+f//8er/Rlli/5/u/P+h7/3/z/f9/+j7/v+Q2PP/m+r5/wAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAvuf3/7X2//+X4/3/sPb//7H2//+x9v//sPb//6/2//+v9f//rvX+/631/v+t9f7/rPT+/6v0/v+q - 9P7/qvP+/5nk9f/awav/8+7p//Tz8f/86+b/TGJt/6Du/P+i8P3/z/f+/+n7/v+S2PT/nOv6/wAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+x9///sfb//7D2//+w9v//r/b//671/v+u - 9f7/rfX+/6z0/v+r9P7/q/T+/6Xw/f/StJ//Y1pZ/1NQTf/z3dj/eaW3/6Hw/f+j8f3/1fj+/+b7/v+U - 2fT/nOz6/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+y9///svf//7H2//+x - 9v//sPb//6/2//+v9f//rvX+/631/v+t9f7/rPT+/6v0/v/Pspz/npSM/4B4cv/VycX/g4+U/6Hu+/+l - 8f3/2/n+/+T7/v+W2fT/ne37/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+y - 9///svf//7L3//+x9///sfb//7D2//+w9v//r/b//671/v+t9f7/rfX+/6fv+//Gqpv/wLq0/3xzcP+l - mZP/sJWL/7/s9f/s/P///////+T7/v+X2vT/ne77/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X - 4/3/sPb//7L3//+y9///svf//7L3//+y9///sff//7H2//+w9v//sPb//6/2//+v9f//r/X+/7fz/f/1 - 5dz/0c7L/2heWP+rnJD/vaed/9ru8//d+v//0fj+/7/2/v+Z2vT/nu/8/wAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAvuf3/7X2//+X4/3/sPb//7L3//+y9///svf//7L3//+y9///svf//7L3//+x9v//sfb//7D2//+v - 9v//uff//733/v+79Pz/5dzW/36CfP+hr7T/fJun/57h8v+k5vn/oeH3/57e9f+d4/f/nu/8lgAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sfb//7L3//+y9///svf//7P3//+z9///tPf//7P3//+y - 9///sff//7H1//+x8v3/sPD8/6/s+/+u6fn/oaqu/15xef9kjp3/f7jL9p7f896h5vm5n+j6hp7q+0Ge - 8P0PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7T3//+l7v7/svf//7L3//+y9///svf//7L2//+0 - 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 - AAAAAAAAAAAAAAAAAAAAis3lMIrO54CI0OvKhdDs94LS8P990vL/fNX0/3vY9f962/X/tsPH/5eXl/9z - pLb/d973/3HN8f9ayt//v6mI/4TW7P9torWcAAAAQAAAADgAAAAoAAAAEgAAAAQAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAACN0epejtLszY7T7viN1fH/itbz/4bZ9f+E3Pb/guD3/4Hi+P+A4fj/fuH4/33f9/+k - q67/kpCR/4Cvwf943vf/cc3x/2HN3//ix6T/htfs/3KpvaQAAAA8AAAAOAAAADEAAAAfAAAACwAAAAEA - AAAAAAAAAAAAAAAAAAAAmNnysJrd9f+T3vb/juH4/4zk+P+J5fn/iOX5/4bk+f+F5Pn/g+P4/4Li+P+A - 4vj/f+D3/7jEyf+UlJT/b6Cx/3re9/9wzfH/Y9Ts//X8/v+H2O3/dK3BoQAAADUAAAAxAAAALQAAACQA - AAAWAAAACAAAAAIAAAAAAAAAAAAAAACd3PT/ouv7/5Do+v+O6Pr/jef6/4vm+v+K5vn/iOX5/4fk+f+F - 5Pn/hOP5/4Lj+P+B4ff/m56h/46Sk/99uc7/fN/3/3HO8f9l1Oz/9fz+/4ja7f91scWeAAAALQAAACgA - AAAkAAAAHwAAABgAAAAPAAAABwAAAAIAAAAAAAAAAKDd9f+k7Pz/iuD7/5Hp+v+P6Pr/juf6/4zn+v+L - 5vn/ieX5/4jl+f+G5Pn/heT5/4Pi+P+/y9H/lpeX/2eZq/9+4Pj/c87x/2vW7f/1/P7/itru/3i3y5oA - AAAkAAAAHwAAABsAAAAWAAAAEgAAAA0AAAAIAAAABAAAAAEAAAAAot71/6Xs/P+L4Pz/k+r7/5Lp+v+Q - 6Pr/juj6/43n+v+L5vr/iub5/4jl+f+H5Pn/heP4/5SXmf+OkJL/hL7S/4Dh+P92zvH/cdfu//b8/v+M - 2+7/fL3QlgAAABsAAAAWAAAAEgAAAA4AAAAKAAAABgAAAAMAAAABAAAAAAAAAACl3vX/p+38/4zh/P+V - 6/v/lOr7/5Lp+/+R6fr/j+j6/47n+v+M5/r/i+b5/4nl+f+I5Pn/w9HX/5SZmf9mlqj/guL4/3fP8f92 - 2e//7/v9/47c7v9/w9iRAAAAEQAAAA0AAAAKAAAABgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAKff9f+p - 7vz/jeH8/5js+/+W6/v/ler7/5Pq+/+S6fr/kOj6/47o+v+N5/r/i+b6/4rm+f+RkZP/jZCS/4XA1v+F - 4/n/edDy/2zX7v9x2e//j9zu/4HH3HwAAAAKAAAABgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAqeD1/6ru/P+P4vz/mu38/5ns+/+X6/v/lev7/5Tq+/+S6fv/ken6/4/o+v+O5/r/jOf6/8XU2v+W - mpz/aJao/47m+f991PP/fNfx/5Pe8P+Fz+ObW42bEgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAACr4fb/rO/8/5Di/P+c7vz/m+38/5ns/P+Y7Pv/luv7/5Xq+/+T6vv/kun6/5Do+v+O - 6Pr/ko+R/4uPkf+Dwdj/n+r6/4bh+P9/0/L/jNbr/0xxewYAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAK7h9v+t8P3/keP8/5/v/P+d7vz/nO38/5rt/P+Z7Pv/l+v7/5Xr+/+U - 6vv/kun7/5Hp+v/F2OD/lZmZ/2uaq/+T6Pn/kef5/3zR8v+I1uv/AAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsOL2/6/x/f+R4/z/oe/9/5/v/P+e7vz/nO78/5vt/P+Z - 7Pz/mOz7/5br+/+V6vv/kun7/6G8xv+iiYH/kcXY/4/o+v+d6vv/ftHy/4fX6/8AAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACy4/b/sfL9/5Pk/P+j8P3/ofD9/6Dv/P+f - 7/z/ne78/5zt/P+a7fz/mez7/5fr+/+Ivc//l4h//7Wajf93iJH/huH6/6zt+/+A0vL/h9js/wAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALTk9v+x8v7/lOT8/6Xx/f+k - 8f3/ovD9/6Hv/f+f7/z/nu78/5zu/P+b7fz/mez8/3BPQf9lhJb/va6i/3ptZf9zz+r/uvH8/4LT8v+H - 2ez/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAteT2/7Py/v+V - 5f3/p/L9/6by/f+k8f3/o/D9/6Hw/f+g7/z/n+/8/53u/P+c7fz/k21b/5+goP+9oIn/aWpq/33b9//I - 9P3/hNPy/4ba7f8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC3 - 5fb/tfP+/5bl/f+p8/7/p/L+/6by/f+l8f3/pPH9/6Lw/f+h7/3/n+/8/57u/P/lx7P/1bab/7aOcv9h - aXD/f935/9X3/f+H1PP/htzu/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAALnl9/+39P7/l+X9/6r0/v+p8/7/qPP+/6fy/f+m8v3/pPH9/6Pw/f+h8P3/oO/8/93Ryv/r - y7T/yquV/2Jwe/9/4Pv/5Pr+/4nV8/+G3e7/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAuub3/7f0/v+Y5v3/rPT+/6v0/v+q8/7/qfP+/6fy/v+m8v3/pfH9/6Tx/f+i - 8P3/2OHj///x4//izb3/a3yI/4Hh/f/v/P//i9bz/4Xe7/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC85vf/uPT//5nm/f+u9f7/rfX+/6z0/v+q9P7/qfP+/6jz/v+n - 8v3/pvL9/6Tx/f/G3+b////3//vv5v9pgY7/g+T+//X9//+O1/P/hd/w/wAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL3n9/+59P//meb9/6/2//+u9f7/rfX+/6z0/v+r - 9P7/qvP+/6nz/v+n8v7/pvL9/7fe6f/Zu6//t6yp/36Zp/+E6P7/+v7//5DX8/+F4PD/AAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7r1//+a5v3/sPb//6/2//+v - 9f//rvX+/631/v+s9P7/qvT+/6nz/v+o8/7/pOX1/7iWhv9xY17/cX+K/4Hn/v/9////ktj0/4Xg8f8A - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC+5/f/uvX//5rm/f+x - 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 - AwAAgAcAAIAHAACABwAAgAcAAIAHAAD//wAA - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAoAMDAQAAEABABoBgAApgAAACAgEAABAAQA6AIAAA4HAAAQEBAAAQAEACgBAAD2CQAAMDAAAAEA + CACoDgAAHgsAACAgAAABAAgAqAgAAMYZAAAQEAAAAQAIAGgFAABuIgAAAAAAAAEAIABJhgAA1icAADAw + AAABACAAqCUAAB+uAAAgIAAAAQAgAKgQAADH0wAAEBAAAAEAIABoBAAAb+QAACgAAAAwAAAAYAAAAAEA + BAAAAAAAgAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDA + wAAAAP8AAP8AAAD//wD/AAAA/wD/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIuIAAAAAAAAAAAAAAAAAAAAAA + AAAAB4uLiLgAAAAAAAAAAAAAAAAAAAAAAAiLiHeIuIuIgAAAAAAAAAAAAAAAAAAIi4uIiHi4uLiLgAAA + AAAAAAAAAAAACIi4iL+4t4e4i4iIgAAAAAAAAAAAAAiIi4v7i4iLiHeLiLiIsAAAAAAAAAAACIi4v4iL + +Li/eIiLi4iIgAAAAAAAAAAACL+Ii4v4uIi4h3OIuLj4sAAAAAAAAAAACIuL+IuL+4v7iIi4i4j4gAAA + AAAAAAAACIiIuIiIiIiIt3iLiLj7gAAAAAAAAAAACLi/i4uLi4uLiIe4uLj4gAAAAAAAAAAACPiL+IiI + iL+IiHiIi4j7gAAAAAAAAAAACLiIuLi4v4uLh4O4uLj/gAAAAAAAAAAACPuIiIiIi/i/iIeIi4iLgAAA + AAAAAAAACIi/v7+4iL+Lh3i4uLi/gAAAAAAAAAAACL+IiIiLiIuIiIOIiIiL8AAAAAAAAAAAD4v7+4v4 + i/i4uHi4uLiAAAAAAAAAAAAACIiIiIiL+L+IiIeL+/uAAAAAAAAAAAAACIuL+/v4v4uLiIe4iIiwAAAA + AAAAAAAACIiPiIi/i/iIiHuIuLiAAAAAAAAAAAAACIv7+/iIiL+4h4V4iPvwAAAAAAAAAAAACIiIiL+/ + v4iLd397i/iwAAAAAAAAAAAACIv7+IiIiL+3R3hoiPuAAAAAAAAAAAAACIiIi/v7+IiHGHh4v4iAAAAA + AAAAAAAACIv7+PiIv7+4d3hoi/vwAAAAAAAAAAAACIiPi/v4iIiIiIgIv/iAAAAAAAAAAAAAD4v7+I+/ + v7+IiOhYiPuAAAAAAAAAAAAACIiPiL+I+Ii4iIgov/iAAAAAAAAAAAAACIv7+PiL+/iIiIhYiIuAAAAA + AAAAAAAAD4iPv7+Ij7+4+I8oiPiAAAAAAAAAAAAACIv4+Ii/iIj4j/h4v/uAAAAAAAAAAAAACIiL+/j7 + +/v4j/84+PiAAAAAAAAAAAAAD4v/j4v/j4+/j494v/vwAAAAAAAAAAAACIiIv4+L+/iIhnh4j/iwAAAA + AAAAAAAAD4v4+L+Pj7+/h3h4v/iAAAAAAAAAAAAACIiIv/i/v4+IiHeP//vwAAAAAAAAAAAAD4v4+L/4 + +Iv4+HeI+PiwAAAAAAAAAAAACIiL+Pi/v4+IiHh4i4jwAAAAAAAAAAAAD4v/i/j4+L+/iDeL/wAAAAAA + AAAAAAAACIiL/4v4v4+IgAAAAAAAAAAAAAAAAAAACIiPiI+P8AAAAAAAAAAAAAAAAAAAAAAAD4iIAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////AAD///////8AAP// + /////wAA////////AAD///////8AAP///h///wAA///gD///AAD//gAB//8AAP/gAAH//wAA/gAAAf// + AADgAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAA + AAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// + AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAA + AAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// + AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAA///8AAIAAH////wAAgAf/////AACD//////8AAP// + /////wAAKAAAACAAAABAAAAAAQAEAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAIAAAACA + gACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8AAAD/AP8A//8AAP///wAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAh4uIgAAAAAAAAAAAAAAI + i4eLi7gAAAAAAAAAAIiLi4iHeLh4gAAAAAAACIi4v4i4h7iLiIAAAAAACIuL+IuLi4h7iPuAAAAAAAiI + iLi/v4iHiLv4gAAAAAAIuL+IiIuLhziI+4AAAAAACPiLi4uIv3iLuPiAAAAAAAi4iIiIv4uHeIv4gAAA + AAAPi4uLi/uIh4uLiwAAAAAACIiIiIiIuIg4iIgAAAAAAAiL+/uLiIuHi4uAAAAAAAAIiIiIiIv4iHiL + gAAAAAAACIv7+/v4uIeL+LAAAAAAAAiIiIiIv4t4eLiAAAAAAAAIi/v7+Iv3eHv4sAAAAAAACIiIiL+I + h3d4iIAAAAAAAA+L+/iL+/iHeIuAAAAAAAAIiI+/iIiIiHv4sAAAAAAACIv4iL+/v/h4+IAAAAAAAA+I + iL/4iPj/ePuAAAAAAAAIi/j4v4v4iHv4sAAAAAAAD4iL+IiIi4Z4+IAAAAAAAAiL/7+L+I+FePuAAAAA + AAAPiIj4j7+/h4j4gAAAAAAACIv4v7///4eIi/AAAAAAAA+PiPj4iIj3ewAAAAAAAAAIi/iIiIAAAAAA + AAAAAAAAAP+AAAAAAAAAAAAAAAAAAP/////////////////8B///4AP//AAB/+AAAf+AAAH/gAAB/4AA + Af+AAAH/gAAB/4AAA/+AAAP/gAAH/4AAB/+AAAf/gAAH/4AAB/+AAAf/gAAH/4AAB/+AAAf/gAAH/4AA + B/+AAAf/gAAH/4AAB/+AAAf/gAA//4Af///H////KAAAABAAAAAgAAAAAQAEAAAAAACAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAIAAAIAAAACAgACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8A + AAD/AP8A//8AAP///wADMzMzMzMzAAO7u7t4s7swA7u7u4ezvDADu7u7eLO8MAO7u7uHs78wA7u7u3iz + vzADu7u7h7O/MAO7u7t4uzswA7u7u4e7swADu7u7eLswAAO7u7uHuzAAA7u7u3i7MAADu7u7d7swAAO7 + u7t3uzAAAzMzMzMzAAAAAAAAAAAAAIADAACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAMAAIAH + AACABwAAgAcAAIAHAACABwAAgA8AAP//AAAoAAAAMAAAAGAAAAABAAgAAAAAAAAJAAAAAAAAAAAAAAAB + AAAAAQAAAAAAABssNQA5NTgAOzs+AEY+PwBJOzoAQEJGAEFESgBTUE0AXFBJAEJNVQBNTlIAaFdKAGNa + WQBoXlgARlliAExibQBecXkAWXJ/AH9qZAB/cmwAYnR+AHV0dgB8c3AAhGNZAIduYwCAeXMAjn54AH6C + fACGgH4ApIFvAP+hYwD/tX8AUXWGAFl9jwB6hYgAZI6dAFeNpQB8m6cAep+tAHmltwB2p7wAeKe7AF+n + xgBrp8QAaq7MAHKtxQB0rcQAdLDLAHqzzAB2u9UAfrnSAHK72QBtxd4AWs/sAFzQ7ABsxekAcMbhAHTJ + 5QB3z+oAcs/vAGLT7QBs1+8AdNHrAHjS7QBy2e8Acc3xAHXO8QB1zvQAeM7xAHfQ8QB31PAAdNf1AHzS + 8QB12/YAd973AHrd9QB84PcAfuD4AIGJjwCQh4MAkIiGAJ6UjACDj5QAhZKXAIyYngCSkpIAkZqeAKqR + gwCjlo4AsJWLALGcigC7n4gApZqUAKuckACgnpoAs56TALKflgC1npQApqCcAKuinQC2oJYAu6WbAIud + pQCInKgAi6CoAJehpQCZpKkAkqivAJWttwCNsbwAnbC3AKinpAChqq4AqqyrALGurwChr7QAq7e5AMCf + kgDBqpYAxKybAMuxnADStJ8AyK6iAMy2ogDOuKMAyLKqAM27qQDUt6AA1rykANO7qQDAurQAncS/ANrB + qwDHxL4A1MKzAN/ItgDXx7gA3Mq6AODHsgDgy7oAhK/BAIO6zACOu84AkbfGAJi1wQCfu8UAob7GAKG+ + yACbycYAisPaAJ/I1wCVxNgAmMnbAJvK3QCc0tMArcPLAK7IyQCpytUApsvcAKjO3ACxz9oAhcvgAIzO + 5gCEzusAhdfnAInY5ACE0OoAjtHoAJXQ4ACd1eEAldnjAJDV6wCU3O8Ags/wAIHS8gCF0vEAhtTyAIvV + 8gCD2vQAjdv1AI3e/ACS1vEAkNjzAJXY8gCQ3vAAld3wAJLY9ACV2fQAl9z1AJzc8wCR3/wAo9LkAKbd + 8gCi3fUApd71AKjf9QCM4vUAg+P4AIvm+QCO6PoAleP0AJrj9ACU4vwAm+D4AJPp+gCb7PsAuuTvAKHh + 9wCr4fUApOb5AKHu/ACu6voAs+P1ALzm9gC26PcAv+z1ALTs+gC76vgApPD9AKv0/gCy9f4AvPX9AMXC + wADWycMA0c7LAOrUxwDl2MwA6NrNAOTb1QDt3tQA8tzSAPPd2AD54dEA9eXcAMPu+gDa7vMAxfL8AM30 + /ADR9PwA1Pj9ANr4/gDs5+QA6u/pAPrn4ADz6+MA/OvmAPPu6QD/8eoA5Pr+AOn7/gD18/AA///5AP7+ + /gAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuEWkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAnLzg8SEpDuJoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AMGwSJFgVBI1SktDQTs6lpwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0bKvr0uzTjOYZnM/S0tD + PkGmpZoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVuLCzs7PGxsZOTilYaC0/TkpDPYQfm6MAAAAAAAAA + AAAAAAAAAAAAAAAAANa+uLS0xcfHxsbGxsbGTpTfZB05TU1CN5Ugm6gAAAAAAAAAAAAAAAAAAAAAAADB + uMzHx8fHx8fHx8fGxsbGxi9vY59IS01DN6vzyqgAAAAAAAAAAAAAAAAAAAAAAAC+zsvLzc3Ix8fHx8bH + xsbGxm52VSE6TU1DNsn9yqgAAAAAAAAAAAAAAAAAAAAAAAC+zrXNyM3IyMfHx8fHx8fGxjGhYHI8xk1D + N8r9yagAAAAAAAAAAAAAAAAAAAAAAAC+zrXNzc3NzcjHx8fHx8bHxipWZzRAxk5DN8r9yqgAAAAAAAAA + AAAAAAAAAAAAAADBzrXNzc3Nzc3NyMfHx8fHx5DfZBY6xk5DN8r9yqgAAAAAAAAAAAAAAAAAAAAAAADB + zrXOzs3NzcjNzcjHx8fHxjCTXaBLxsZDPcr9yqwAAAAAAAAAAAAAAAAAAAAAAADC07XOzc7Nzc3NyM3N + yMfHx21gayVAx8ZFPcr9yqwAAAAAAAAAAAAAAAAAAAAAAADB07XOzs7Nzs3Nzc3IzcjHxzOgYFc7xsZF + PsnvyqwAAAAAAAAAAAAAAAAAAAAAAADR07/Ozs7Ozs7Nzc3NyM3Ix41waa6zx8ZFP0vFyawAAAAAAAAA + AAAAAAAAAAAAAADR07/Ozs7Ozs7Ozc3Nzc3NyJJ+ZBU5x8evs8rKus8AAAAAAAAAAAAAAAAAAAAAAADR + 27/TztvOzs7Ozs7Nzc3NzTSeX4+vxs2zr7O6AAAAAAAAAAAAAAAAAAAAAAAAAADR27/bztvOzs7Ozs7O + zs3NzZN7bCuvyMfHxbCsAAAAAAAAAAAAAAAAAAAAAAAAAADR28vT287bztPOzs7Nzs3NzZaXYE86yMfH + za+4AAAAAAAAAAAAAAAAAAAAAAAAAADV28vb29vO29POzs7Ozs7OyJZyaixDyMjN06+5AAAAAAAAAAAA + AAAAAAAAAAAAAADV28vb29vb09PT087Ozs7NxnVlWRkiy8jN2a+4AAAAAAAAAAAAAAAAAAAAAAAAAADV + 28zb29vb09PT087Ozs7OkBsXUOkTxc3N7a/JAAAAAAAAAAAAAAAAAAAAAAAAAADV3cvb29vb29vT09PT + zs5HHgULUYsMyc3O77DJAAAAAAAAAAAAAAAAAAAAAAAAAADV28vb3Nzb29vT09PTztOlGAExY4EJxc3T + 7rDJAAAAAAAAAAAAAAAAAAAAAAAAAADW3cvb3Nvc29vb29PT09OpdxojW4AJzc3T8LDJAAAAAAAAAAAA + AAAAAAAAAAAAAADV3cvb3Nzc3Nvb29vb09O5fYp9XHkEzc7T8bDKAAAAAAAAAAAAAAAAAAAAAAAAAADW + 3cvb3dzc3Nzb29vb29vOeX15d4ICzs7d8bLLAAAAAAAAAAAAAAAAAAAAAAAAAADW3cvc3Nzc3Nzc3Nvb + 29vNf4mDfYwDzs7d77LNAAAAAAAAAAAAAAAAAAAAAAAAAADW3czc3N3c3Nzc29zc29vNieOJieIGzs7d + 8bLNAAAAAAAAAAAAAAAAAAAAAAAAAADW3cvc3dzc3Nzc3Nzb3NvThubm5uYHzs7t+bjNAAAAAAAAAAAA + AAAAAAAAAAAAAADW3czc3d3c3dzc3Nzc3NvbnePz8vQKztPu+bjNAAAAAAAAAAAAAAAAAAAAAAAAAADW + 3cvd3d3c3dzd3Nzc3Nzbq4r7/PgP09Pw+bjOAAAAAAAAAAAAAAAAAAAAAAAAAADW3svd3d3d3N3c3Nzc + 3NzczYX1+/YQ09vu+rjOAAAAAAAAAAAAAAAAAAAAAAAAAADW3czc3d3d3dzd3dzc3Nzc3IAOCOgo29vw + +bjOAAAAAAAAAAAAAAAAAAAAAAAAAADY3c7d3d3d3d3d3N3d3Nzc3HlSGuBTztvx+bjOAAAAAAAAAAAA + AAAAAAAAAAAAAADW3czc3d3d3d3d3d3c3dzd23mDF11a2Pr9+b7OAAAAAAAAAAAAAAAAAAAAAAAAAADW + 3svd3d3d3d3d3dzd3dzd3erhDl5m7PHw3r7OAAAAAAAAAAAAAAAAAAAAAAAAAADW3czc3d3d3d3d3d3d + 3dze3t7lHHQn0NLQyszuAAAAAAAAAAAAAAAAAAAAAAAAAADW3c7d3d3d3d3d3d3d3d3d3dRxEiSO0dbu + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAADW3tPd3d3d3d3d3t3X19fX2u0AAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAADa3d3e3dje1t7W7e4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADW + 1trW7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///////wAA////////AAD///////8AAP// + /////wAA////////AAD///4f//8AAP//4A///wAA//4AAf//AAD/4AAB//8AAP4AAAH//wAA4AAAAf// + AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAA + AAH//wAAgAAAAf//AACAAAAB//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// + AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAA + AAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// + AACAAAAH//8AAIAAAAf//wAAgAAAP///AACAAB////8AAIAH/////wAAg///////AAD///////8AACgA + AAAgAAAAQAAAAAEACAAAAAAAAAQAAAAAAAAAAAAAAAEAAAABAAAAAAAAWEpEAHBPQQBxY14AaWpqAHpt + ZQBhaXAAYnB7AJNtWwCFdWwAnYF5AJeIfwC2jnIAa3yIAHF/igBpgY4AZYSWAHeIkQBmlqgAaJaoAGeZ + qwBrmqsAfpmnAHecqwBvoLEAc6S2AHujswB9q7sAarHNAH25zgBayt8AYc3fAE/N6ABnzegAZ87vAHbL + 5QBzz+oAec3tAGPU7ABl1OwAa9btAGzX7gBx1+4AeNDrAHHZ7wB22e8Acc3xAHbO8QB50PIAfdHyAHzV + 8gB81fQAdNj1AHfe9wB62fUAfdv3AHne9wB83/cAf935AH/g9wB+4PkAj4WCAIuPkQCSj5EAjZCSAI+W + mACRkJIAlZaWAJSXmQCUmZkAlpqcAKKJgQC4loYAtZqNAKOenAC9oIkAv6mIAJueoQCIo6sAn6CgAJOl + rgCkq64Ava6iALesqQDKq5UA1babAM2zpgDZu68A5r+yAOLHpADlx7MA68u0AOLNvQCAr8EAiL3PAIS+ + 0gChvMYAhMDVAIPB2ACRxdgAtsPHALjEyQClxtEApMfUAKfL1wCvydMAqc7bAL/L0QCt098AtdDZALLU + 3QCIzeYAhM/rAIfX6wCF1uwAiNbrAIzW6wCI0ewAhtjsAIXd7gCJ2u0AjNvuAI7c7gCW0eYAn9PiAJHU + 7gCf1+4AgdLxAITT8gCH1PMAitXzAI3W8gCF3/AAhtn1AITc9gCQ1/MAk97wAJLY9ACW2fQAk972AJXf + 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 + 9QB32/AAddzxAHjd8QB93vEAeeDyAH7g8gB94vQAg4WGAKKQgQC5lYcAqpyRAKOqpwCsrq4Ap7K1AKmy + tADKuasA78y7AIm1xwCjy98AgMvpAITO6wCE1egAh9DtAJPd8gCi0uYApt33AIDh8wCG4fIAgeL0AILl + 9QCG5PQAiOHzAIjl9ACH6PYAiej3AI3o9gCN6vgAkOf2AJDp9gCU6/cAkuv4AJHt+QCW7vkAmO74AJbw + +gCa8vsAnPH6AJ/0/AC75/cAven9AKDx+gCg9PwApPX8AKj2/ACn+P0Aqvj9AK35/QCx+v4AtPv/ALj8 + /wDu3dgA7uriAOzs7AD/+esA///+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAACAgICAgICAgICAgHEwAAAAhLRT8o + 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 + CCMDcH2jtx6+NYFhCy2joCWOh//63332C8DfAOq3HrnfCIP5B65cqd0HnNQ08cbZmXxkECZMxso6CoXU + 8lGzX+ggpMHaukNlvcqhA+OE5JBGDk3TEVLih4rFq3UunjkFii8MyLvPNTrf/osFuzFscoSXNrLekT6X + +lfeOaeNzd5StAvT9wkhTyLkA5omXzMzk2d8zKJYNEBBveHx/Ol11pcWnpiaObg+NV2eKxWNY7qhbE36 + OA3fOX/ufPPpb30tAN703g9dfWJvb/H6xcgAjLCr+JV3zrUq5Awgb1jFcmnq+ANSM14hhHaLUmHOc+ve + +tKFL6xvGH8FYd3UnOWc1dQnpuZvEVK7eWXxwjRRJd+H3/uhq8+8oDf0EsfIAIywp/iVd84ZRBV2ZaJK + OwlU3vuhq1fe/dAdAsDQXC1vbSg6tfzaez90dTsj+kYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGE + EUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGE + EUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEa4Z/P8GlX/ISWG3BgAAAABJRU5ErkJggigAAAAw + AAAAYAAAAAEAIAAAAAAAgCUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARz87AW+NmgFx + zfEYds3ubXXM7sNzzPD1fcvq8IbE3MFxpblkAAAAHAAAABkAAAASAAAACQAAAAMAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHbO8Q9t + udZtXIqb0HGrw/hsxen/cs/v/3TX9f912/b/dc/x/5De8P+BvdTJAAAAOAAAADYAAAAwAAAAJAAAABQA + AAAHAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfdHyBn/P711+ + z++xe8/w63fQ8f+YtcH/tJ6U/4WSl/9Zcn//bcXe/3fe9/933vf/cc3x/3nc8P93zOb/dsnk/3O71NRe + ipqBAAAAOwAAAC8AAAAdAAAADAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhtHvWITR76uC + 0fDnftHy/33W9P992fX/ft33/37h+P9+udP/lcTY/7mkmf+xrq//dNHr/3je9/943vf/cc3x/2zX7/90 + 2u//idjk/4XX5/+BvdTQAAAAQAAAAD8AAAA2AAAAJgAAABQAAAAGAAAAAQAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACM0+5Ii9Tvp4nT8OWH + 1PL+hdj0/4Tb9f+D3vf/g+P4/4Li+P+B4vj/gOL4/3/h+P92p7z/qpGD/4icqP9qrsz/c9Lt/3rf9/95 + 3/f/cc3x/2LT7f+dxL///6Fj/53Q0P+Mzub/AAAAQAAAAEAAAAA/AAAAOQAAACsAAAAXAAAACAAAAAEA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJLV7j6V1/Glkdbx4pDW8v2O + 2vT/jN32/4rh9/+J5Pn/iOX5/4bk+f+F5Pn/hOP5/4Pj+P+C4/j/geL4/4Dh+P+hvsj/xsLA/66kn/+G + gH7/ccfh/3vf9/963/f/cc3x/13Q7P+bycb//7V//5vU1v+Nz+f/AAAAPwAAAD0AAAA7AAAAOQAAADQA + AAAlAAAADwAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAltfw1Jfc9f+b + 4Pj/kOL4/4/n+v+N5/r/jOf6/4vm+v+K5vn/ieX5/4jl+f+H5fn/huT5/4Xk+f+E4/n/g+P4/4Lh+P9y + rcX/nbC3/6Wgnv+my9z/d9Tw/3zg9/984Pf/cs3x/1vQ7P+V2eP/6u/p/5nk9P+Nz+f/AAAAOwAAADkA + AAA2AAAANAAAADEAAAAsAAAAGQAAAAYAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAnNv0/5jr+/+S4vz/kOj6/5Do+v+P6Pr/juj6/43n+v+M5/r/i+b5/4rm+f+I5fn/h+X5/4bk+f+F + 5Pn/hOP5/4Li+P+PsLr/wJ+S/4yYnv9RdYb/csrl/33g+P994Pf/c83x/1rP7P+Y4vP//v7+/5jk9P+O + 0Oj/AAAANgAAADQAAAAxAAAALgAAACwAAAApAAAAHwAAABEAAAAGAAAAAQAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAndz0/5vs+/+M3vz/kun7/5Lp+v+R6fr/kOj6/47o+v+N5/r/jOf6/4vm+v+K + 5vn/ieX5/4jl+f+H5Pn/huT5/4Tj+P94tM7/sc/a/7Gfl/+pqqr/d8/q/3/h+P9+4fj/c87x/1vQ7P+Z + 4vP//////5jj9P+O0ej/AAAAMQAAAC4AAAArAAAAKQAAACYAAAAiAAAAHwAAABgAAAAPAAAABwAAAAIA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAn931/5zs+/+M3vz/lOn7/5Pq+/+S6fv/ken6/5Do+v+P + 6Pr/juf6/43n+v+M5vr/iub5/4nm+f+I5fn/h+X5/4Xj+P94p7v/kpKS/4udpf9yu9n/edXx/4Di+P9/ + 4fj/dM7x/13Q7f+Z4/P//////5nk9P+P0un/AAAALAAAACkAAAAlAAAAIwAAACAAAAAcAAAAGQAAABYA + AAASAAAADAAAAAYAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAod31/53s+/+N3vz/ler7/5Xq+/+U + 6vv/k+r7/5Lp+v+Q6fr/j+j6/47o+v+N5/r/jOf6/4vm+v+K5vn/ieX5/4fk+P+Rt8b/xcPA/6ihnf91 + dHb/dcrk/4Hi+P+A4vj/dc7x/1/Q7f+b4/T//////5nk9P+P0+r/AAAAJQAAACIAAAAfAAAAHAAAABkA + AAAWAAAAEwAAABAAAAANAAAACwAAAAcAAAAEAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAo971/5/t/P+O + 3vz/l+v7/5fr+/+V6/v/lOr7/5Pq+/+S6fv/ken6/5Do+v+P6Pr/juf6/4zn+v+L5vr/iub5/4jk+P90 + sMv/ob7G/6aclv+ozd3/ftj0/4Pj+P+C4vj/ds/x/2DS7f+c4/T//////5zl9P+Q1Or/AAAAHwAAABwA + AAAZAAAAFQAAABMAAAAQAAAADQAAAAsAAAAIAAAABgAAAAQAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAA + AAAApN71/6Dt/P+O3/z/mOv8/5js+/+X6/v/luv7/5Xq+/+U6vv/k+n7/5Hp+v+Q6fr/j+j6/47o+v+N + 5/r/jOf6/4rl+f+Vrbf/s5+V/5mkqf9XjaX/eNLt/4Tj+f+D4/j/d8/x/2PT7v+e5PT//////57m9P+Q + 1ev/AAAAGQAAABYAAAASAAAAEAAAAA0AAAALAAAACAAAAAYAAAAEAAAAAgAAAAEAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAApt/1/6Lu/P+P3/z/muz8/5rt/P+Z7Pv/l+z7/5br+/+V6/v/lOr7/5Pq+/+S + 6fr/ken6/5Do+v+P6Pr/jef6/4vm+v9/udH/qc/b/7Oek/+Rmp7/d9Dr/4bk+f+F5Pn/ec/y/2bU7v+X + 4vT/0fL6/5Xj9P+R1uz/AAAAEwAAABAAAAANAAAACgAAAAgAAAAGAAAABAAAAAIAAAABAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqN/1/6Pv/P+P3/z/m+38/5vt/P+a7fz/mez8/5js+/+X + 6/v/luv7/5Xq+/+T6vv/kun7/5Hp+v+Q6Pr/j+j6/47n+v+Er8H/qKek/4ugqP+Cz/D/gdv3/4fl+f+G + 5Pn/etDy/3DY7/+A2/L/ieHy/5fl9P+R1+z/AAAADQAAAAoAAAAIAAAABgAAAAQAAAACAAAAAQAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqeD1/6Tv/P+P3/z/ne38/53u/P+c + 7fz/m+38/5rs/P+Y7Pv/l+v7/5br+/+V6/v/lOr7/5Pq+/+S6fr/ken6/4/o+v+fu8X/yLKq/6yjnf9i + dH7/cMXh/4nl+f+L5vn/e9Dy/4bd8v+a5PT/mOL0/5je8P+O0+aaAAAACAAAAAYAAAAEAAAAAgAAAAEA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAq+H2/6Xw/f+P + 3/z/nu78/57u/P+d7vz/nO78/5vt/P+a7fz/mez7/5js+/+X6/v/luv7/5Tq+/+T6vv/kun7/5Hp+v92 + u9X/qcrV/6Cemv+Ou87/fdTy/4rm+f+S6Pn/g9j0/3zQ8v+H2vT/lt3v/4vO4VwAAAAGAAAABAAAAAIA + AAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAArOH2/6fw/f+R3/z/oO/9/6Dv/P+f7/z/nu78/53u/P+c7fz/mu38/5ns/P+Y7Pv/l+v7/5br+/+V + 6vv/lOr7/5Pq+/+fvMX/yK6i/5Kor/9fp8b/fdTw/4zn+v+L5vr/jOb5/4vj+P9/0/L/lNzv/2aYpg0A + AAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAruL2/6jx/f+R4Pz/oe/9/6Hw/f+g7/3/n+/8/57u/P+d7vz/nO38/5vt/P+a + 7fz/mez7/5fr+/+W6/v/lev7/5Pp+/+Kwdn/n8jX/7aelP+BiY//c8jm/43n+v+M5/r/i+b6/5bp+v98 + 0fL/lNzv/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAr+L2/6ry/f+S4Pz/o/D9/6Pw/f+i8P3/oe/9/6Dv/P+f + 7/z/ne78/5zu/P+b7fz/mu38/5ns/P+Y7Pv/l+v7/5Lo+/+Lwtr/rK6t/5ehpf9rp8T/dc70/4/o+v+O + 6Pr/kej6/6Ts+/990fL/lN3w/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAseP2/6vy/f+S4fz/pPD9/6Tx/f+j + 8P3/ovD9/6Hw/f+g7/z/n+/8/57u/P+d7vz/nO38/5vt/P+a7Pz/mOz7/4fi/f+rt7n/tqCW/6OWjv+H + bmP/WX2P/5Dn+v+Q6Pr/k+n6/7Pv/P9/0vL/ld7x/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsuP2/6zz/v+S + 4fz/pfH9/6Xx/f+k8f3/o/H9/6Lw/f+h8P3/oO/9/5/v/P+e7/z/ne78/5zu/P+b7fz/l+r8/4yzvv+O + fnj/f3Js/5CHg//54dH/f2pk/4/k9/+R6fr/len6/8j0/f+A0vL/lt/y/wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAs+P2/6zz/v+T4f3/p/H+/6fy/f+m8v3/pfH9/6Tx/f+j8P3/ovD9/6Hw/f+g7/z/n+/8/57u/P+b + 7Pz/hNDq/6SBb/9JOzr/TU5S/5CIhv/gx7L/aFdK/4/k9f+T6vv/nOv6/8/1/f+C0/L/luHz/wAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAteT2/670/v+T4f3/qPL+/6jz/v+n8v3/pvL9/6Xx/f+k8f3/o/H9/6Lw/f+h + 8P3/oO/9/5/v/P+b7Pz/hcvg/4RjWf8bLDX/fLLL/6ehm//WvKT/XlBI/5Hl9v+U6vv/ou38/8z0/f+D + 0/L/l+Lz/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtuT2/6/0/v+U4v3/qPL+/6nz/v+o8/7/p/L+/6fy/f+m + 8v3/pfH9/6Tx/f+j8P3/ovD9/6Hv/f+f7vz/ldDg/8Kolv+BenX/eoWI/7Gciv/Ut6D/WlBL/5Tm9/+W + 6/v/o+38/9H2/v+F1PP/l+P0/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAt+X2/7D0/v+U4v3/qfP+/6r0/v+q + 8/7/qfP+/6jz/v+n8v3/pvL9/6Xx/f+k8f3/o/H9/6Lw/f+h8P3/l9zw/824o//eybj/z7ik/7ufiP/K + sJ3/Rj4//5bo+P+X7Pv/pe78/9n4/v+G1PP/mOT1/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuOX3/7H0/v+V + 4v3/qvP+/6z0/v+r9P7/qvP+/6nz/v+o8/7/p/L+/6by/f+l8v3/pfH9/6Tx/f+j8P3/leb7/8ixnP/P + u6n/wq6c/8Gslv/Tu6n/OTU4/5fq+f+Z7Pz/sfH8/9n4/f+I1fP/meX2/wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAueb3/7L0//+V4v3/qvT+/631/v+s9P7/q/T+/6r0/v+p8/7/qfP+/6jy/v+n8v3/pvL9/6Xx/f+k + 8f3/lOn+/8y2ov/ay73/y7us/868qP/gy7r/Ozs+/5nq+v+b7fz/tfH9/9f4/f+K1fP/meb2/wAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAuub3/7P1//+W4v3/q/T+/671/v+t9f7/rPT+/6v0/v+r9P7/qvP+/6nz/v+o + 8/7/p/L9/6by/f+l8f3/kur+/9TCs//l2Mz/18rB/9fHuP/q1Mf/QEJG/5rs+v+c7vz/tfL9/9b4/f+L + 1vP/muf3/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAu+b3/7P1//+W4v3/rfX//6/1//+u9f7/rfX+/631/v+s + 9P7/q/T+/6r0/v+p8/7/qPP+/6jy/v+n8v3/ne79/8fEvv/t3tT/5NrU/+jcz//y3NL/QURK/5zs+/+e + 7vz/v/T9/+P6/v+N1vP/muj4/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvOb3/7T2//+W4v3/rvX//7D2//+v + 9v//rvX+/671/v+t9f7/rPT+/6v0/v+q9P7/qvP+/6nz/v+o8/7/p/L9/67Iyf/o2Mv/7Ofk//Pr4//6 + 5+D/Qk1V/53t/P+f7/z/zvb9/+j7/v+P1/P/m+n4/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvef3/7X2//+W + 4/3/r/X//7D2//+w9v//r/b//6/1//+u9f7/rfX+/6z0/v+s9P7/q/T+/6rz/v+p8/7/qPP+/53V4f/f + yLb/9/Pw////+f//8er/Rlli/5/u/P+h7/3/z/f9/+j7/v+Q2PP/m+r5/wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAvuf3/7X2//+X4/3/sPb//7H2//+x9v//sPb//6/2//+v9f//rvX+/631/v+t9f7/rPT+/6v0/v+q + 9P7/qvP+/5nk9f/awav/8+7p//Tz8f/86+b/TGJt/6Du/P+i8P3/z/f+/+n7/v+S2PT/nOv6/wAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+x9///sfb//7D2//+w9v//r/b//671/v+u + 9f7/rfX+/6z0/v+r9P7/q/T+/6Xw/f/StJ//Y1pZ/1NQTf/z3dj/eaW3/6Hw/f+j8f3/1fj+/+b7/v+U + 2fT/nOz6/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+y9///svf//7H2//+x + 9v//sPb//6/2//+v9f//rvX+/631/v+t9f7/rPT+/6v0/v/Pspz/npSM/4B4cv/VycX/g4+U/6Hu+/+l + 8f3/2/n+/+T7/v+W2fT/ne37/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+y + 9///svf//7L3//+x9///sfb//7D2//+w9v//r/b//671/v+t9f7/rfX+/6fv+//Gqpv/wLq0/3xzcP+l + mZP/sJWL/7/s9f/s/P///////+T7/v+X2vT/ne77/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X + 4/3/sPb//7L3//+y9///svf//7L3//+y9///sff//7H2//+w9v//sPb//6/2//+v9f//r/X+/7fz/f/1 + 5dz/0c7L/2heWP+rnJD/vaed/9ru8//d+v//0fj+/7/2/v+Z2vT/nu/8/wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAvuf3/7X2//+X4/3/sPb//7L3//+y9///svf//7L3//+y9///svf//7L3//+x9v//sfb//7D2//+v + 9v//uff//733/v+79Pz/5dzW/36CfP+hr7T/fJun/57h8v+k5vn/oeH3/57e9f+d4/f/nu/8lgAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sfb//7L3//+y9///svf//7P3//+z9///tPf//7P3//+y + 9///sff//7H1//+x8v3/sPD8/6/s+/+u6fn/oaqu/15xef9kjp3/f7jL9p7f896h5vm5n+j6hp7q+0Ge + 8P0PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7T3//+l7v7/svf//7L3//+y9///svf//7L2//+0 + 9P3/tfD8/7bu+/+26/r/tuj3/7Xj9f+w5vf7ruf47Kvo+c6o6fmlpur6caDw/S0AAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvOj4/bP2/v+18/3/t/H8/7nu+v+7 + 6/n/ven4/73n9/+46fj2s+n54LDq+sGu6/qXq+v7VZ/x/g8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtOv5wbzo+P24 + 6fjyter51rLr+qyw7Pp+re37QwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAD///////8AAP///////wAA////////AAD///////8AAP///////wAA///gAH//AAD/ + /4AAH/8AAP/4AAAP/wAA/8AAAAP/AAD8AAAAAf8AAMAAAAAB/wAAgAAAAAD/AACAAAAAAH8AAIAAAAAA + PwAAgAAAAAAPAACAAAAAAA8AAIAAAAAADwAAgAAAAAA/AACAAAAAAP8AAIAAAAAD/wAAgAAAAA//AACA + AAAAP/8AAIAAAAD//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf/ + /wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACA + AAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAA// + /wAAgAAH////AACAAf////8AAID//////wAA////////AAAoAAAAIAAAAEAAAAABACAAAAAAAIAQAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFcaW5O3u0ynNSd4Y4AAAAGwAAABYA + AAAOAAAABgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIfH4DKGssKbaJGi5Wmxzfx4zu7/eNDr/3bL5f9o + mq2HIDA2QAAAACoAAAAcAAAADAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAACKzOUwiMznfYTN6seAzuv2es3t/4+WmP+jnpz/e6Oz/3TY9f9n + zu//T83o/2fN6P+Izeb/IDA2TAAAADUAAAAlAAAAEwAAAAYAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAis3lMIrO54CI0OvKhdDs94LS8P990vL/fNX0/3vY9f962/X/tsPH/5eXl/9z + pLb/d973/3HN8f9ayt//v6mI/4TW7P9torWcAAAAQAAAADgAAAAoAAAAEgAAAAQAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAACN0epejtLszY7T7viN1fH/itbz/4bZ9f+E3Pb/guD3/4Hi+P+A4fj/fuH4/33f9/+k + q67/kpCR/4Cvwf943vf/cc3x/2HN3//ix6T/htfs/3KpvaQAAAA8AAAAOAAAADEAAAAfAAAACwAAAAEA + AAAAAAAAAAAAAAAAAAAAmNnysJrd9f+T3vb/juH4/4zk+P+J5fn/iOX5/4bk+f+F5Pn/g+P4/4Li+P+A + 4vj/f+D3/7jEyf+UlJT/b6Cx/3re9/9wzfH/Y9Ts//X8/v+H2O3/dK3BoQAAADUAAAAxAAAALQAAACQA + AAAWAAAACAAAAAIAAAAAAAAAAAAAAACd3PT/ouv7/5Do+v+O6Pr/jef6/4vm+v+K5vn/iOX5/4fk+f+F + 5Pn/hOP5/4Lj+P+B4ff/m56h/46Sk/99uc7/fN/3/3HO8f9l1Oz/9fz+/4ja7f91scWeAAAALQAAACgA + AAAkAAAAHwAAABgAAAAPAAAABwAAAAIAAAAAAAAAAKDd9f+k7Pz/iuD7/5Hp+v+P6Pr/juf6/4zn+v+L + 5vn/ieX5/4jl+f+G5Pn/heT5/4Pi+P+/y9H/lpeX/2eZq/9+4Pj/c87x/2vW7f/1/P7/itru/3i3y5oA + AAAkAAAAHwAAABsAAAAWAAAAEgAAAA0AAAAIAAAABAAAAAEAAAAAot71/6Xs/P+L4Pz/k+r7/5Lp+v+Q + 6Pr/juj6/43n+v+L5vr/iub5/4jl+f+H5Pn/heP4/5SXmf+OkJL/hL7S/4Dh+P92zvH/cdfu//b8/v+M + 2+7/fL3QlgAAABsAAAAWAAAAEgAAAA4AAAAKAAAABgAAAAMAAAABAAAAAAAAAACl3vX/p+38/4zh/P+V + 6/v/lOr7/5Lp+/+R6fr/j+j6/47n+v+M5/r/i+b5/4nl+f+I5Pn/w9HX/5SZmf9mlqj/guL4/3fP8f92 + 2e//7/v9/47c7v9/w9iRAAAAEQAAAA0AAAAKAAAABgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAKff9f+p + 7vz/jeH8/5js+/+W6/v/ler7/5Pq+/+S6fr/kOj6/47o+v+N5/r/i+b6/4rm+f+RkZP/jZCS/4XA1v+F + 4/n/edDy/2zX7v9x2e//j9zu/4HH3HwAAAAKAAAABgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAqeD1/6ru/P+P4vz/mu38/5ns+/+X6/v/lev7/5Tq+/+S6fv/ken6/4/o+v+O5/r/jOf6/8XU2v+W + mpz/aJao/47m+f991PP/fNfx/5Pe8P+Fz+ObW42bEgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAACr4fb/rO/8/5Di/P+c7vz/m+38/5ns/P+Y7Pv/luv7/5Xq+/+T6vv/kun6/5Do+v+O + 6Pr/ko+R/4uPkf+Dwdj/n+r6/4bh+P9/0/L/jNbr/0xxewYAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAK7h9v+t8P3/keP8/5/v/P+d7vz/nO38/5rt/P+Z7Pv/l+v7/5Xr+/+U + 6vv/kun7/5Hp+v/F2OD/lZmZ/2uaq/+T6Pn/kef5/3zR8v+I1uv/AAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsOL2/6/x/f+R4/z/oe/9/5/v/P+e7vz/nO78/5vt/P+Z + 7Pz/mOz7/5br+/+V6vv/kun7/6G8xv+iiYH/kcXY/4/o+v+d6vv/ftHy/4fX6/8AAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACy4/b/sfL9/5Pk/P+j8P3/ofD9/6Dv/P+f + 7/z/ne78/5zt/P+a7fz/mez7/5fr+/+Ivc//l4h//7Wajf93iJH/huH6/6zt+/+A0vL/h9js/wAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALTk9v+x8v7/lOT8/6Xx/f+k + 8f3/ovD9/6Hv/f+f7/z/nu78/5zu/P+b7fz/mez8/3BPQf9lhJb/va6i/3ptZf9zz+r/uvH8/4LT8v+H + 2ez/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAteT2/7Py/v+V + 5f3/p/L9/6by/f+k8f3/o/D9/6Hw/f+g7/z/n+/8/53u/P+c7fz/k21b/5+goP+9oIn/aWpq/33b9//I + 9P3/hNPy/4ba7f8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC3 + 5fb/tfP+/5bl/f+p8/7/p/L+/6by/f+l8f3/pPH9/6Lw/f+h7/3/n+/8/57u/P/lx7P/1bab/7aOcv9h + aXD/f935/9X3/f+H1PP/htzu/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAALnl9/+39P7/l+X9/6r0/v+p8/7/qPP+/6fy/f+m8v3/pPH9/6Pw/f+h8P3/oO/8/93Ryv/r + y7T/yquV/2Jwe/9/4Pv/5Pr+/4nV8/+G3e7/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAuub3/7f0/v+Y5v3/rPT+/6v0/v+q8/7/qfP+/6fy/v+m8v3/pfH9/6Tx/f+i + 8P3/2OHj///x4//izb3/a3yI/4Hh/f/v/P//i9bz/4Xe7/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC85vf/uPT//5nm/f+u9f7/rfX+/6z0/v+q9P7/qfP+/6jz/v+n + 8v3/pvL9/6Tx/f/G3+b////3//vv5v9pgY7/g+T+//X9//+O1/P/hd/w/wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL3n9/+59P//meb9/6/2//+u9f7/rfX+/6z0/v+r + 9P7/qvP+/6nz/v+n8v7/pvL9/7fe6f/Zu6//t6yp/36Zp/+E6P7/+v7//5DX8/+F4PD/AAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7r1//+a5v3/sPb//6/2//+v + 9f//rvX+/631/v+s9P7/qvT+/6nz/v+o8/7/pOX1/7iWhv9xY17/cX+K/4Hn/v/9////ktj0/4Xg8f8A + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC+5/f/uvX//5rm/f+x + 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 + AwAAgAcAAIAHAACABwAAgAcAAIAHAAD//wAA + + \ No newline at end of file diff --git a/src/Examples/C#/ZipTreeView/Program.cs b/old/src/Examples/C#/ZipTreeView/Program.cs similarity index 95% rename from src/Examples/C#/ZipTreeView/Program.cs rename to old/src/Examples/C#/ZipTreeView/Program.cs index ec86d57..af61e8f 100644 --- a/src/Examples/C#/ZipTreeView/Program.cs +++ b/old/src/Examples/C#/ZipTreeView/Program.cs @@ -1,21 +1,21 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Windows.Forms; - -namespace ZipTreeView -{ - static class Program - { - /// - /// The main entry point for the application. - /// - [STAThread] - static void Main() - { - Application.EnableVisualStyles(); - Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new Form1()); - } - } -} +using System; +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; + +namespace ZipTreeView +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/src/Examples/C#/ZipTreeView/Properties/AssemblyInfo.cs b/old/src/Examples/C#/ZipTreeView/Properties/AssemblyInfo.cs similarity index 96% rename from src/Examples/C#/ZipTreeView/Properties/AssemblyInfo.cs rename to old/src/Examples/C#/ZipTreeView/Properties/AssemblyInfo.cs index d5a96ff..236d4fd 100644 --- a/src/Examples/C#/ZipTreeView/Properties/AssemblyInfo.cs +++ b/old/src/Examples/C#/ZipTreeView/Properties/AssemblyInfo.cs @@ -1,12 +1,12 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -[assembly: AssemblyTitle("ZipTreeView")] -[assembly: AssemblyDescription("Example showing a zipfile in a WinForms TreeView")] -[assembly: AssemblyConfiguration("")] - -[assembly: ComVisible(false)] - -[assembly: Guid("c40b5ebc-ea71-420e-8f61-46582173dbb9")] - +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("ZipTreeView")] +[assembly: AssemblyDescription("Example showing a zipfile in a WinForms TreeView")] +[assembly: AssemblyConfiguration("")] + +[assembly: ComVisible(false)] + +[assembly: Guid("c40b5ebc-ea71-420e-8f61-46582173dbb9")] + diff --git a/src/Examples/C#/ZipTreeView/Properties/Resources.Designer.cs b/old/src/Examples/C#/ZipTreeView/Properties/Resources.Designer.cs similarity index 97% rename from src/Examples/C#/ZipTreeView/Properties/Resources.Designer.cs rename to old/src/Examples/C#/ZipTreeView/Properties/Resources.Designer.cs index 9bf0403..f134458 100644 --- a/src/Examples/C#/ZipTreeView/Properties/Resources.Designer.cs +++ b/old/src/Examples/C#/ZipTreeView/Properties/Resources.Designer.cs @@ -1,63 +1,63 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.225 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace ZipTreeView.Properties { - using System; - - - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() { - } - - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { - get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ZipTreeView.Properties.Resources", typeof(Resources).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - } -} +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.225 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace ZipTreeView.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ZipTreeView.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + } +} diff --git a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.resx b/old/src/Examples/C#/ZipTreeView/Properties/Resources.resx similarity index 97% rename from src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.resx rename to old/src/Examples/C#/ZipTreeView/Properties/Resources.resx index ffecec8..af7dbeb 100644 --- a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.resx +++ b/old/src/Examples/C#/ZipTreeView/Properties/Resources.resx @@ -1,117 +1,117 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/src/Examples/C#/ZipTreeView/Properties/Settings.Designer.cs b/old/src/Examples/C#/ZipTreeView/Properties/Settings.Designer.cs similarity index 97% rename from src/Examples/C#/ZipTreeView/Properties/Settings.Designer.cs rename to old/src/Examples/C#/ZipTreeView/Properties/Settings.Designer.cs index 06b2077..6c4cace 100644 --- a/src/Examples/C#/ZipTreeView/Properties/Settings.Designer.cs +++ b/old/src/Examples/C#/ZipTreeView/Properties/Settings.Designer.cs @@ -1,26 +1,26 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.225 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace ZipTreeView.Properties { - - - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] - internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { - - private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); - - public static Settings Default { - get { - return defaultInstance; - } - } - } -} +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.225 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace ZipTreeView.Properties { + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default { + get { + return defaultInstance; + } + } + } +} diff --git a/src/Examples/C#/ZipTreeView/Properties/Settings.settings b/old/src/Examples/C#/ZipTreeView/Properties/Settings.settings similarity index 97% rename from src/Examples/C#/ZipTreeView/Properties/Settings.settings rename to old/src/Examples/C#/ZipTreeView/Properties/Settings.settings index abf36c5..3964565 100644 --- a/src/Examples/C#/ZipTreeView/Properties/Settings.settings +++ b/old/src/Examples/C#/ZipTreeView/Properties/Settings.settings @@ -1,7 +1,7 @@ - - - - - - - + + + + + + + diff --git a/src/Examples/C#/ZipTreeView/ZipTreeView.csproj b/old/src/Examples/C#/ZipTreeView/ZipTreeView.csproj similarity index 97% rename from src/Examples/C#/ZipTreeView/ZipTreeView.csproj rename to old/src/Examples/C#/ZipTreeView/ZipTreeView.csproj index 0fb087e..2615020 100644 --- a/src/Examples/C#/ZipTreeView/ZipTreeView.csproj +++ b/old/src/Examples/C#/ZipTreeView/ZipTreeView.csproj @@ -1,117 +1,117 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF} - WinExe - Properties - ZipTreeView - ZipTreeView - v4.0 - 512 - - - - - - - - - - - 3.5 - - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - AllRules.ruleset - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - AllRules.ruleset - - - - - - - - - - - - Form - - - Form1.cs - - - - - Properties\SolutionInfo.cs - - - Form1.cs - - - ResXFileCodeGenerator - Resources.Designer.cs - Designer - - - True - Resources.resx - True - - - SettingsSingleFileGenerator - Settings.Designer.cs - - - True - Settings.settings - True - - - - - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} - Zip DLL - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {1BCEC4DE-A73D-49A6-869F-EDA4AB6B41EF} + WinExe + Properties + ZipTreeView + ZipTreeView + v4.0 + 512 + + + + + + + + + + + 3.5 + + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + AllRules.ruleset + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + AllRules.ruleset + + + + + + + + + + + + Form + + + Form1.cs + + + + + Properties\SolutionInfo.cs + + + Form1.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + True + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} + Zip DLL + + + + \ No newline at end of file diff --git a/src/Examples/C++/CreateWithProgress.cpp b/old/src/Examples/C++/CreateWithProgress.cpp similarity index 96% rename from src/Examples/C++/CreateWithProgress.cpp rename to old/src/Examples/C++/CreateWithProgress.cpp index 0ae99c4..d9b6e00 100644 --- a/src/Examples/C++/CreateWithProgress.cpp +++ b/old/src/Examples/C++/CreateWithProgress.cpp @@ -1,127 +1,127 @@ -// CreateWithProgress.cpp -// -// Example: creating a zip file, with progress events, from C++. -// -// This code is part of DotNetZip. -// -// -// Last saved: <2010-June-01 10:32:21> -// - - -using namespace System; -using namespace System::IO; -using namespace Ionic::Zip; - - -public ref class DnzHelloCppCli -{ - -private: - bool justHadByteUpdate; - -public: - DnzHelloCppCli() - { - } - -public: - void Run() - { - Console::WriteLine(L"Hello World"); - Console::WriteLine("Using DotNetZip version {0}", ZipFile::LibraryVersion); - array^ filesToAdd = System::IO::Directory::GetFiles(".", "*.cpp"); - - ZipFile ^ zip; - try - { - zip = gcnew ZipFile(); - zip->Password = "Harbinger"; - zip->Encryption = EncryptionAlgorithm::WinZipAes128; - zip->SaveProgress += gcnew EventHandler(this, &DnzHelloCppCli::SaveProgress); - zip->AddEntry("Readme.txt", "This is the content for the Readme.txt entry."); - zip->AddFiles(filesToAdd, "files"); - zip->Save("MyArchive.zip"); - } - finally - { - zip->~ZipFile(); - } - - Console::WriteLine(L"Press to quit."); - Console::ReadLine(); - return; - } - -public: - void SaveProgress(Object^ sender, SaveProgressEventArgs^ e) - { - switch (e->EventType) - { - case ZipProgressEventType::Saving_Started: - { - Console::WriteLine("Saving: {0}", e->ArchiveName); - break; - } - case ZipProgressEventType::Saving_BeforeWriteEntry: - { - if (this->justHadByteUpdate) - { - Console::WriteLine(); - } - Console::WriteLine(" Writing: {0} ({1}/{2})", - e->CurrentEntry->FileName, - (e->EntriesSaved + 1), - e->EntriesTotal); - this->justHadByteUpdate = false; - break; - } - case ZipProgressEventType::Saving_AfterWriteEntry: - { - if (e->CurrentEntry->InputStreamWasJitProvided) - { - e->CurrentEntry->InputStream->Close(); - e->CurrentEntry->InputStream = nullptr; - } - break; - } - case ZipProgressEventType::Saving_Completed: - { - this->justHadByteUpdate = false; - Console::WriteLine(); - Console::WriteLine("Done: {0}", e->ArchiveName); - break; - } - case ZipProgressEventType::Saving_EntryBytesRead: - { - if (this->justHadByteUpdate) - { - Console::SetCursorPosition(0, Console::CursorTop); - } - Console::Write(" {0}/{1} ({2:N0}%)", - e->BytesTransferred, - e->TotalBytesToTransfer, - (((double) e->BytesTransferred) / (0.01 * e->TotalBytesToTransfer))); - this->justHadByteUpdate = true; - break; - } - } - } - -}; - - -int main(array ^args) -{ - try - { - DnzHelloCppCli^ me = gcnew DnzHelloCppCli(); - me->Run(); - } - catch (Exception^ ex1) - { - Console::Error->WriteLine(String::Concat("exception: ", ex1)); - } - return 0; -} - +// CreateWithProgress.cpp +// +// Example: creating a zip file, with progress events, from C++. +// +// This code is part of DotNetZip. +// +// +// Last saved: <2010-June-01 10:32:21> +// + + +using namespace System; +using namespace System::IO; +using namespace Ionic::Zip; + + +public ref class DnzHelloCppCli +{ + +private: + bool justHadByteUpdate; + +public: + DnzHelloCppCli() + { + } + +public: + void Run() + { + Console::WriteLine(L"Hello World"); + Console::WriteLine("Using DotNetZip version {0}", ZipFile::LibraryVersion); + array^ filesToAdd = System::IO::Directory::GetFiles(".", "*.cpp"); + + ZipFile ^ zip; + try + { + zip = gcnew ZipFile(); + zip->Password = "Harbinger"; + zip->Encryption = EncryptionAlgorithm::WinZipAes128; + zip->SaveProgress += gcnew EventHandler(this, &DnzHelloCppCli::SaveProgress); + zip->AddEntry("Readme.txt", "This is the content for the Readme.txt entry."); + zip->AddFiles(filesToAdd, "files"); + zip->Save("MyArchive.zip"); + } + finally + { + zip->~ZipFile(); + } + + Console::WriteLine(L"Press to quit."); + Console::ReadLine(); + return; + } + +public: + void SaveProgress(Object^ sender, SaveProgressEventArgs^ e) + { + switch (e->EventType) + { + case ZipProgressEventType::Saving_Started: + { + Console::WriteLine("Saving: {0}", e->ArchiveName); + break; + } + case ZipProgressEventType::Saving_BeforeWriteEntry: + { + if (this->justHadByteUpdate) + { + Console::WriteLine(); + } + Console::WriteLine(" Writing: {0} ({1}/{2})", + e->CurrentEntry->FileName, + (e->EntriesSaved + 1), + e->EntriesTotal); + this->justHadByteUpdate = false; + break; + } + case ZipProgressEventType::Saving_AfterWriteEntry: + { + if (e->CurrentEntry->InputStreamWasJitProvided) + { + e->CurrentEntry->InputStream->Close(); + e->CurrentEntry->InputStream = nullptr; + } + break; + } + case ZipProgressEventType::Saving_Completed: + { + this->justHadByteUpdate = false; + Console::WriteLine(); + Console::WriteLine("Done: {0}", e->ArchiveName); + break; + } + case ZipProgressEventType::Saving_EntryBytesRead: + { + if (this->justHadByteUpdate) + { + Console::SetCursorPosition(0, Console::CursorTop); + } + Console::Write(" {0}/{1} ({2:N0}%)", + e->BytesTransferred, + e->TotalBytesToTransfer, + (((double) e->BytesTransferred) / (0.01 * e->TotalBytesToTransfer))); + this->justHadByteUpdate = true; + break; + } + } + } + +}; + + +int main(array ^args) +{ + try + { + DnzHelloCppCli^ me = gcnew DnzHelloCppCli(); + me->Run(); + } + catch (Exception^ ex1) + { + Console::Error->WriteLine(String::Concat("exception: ", ex1)); + } + return 0; +} + diff --git a/src/Examples/C++/CreateZipfile.cpp b/old/src/Examples/C++/CreateZipfile.cpp similarity index 95% rename from src/Examples/C++/CreateZipfile.cpp rename to old/src/Examples/C++/CreateZipfile.cpp index 02b58bc..c9c21ac 100644 --- a/src/Examples/C++/CreateZipfile.cpp +++ b/old/src/Examples/C++/CreateZipfile.cpp @@ -1,38 +1,38 @@ -// CreateZipFile.cpp -// -// Example: creating a zip file from C++. -// -// This code is part of DotNetZip. -// -// -// Last saved: <2010-June-01 10:32:15> -// - - -using namespace System; -using namespace Ionic::Zip; - -int main(array ^args) -{ - Console::WriteLine(L"Hello World"); - Console::WriteLine(L"Creating a zip file from C++/CLI using DotNetZip..."); - - ZipFile ^ zip; - try - { - zip = gcnew ZipFile(); - zip->AddEntry("Readme.txt", "This is the content for the Readme.txt entry."); - zip->AddFile("CreateZipFile.cpp"); - zip->Save("test.zip"); - } - finally - { - //zip->~ZipFile(); - delete zip; - } - - Console::WriteLine(L"Press to quit."); - Console::ReadLine(); - return 0; -} - +// CreateZipFile.cpp +// +// Example: creating a zip file from C++. +// +// This code is part of DotNetZip. +// +// +// Last saved: <2010-June-01 10:32:15> +// + + +using namespace System; +using namespace Ionic::Zip; + +int main(array ^args) +{ + Console::WriteLine(L"Hello World"); + Console::WriteLine(L"Creating a zip file from C++/CLI using DotNetZip..."); + + ZipFile ^ zip; + try + { + zip = gcnew ZipFile(); + zip->AddEntry("Readme.txt", "This is the content for the Readme.txt entry."); + zip->AddFile("CreateZipFile.cpp"); + zip->Save("test.zip"); + } + finally + { + //zip->~ZipFile(); + delete zip; + } + + Console::WriteLine(L"Press to quit."); + Console::ReadLine(); + return 0; +} + diff --git a/src/Examples/C++/build.cmd b/old/src/Examples/C++/build.cmd similarity index 97% rename from src/Examples/C++/build.cmd rename to old/src/Examples/C++/build.cmd index 6e7a839..101a7eb 100644 --- a/src/Examples/C++/build.cmd +++ b/old/src/Examples/C++/build.cmd @@ -1,35 +1,35 @@ -setlocal - -if not exist Ionic.Zip.dll ( - fsutil hardlink create "Ionic.Zip.dll" "c:\dinoch\dev\dotnet\zip\DotNetZip\Zip Full DLL\bin\Debug\Ionic.Zip.dll" -) - -set CLCMD=\vc9\bin\cl.exe -set LINKCMD=\vc9\bin\link.exe -set MTCMD=c:\netsdk2.0\Bin\mt.exe - -for %%F in (CreateWithProgress CreateZipFile) do call :COMPILE_ONE_APP %%F - -goto ALL_DONE - - - --------------------------------------------- -:COMPILE_ONE_APP - @REM Arg: basename - set fileToBuild=%1 - %CLCMD% /Od /D "WIN32" /D "_DEBUG" /D "_UNICODE" /D "UNICODE" /FD /EHa /MDd /Fo".\\" -I\vc9\include -I\winsdk\include /W3 /c /Zi /clr /TP /FU "c:\Windows\Microsoft.NET\Framework\v2.0.50727\System.dll" /FU Ionic.Zip.dll %fileToBuild%.cpp - - %LINKCMD% /OUT:%fileToBuild%.exe /MANIFEST /MANIFESTFILE:"%fileToBuild%.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /ASSEMBLYDEBUG /PDB:%fileToBuild%.pdb /DYNAMICBASE /FIXED:No /NXCOMPAT /MACHINE:X86 /LIBPATH:\vc9\lib /LIBPATH:\winsdk\lib %fileToBuild%.obj - - %MTCMD% /outputresource:"%fileToBuild%.exe;#1" /manifest %fileToBuild%.exe.intermediate.manifest - del %fileToBuild%.exe.intermediate.manifest - @GOTO:EOF - - - --------------------------------------------- -:ALL_DONE - - +setlocal + +if not exist Ionic.Zip.dll ( + fsutil hardlink create "Ionic.Zip.dll" "c:\dinoch\dev\dotnet\zip\DotNetZip\Zip Full DLL\bin\Debug\Ionic.Zip.dll" +) + +set CLCMD=\vc9\bin\cl.exe +set LINKCMD=\vc9\bin\link.exe +set MTCMD=c:\netsdk2.0\Bin\mt.exe + +for %%F in (CreateWithProgress CreateZipFile) do call :COMPILE_ONE_APP %%F + +goto ALL_DONE + + + +-------------------------------------------- +:COMPILE_ONE_APP + @REM Arg: basename + set fileToBuild=%1 + %CLCMD% /Od /D "WIN32" /D "_DEBUG" /D "_UNICODE" /D "UNICODE" /FD /EHa /MDd /Fo".\\" -I\vc9\include -I\winsdk\include /W3 /c /Zi /clr /TP /FU "c:\Windows\Microsoft.NET\Framework\v2.0.50727\System.dll" /FU Ionic.Zip.dll %fileToBuild%.cpp + + %LINKCMD% /OUT:%fileToBuild%.exe /MANIFEST /MANIFESTFILE:"%fileToBuild%.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /ASSEMBLYDEBUG /PDB:%fileToBuild%.pdb /DYNAMICBASE /FIXED:No /NXCOMPAT /MACHINE:X86 /LIBPATH:\vc9\lib /LIBPATH:\winsdk\lib %fileToBuild%.obj + + %MTCMD% /outputresource:"%fileToBuild%.exe;#1" /manifest %fileToBuild%.exe.intermediate.manifest + del %fileToBuild%.exe.intermediate.manifest + @GOTO:EOF + + + +-------------------------------------------- +:ALL_DONE + + endlocal \ No newline at end of file diff --git a/src/Examples/C++/clean.cmd b/old/src/Examples/C++/clean.cmd similarity index 93% rename from src/Examples/C++/clean.cmd rename to old/src/Examples/C++/clean.cmd index 84d0e73..1011b67 100644 --- a/src/Examples/C++/clean.cmd +++ b/old/src/Examples/C++/clean.cmd @@ -1,13 +1,13 @@ -del *.obj -del Ionic.Zip.dll -del *.cpp~ -del Create*.exe -del Create*.exp -del Create*.ilk -del *.pdb -del *.exe.intermediate.manifest -del *.idb -del MyArchive.zip -del test.zip -del *.cmd~ - +del *.obj +del Ionic.Zip.dll +del *.cpp~ +del Create*.exe +del Create*.exp +del Create*.ilk +del *.pdb +del *.exe.intermediate.manifest +del *.idb +del MyArchive.zip +del test.zip +del *.cmd~ + diff --git a/src/Examples/PHP/CreateZip-DotNetZip.php b/old/src/Examples/PHP/CreateZip-DotNetZip.php similarity index 95% rename from src/Examples/PHP/CreateZip-DotNetZip.php rename to old/src/Examples/PHP/CreateZip-DotNetZip.php index c46624b..0c37236 100644 --- a/src/Examples/PHP/CreateZip-DotNetZip.php +++ b/old/src/Examples/PHP/CreateZip-DotNetZip.php @@ -1,43 +1,43 @@ -'; -echo ' '; -echo ' Calling .NET from PHP through COM'; -echo ' '; -echo ' '; -echo ''; - - echo '

Hello!

' . "
\n"; - echo '

Trying static method

' . "
\n"; - $fname = "archive-" . date('Y-m-d-His') . ".zip"; - echo 'Dynamically generated archive name: ' . "\n" . '

' . $fname . "

\n"; - - $zipOutput = "c:\\temp\\php-" . $fname; - $zipfact = new COM("Ionic.Zip.ZipFile"); - $zip = $zipfact->Read($zipOutput); - $zip->Encryption = 3; - $zip->Password = "AES-Encryption-Is-Secure"; - - $dirToZip= "c:\\temp\\psh"; - $zip->AddDirectory($dirToZip); - $zip->Save(); - - echo '
The file was saved to ' . $zip->Name . '
' . "\n"; - - $zip->Dispose(); - - echo ''; - echo ''; - -} -catch (Exception $e) { - echo 'Caught exception: ', $e->getMessage(), "\n"; - echo '
';
-  echo $e->getTraceAsString(), "\n";
-  echo '
'; -} - - -?> +'; +echo ' '; +echo ' Calling .NET from PHP through COM'; +echo ' '; +echo ' '; +echo ''; + + echo '

Hello!

' . "
\n"; + echo '

Trying static method

' . "
\n"; + $fname = "archive-" . date('Y-m-d-His') . ".zip"; + echo 'Dynamically generated archive name: ' . "\n" . '

' . $fname . "

\n"; + + $zipOutput = "c:\\temp\\php-" . $fname; + $zipfact = new COM("Ionic.Zip.ZipFile"); + $zip = $zipfact->Read($zipOutput); + $zip->Encryption = 3; + $zip->Password = "AES-Encryption-Is-Secure"; + + $dirToZip= "c:\\temp\\psh"; + $zip->AddDirectory($dirToZip); + $zip->Save(); + + echo '
The file was saved to ' . $zip->Name . '
' . "\n"; + + $zip->Dispose(); + + echo ''; + echo ''; + +} +catch (Exception $e) { + echo 'Caught exception: ', $e->getMessage(), "\n"; + echo '
';
+  echo $e->getTraceAsString(), "\n";
+  echo '
'; +} + + +?> diff --git a/src/Examples/SolutionInfo.cs b/old/src/Examples/SolutionInfo.cs similarity index 100% rename from src/Examples/SolutionInfo.cs rename to old/src/Examples/SolutionInfo.cs diff --git a/src/Examples/VB/Quick-Unzip/AssemblyInfo.vb b/old/src/Examples/VB/Quick-Unzip/AssemblyInfo.vb similarity index 100% rename from src/Examples/VB/Quick-Unzip/AssemblyInfo.vb rename to old/src/Examples/VB/Quick-Unzip/AssemblyInfo.vb diff --git a/src/Examples/VB/Quick-Unzip/QuickUnzip.vbproj b/old/src/Examples/VB/Quick-Unzip/QuickUnzip.vbproj similarity index 97% rename from src/Examples/VB/Quick-Unzip/QuickUnzip.vbproj rename to old/src/Examples/VB/Quick-Unzip/QuickUnzip.vbproj index 52b005a..f7f229f 100644 --- a/src/Examples/VB/Quick-Unzip/QuickUnzip.vbproj +++ b/old/src/Examples/VB/Quick-Unzip/QuickUnzip.vbproj @@ -1,103 +1,103 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {95D9690B-3B37-4800-A511-6FB21436638B} - WinExe - QuickUnzip.Ionic.Zip.Examples.VB.QuickUnzip - QuickUnzip - QuickUnzip - 512 - WindowsForms - v4.0 - On - Binary - Off - On - - - - - - - - - - - 3.5 - - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - true - full - true - true - bin\Debug\ - QuicknUnzip.xml - 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355 - AllRules.ruleset - - - pdbonly - false - true - true - bin\Release\ - QuickUnzip.xml - 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355 - AllRules.ruleset - - - - - - - - - - - - - - - - - - - - - - - - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} - Zip DLL - - - - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {95D9690B-3B37-4800-A511-6FB21436638B} + WinExe + QuickUnzip.Ionic.Zip.Examples.VB.QuickUnzip + QuickUnzip + QuickUnzip + 512 + WindowsForms + v4.0 + On + Binary + Off + On + + + + + + + + + + + 3.5 + + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + + + true + full + true + true + bin\Debug\ + QuicknUnzip.xml + 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355 + AllRules.ruleset + + + pdbonly + false + true + true + bin\Release\ + QuickUnzip.xml + 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355 + AllRules.ruleset + + + + + + + + + + + + + + + + + + + + + + + + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} + Zip DLL + + + + + + + \ No newline at end of file diff --git a/src/Examples/VB/Quick-Unzip/Qunzip.vb b/old/src/Examples/VB/Quick-Unzip/Qunzip.vb similarity index 97% rename from src/Examples/VB/Quick-Unzip/Qunzip.vb rename to old/src/Examples/VB/Quick-Unzip/Qunzip.vb index 6337c8c..a72bf73 100644 --- a/src/Examples/VB/Quick-Unzip/Qunzip.vb +++ b/old/src/Examples/VB/Quick-Unzip/Qunzip.vb @@ -1,189 +1,189 @@ -'' qunzip.vb -'' ------------------------------------------------------------------ -'' -'' A simple app that unzips a file, showing a progress bar. -'' It is both a console app, and a winforms app. -'' -'' It correctly does the multi-threading to allow smooth UI update. -'' -'' compile it with: -'' c:\.net3.5\vbc.exe /t:exe /debug:full /optimize- /R:System.dll /R:System.Data.dll /R:Ionic.Zip.dll -'' /out:Qunzip.exe Qunzip.vb -'' -'' built on host: DINOCH-2 -'' Created Thu Aug 06 15:34:17 2009 -'' -'' last saved: -'' Time-stamp: <2009-October-26 23:03:36> -'' ------------------------------------------------------------------ -'' -'' Copyright (c) 2009 by Dino Chiesa -'' All rights reserved! -'' -'' Licensed under the Microsoft Public License. -'' see http://www.opensource.org/licenses/ms-pl.html -'' -'' ------------------------------------------------------------------ - -Imports System -Imports System.Reflection -Imports System.Windows.Forms -Imports Ionic.Zip - - -Namespace Ionic.Zip.Examples.VB - - Friend Class QuickUnzip - _ - Private Shared Function AllocConsole() As Boolean - End Function - - _ - Private Shared Function AttachConsole(ByVal pid As Integer) As Boolean - End Function - - _ - Public Shared Sub Main(ByVal args As String()) - If (args.Length <> 2) Then - '' open a new window so we can write to it. - QuickUnzip.AllocConsole - QuickUnzip.Usage(args) - Return - Else - Application.EnableVisualStyles - Application.SetCompatibleTextRenderingDefault(False) - Dim f As New QuickUnzipForm(args(0), args(1)) - Application.Run(f) - End If - Return - End Sub - - Private Shared Function Usage(ByVal args As String()) as Integer - Console.WriteLine("QuickUnzip. Usage: QuickUnzip ") - Console.WriteLine(System. Environment.NewLine & " to continue...") - Console.ReadLine - Return 1 - End Function - - End Class - - - - Public Class QuickUnzipForm - Inherits Form - - Public Sub New() - Me.components = Nothing - Me.InitializeComponent - End Sub - - Public Sub New(ByVal zipfile As String, ByVal directory As String) - Me.New() - Me.zipfileName = zipfile - Me.extractDirectory = directory - End Sub - - Protected Overrides Sub Dispose(ByVal disposing As Boolean) - If (disposing AndAlso (Not Me.components Is Nothing)) Then - Me.components.Dispose - End If - MyBase.Dispose(disposing) - End Sub - - Private Sub FixTitle() - Me.Text = String.Format("Quick Unzip {0}", Me.zipfileName) - End Sub - - Private Sub InitializeComponent() - Me.components = New System.ComponentModel.Container - Me.label1 = New Label - Me.progressBar1 = New ProgressBar - MyBase.SuspendLayout - Me.label1.AutoSize = True - Me.label1.Location = New System.Drawing.Point(12, 12) - Me.label1.Name = "label1" - Me.label1.Size = New System.Drawing.Size(50, 13) - Me.label1.TabIndex = 2 - Me.label1.Text = "Progress" - Me.progressBar1.Anchor = (AnchorStyles.Right Or (AnchorStyles.Left Or AnchorStyles.Top)) - Me.progressBar1.Location = New System.Drawing.Point(12, 36) - Me.progressBar1.Name = "progressBar1" - Me.progressBar1.Size = New System.Drawing.Size(436, 18) - Me.progressBar1.Step = 1 - Me.progressBar1.TabIndex = 7 - MyBase.AutoScaleDimensions = New System.Drawing.SizeF(6!, 13!) - MyBase.AutoScaleMode = AutoScaleMode.Font - MyBase.ClientSize = New System.Drawing.Size(460, 80) - MyBase.Controls.Add(Me.label1) - MyBase.Controls.Add(Me.progressBar1) - MyBase.Name = "QuickUnzipForm" - Me.Text = "QuickUnzip" - AddHandler MyBase.Load, New EventHandler(AddressOf Me.QuickUnzipForm_Load) - AddHandler MyBase.Shown, New EventHandler(AddressOf Me.QuickUnzipForm_Shown) - MyBase.ResumeLayout(False) - MyBase.PerformLayout - End Sub - - Public Sub OnTimerEvent(ByVal source As Object, ByVal e As EventArgs) - MyBase.Close - End Sub - - Private Sub QuickUnzipForm_Load(ByVal sender As Object, ByVal e As EventArgs) - Me.FixTitle - End Sub - - Private Sub QuickUnzipForm_Shown(ByVal sender As Object, ByVal e As EventArgs) - '' For info on running long-running tasks in response to button clicks, - '' in VB.NET WinForms, see - '' http://msdn.microsoft.com/en-us/library/ms951089.aspx - Dim args(2) As String - args(0) = Me.zipfileName - args(1) = Me.extractDirectory - Dim worker As System.Threading.Thread - worker = New System.Threading.Thread(New System.Threading.ParameterizedThreadStart(AddressOf UnzipFile)) - worker.Start(args) - End Sub - - Private Sub UnzipFile(ByVal args As String()) - Try - Using zip As ZipFile = ZipFile.Read(args(0)) - Me.progressBar1.Maximum = zip.Entries.Count - Dim entry As ZipEntry - For Each entry In zip - UpdateUi(entry.FileName) - entry.Extract(args(1), ExtractExistingFileAction.OverwriteSilently) - '' Sleep a little because it's really fast - System.Threading.Thread.Sleep(20) - Next - UpdateUi(String.Format("Finished unzipping {0} entries", zip.Entries.Count)) - End Using - Catch ex1 As Exception - Me.label1.Text = ("Exception: " & ex1.ToString) - End Try - '' close the form 1000 ms after the unzip completes. - Dim timer1 As New System.Timers.Timer(1000) - timer1.Enabled = True - timer1.AutoReset = False - AddHandler timer1.Elapsed, New System.Timers.ElapsedEventHandler(AddressOf Me.OnTimerEvent) - End Sub - - Private Sub UpdateUi(ByVal filename As String) - If Me.InvokeRequired Then - '' invoke on the proper thread - Me.Invoke(New Action(Of String)(AddressOf UpdateUi), New Object() { filename }) - Else - Me.label1.Text = filename - Me.progressBar1.PerformStep - MyBase.Update - End If - End Sub - - ' Fields - Private extractDirectory As String - Private zipfileName As String - Private components As System.ComponentModel.IContainer - Private label1 As Label - Private progressBar1 As ProgressBar - End Class - -End Namespace +'' qunzip.vb +'' ------------------------------------------------------------------ +'' +'' A simple app that unzips a file, showing a progress bar. +'' It is both a console app, and a winforms app. +'' +'' It correctly does the multi-threading to allow smooth UI update. +'' +'' compile it with: +'' c:\.net3.5\vbc.exe /t:exe /debug:full /optimize- /R:System.dll /R:System.Data.dll /R:Ionic.Zip.dll +'' /out:Qunzip.exe Qunzip.vb +'' +'' built on host: DINOCH-2 +'' Created Thu Aug 06 15:34:17 2009 +'' +'' last saved: +'' Time-stamp: <2009-October-26 23:03:36> +'' ------------------------------------------------------------------ +'' +'' Copyright (c) 2009 by Dino Chiesa +'' All rights reserved! +'' +'' Licensed under the Microsoft Public License. +'' see http://www.opensource.org/licenses/ms-pl.html +'' +'' ------------------------------------------------------------------ + +Imports System +Imports System.Reflection +Imports System.Windows.Forms +Imports Ionic.Zip + + +Namespace Ionic.Zip.Examples.VB + + Friend Class QuickUnzip + _ + Private Shared Function AllocConsole() As Boolean + End Function + + _ + Private Shared Function AttachConsole(ByVal pid As Integer) As Boolean + End Function + + _ + Public Shared Sub Main(ByVal args As String()) + If (args.Length <> 2) Then + '' open a new window so we can write to it. + QuickUnzip.AllocConsole + QuickUnzip.Usage(args) + Return + Else + Application.EnableVisualStyles + Application.SetCompatibleTextRenderingDefault(False) + Dim f As New QuickUnzipForm(args(0), args(1)) + Application.Run(f) + End If + Return + End Sub + + Private Shared Function Usage(ByVal args As String()) as Integer + Console.WriteLine("QuickUnzip. Usage: QuickUnzip ") + Console.WriteLine(System. Environment.NewLine & " to continue...") + Console.ReadLine + Return 1 + End Function + + End Class + + + + Public Class QuickUnzipForm + Inherits Form + + Public Sub New() + Me.components = Nothing + Me.InitializeComponent + End Sub + + Public Sub New(ByVal zipfile As String, ByVal directory As String) + Me.New() + Me.zipfileName = zipfile + Me.extractDirectory = directory + End Sub + + Protected Overrides Sub Dispose(ByVal disposing As Boolean) + If (disposing AndAlso (Not Me.components Is Nothing)) Then + Me.components.Dispose + End If + MyBase.Dispose(disposing) + End Sub + + Private Sub FixTitle() + Me.Text = String.Format("Quick Unzip {0}", Me.zipfileName) + End Sub + + Private Sub InitializeComponent() + Me.components = New System.ComponentModel.Container + Me.label1 = New Label + Me.progressBar1 = New ProgressBar + MyBase.SuspendLayout + Me.label1.AutoSize = True + Me.label1.Location = New System.Drawing.Point(12, 12) + Me.label1.Name = "label1" + Me.label1.Size = New System.Drawing.Size(50, 13) + Me.label1.TabIndex = 2 + Me.label1.Text = "Progress" + Me.progressBar1.Anchor = (AnchorStyles.Right Or (AnchorStyles.Left Or AnchorStyles.Top)) + Me.progressBar1.Location = New System.Drawing.Point(12, 36) + Me.progressBar1.Name = "progressBar1" + Me.progressBar1.Size = New System.Drawing.Size(436, 18) + Me.progressBar1.Step = 1 + Me.progressBar1.TabIndex = 7 + MyBase.AutoScaleDimensions = New System.Drawing.SizeF(6!, 13!) + MyBase.AutoScaleMode = AutoScaleMode.Font + MyBase.ClientSize = New System.Drawing.Size(460, 80) + MyBase.Controls.Add(Me.label1) + MyBase.Controls.Add(Me.progressBar1) + MyBase.Name = "QuickUnzipForm" + Me.Text = "QuickUnzip" + AddHandler MyBase.Load, New EventHandler(AddressOf Me.QuickUnzipForm_Load) + AddHandler MyBase.Shown, New EventHandler(AddressOf Me.QuickUnzipForm_Shown) + MyBase.ResumeLayout(False) + MyBase.PerformLayout + End Sub + + Public Sub OnTimerEvent(ByVal source As Object, ByVal e As EventArgs) + MyBase.Close + End Sub + + Private Sub QuickUnzipForm_Load(ByVal sender As Object, ByVal e As EventArgs) + Me.FixTitle + End Sub + + Private Sub QuickUnzipForm_Shown(ByVal sender As Object, ByVal e As EventArgs) + '' For info on running long-running tasks in response to button clicks, + '' in VB.NET WinForms, see + '' http://msdn.microsoft.com/en-us/library/ms951089.aspx + Dim args(2) As String + args(0) = Me.zipfileName + args(1) = Me.extractDirectory + Dim worker As System.Threading.Thread + worker = New System.Threading.Thread(New System.Threading.ParameterizedThreadStart(AddressOf UnzipFile)) + worker.Start(args) + End Sub + + Private Sub UnzipFile(ByVal args As String()) + Try + Using zip As ZipFile = ZipFile.Read(args(0)) + Me.progressBar1.Maximum = zip.Entries.Count + Dim entry As ZipEntry + For Each entry In zip + UpdateUi(entry.FileName) + entry.Extract(args(1), ExtractExistingFileAction.OverwriteSilently) + '' Sleep a little because it's really fast + System.Threading.Thread.Sleep(20) + Next + UpdateUi(String.Format("Finished unzipping {0} entries", zip.Entries.Count)) + End Using + Catch ex1 As Exception + Me.label1.Text = ("Exception: " & ex1.ToString) + End Try + '' close the form 1000 ms after the unzip completes. + Dim timer1 As New System.Timers.Timer(1000) + timer1.Enabled = True + timer1.AutoReset = False + AddHandler timer1.Elapsed, New System.Timers.ElapsedEventHandler(AddressOf Me.OnTimerEvent) + End Sub + + Private Sub UpdateUi(ByVal filename As String) + If Me.InvokeRequired Then + '' invoke on the proper thread + Me.Invoke(New Action(Of String)(AddressOf UpdateUi), New Object() { filename }) + Else + Me.label1.Text = filename + Me.progressBar1.PerformStep + MyBase.Update + End If + End Sub + + ' Fields + Private extractDirectory As String + Private zipfileName As String + Private components As System.ComponentModel.IContainer + Private label1 As Label + Private progressBar1 As ProgressBar + End Class + +End Namespace diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-DotNetZip-VB.sln b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-DotNetZip-VB.sln similarity index 98% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-DotNetZip-VB.sln rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-DotNetZip-VB.sln index 0e5b262..3a530a7 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-DotNetZip-VB.sln +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-DotNetZip-VB.sln @@ -1,26 +1,26 @@ - -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WinForms-ZipUp", "WinForms-ZipUp\WinForms-ZipUp.vbproj", "{58EB3655-40F3-44FC-804E-47A8103DBF99}" -EndProject -Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WinForms-Unzip", "WinForms-Unzip\WinForms-Unzip.vbproj", "{9E4C484D-656E-4E19-8741-5701D027AA51}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {58EB3655-40F3-44FC-804E-47A8103DBF99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {58EB3655-40F3-44FC-804E-47A8103DBF99}.Debug|Any CPU.Build.0 = Debug|Any CPU - {58EB3655-40F3-44FC-804E-47A8103DBF99}.Release|Any CPU.ActiveCfg = Release|Any CPU - {58EB3655-40F3-44FC-804E-47A8103DBF99}.Release|Any CPU.Build.0 = Release|Any CPU - {9E4C484D-656E-4E19-8741-5701D027AA51}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9E4C484D-656E-4E19-8741-5701D027AA51}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9E4C484D-656E-4E19-8741-5701D027AA51}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9E4C484D-656E-4E19-8741-5701D027AA51}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WinForms-ZipUp", "WinForms-ZipUp\WinForms-ZipUp.vbproj", "{58EB3655-40F3-44FC-804E-47A8103DBF99}" +EndProject +Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WinForms-Unzip", "WinForms-Unzip\WinForms-Unzip.vbproj", "{9E4C484D-656E-4E19-8741-5701D027AA51}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {58EB3655-40F3-44FC-804E-47A8103DBF99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {58EB3655-40F3-44FC-804E-47A8103DBF99}.Debug|Any CPU.Build.0 = Debug|Any CPU + {58EB3655-40F3-44FC-804E-47A8103DBF99}.Release|Any CPU.ActiveCfg = Release|Any CPU + {58EB3655-40F3-44FC-804E-47A8103DBF99}.Release|Any CPU.Build.0 = Release|Any CPU + {9E4C484D-656E-4E19-8741-5701D027AA51}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9E4C484D-656E-4E19-8741-5701D027AA51}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9E4C484D-656E-4E19-8741-5701D027AA51}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9E4C484D-656E-4E19-8741-5701D027AA51}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.Designer.vb b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.Designer.vb similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.Designer.vb rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.Designer.vb index c8c13cf..8fc568a 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.Designer.vb +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.Designer.vb @@ -1,38 +1,38 @@ -'------------------------------------------------------------------------------ -' -' This code was generated by a tool. -' Runtime Version:2.0.50727.3074 -' -' Changes to this file may cause incorrect behavior and will be lost if -' the code is regenerated. -' -'------------------------------------------------------------------------------ - -Option Strict On -Option Explicit On - - -Namespace My - - 'NOTE: This file is auto-generated; do not modify it directly. To make changes, - ' or if you encounter build errors in this file, go to the Project Designer - ' (go to Project Properties or double-click the My Project node in - ' Solution Explorer), and make changes on the Application tab. - ' - Partial Friend Class MyApplication - - _ - Public Sub New() - MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows) - Me.IsSingleInstance = false - Me.EnableVisualStyles = true - Me.SaveMySettingsOnExit = true - Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses - End Sub - - _ - Protected Overrides Sub OnCreateMainForm() - Me.MainForm = Global.WinForms_Unzip.Form1 - End Sub - End Class -End Namespace +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:2.0.50727.3074 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + + +Namespace My + + 'NOTE: This file is auto-generated; do not modify it directly. To make changes, + ' or if you encounter build errors in this file, go to the Project Designer + ' (go to Project Properties or double-click the My Project node in + ' Solution Explorer), and make changes on the Application tab. + ' + Partial Friend Class MyApplication + + _ + Public Sub New() + MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows) + Me.IsSingleInstance = false + Me.EnableVisualStyles = true + Me.SaveMySettingsOnExit = true + Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses + End Sub + + _ + Protected Overrides Sub OnCreateMainForm() + Me.MainForm = Global.WinForms_Unzip.Form1 + End Sub + End Class +End Namespace diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.myapp b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.myapp similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.myapp rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.myapp index 7b0c597..1243847 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.myapp +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Application.myapp @@ -1,11 +1,11 @@ - - - true - Form1 - false - 0 - true - 0 - 0 - true - + + + true + Form1 + false + 0 + true + 0 + 0 + true + diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/AssemblyInfo.vb b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/AssemblyInfo.vb similarity index 100% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/AssemblyInfo.vb rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/AssemblyInfo.vb diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.Designer.vb b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.Designer.vb similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.Designer.vb rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.Designer.vb index 8c94503..f16479e 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.Designer.vb +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.Designer.vb @@ -1,62 +1,62 @@ -'------------------------------------------------------------------------------ -' -' This code was generated by a tool. -' Runtime Version:2.0.50727.3074 -' -' Changes to this file may cause incorrect behavior and will be lost if -' the code is regenerated. -' -'------------------------------------------------------------------------------ - -Option Strict On -Option Explicit On - - -Namespace My.Resources - - 'This class was auto-generated by the StronglyTypedResourceBuilder - 'class via a tool like ResGen or Visual Studio. - 'To add or remove a member, edit your .ResX file then rerun ResGen - 'with the /str option, or rebuild your VS project. - ' - ' A strongly-typed resource class, for looking up localized strings, etc. - ' - _ - Friend Module Resources - - Private resourceMan As Global.System.Resources.ResourceManager - - Private resourceCulture As Global.System.Globalization.CultureInfo - - ' - ' Returns the cached ResourceManager instance used by this class. - ' - _ - Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager - Get - If Object.ReferenceEquals(resourceMan, Nothing) Then - Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("WinForms_Unzip.Resources", GetType(Resources).Assembly) - resourceMan = temp - End If - Return resourceMan - End Get - End Property - - ' - ' Overrides the current thread's CurrentUICulture property for all - ' resource lookups using this strongly typed resource class. - ' - _ - Friend Property Culture() As Global.System.Globalization.CultureInfo - Get - Return resourceCulture - End Get - Set(ByVal value As Global.System.Globalization.CultureInfo) - resourceCulture = value - End Set - End Property - End Module -End Namespace +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:2.0.50727.3074 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + + +Namespace My.Resources + + 'This class was auto-generated by the StronglyTypedResourceBuilder + 'class via a tool like ResGen or Visual Studio. + 'To add or remove a member, edit your .ResX file then rerun ResGen + 'with the /str option, or rebuild your VS project. + ' + ' A strongly-typed resource class, for looking up localized strings, etc. + ' + _ + Friend Module Resources + + Private resourceMan As Global.System.Resources.ResourceManager + + Private resourceCulture As Global.System.Globalization.CultureInfo + + ' + ' Returns the cached ResourceManager instance used by this class. + ' + _ + Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager + Get + If Object.ReferenceEquals(resourceMan, Nothing) Then + Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("WinForms_Unzip.Resources", GetType(Resources).Assembly) + resourceMan = temp + End If + Return resourceMan + End Get + End Property + + ' + ' Overrides the current thread's CurrentUICulture property for all + ' resource lookups using this strongly typed resource class. + ' + _ + Friend Property Culture() As Global.System.Globalization.CultureInfo + Get + Return resourceCulture + End Get + Set(ByVal value As Global.System.Globalization.CultureInfo) + resourceCulture = value + End Set + End Property + End Module +End Namespace diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.resx b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.resx similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.resx rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.resx index ffecec8..af7dbeb 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.resx +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.resx @@ -1,117 +1,117 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.Designer.vb b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.Designer.vb similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.Designer.vb rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.Designer.vb index 9408dc2..4a0eb47 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.Designer.vb +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.Designer.vb @@ -1,73 +1,73 @@ -'------------------------------------------------------------------------------ -' -' This code was generated by a tool. -' Runtime Version:2.0.50727.3074 -' -' Changes to this file may cause incorrect behavior and will be lost if -' the code is regenerated. -' -'------------------------------------------------------------------------------ - -Option Strict On -Option Explicit On - - -Namespace My - - _ - Partial Friend NotInheritable Class MySettings - Inherits Global.System.Configuration.ApplicationSettingsBase - - Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings), MySettings) - -#Region "My.Settings Auto-Save Functionality" -#If _MyType = "WindowsForms" Then - Private Shared addedHandler As Boolean - - Private Shared addedHandlerLockObject As New Object - - _ - Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) - If My.Application.SaveMySettingsOnExit Then - My.Settings.Save() - End If - End Sub -#End If -#End Region - - Public Shared ReadOnly Property [Default]() As MySettings - Get - -#If _MyType = "WindowsForms" Then - If Not addedHandler Then - SyncLock addedHandlerLockObject - If Not addedHandler Then - AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings - addedHandler = True - End If - End SyncLock - End If -#End If - Return defaultInstance - End Get - End Property - End Class -End Namespace - -Namespace My - - _ - Friend Module MySettingsProperty - - _ - Friend ReadOnly Property Settings() As Global.WinForms_Unzip.My.MySettings - Get - Return Global.WinForms_Unzip.My.MySettings.Default - End Get - End Property - End Module -End Namespace +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:2.0.50727.3074 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + + +Namespace My + + _ + Partial Friend NotInheritable Class MySettings + Inherits Global.System.Configuration.ApplicationSettingsBase + + Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings), MySettings) + +#Region "My.Settings Auto-Save Functionality" +#If _MyType = "WindowsForms" Then + Private Shared addedHandler As Boolean + + Private Shared addedHandlerLockObject As New Object + + _ + Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) + If My.Application.SaveMySettingsOnExit Then + My.Settings.Save() + End If + End Sub +#End If +#End Region + + Public Shared ReadOnly Property [Default]() As MySettings + Get + +#If _MyType = "WindowsForms" Then + If Not addedHandler Then + SyncLock addedHandlerLockObject + If Not addedHandler Then + AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings + addedHandler = True + End If + End SyncLock + End If +#End If + Return defaultInstance + End Get + End Property + End Class +End Namespace + +Namespace My + + _ + Friend Module MySettingsProperty + + _ + Friend ReadOnly Property Settings() As Global.WinForms_Unzip.My.MySettings + Get + Return Global.WinForms_Unzip.My.MySettings.Default + End Get + End Property + End Module +End Namespace diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.settings b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.settings similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.settings rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.settings index 377f56d..85b890b 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.settings +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Settings.settings @@ -1,7 +1,7 @@ - - - - - - - + + + + + + + diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.Designer.vb b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.Designer.vb similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.Designer.vb rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.Designer.vb index b53008c..8c18860 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.Designer.vb +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.Designer.vb @@ -1,170 +1,170 @@ - _ -Partial Class Form1 - Inherits System.Windows.Forms.Form - - 'Form overrides dispose to clean up the component list. - _ - Protected Overrides Sub Dispose(ByVal disposing As Boolean) - Try - If disposing AndAlso components IsNot Nothing Then - components.Dispose() - End If - Finally - MyBase.Dispose(disposing) - End Try - End Sub - - 'Required by the Windows Form Designer - Private components As System.ComponentModel.IContainer - - 'NOTE: The following procedure is required by the Windows Form Designer - 'It can be modified using the Windows Form Designer. - 'Do not modify it using the code editor. - _ - Private Sub InitializeComponent() - Me.tbZipToOpen = New System.Windows.Forms.TextBox - Me.Label1 = New System.Windows.Forms.Label - Me.btnZipBrowse = New System.Windows.Forms.Button - Me.ProgressBar1 = New System.Windows.Forms.ProgressBar - Me.btnUnzip = New System.Windows.Forms.Button - Me.lblStatus = New System.Windows.Forms.Label - Me.tbExtractDir = New System.Windows.Forms.TextBox - Me.Label2 = New System.Windows.Forms.Label - Me.btnExtractDirBrowse = New System.Windows.Forms.Button - Me.btnCancel = New System.Windows.Forms.Button - Me.SuspendLayout() - ' - 'tbZipToOpen - ' - Me.tbZipToOpen.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.tbZipToOpen.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest - Me.tbZipToOpen.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem - Me.tbZipToOpen.Location = New System.Drawing.Point(15, 23) - Me.tbZipToOpen.Name = "tbZipToOpen" - Me.tbZipToOpen.Size = New System.Drawing.Size(389, 20) - Me.tbZipToOpen.TabIndex = 5 - ' - 'Label1 - ' - Me.Label1.AutoSize = True - Me.Label1.Location = New System.Drawing.Point(12, 6) - Me.Label1.Name = "Label1" - Me.Label1.Size = New System.Drawing.Size(62, 13) - Me.Label1.TabIndex = 1 - Me.Label1.Text = "Unzip a file:" - ' - 'btnZipBrowse - ' - Me.btnZipBrowse.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.btnZipBrowse.Location = New System.Drawing.Point(410, 22) - Me.btnZipBrowse.Name = "btnZipBrowse" - Me.btnZipBrowse.Size = New System.Drawing.Size(30, 23) - Me.btnZipBrowse.TabIndex = 7 - Me.btnZipBrowse.Text = "..." - Me.btnZipBrowse.UseVisualStyleBackColor = True - ' - 'ProgressBar1 - ' - Me.ProgressBar1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.ProgressBar1.Location = New System.Drawing.Point(12, 133) - Me.ProgressBar1.Name = "ProgressBar1" - Me.ProgressBar1.Size = New System.Drawing.Size(428, 15) - Me.ProgressBar1.TabIndex = 3 - ' - 'btnUnzip - ' - Me.btnUnzip.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.btnUnzip.Location = New System.Drawing.Point(365, 104) - Me.btnUnzip.Name = "btnUnzip" - Me.btnUnzip.Size = New System.Drawing.Size(75, 23) - Me.btnUnzip.TabIndex = 0 - Me.btnUnzip.Text = "Unzip" - Me.btnUnzip.UseVisualStyleBackColor = True - ' - 'lblStatus - ' - Me.lblStatus.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles) - Me.lblStatus.AutoSize = True - Me.lblStatus.Location = New System.Drawing.Point(12, 179) - Me.lblStatus.Name = "lblStatus" - Me.lblStatus.Size = New System.Drawing.Size(16, 13) - Me.lblStatus.TabIndex = 5 - Me.lblStatus.Text = "..." - ' - 'tbExtractDir - ' - Me.tbExtractDir.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.tbExtractDir.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest - Me.tbExtractDir.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystemDirectories - Me.tbExtractDir.Location = New System.Drawing.Point(15, 68) - Me.tbExtractDir.Name = "tbExtractDir" - Me.tbExtractDir.Size = New System.Drawing.Size(389, 20) - Me.tbExtractDir.TabIndex = 10 - ' - 'Label2 - ' - Me.Label2.AutoSize = True - Me.Label2.Location = New System.Drawing.Point(12, 52) - Me.Label2.Name = "Label2" - Me.Label2.Size = New System.Drawing.Size(66, 13) - Me.Label2.TabIndex = 7 - Me.Label2.Text = "To directory:" - ' - 'btnExtractDirBrowse - ' - Me.btnExtractDirBrowse.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.btnExtractDirBrowse.Location = New System.Drawing.Point(410, 67) - Me.btnExtractDirBrowse.Name = "btnExtractDirBrowse" - Me.btnExtractDirBrowse.Size = New System.Drawing.Size(30, 23) - Me.btnExtractDirBrowse.TabIndex = 12 - Me.btnExtractDirBrowse.Text = "..." - Me.btnExtractDirBrowse.UseVisualStyleBackColor = True - ' - 'btnCancel - ' - Me.btnCancel.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.btnCancel.Enabled = False - Me.btnCancel.Location = New System.Drawing.Point(365, 154) - Me.btnCancel.Name = "btnCancel" - Me.btnCancel.Size = New System.Drawing.Size(75, 23) - Me.btnCancel.TabIndex = 20 - Me.btnCancel.TabStop = False - Me.btnCancel.Text = "Cancel" - Me.btnCancel.UseVisualStyleBackColor = True - ' - 'Form1 - ' - Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) - Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font - Me.ClientSize = New System.Drawing.Size(452, 198) - Me.Controls.Add(Me.btnCancel) - Me.Controls.Add(Me.btnExtractDirBrowse) - Me.Controls.Add(Me.Label2) - Me.Controls.Add(Me.tbExtractDir) - Me.Controls.Add(Me.lblStatus) - Me.Controls.Add(Me.btnUnzip) - Me.Controls.Add(Me.ProgressBar1) - Me.Controls.Add(Me.btnZipBrowse) - Me.Controls.Add(Me.Label1) - Me.Controls.Add(Me.tbZipToOpen) - Me.Name = "Form1" - Me.Text = "DotNetZip Simple Unzip" - Me.ResumeLayout(False) - Me.PerformLayout() - - End Sub - Friend WithEvents tbZipToOpen As System.Windows.Forms.TextBox - Friend WithEvents Label1 As System.Windows.Forms.Label - Friend WithEvents btnZipBrowse As System.Windows.Forms.Button - Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar - Friend WithEvents btnUnzip As System.Windows.Forms.Button - Friend WithEvents lblStatus As System.Windows.Forms.Label - Friend WithEvents tbExtractDir As System.Windows.Forms.TextBox - Friend WithEvents Label2 As System.Windows.Forms.Label - Friend WithEvents btnExtractDirBrowse As System.Windows.Forms.Button - Friend WithEvents btnCancel As System.Windows.Forms.Button - -End Class + _ +Partial Class Form1 + Inherits System.Windows.Forms.Form + + 'Form overrides dispose to clean up the component list. + _ + Protected Overrides Sub Dispose(ByVal disposing As Boolean) + Try + If disposing AndAlso components IsNot Nothing Then + components.Dispose() + End If + Finally + MyBase.Dispose(disposing) + End Try + End Sub + + 'Required by the Windows Form Designer + Private components As System.ComponentModel.IContainer + + 'NOTE: The following procedure is required by the Windows Form Designer + 'It can be modified using the Windows Form Designer. + 'Do not modify it using the code editor. + _ + Private Sub InitializeComponent() + Me.tbZipToOpen = New System.Windows.Forms.TextBox + Me.Label1 = New System.Windows.Forms.Label + Me.btnZipBrowse = New System.Windows.Forms.Button + Me.ProgressBar1 = New System.Windows.Forms.ProgressBar + Me.btnUnzip = New System.Windows.Forms.Button + Me.lblStatus = New System.Windows.Forms.Label + Me.tbExtractDir = New System.Windows.Forms.TextBox + Me.Label2 = New System.Windows.Forms.Label + Me.btnExtractDirBrowse = New System.Windows.Forms.Button + Me.btnCancel = New System.Windows.Forms.Button + Me.SuspendLayout() + ' + 'tbZipToOpen + ' + Me.tbZipToOpen.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.tbZipToOpen.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest + Me.tbZipToOpen.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem + Me.tbZipToOpen.Location = New System.Drawing.Point(15, 23) + Me.tbZipToOpen.Name = "tbZipToOpen" + Me.tbZipToOpen.Size = New System.Drawing.Size(389, 20) + Me.tbZipToOpen.TabIndex = 5 + ' + 'Label1 + ' + Me.Label1.AutoSize = True + Me.Label1.Location = New System.Drawing.Point(12, 6) + Me.Label1.Name = "Label1" + Me.Label1.Size = New System.Drawing.Size(62, 13) + Me.Label1.TabIndex = 1 + Me.Label1.Text = "Unzip a file:" + ' + 'btnZipBrowse + ' + Me.btnZipBrowse.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.btnZipBrowse.Location = New System.Drawing.Point(410, 22) + Me.btnZipBrowse.Name = "btnZipBrowse" + Me.btnZipBrowse.Size = New System.Drawing.Size(30, 23) + Me.btnZipBrowse.TabIndex = 7 + Me.btnZipBrowse.Text = "..." + Me.btnZipBrowse.UseVisualStyleBackColor = True + ' + 'ProgressBar1 + ' + Me.ProgressBar1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.ProgressBar1.Location = New System.Drawing.Point(12, 133) + Me.ProgressBar1.Name = "ProgressBar1" + Me.ProgressBar1.Size = New System.Drawing.Size(428, 15) + Me.ProgressBar1.TabIndex = 3 + ' + 'btnUnzip + ' + Me.btnUnzip.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.btnUnzip.Location = New System.Drawing.Point(365, 104) + Me.btnUnzip.Name = "btnUnzip" + Me.btnUnzip.Size = New System.Drawing.Size(75, 23) + Me.btnUnzip.TabIndex = 0 + Me.btnUnzip.Text = "Unzip" + Me.btnUnzip.UseVisualStyleBackColor = True + ' + 'lblStatus + ' + Me.lblStatus.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles) + Me.lblStatus.AutoSize = True + Me.lblStatus.Location = New System.Drawing.Point(12, 179) + Me.lblStatus.Name = "lblStatus" + Me.lblStatus.Size = New System.Drawing.Size(16, 13) + Me.lblStatus.TabIndex = 5 + Me.lblStatus.Text = "..." + ' + 'tbExtractDir + ' + Me.tbExtractDir.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.tbExtractDir.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest + Me.tbExtractDir.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystemDirectories + Me.tbExtractDir.Location = New System.Drawing.Point(15, 68) + Me.tbExtractDir.Name = "tbExtractDir" + Me.tbExtractDir.Size = New System.Drawing.Size(389, 20) + Me.tbExtractDir.TabIndex = 10 + ' + 'Label2 + ' + Me.Label2.AutoSize = True + Me.Label2.Location = New System.Drawing.Point(12, 52) + Me.Label2.Name = "Label2" + Me.Label2.Size = New System.Drawing.Size(66, 13) + Me.Label2.TabIndex = 7 + Me.Label2.Text = "To directory:" + ' + 'btnExtractDirBrowse + ' + Me.btnExtractDirBrowse.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.btnExtractDirBrowse.Location = New System.Drawing.Point(410, 67) + Me.btnExtractDirBrowse.Name = "btnExtractDirBrowse" + Me.btnExtractDirBrowse.Size = New System.Drawing.Size(30, 23) + Me.btnExtractDirBrowse.TabIndex = 12 + Me.btnExtractDirBrowse.Text = "..." + Me.btnExtractDirBrowse.UseVisualStyleBackColor = True + ' + 'btnCancel + ' + Me.btnCancel.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.btnCancel.Enabled = False + Me.btnCancel.Location = New System.Drawing.Point(365, 154) + Me.btnCancel.Name = "btnCancel" + Me.btnCancel.Size = New System.Drawing.Size(75, 23) + Me.btnCancel.TabIndex = 20 + Me.btnCancel.TabStop = False + Me.btnCancel.Text = "Cancel" + Me.btnCancel.UseVisualStyleBackColor = True + ' + 'Form1 + ' + Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) + Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font + Me.ClientSize = New System.Drawing.Size(452, 198) + Me.Controls.Add(Me.btnCancel) + Me.Controls.Add(Me.btnExtractDirBrowse) + Me.Controls.Add(Me.Label2) + Me.Controls.Add(Me.tbExtractDir) + Me.Controls.Add(Me.lblStatus) + Me.Controls.Add(Me.btnUnzip) + Me.Controls.Add(Me.ProgressBar1) + Me.Controls.Add(Me.btnZipBrowse) + Me.Controls.Add(Me.Label1) + Me.Controls.Add(Me.tbZipToOpen) + Me.Name = "Form1" + Me.Text = "DotNetZip Simple Unzip" + Me.ResumeLayout(False) + Me.PerformLayout() + + End Sub + Friend WithEvents tbZipToOpen As System.Windows.Forms.TextBox + Friend WithEvents Label1 As System.Windows.Forms.Label + Friend WithEvents btnZipBrowse As System.Windows.Forms.Button + Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar + Friend WithEvents btnUnzip As System.Windows.Forms.Button + Friend WithEvents lblStatus As System.Windows.Forms.Label + Friend WithEvents tbExtractDir As System.Windows.Forms.TextBox + Friend WithEvents Label2 As System.Windows.Forms.Label + Friend WithEvents btnExtractDirBrowse As System.Windows.Forms.Button + Friend WithEvents btnCancel As System.Windows.Forms.Button + +End Class diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.resx b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.resx similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.resx rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.resx index ff31a6d..19dc0dd 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.resx +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.resx @@ -1,120 +1,120 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.vb b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.vb similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.vb rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.vb index 70f34e7..0531218 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.vb +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/Unzip-Form1.vb @@ -1,228 +1,228 @@ -Imports System -Imports System.IO -Imports Ionic.Zip -Imports System.ComponentModel - -Public Class Form1 - - Private _backgroundWorker1 As System.ComponentModel.BackgroundWorker - Private _operationCanceled As Boolean - Private nFilesCompleted As Integer - Private totalEntriesToProcess As Integer - Private _appCuKey As Microsoft.Win32.RegistryKey - Private AppRegyPath As String = "Software\Ionic\VBunZip" - Private rvn_ZipFile As String = "zipfile" - Private rvn_ExtractDir As String = "extractdir" - - Private Delegate Sub ZipProgress(ByVal e As ExtractProgressEventArgs) - - Private Sub btnZipBrowse_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnZipBrowse.Click - Dim openFileDialog1 As New OpenFileDialog - If (String.IsNullOrEmpty(tbZipToOpen.Text)) Then - openFileDialog1.InitialDirectory = "c:\" - Else - openFileDialog1.InitialDirectory = IIf(File.Exists(Me.tbZipToOpen.Text), Path.GetDirectoryName(Me.tbZipToOpen.Text), Me.tbZipToOpen.Text) - End If - openFileDialog1.Filter = "zip files|*.zip|EXE files|*.exe|All Files|*.*" - openFileDialog1.FilterIndex = 1 - openFileDialog1.RestoreDirectory = True - If (openFileDialog1.ShowDialog = DialogResult.OK) Then - Me.tbZipToOpen.Text = openFileDialog1.FileName - If File.Exists(Me.tbZipToOpen.Text) Then - Me.btnUnzip_Click(sender, e) - End If - End If - End Sub - - - Private Sub btnUnzip_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnUnzip.Click - If Not File.Exists(Me.tbZipToOpen.Text) Then - MessageBox.Show("That file does not exist", "Cannot Unzip", MessageBoxButtons.OK) - End If - - If Not String.IsNullOrEmpty(tbZipToOpen.Text) And _ - Not String.IsNullOrEmpty(tbExtractDir.Text) Then - If Not Directory.Exists(tbExtractDir.Text) Then - Directory.CreateDirectory(tbExtractDir.Text) - End If - nFilesCompleted = 0 - _operationCanceled = False - btnCancel.Enabled = True - btnUnzip.Enabled = False - btnZipBrowse.Enabled = False - btnExtractDirBrowse.Enabled = False - tbZipToOpen.Enabled = False - tbExtractDir.Enabled = False - KickoffExtract() - End If - End Sub - - - Private Sub KickoffExtract() - lblStatus.Text = "Extracting..." - Dim args(2) As String - args(0) = tbZipToOpen.Text - args(1) = tbExtractDir.Text - _backgroundWorker1 = New System.ComponentModel.BackgroundWorker() - _backgroundWorker1.WorkerSupportsCancellation = False - _backgroundWorker1.WorkerReportsProgress = False - AddHandler Me._backgroundWorker1.DoWork, New DoWorkEventHandler(AddressOf Me.UnzipFile) - _backgroundWorker1.RunWorkerAsync(args) - End Sub - - - - Private Sub btnExtractDirBrowse_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnExtractDirBrowse.Click - Dim dlg As New FolderBrowserDialog - dlg.Description = "Select a folder to zip up:" - dlg.ShowNewFolderButton = False - 'dlg.ShowEditBox = True - dlg.SelectedPath = Me.tbExtractDir.Text - 'dlg.ShowFullPathInEditBox = True - If (dlg.ShowDialog = DialogResult.OK) Then - tbExtractDir.Text = dlg.SelectedPath - End If - End Sub - - - Private Sub UnzipFile(ByVal sender As Object, ByVal e As DoWorkEventArgs) - Dim extractCancelled As Boolean = False - Dim args() As String = e.Argument - Dim zipToRead As String = args(0) - Dim extractDir As String = args(1) - Try - Using zip As ZipFile = ZipFile.Read(zipToRead) - totalEntriesToProcess = zip.Entries.Count - SetProgressBarMax(zip.Entries.Count) - AddHandler zip.ExtractProgress, New EventHandler(Of ExtractProgressEventArgs)(AddressOf Me.zip_ExtractProgress) - zip.ExtractAll(extractDir, Ionic.Zip.ExtractExistingFileAction.OverwriteSilently) - End Using - Catch ex1 As Exception - MessageBox.Show(String.Format("There's been a problem extracting that zip file. {0}", ex1.Message), "Error Extracting", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1) - End Try - ResetUI() - End Sub - - - Private Sub ResetUI() - If btnCancel.InvokeRequired Then - btnCancel.Invoke(New Action(AddressOf ResetUI), New Object() {}) - Else - btnUnzip.Enabled = True - btnZipBrowse.Enabled = True - btnExtractDirBrowse.Enabled = True - btnCancel.Enabled = False - tbZipToOpen.Enabled = True - tbExtractDir.Enabled = True - ProgressBar1.Maximum = 1 - ProgressBar1.Value = 0 - Me.btnUnzip.Focus() - End If - End Sub - - Private Sub SetProgressBarMax(ByVal n As Integer) - If ProgressBar1.InvokeRequired Then - ProgressBar1.Invoke(New Action(Of Integer)(AddressOf SetProgressBarMax), New Object() {n}) - Else - ProgressBar1.Value = 0 - ProgressBar1.Maximum = n - ProgressBar1.Step = 1 - End If - End Sub - - - Private Sub zip_ExtractProgress(ByVal sender As Object, ByVal e As ExtractProgressEventArgs) - If _operationCanceled Then - e.Cancel = True - Return - End If - - If (e.EventType = Ionic.Zip.ZipProgressEventType.Extracting_AfterExtractEntry) Then - StepEntryProgress(e) - ElseIf (e.EventType = ZipProgressEventType.Extracting_BeforeExtractAll) Then - '' do nothing - End If - End Sub - - - Private Sub StepEntryProgress(ByVal e As ExtractProgressEventArgs) - If ProgressBar1.InvokeRequired Then - ProgressBar1.Invoke(New ZipProgress(AddressOf StepEntryProgress), New Object() {e}) - Else - ProgressBar1.PerformStep() - System.Threading.Thread.Sleep(100) - 'set a label with status information - nFilesCompleted = nFilesCompleted + 1 - lblStatus.Text = String.Format("{0} of {1} files...({2})", nFilesCompleted, totalEntriesToProcess, e.CurrentEntry.FileName) - Me.Update() - End If - End Sub - - - - 'Private Sub StepArchiveProgress(ByVal e As ZipProgressEventArgs) - ' If ProgressBar1.InvokeRequired Then - ' ProgressBar1.Invoke(New ZipProgress(AddressOf StepArchiveProgress), New Object() {e}) - ' ElseIf Not _operationCanceled Then - ' _nFilesCompleted = _nFilesCompleted + 1 - ' ProgressBar1.PerformStep() - ' progressBar2.Value = progressBar2.Maximum = 1 - ' MyBase.Update() - ' End If - 'End Sub - - Private Sub btnCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCancel.Click - _operationCanceled = True - ProgressBar1.Maximum = 1 - ProgressBar1.Value = 0 - lblStatus.Text = "Cancelled..." - End Sub - - - Private Sub SaveFormToRegistry() - If AppCuKey IsNot Nothing Then - If Not String.IsNullOrEmpty(tbZipToOpen.Text) Then - AppCuKey.SetValue(rvn_ZipFile, Me.tbZipToOpen.Text) - End If - If Not String.IsNullOrEmpty(tbExtractDir.Text) Then - AppCuKey.SetValue(rvn_ExtractDir, tbExtractDir.Text) - End If - End If - End Sub - - Private Sub LoadFormFromRegistry() - If AppCuKey IsNot Nothing Then - Dim s As String - s = AppCuKey.GetValue(rvn_ZipFile) - If Not String.IsNullOrEmpty(s) Then - Me.tbZipToOpen.Text = s - End If - s = AppCuKey.GetValue(rvn_ExtractDir) - If Not String.IsNullOrEmpty(s) Then - tbExtractDir.Text = s - End If - End If - End Sub - - - Public ReadOnly Property AppCuKey() As Microsoft.Win32.RegistryKey - Get - If (_appCuKey Is Nothing) Then - Me._appCuKey = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(AppRegyPath, True) - If (Me._appCuKey Is Nothing) Then - Me._appCuKey = Microsoft.Win32.Registry.CurrentUser.CreateSubKey(AppRegyPath) - End If - End If - Return _appCuKey - End Get - End Property - - Private Sub Form1_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing - SaveFormToRegistry() - End Sub - - Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load - LoadFormFromRegistry() - End Sub -End Class - +Imports System +Imports System.IO +Imports Ionic.Zip +Imports System.ComponentModel + +Public Class Form1 + + Private _backgroundWorker1 As System.ComponentModel.BackgroundWorker + Private _operationCanceled As Boolean + Private nFilesCompleted As Integer + Private totalEntriesToProcess As Integer + Private _appCuKey As Microsoft.Win32.RegistryKey + Private AppRegyPath As String = "Software\Ionic\VBunZip" + Private rvn_ZipFile As String = "zipfile" + Private rvn_ExtractDir As String = "extractdir" + + Private Delegate Sub ZipProgress(ByVal e As ExtractProgressEventArgs) + + Private Sub btnZipBrowse_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnZipBrowse.Click + Dim openFileDialog1 As New OpenFileDialog + If (String.IsNullOrEmpty(tbZipToOpen.Text)) Then + openFileDialog1.InitialDirectory = "c:\" + Else + openFileDialog1.InitialDirectory = IIf(File.Exists(Me.tbZipToOpen.Text), Path.GetDirectoryName(Me.tbZipToOpen.Text), Me.tbZipToOpen.Text) + End If + openFileDialog1.Filter = "zip files|*.zip|EXE files|*.exe|All Files|*.*" + openFileDialog1.FilterIndex = 1 + openFileDialog1.RestoreDirectory = True + If (openFileDialog1.ShowDialog = DialogResult.OK) Then + Me.tbZipToOpen.Text = openFileDialog1.FileName + If File.Exists(Me.tbZipToOpen.Text) Then + Me.btnUnzip_Click(sender, e) + End If + End If + End Sub + + + Private Sub btnUnzip_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnUnzip.Click + If Not File.Exists(Me.tbZipToOpen.Text) Then + MessageBox.Show("That file does not exist", "Cannot Unzip", MessageBoxButtons.OK) + End If + + If Not String.IsNullOrEmpty(tbZipToOpen.Text) And _ + Not String.IsNullOrEmpty(tbExtractDir.Text) Then + If Not Directory.Exists(tbExtractDir.Text) Then + Directory.CreateDirectory(tbExtractDir.Text) + End If + nFilesCompleted = 0 + _operationCanceled = False + btnCancel.Enabled = True + btnUnzip.Enabled = False + btnZipBrowse.Enabled = False + btnExtractDirBrowse.Enabled = False + tbZipToOpen.Enabled = False + tbExtractDir.Enabled = False + KickoffExtract() + End If + End Sub + + + Private Sub KickoffExtract() + lblStatus.Text = "Extracting..." + Dim args(2) As String + args(0) = tbZipToOpen.Text + args(1) = tbExtractDir.Text + _backgroundWorker1 = New System.ComponentModel.BackgroundWorker() + _backgroundWorker1.WorkerSupportsCancellation = False + _backgroundWorker1.WorkerReportsProgress = False + AddHandler Me._backgroundWorker1.DoWork, New DoWorkEventHandler(AddressOf Me.UnzipFile) + _backgroundWorker1.RunWorkerAsync(args) + End Sub + + + + Private Sub btnExtractDirBrowse_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnExtractDirBrowse.Click + Dim dlg As New FolderBrowserDialog + dlg.Description = "Select a folder to zip up:" + dlg.ShowNewFolderButton = False + 'dlg.ShowEditBox = True + dlg.SelectedPath = Me.tbExtractDir.Text + 'dlg.ShowFullPathInEditBox = True + If (dlg.ShowDialog = DialogResult.OK) Then + tbExtractDir.Text = dlg.SelectedPath + End If + End Sub + + + Private Sub UnzipFile(ByVal sender As Object, ByVal e As DoWorkEventArgs) + Dim extractCancelled As Boolean = False + Dim args() As String = e.Argument + Dim zipToRead As String = args(0) + Dim extractDir As String = args(1) + Try + Using zip As ZipFile = ZipFile.Read(zipToRead) + totalEntriesToProcess = zip.Entries.Count + SetProgressBarMax(zip.Entries.Count) + AddHandler zip.ExtractProgress, New EventHandler(Of ExtractProgressEventArgs)(AddressOf Me.zip_ExtractProgress) + zip.ExtractAll(extractDir, Ionic.Zip.ExtractExistingFileAction.OverwriteSilently) + End Using + Catch ex1 As Exception + MessageBox.Show(String.Format("There's been a problem extracting that zip file. {0}", ex1.Message), "Error Extracting", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1) + End Try + ResetUI() + End Sub + + + Private Sub ResetUI() + If btnCancel.InvokeRequired Then + btnCancel.Invoke(New Action(AddressOf ResetUI), New Object() {}) + Else + btnUnzip.Enabled = True + btnZipBrowse.Enabled = True + btnExtractDirBrowse.Enabled = True + btnCancel.Enabled = False + tbZipToOpen.Enabled = True + tbExtractDir.Enabled = True + ProgressBar1.Maximum = 1 + ProgressBar1.Value = 0 + Me.btnUnzip.Focus() + End If + End Sub + + Private Sub SetProgressBarMax(ByVal n As Integer) + If ProgressBar1.InvokeRequired Then + ProgressBar1.Invoke(New Action(Of Integer)(AddressOf SetProgressBarMax), New Object() {n}) + Else + ProgressBar1.Value = 0 + ProgressBar1.Maximum = n + ProgressBar1.Step = 1 + End If + End Sub + + + Private Sub zip_ExtractProgress(ByVal sender As Object, ByVal e As ExtractProgressEventArgs) + If _operationCanceled Then + e.Cancel = True + Return + End If + + If (e.EventType = Ionic.Zip.ZipProgressEventType.Extracting_AfterExtractEntry) Then + StepEntryProgress(e) + ElseIf (e.EventType = ZipProgressEventType.Extracting_BeforeExtractAll) Then + '' do nothing + End If + End Sub + + + Private Sub StepEntryProgress(ByVal e As ExtractProgressEventArgs) + If ProgressBar1.InvokeRequired Then + ProgressBar1.Invoke(New ZipProgress(AddressOf StepEntryProgress), New Object() {e}) + Else + ProgressBar1.PerformStep() + System.Threading.Thread.Sleep(100) + 'set a label with status information + nFilesCompleted = nFilesCompleted + 1 + lblStatus.Text = String.Format("{0} of {1} files...({2})", nFilesCompleted, totalEntriesToProcess, e.CurrentEntry.FileName) + Me.Update() + End If + End Sub + + + + 'Private Sub StepArchiveProgress(ByVal e As ZipProgressEventArgs) + ' If ProgressBar1.InvokeRequired Then + ' ProgressBar1.Invoke(New ZipProgress(AddressOf StepArchiveProgress), New Object() {e}) + ' ElseIf Not _operationCanceled Then + ' _nFilesCompleted = _nFilesCompleted + 1 + ' ProgressBar1.PerformStep() + ' progressBar2.Value = progressBar2.Maximum = 1 + ' MyBase.Update() + ' End If + 'End Sub + + Private Sub btnCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCancel.Click + _operationCanceled = True + ProgressBar1.Maximum = 1 + ProgressBar1.Value = 0 + lblStatus.Text = "Cancelled..." + End Sub + + + Private Sub SaveFormToRegistry() + If AppCuKey IsNot Nothing Then + If Not String.IsNullOrEmpty(tbZipToOpen.Text) Then + AppCuKey.SetValue(rvn_ZipFile, Me.tbZipToOpen.Text) + End If + If Not String.IsNullOrEmpty(tbExtractDir.Text) Then + AppCuKey.SetValue(rvn_ExtractDir, tbExtractDir.Text) + End If + End If + End Sub + + Private Sub LoadFormFromRegistry() + If AppCuKey IsNot Nothing Then + Dim s As String + s = AppCuKey.GetValue(rvn_ZipFile) + If Not String.IsNullOrEmpty(s) Then + Me.tbZipToOpen.Text = s + End If + s = AppCuKey.GetValue(rvn_ExtractDir) + If Not String.IsNullOrEmpty(s) Then + tbExtractDir.Text = s + End If + End If + End Sub + + + Public ReadOnly Property AppCuKey() As Microsoft.Win32.RegistryKey + Get + If (_appCuKey Is Nothing) Then + Me._appCuKey = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(AppRegyPath, True) + If (Me._appCuKey Is Nothing) Then + Me._appCuKey = Microsoft.Win32.Registry.CurrentUser.CreateSubKey(AppRegyPath) + End If + End If + Return _appCuKey + End Get + End Property + + Private Sub Form1_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing + SaveFormToRegistry() + End Sub + + Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load + LoadFormFromRegistry() + End Sub +End Class + diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/WinForms-Unzip.vbproj b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/WinForms-Unzip.vbproj similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/WinForms-Unzip.vbproj rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/WinForms-Unzip.vbproj index adfca67..e4203ed 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/WinForms-Unzip.vbproj +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/WinForms-Unzip.vbproj @@ -1,136 +1,136 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {9E4C484D-656E-4E19-8741-5701D027AA51} - WinExe - WinForms_Unzip.My.MyApplication - WinForms_Unzip - WinForms-Unzip - 512 - WindowsForms - v4.0 - On - Binary - Off - On - - - 3.5 - - - - true - full - true - true - bin\Debug\ - WinForms-Unzip.xml - 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 - AllRules.ruleset - - - pdbonly - false - true - true - bin\Release\ - WinForms-Unzip.xml - 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355 - AllRules.ruleset - - - - - - - - - - - - - - - - - - - - - - - - - - - Form - - - Unzip-Form1.vb - Form - - - - True - Application.myapp - - - True - True - Resources.resx - - - True - Settings.settings - True - - - - - Unzip-Form1.vb - - - VbMyResourcesResXFileCodeGenerator - Resources.Designer.vb - My.Resources - Designer - - - - - MyApplicationCodeGenerator - Application.Designer.vb - - - SettingsSingleFileGenerator - My - Settings.Designer.vb - - - - - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4} - BZip2 DLL - - - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} - Zip DLL - - - {9816BA86-9250-4C00-A912-25F07F8677D1} - Zlib DLL - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {9E4C484D-656E-4E19-8741-5701D027AA51} + WinExe + WinForms_Unzip.My.MyApplication + WinForms_Unzip + WinForms-Unzip + 512 + WindowsForms + v4.0 + On + Binary + Off + On + + + 3.5 + + + + true + full + true + true + bin\Debug\ + WinForms-Unzip.xml + 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 + AllRules.ruleset + + + pdbonly + false + true + true + bin\Release\ + WinForms-Unzip.xml + 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355 + AllRules.ruleset + + + + + + + + + + + + + + + + + + + + + + + + + + + Form + + + Unzip-Form1.vb + Form + + + + True + Application.myapp + + + True + True + Resources.resx + + + True + Settings.settings + True + + + + + Unzip-Form1.vb + + + VbMyResourcesResXFileCodeGenerator + Resources.Designer.vb + My.Resources + Designer + + + + + MyApplicationCodeGenerator + Application.Designer.vb + + + SettingsSingleFileGenerator + My + Settings.Designer.vb + + + + + {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4} + BZip2 DLL + + + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} + Zip DLL + + + {9816BA86-9250-4C00-A912-25F07F8677D1} + Zlib DLL + + + + \ No newline at end of file diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.Designer.vb b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.Designer.vb similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.Designer.vb rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.Designer.vb index 898401c..6c1b669 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.Designer.vb +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.Designer.vb @@ -1,38 +1,38 @@ -'------------------------------------------------------------------------------ -' -' This code was generated by a tool. -' Runtime Version:2.0.50727.3074 -' -' Changes to this file may cause incorrect behavior and will be lost if -' the code is regenerated. -' -'------------------------------------------------------------------------------ - -Option Strict On -Option Explicit On - - -Namespace My - - 'NOTE: This file is auto-generated; do not modify it directly. To make changes, - ' or if you encounter build errors in this file, go to the Project Designer - ' (go to Project Properties or double-click the My Project node in - ' Solution Explorer), and make changes on the Application tab. - ' - Partial Friend Class MyApplication - - _ - Public Sub New() - MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows) - Me.IsSingleInstance = false - Me.EnableVisualStyles = true - Me.SaveMySettingsOnExit = true - Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses - End Sub - - _ - Protected Overrides Sub OnCreateMainForm() - Me.MainForm = Global.WindowsApplication1.Form1 - End Sub - End Class -End Namespace +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:2.0.50727.3074 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + + +Namespace My + + 'NOTE: This file is auto-generated; do not modify it directly. To make changes, + ' or if you encounter build errors in this file, go to the Project Designer + ' (go to Project Properties or double-click the My Project node in + ' Solution Explorer), and make changes on the Application tab. + ' + Partial Friend Class MyApplication + + _ + Public Sub New() + MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows) + Me.IsSingleInstance = false + Me.EnableVisualStyles = true + Me.SaveMySettingsOnExit = true + Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses + End Sub + + _ + Protected Overrides Sub OnCreateMainForm() + Me.MainForm = Global.WindowsApplication1.Form1 + End Sub + End Class +End Namespace diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.myapp b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.myapp similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.myapp rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.myapp index 7b0c597..1243847 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.myapp +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Application.myapp @@ -1,11 +1,11 @@ - - - true - Form1 - false - 0 - true - 0 - 0 - true - + + + true + Form1 + false + 0 + true + 0 + 0 + true + diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/AssemblyInfo.vb b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/AssemblyInfo.vb similarity index 100% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/AssemblyInfo.vb rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/AssemblyInfo.vb diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.Designer.vb b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.Designer.vb similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.Designer.vb rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.Designer.vb index 4e4ff43..a455aed 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.Designer.vb +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.Designer.vb @@ -1,62 +1,62 @@ -'------------------------------------------------------------------------------ -' -' This code was generated by a tool. -' Runtime Version:2.0.50727.3074 -' -' Changes to this file may cause incorrect behavior and will be lost if -' the code is regenerated. -' -'------------------------------------------------------------------------------ - -Option Strict On -Option Explicit On - - -Namespace My.Resources - - 'This class was auto-generated by the StronglyTypedResourceBuilder - 'class via a tool like ResGen or Visual Studio. - 'To add or remove a member, edit your .ResX file then rerun ResGen - 'with the /str option, or rebuild your VS project. - ' - ' A strongly-typed resource class, for looking up localized strings, etc. - ' - _ - Friend Module Resources - - Private resourceMan As Global.System.Resources.ResourceManager - - Private resourceCulture As Global.System.Globalization.CultureInfo - - ' - ' Returns the cached ResourceManager instance used by this class. - ' - _ - Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager - Get - If Object.ReferenceEquals(resourceMan, Nothing) Then - Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("WindowsApplication1.Resources", GetType(Resources).Assembly) - resourceMan = temp - End If - Return resourceMan - End Get - End Property - - ' - ' Overrides the current thread's CurrentUICulture property for all - ' resource lookups using this strongly typed resource class. - ' - _ - Friend Property Culture() As Global.System.Globalization.CultureInfo - Get - Return resourceCulture - End Get - Set(ByVal value As Global.System.Globalization.CultureInfo) - resourceCulture = value - End Set - End Property - End Module -End Namespace +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:2.0.50727.3074 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + + +Namespace My.Resources + + 'This class was auto-generated by the StronglyTypedResourceBuilder + 'class via a tool like ResGen or Visual Studio. + 'To add or remove a member, edit your .ResX file then rerun ResGen + 'with the /str option, or rebuild your VS project. + ' + ' A strongly-typed resource class, for looking up localized strings, etc. + ' + _ + Friend Module Resources + + Private resourceMan As Global.System.Resources.ResourceManager + + Private resourceCulture As Global.System.Globalization.CultureInfo + + ' + ' Returns the cached ResourceManager instance used by this class. + ' + _ + Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager + Get + If Object.ReferenceEquals(resourceMan, Nothing) Then + Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("WindowsApplication1.Resources", GetType(Resources).Assembly) + resourceMan = temp + End If + Return resourceMan + End Get + End Property + + ' + ' Overrides the current thread's CurrentUICulture property for all + ' resource lookups using this strongly typed resource class. + ' + _ + Friend Property Culture() As Global.System.Globalization.CultureInfo + Get + Return resourceCulture + End Get + Set(ByVal value As Global.System.Globalization.CultureInfo) + resourceCulture = value + End Set + End Property + End Module +End Namespace diff --git a/src/Examples/C#/ZipTreeView/Properties/Resources.resx b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.resx similarity index 97% rename from src/Examples/C#/ZipTreeView/Properties/Resources.resx rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.resx index ffecec8..af7dbeb 100644 --- a/src/Examples/C#/ZipTreeView/Properties/Resources.resx +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Resources.resx @@ -1,117 +1,117 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.Designer.vb b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.Designer.vb similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.Designer.vb rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.Designer.vb index 69d0ba8..109f406 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.Designer.vb +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.Designer.vb @@ -1,73 +1,73 @@ -'------------------------------------------------------------------------------ -' -' This code was generated by a tool. -' Runtime Version:2.0.50727.3074 -' -' Changes to this file may cause incorrect behavior and will be lost if -' the code is regenerated. -' -'------------------------------------------------------------------------------ - -Option Strict On -Option Explicit On - - -Namespace My - - _ - Partial Friend NotInheritable Class MySettings - Inherits Global.System.Configuration.ApplicationSettingsBase - - Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings), MySettings) - -#Region "My.Settings Auto-Save Functionality" -#If _MyType = "WindowsForms" Then - Private Shared addedHandler As Boolean - - Private Shared addedHandlerLockObject As New Object - - _ - Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) - If My.Application.SaveMySettingsOnExit Then - My.Settings.Save() - End If - End Sub -#End If -#End Region - - Public Shared ReadOnly Property [Default]() As MySettings - Get - -#If _MyType = "WindowsForms" Then - If Not addedHandler Then - SyncLock addedHandlerLockObject - If Not addedHandler Then - AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings - addedHandler = True - End If - End SyncLock - End If -#End If - Return defaultInstance - End Get - End Property - End Class -End Namespace - -Namespace My - - _ - Friend Module MySettingsProperty - - _ - Friend ReadOnly Property Settings() As Global.WindowsApplication1.My.MySettings - Get - Return Global.WindowsApplication1.My.MySettings.Default - End Get - End Property - End Module -End Namespace +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:2.0.50727.3074 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + + +Namespace My + + _ + Partial Friend NotInheritable Class MySettings + Inherits Global.System.Configuration.ApplicationSettingsBase + + Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings), MySettings) + +#Region "My.Settings Auto-Save Functionality" +#If _MyType = "WindowsForms" Then + Private Shared addedHandler As Boolean + + Private Shared addedHandlerLockObject As New Object + + _ + Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) + If My.Application.SaveMySettingsOnExit Then + My.Settings.Save() + End If + End Sub +#End If +#End Region + + Public Shared ReadOnly Property [Default]() As MySettings + Get + +#If _MyType = "WindowsForms" Then + If Not addedHandler Then + SyncLock addedHandlerLockObject + If Not addedHandler Then + AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings + addedHandler = True + End If + End SyncLock + End If +#End If + Return defaultInstance + End Get + End Property + End Class +End Namespace + +Namespace My + + _ + Friend Module MySettingsProperty + + _ + Friend ReadOnly Property Settings() As Global.WindowsApplication1.My.MySettings + Get + Return Global.WindowsApplication1.My.MySettings.Default + End Get + End Property + End Module +End Namespace diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.settings b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.settings similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.settings rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.settings index 377f56d..85b890b 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.settings +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/My Project/Settings.settings @@ -1,7 +1,7 @@ - - - - - - - + + + + + + + diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/WinForms-ZipUp.vbproj b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/WinForms-ZipUp.vbproj similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/WinForms-ZipUp.vbproj rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/WinForms-ZipUp.vbproj index 7a20cc0..c95b640 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/WinForms-ZipUp.vbproj +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/WinForms-ZipUp.vbproj @@ -1,115 +1,115 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {58EB3655-40F3-44FC-804E-47A8103DBF99} - WinExe - WindowsApplication1.My.MyApplication - WindowsApplication1 - WindowsApplication1 - 512 - WindowsForms - v4.0 - On - Binary - Off - On - - - true - full - true - true - bin\Debug\ - WindowsApplication1.xml - 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 - - - pdbonly - false - true - true - bin\Release\ - WindowsApplication1.xml - 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 - - - - False - ..\..\..\..\Zip\bin\Debug\Ionic.Zip.dll - - - - - - - - - - - - - - - - - - - - - Form - - - ZipUp-Form1.vb - Form - - - - True - Application.myapp - - - True - True - Resources.resx - - - True - Settings.settings - True - - - - - ZipUp-Form1.vb - - - VbMyResourcesResXFileCodeGenerator - Resources.Designer.vb - My.Resources - Designer - - - - - MyApplicationCodeGenerator - Application.Designer.vb - - - SettingsSingleFileGenerator - My - Settings.Designer.vb - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {58EB3655-40F3-44FC-804E-47A8103DBF99} + WinExe + WindowsApplication1.My.MyApplication + WindowsApplication1 + WindowsApplication1 + 512 + WindowsForms + v4.0 + On + Binary + Off + On + + + true + full + true + true + bin\Debug\ + WindowsApplication1.xml + 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 + + + pdbonly + false + true + true + bin\Release\ + WindowsApplication1.xml + 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 + + + + False + ..\..\..\..\Zip\bin\Debug\Ionic.Zip.dll + + + + + + + + + + + + + + + + + + + + + Form + + + ZipUp-Form1.vb + Form + + + + True + Application.myapp + + + True + True + Resources.resx + + + True + Settings.settings + True + + + + + ZipUp-Form1.vb + + + VbMyResourcesResXFileCodeGenerator + Resources.Designer.vb + My.Resources + Designer + + + + + MyApplicationCodeGenerator + Application.Designer.vb + + + SettingsSingleFileGenerator + My + Settings.Designer.vb + + + + \ No newline at end of file diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.Designer.vb b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.Designer.vb similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.Designer.vb rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.Designer.vb index 6ea2ba4..6d717f1 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.Designer.vb +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.Designer.vb @@ -1,170 +1,170 @@ - _ -Partial Class Form1 - Inherits System.Windows.Forms.Form - - 'Form overrides dispose to clean up the component list. - _ - Protected Overrides Sub Dispose(ByVal disposing As Boolean) - Try - If disposing AndAlso components IsNot Nothing Then - components.Dispose() - End If - Finally - MyBase.Dispose(disposing) - End Try - End Sub - - 'Required by the Windows Form Designer - Private components As System.ComponentModel.IContainer - - 'NOTE: The following procedure is required by the Windows Form Designer - 'It can be modified using the Windows Form Designer. - 'Do not modify it using the code editor. - _ - Private Sub InitializeComponent() - Me.Label1 = New System.Windows.Forms.Label - Me.Label2 = New System.Windows.Forms.Label - Me.tbDirToZip = New System.Windows.Forms.TextBox - Me.tbZipToCreate = New System.Windows.Forms.TextBox - Me.btnDirBrowse = New System.Windows.Forms.Button - Me.btnZipUp = New System.Windows.Forms.Button - Me.ProgressBar1 = New System.Windows.Forms.ProgressBar - Me.ProgressBar2 = New System.Windows.Forms.ProgressBar - Me.lblStatus = New System.Windows.Forms.Label - Me.btnCancel = New System.Windows.Forms.Button - Me.SuspendLayout() - ' - 'Label1 - ' - Me.Label1.AutoSize = True - Me.Label1.Location = New System.Drawing.Point(11, 13) - Me.Label1.Name = "Label1" - Me.Label1.Size = New System.Drawing.Size(78, 13) - Me.Label1.TabIndex = 0 - Me.Label1.Text = "directory to zip:" - ' - 'Label2 - ' - Me.Label2.AutoSize = True - Me.Label2.Location = New System.Drawing.Point(11, 39) - Me.Label2.Name = "Label2" - Me.Label2.Size = New System.Drawing.Size(84, 13) - Me.Label2.TabIndex = 1 - Me.Label2.Text = "zip file to create:" - ' - 'tbDirToZip - ' - Me.tbDirToZip.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.tbDirToZip.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest - Me.tbDirToZip.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystemDirectories - Me.tbDirToZip.Location = New System.Drawing.Point(107, 9) - Me.tbDirToZip.Name = "tbDirToZip" - Me.tbDirToZip.Size = New System.Drawing.Size(327, 20) - Me.tbDirToZip.TabIndex = 2 - ' - 'tbZipToCreate - ' - Me.tbZipToCreate.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.tbZipToCreate.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest - Me.tbZipToCreate.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem - Me.tbZipToCreate.Location = New System.Drawing.Point(106, 35) - Me.tbZipToCreate.Name = "tbZipToCreate" - Me.tbZipToCreate.Size = New System.Drawing.Size(327, 20) - Me.tbZipToCreate.TabIndex = 6 - ' - 'btnDirBrowse - ' - Me.btnDirBrowse.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.btnDirBrowse.Location = New System.Drawing.Point(440, 10) - Me.btnDirBrowse.Name = "btnDirBrowse" - Me.btnDirBrowse.Size = New System.Drawing.Size(32, 19) - Me.btnDirBrowse.TabIndex = 4 - Me.btnDirBrowse.Text = "..." - Me.btnDirBrowse.UseVisualStyleBackColor = True - ' - 'btnZipUp - ' - Me.btnZipUp.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.btnZipUp.Location = New System.Drawing.Point(377, 72) - Me.btnZipUp.Name = "btnZipUp" - Me.btnZipUp.Size = New System.Drawing.Size(94, 23) - Me.btnZipUp.TabIndex = 0 - Me.btnZipUp.Text = "Zip It!" - Me.btnZipUp.UseVisualStyleBackColor = True - ' - 'ProgressBar1 - ' - Me.ProgressBar1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.ProgressBar1.Location = New System.Drawing.Point(12, 105) - Me.ProgressBar1.Name = "ProgressBar1" - Me.ProgressBar1.Size = New System.Drawing.Size(459, 13) - Me.ProgressBar1.TabIndex = 6 - ' - 'ProgressBar2 - ' - Me.ProgressBar2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.ProgressBar2.Location = New System.Drawing.Point(13, 124) - Me.ProgressBar2.Name = "ProgressBar2" - Me.ProgressBar2.Size = New System.Drawing.Size(459, 13) - Me.ProgressBar2.TabIndex = 7 - ' - 'lblStatus - ' - Me.lblStatus.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.lblStatus.AutoSize = True - Me.lblStatus.Location = New System.Drawing.Point(11, 148) - Me.lblStatus.Name = "lblStatus" - Me.lblStatus.Size = New System.Drawing.Size(16, 13) - Me.lblStatus.TabIndex = 8 - Me.lblStatus.Text = "..." - ' - 'btnCancel - ' - Me.btnCancel.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.btnCancel.Enabled = False - Me.btnCancel.Location = New System.Drawing.Point(277, 72) - Me.btnCancel.Name = "btnCancel" - Me.btnCancel.Size = New System.Drawing.Size(94, 23) - Me.btnCancel.TabIndex = 8 - Me.btnCancel.Text = "Cancel" - Me.btnCancel.UseVisualStyleBackColor = True - ' - 'Form1 - ' - Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) - Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font - Me.ClientSize = New System.Drawing.Size(484, 172) - Me.Controls.Add(Me.btnCancel) - Me.Controls.Add(Me.lblStatus) - Me.Controls.Add(Me.ProgressBar2) - Me.Controls.Add(Me.ProgressBar1) - Me.Controls.Add(Me.btnZipUp) - Me.Controls.Add(Me.btnDirBrowse) - Me.Controls.Add(Me.tbZipToCreate) - Me.Controls.Add(Me.tbDirToZip) - Me.Controls.Add(Me.Label2) - Me.Controls.Add(Me.Label1) - Me.MinimumSize = New System.Drawing.Size(500, 208) - Me.Name = "Form1" - Me.Text = "DotNetZip WinForms VB Zip Creator" - Me.ResumeLayout(False) - Me.PerformLayout() - - End Sub - Friend WithEvents Label1 As System.Windows.Forms.Label - Friend WithEvents Label2 As System.Windows.Forms.Label - Friend WithEvents tbDirToZip As System.Windows.Forms.TextBox - Friend WithEvents tbZipToCreate As System.Windows.Forms.TextBox - Friend WithEvents btnDirBrowse As System.Windows.Forms.Button - Friend WithEvents btnZipUp As System.Windows.Forms.Button - Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar - Friend WithEvents ProgressBar2 As System.Windows.Forms.ProgressBar - Friend WithEvents lblStatus As System.Windows.Forms.Label - Friend WithEvents btnCancel As System.Windows.Forms.Button - -End Class + _ +Partial Class Form1 + Inherits System.Windows.Forms.Form + + 'Form overrides dispose to clean up the component list. + _ + Protected Overrides Sub Dispose(ByVal disposing As Boolean) + Try + If disposing AndAlso components IsNot Nothing Then + components.Dispose() + End If + Finally + MyBase.Dispose(disposing) + End Try + End Sub + + 'Required by the Windows Form Designer + Private components As System.ComponentModel.IContainer + + 'NOTE: The following procedure is required by the Windows Form Designer + 'It can be modified using the Windows Form Designer. + 'Do not modify it using the code editor. + _ + Private Sub InitializeComponent() + Me.Label1 = New System.Windows.Forms.Label + Me.Label2 = New System.Windows.Forms.Label + Me.tbDirToZip = New System.Windows.Forms.TextBox + Me.tbZipToCreate = New System.Windows.Forms.TextBox + Me.btnDirBrowse = New System.Windows.Forms.Button + Me.btnZipUp = New System.Windows.Forms.Button + Me.ProgressBar1 = New System.Windows.Forms.ProgressBar + Me.ProgressBar2 = New System.Windows.Forms.ProgressBar + Me.lblStatus = New System.Windows.Forms.Label + Me.btnCancel = New System.Windows.Forms.Button + Me.SuspendLayout() + ' + 'Label1 + ' + Me.Label1.AutoSize = True + Me.Label1.Location = New System.Drawing.Point(11, 13) + Me.Label1.Name = "Label1" + Me.Label1.Size = New System.Drawing.Size(78, 13) + Me.Label1.TabIndex = 0 + Me.Label1.Text = "directory to zip:" + ' + 'Label2 + ' + Me.Label2.AutoSize = True + Me.Label2.Location = New System.Drawing.Point(11, 39) + Me.Label2.Name = "Label2" + Me.Label2.Size = New System.Drawing.Size(84, 13) + Me.Label2.TabIndex = 1 + Me.Label2.Text = "zip file to create:" + ' + 'tbDirToZip + ' + Me.tbDirToZip.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.tbDirToZip.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest + Me.tbDirToZip.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystemDirectories + Me.tbDirToZip.Location = New System.Drawing.Point(107, 9) + Me.tbDirToZip.Name = "tbDirToZip" + Me.tbDirToZip.Size = New System.Drawing.Size(327, 20) + Me.tbDirToZip.TabIndex = 2 + ' + 'tbZipToCreate + ' + Me.tbZipToCreate.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.tbZipToCreate.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest + Me.tbZipToCreate.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem + Me.tbZipToCreate.Location = New System.Drawing.Point(106, 35) + Me.tbZipToCreate.Name = "tbZipToCreate" + Me.tbZipToCreate.Size = New System.Drawing.Size(327, 20) + Me.tbZipToCreate.TabIndex = 6 + ' + 'btnDirBrowse + ' + Me.btnDirBrowse.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.btnDirBrowse.Location = New System.Drawing.Point(440, 10) + Me.btnDirBrowse.Name = "btnDirBrowse" + Me.btnDirBrowse.Size = New System.Drawing.Size(32, 19) + Me.btnDirBrowse.TabIndex = 4 + Me.btnDirBrowse.Text = "..." + Me.btnDirBrowse.UseVisualStyleBackColor = True + ' + 'btnZipUp + ' + Me.btnZipUp.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.btnZipUp.Location = New System.Drawing.Point(377, 72) + Me.btnZipUp.Name = "btnZipUp" + Me.btnZipUp.Size = New System.Drawing.Size(94, 23) + Me.btnZipUp.TabIndex = 0 + Me.btnZipUp.Text = "Zip It!" + Me.btnZipUp.UseVisualStyleBackColor = True + ' + 'ProgressBar1 + ' + Me.ProgressBar1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.ProgressBar1.Location = New System.Drawing.Point(12, 105) + Me.ProgressBar1.Name = "ProgressBar1" + Me.ProgressBar1.Size = New System.Drawing.Size(459, 13) + Me.ProgressBar1.TabIndex = 6 + ' + 'ProgressBar2 + ' + Me.ProgressBar2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.ProgressBar2.Location = New System.Drawing.Point(13, 124) + Me.ProgressBar2.Name = "ProgressBar2" + Me.ProgressBar2.Size = New System.Drawing.Size(459, 13) + Me.ProgressBar2.TabIndex = 7 + ' + 'lblStatus + ' + Me.lblStatus.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.lblStatus.AutoSize = True + Me.lblStatus.Location = New System.Drawing.Point(11, 148) + Me.lblStatus.Name = "lblStatus" + Me.lblStatus.Size = New System.Drawing.Size(16, 13) + Me.lblStatus.TabIndex = 8 + Me.lblStatus.Text = "..." + ' + 'btnCancel + ' + Me.btnCancel.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.btnCancel.Enabled = False + Me.btnCancel.Location = New System.Drawing.Point(277, 72) + Me.btnCancel.Name = "btnCancel" + Me.btnCancel.Size = New System.Drawing.Size(94, 23) + Me.btnCancel.TabIndex = 8 + Me.btnCancel.Text = "Cancel" + Me.btnCancel.UseVisualStyleBackColor = True + ' + 'Form1 + ' + Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) + Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font + Me.ClientSize = New System.Drawing.Size(484, 172) + Me.Controls.Add(Me.btnCancel) + Me.Controls.Add(Me.lblStatus) + Me.Controls.Add(Me.ProgressBar2) + Me.Controls.Add(Me.ProgressBar1) + Me.Controls.Add(Me.btnZipUp) + Me.Controls.Add(Me.btnDirBrowse) + Me.Controls.Add(Me.tbZipToCreate) + Me.Controls.Add(Me.tbDirToZip) + Me.Controls.Add(Me.Label2) + Me.Controls.Add(Me.Label1) + Me.MinimumSize = New System.Drawing.Size(500, 208) + Me.Name = "Form1" + Me.Text = "DotNetZip WinForms VB Zip Creator" + Me.ResumeLayout(False) + Me.PerformLayout() + + End Sub + Friend WithEvents Label1 As System.Windows.Forms.Label + Friend WithEvents Label2 As System.Windows.Forms.Label + Friend WithEvents tbDirToZip As System.Windows.Forms.TextBox + Friend WithEvents tbZipToCreate As System.Windows.Forms.TextBox + Friend WithEvents btnDirBrowse As System.Windows.Forms.Button + Friend WithEvents btnZipUp As System.Windows.Forms.Button + Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar + Friend WithEvents ProgressBar2 As System.Windows.Forms.ProgressBar + Friend WithEvents lblStatus As System.Windows.Forms.Label + Friend WithEvents btnCancel As System.Windows.Forms.Button + +End Class diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.resx b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.resx similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.resx rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.resx index ff31a6d..19dc0dd 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.resx +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.resx @@ -1,120 +1,120 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.vb b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.vb similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.vb rename to old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.vb index 020f141..b9faafe 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.vb +++ b/old/src/Examples/VB/WinForms-DotNetZip/WinForms-ZipUp/ZipUp-Form1.vb @@ -1,265 +1,265 @@ -Imports System.IO -Imports Ionic.Zip -Imports System.Threading -Imports System.ComponentModel - -Public Class Form1 - - Private _backgroundWorker1 As System.ComponentModel.BackgroundWorker - Private _saveCanceled As Boolean - Private _totalBytesAfterCompress As Long - Private _totalBytesBeforeCompress As Long - Private _nFilesCompleted As Integer - Private _progress2MaxFactor As Integer - Private _entriesToZip As Integer - Private _appCuKey As Microsoft.Win32.RegistryKey - Private AppRegyPath As String = "Software\Ionic\VBzipUp" - Private rvn_ZipFile As String = "zipfile" - Private rvn_DirToZip As String = "dirToZip" - - ' Delegates for invocation of UI from other threads - Private Delegate Sub SaveEntryProgress(ByVal e As SaveProgressEventArgs) - Private Delegate Sub ButtonClick(ByVal sender As Object, ByVal e As EventArgs) - - Private Sub btnDirBrowse_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnDirBrowse.Click - Dim folderName As String = Me.tbDirToZip.Text - Dim dlg1 As New FolderBrowserDialog - - dlg1.SelectedPath = IIf(Directory.Exists(folderName), folderName, "c:\") - dlg1.ShowNewFolderButton = False - If (dlg1.ShowDialog = DialogResult.OK) Then - 'Me._folderName = dlg1.get_SelectedPath - Me.tbDirToZip.Text = folderName - End If - End Sub - - - Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnZipUp.Click - Me.KickoffZipup() - End Sub - - - Private Sub KickoffZipup() - Dim folderName As String = Me.tbDirToZip.Text - If (((Not folderName Is Nothing) AndAlso (folderName <> "")) AndAlso ((Not Me.tbZipToCreate.Text Is Nothing) AndAlso (Me.tbZipToCreate.Text <> ""))) Then - If File.Exists(Me.tbZipToCreate.Text) Then - If (MessageBox.Show(String.Format("The file you have specified ({0}) already exists. Do you want to overwrite this file?", _ - Me.tbZipToCreate.Text), "Confirmation is Required", _ - MessageBoxButtons.YesNo, MessageBoxIcon.Question) <> DialogResult.Yes) Then - Return - End If - File.Delete(Me.tbZipToCreate.Text) - End If - Me._saveCanceled = False - Me._nFilesCompleted = 0 - Me._totalBytesAfterCompress = 0 - Me._totalBytesBeforeCompress = 0 - Me.btnZipUp.Enabled = False - Me.btnZipUp.Text = "Zipping..." - Me.btnCancel.Enabled = True - Me.lblStatus.Text = "Zipping..." - Dim options As New WorkerOptions - options.ZipName = Me.tbZipToCreate.Text - options.Folder = folderName - - _backgroundWorker1 = New System.ComponentModel.BackgroundWorker() - _backgroundWorker1.WorkerSupportsCancellation = False - _backgroundWorker1.WorkerReportsProgress = False - AddHandler Me._backgroundWorker1.DoWork, New DoWorkEventHandler(AddressOf Me.DoSave) - _backgroundWorker1.RunWorkerAsync(options) - - End If - End Sub - - - Private Sub DoSave(ByVal sender As Object, ByVal e As DoWorkEventArgs) - Dim options As WorkerOptions = e.Argument - Try - Using zip1 As ZipFile = New ZipFile - zip1.AddDirectory(options.Folder) - Me._entriesToZip = zip1.EntryFileNames.Count - Me.SetProgressBars() - AddHandler zip1.SaveProgress, New EventHandler(Of SaveProgressEventArgs)(AddressOf Me.zip1_SaveProgress) - zip1.Save(options.ZipName) - End Using - Catch exc1 As Exception - MessageBox.Show(String.Format("Exception while zipping: {0}", exc1.Message)) - Me.btnCancel_Click(Nothing, Nothing) - End Try - End Sub - - - Private Sub zip1_SaveProgress(ByVal sender As Object, ByVal e As SaveProgressEventArgs) - If Me._saveCanceled Then - e.Cancel = True - Return - End If - - Select Case e.EventType - Case ZipProgressEventType.Saving_AfterWriteEntry - Me.StepArchiveProgress(e) - Exit Select - Case ZipProgressEventType.Saving_Completed - Me.SaveCompleted() - Exit Select - Case ZipProgressEventType.Saving_EntryBytesRead - Me.StepEntryProgress(e) - Exit Select - End Select - End Sub - - - - Private Sub StepArchiveProgress(ByVal e As SaveProgressEventArgs) - If Me.progressBar1.InvokeRequired Then - Me.progressBar1.Invoke(New SaveEntryProgress(AddressOf Me.StepArchiveProgress), New Object() {e}) - ElseIf Not Me._saveCanceled Then - Me._nFilesCompleted += 1 - Me.progressBar1.PerformStep() - Me._totalBytesAfterCompress = (Me._totalBytesAfterCompress + e.CurrentEntry.CompressedSize) - Me._totalBytesBeforeCompress = (Me._totalBytesBeforeCompress + e.CurrentEntry.UncompressedSize) - ' progressBar2 is the one dealing with the item being added to the archive - ' if we got this event, then the add of that item (or file) is complete, so we - ' update the progressBar2 appropriately. - Me.progressBar2.Value = Me.progressBar2.Maximum = 1 - MyBase.Update() - End If - End Sub - - - Private Sub SaveCompleted() - If Me.lblStatus.InvokeRequired Then - Me.lblStatus.Invoke(New MethodInvoker(AddressOf SaveCompleted)) - 'Me.lblStatus.Invoke(New MethodInvoker(Me, DirectCast(Me.SaveCompleted, IntPtr))) - Else - Me.lblStatus.Text = String.Format("Done, Compressed {0} files, {1:N0}% of original", Me._nFilesCompleted, ((100 * Me._totalBytesAfterCompress) / CDbl(Me._totalBytesBeforeCompress))) - Me.ResetState() - End If - End Sub - - - Private Sub StepEntryProgress(ByVal e As SaveProgressEventArgs) - If Me.progressBar2.InvokeRequired Then - Me.progressBar2.Invoke(New SaveEntryProgress(AddressOf Me.StepEntryProgress), New Object() {e}) - ElseIf Not Me._saveCanceled Then - If (Me.progressBar2.Maximum = 1) Then - Dim entryMax As Long = e.TotalBytesToTransfer - Dim absoluteMax As Long = &H7FFFFFFF - Me._progress2MaxFactor = 0 - Do While (entryMax > absoluteMax) - entryMax = (entryMax / 2) - Me._progress2MaxFactor += 1 - Loop - If (CInt(entryMax) < 0) Then - entryMax = (entryMax * -1) - End If - Me.progressBar2.Maximum = CInt(entryMax) - Me.lblStatus.Text = String.Format("{0} of {1} files...({2})", (Me._nFilesCompleted + 1), Me._entriesToZip, e.CurrentEntry.FileName) - End If - Dim xferred As Integer = CInt((e.BytesTransferred >> Me._progress2MaxFactor)) - Me.progressBar2.Value = IIf((xferred >= Me.progressBar2.Maximum), Me.progressBar2.Maximum, xferred) - MyBase.Update() - End If - End Sub - - - Private Sub ResetState() - Me.btnCancel.Enabled = False - Me.btnZipUp.Enabled = True - Me.btnZipUp.Text = "Zip it!" - Me.progressBar1.Value = 0 - Me.progressBar2.Value = 0 - Me.Cursor = Cursors.Default - End Sub - - - - Private Sub SetProgressBars() - If Me.ProgressBar1.InvokeRequired Then - 'Me.ProgressBar1.Invoke(New MethodInvoker(Me, DirectCast(Me.SetProgressBars, IntPtr))) - Me.ProgressBar1.Invoke(New MethodInvoker(AddressOf SetProgressBars)) - Else - Me.ProgressBar1.Value = 0 - Me.ProgressBar1.Maximum = Me._entriesToZip - Me.ProgressBar1.Minimum = 0 - Me.ProgressBar1.Step = 1 - Me.ProgressBar2.Value = 0 - Me.ProgressBar2.Minimum = 0 - Me.ProgressBar2.Maximum = 1 - Me.ProgressBar2.Step = 2 - End If - End Sub - - - Private Sub btnCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCancel.Click - If Me.lblStatus.InvokeRequired Then - Me.lblStatus.Invoke(New ButtonClick(AddressOf Me.btnCancel_Click), New Object() {sender, e}) - Else - Me._saveCanceled = True - Me.lblStatus.Text = "Canceled..." - Me.ResetState() - End If - End Sub - - - Private Sub SaveFormToRegistry() - If AppCuKey IsNot Nothing Then - If Not String.IsNullOrEmpty(tbZipToCreate.Text) Then - AppCuKey.SetValue(rvn_ZipFile, Me.tbZipToCreate.Text) - End If - If Not String.IsNullOrEmpty(tbDirToZip.Text) Then - AppCuKey.SetValue(rvn_DirToZip, tbDirToZip.Text) - End If - End If - End Sub - - Private Sub LoadFormFromRegistry() - If AppCuKey IsNot Nothing Then - Dim s As String - s = AppCuKey.GetValue(rvn_ZipFile) - If Not String.IsNullOrEmpty(s) Then - Me.tbZipToCreate.Text = s - End If - s = AppCuKey.GetValue(rvn_DirToZip) - If Not String.IsNullOrEmpty(s) Then - tbDirToZip.Text = s - End If - End If - End Sub - - - Public ReadOnly Property AppCuKey() As Microsoft.Win32.RegistryKey - Get - If (_appCuKey Is Nothing) Then - Me._appCuKey = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(AppRegyPath, True) - If (Me._appCuKey Is Nothing) Then - Me._appCuKey = Microsoft.Win32.Registry.CurrentUser.CreateSubKey(AppRegyPath) - End If - End If - Return _appCuKey - End Get - End Property - - Private Sub Form1_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing - SaveFormToRegistry() - End Sub - - Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load - LoadFormFromRegistry() - End Sub -End Class - -Public Class WorkerOptions - ' Fields - 'Public Comment As String - 'Public CompressionLevel As CompressionLevel - 'Public Encoding As String - 'Public Encryption As EncryptionAlgorithm - Public Folder As String - 'Public Password As String - 'Public Zip64 As Zip64Option - 'Public ZipFlavor As Integer - Public ZipName As String -End Class - - +Imports System.IO +Imports Ionic.Zip +Imports System.Threading +Imports System.ComponentModel + +Public Class Form1 + + Private _backgroundWorker1 As System.ComponentModel.BackgroundWorker + Private _saveCanceled As Boolean + Private _totalBytesAfterCompress As Long + Private _totalBytesBeforeCompress As Long + Private _nFilesCompleted As Integer + Private _progress2MaxFactor As Integer + Private _entriesToZip As Integer + Private _appCuKey As Microsoft.Win32.RegistryKey + Private AppRegyPath As String = "Software\Ionic\VBzipUp" + Private rvn_ZipFile As String = "zipfile" + Private rvn_DirToZip As String = "dirToZip" + + ' Delegates for invocation of UI from other threads + Private Delegate Sub SaveEntryProgress(ByVal e As SaveProgressEventArgs) + Private Delegate Sub ButtonClick(ByVal sender As Object, ByVal e As EventArgs) + + Private Sub btnDirBrowse_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnDirBrowse.Click + Dim folderName As String = Me.tbDirToZip.Text + Dim dlg1 As New FolderBrowserDialog + + dlg1.SelectedPath = IIf(Directory.Exists(folderName), folderName, "c:\") + dlg1.ShowNewFolderButton = False + If (dlg1.ShowDialog = DialogResult.OK) Then + 'Me._folderName = dlg1.get_SelectedPath + Me.tbDirToZip.Text = folderName + End If + End Sub + + + Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnZipUp.Click + Me.KickoffZipup() + End Sub + + + Private Sub KickoffZipup() + Dim folderName As String = Me.tbDirToZip.Text + If (((Not folderName Is Nothing) AndAlso (folderName <> "")) AndAlso ((Not Me.tbZipToCreate.Text Is Nothing) AndAlso (Me.tbZipToCreate.Text <> ""))) Then + If File.Exists(Me.tbZipToCreate.Text) Then + If (MessageBox.Show(String.Format("The file you have specified ({0}) already exists. Do you want to overwrite this file?", _ + Me.tbZipToCreate.Text), "Confirmation is Required", _ + MessageBoxButtons.YesNo, MessageBoxIcon.Question) <> DialogResult.Yes) Then + Return + End If + File.Delete(Me.tbZipToCreate.Text) + End If + Me._saveCanceled = False + Me._nFilesCompleted = 0 + Me._totalBytesAfterCompress = 0 + Me._totalBytesBeforeCompress = 0 + Me.btnZipUp.Enabled = False + Me.btnZipUp.Text = "Zipping..." + Me.btnCancel.Enabled = True + Me.lblStatus.Text = "Zipping..." + Dim options As New WorkerOptions + options.ZipName = Me.tbZipToCreate.Text + options.Folder = folderName + + _backgroundWorker1 = New System.ComponentModel.BackgroundWorker() + _backgroundWorker1.WorkerSupportsCancellation = False + _backgroundWorker1.WorkerReportsProgress = False + AddHandler Me._backgroundWorker1.DoWork, New DoWorkEventHandler(AddressOf Me.DoSave) + _backgroundWorker1.RunWorkerAsync(options) + + End If + End Sub + + + Private Sub DoSave(ByVal sender As Object, ByVal e As DoWorkEventArgs) + Dim options As WorkerOptions = e.Argument + Try + Using zip1 As ZipFile = New ZipFile + zip1.AddDirectory(options.Folder) + Me._entriesToZip = zip1.EntryFileNames.Count + Me.SetProgressBars() + AddHandler zip1.SaveProgress, New EventHandler(Of SaveProgressEventArgs)(AddressOf Me.zip1_SaveProgress) + zip1.Save(options.ZipName) + End Using + Catch exc1 As Exception + MessageBox.Show(String.Format("Exception while zipping: {0}", exc1.Message)) + Me.btnCancel_Click(Nothing, Nothing) + End Try + End Sub + + + Private Sub zip1_SaveProgress(ByVal sender As Object, ByVal e As SaveProgressEventArgs) + If Me._saveCanceled Then + e.Cancel = True + Return + End If + + Select Case e.EventType + Case ZipProgressEventType.Saving_AfterWriteEntry + Me.StepArchiveProgress(e) + Exit Select + Case ZipProgressEventType.Saving_Completed + Me.SaveCompleted() + Exit Select + Case ZipProgressEventType.Saving_EntryBytesRead + Me.StepEntryProgress(e) + Exit Select + End Select + End Sub + + + + Private Sub StepArchiveProgress(ByVal e As SaveProgressEventArgs) + If Me.progressBar1.InvokeRequired Then + Me.progressBar1.Invoke(New SaveEntryProgress(AddressOf Me.StepArchiveProgress), New Object() {e}) + ElseIf Not Me._saveCanceled Then + Me._nFilesCompleted += 1 + Me.progressBar1.PerformStep() + Me._totalBytesAfterCompress = (Me._totalBytesAfterCompress + e.CurrentEntry.CompressedSize) + Me._totalBytesBeforeCompress = (Me._totalBytesBeforeCompress + e.CurrentEntry.UncompressedSize) + ' progressBar2 is the one dealing with the item being added to the archive + ' if we got this event, then the add of that item (or file) is complete, so we + ' update the progressBar2 appropriately. + Me.progressBar2.Value = Me.progressBar2.Maximum = 1 + MyBase.Update() + End If + End Sub + + + Private Sub SaveCompleted() + If Me.lblStatus.InvokeRequired Then + Me.lblStatus.Invoke(New MethodInvoker(AddressOf SaveCompleted)) + 'Me.lblStatus.Invoke(New MethodInvoker(Me, DirectCast(Me.SaveCompleted, IntPtr))) + Else + Me.lblStatus.Text = String.Format("Done, Compressed {0} files, {1:N0}% of original", Me._nFilesCompleted, ((100 * Me._totalBytesAfterCompress) / CDbl(Me._totalBytesBeforeCompress))) + Me.ResetState() + End If + End Sub + + + Private Sub StepEntryProgress(ByVal e As SaveProgressEventArgs) + If Me.progressBar2.InvokeRequired Then + Me.progressBar2.Invoke(New SaveEntryProgress(AddressOf Me.StepEntryProgress), New Object() {e}) + ElseIf Not Me._saveCanceled Then + If (Me.progressBar2.Maximum = 1) Then + Dim entryMax As Long = e.TotalBytesToTransfer + Dim absoluteMax As Long = &H7FFFFFFF + Me._progress2MaxFactor = 0 + Do While (entryMax > absoluteMax) + entryMax = (entryMax / 2) + Me._progress2MaxFactor += 1 + Loop + If (CInt(entryMax) < 0) Then + entryMax = (entryMax * -1) + End If + Me.progressBar2.Maximum = CInt(entryMax) + Me.lblStatus.Text = String.Format("{0} of {1} files...({2})", (Me._nFilesCompleted + 1), Me._entriesToZip, e.CurrentEntry.FileName) + End If + Dim xferred As Integer = CInt((e.BytesTransferred >> Me._progress2MaxFactor)) + Me.progressBar2.Value = IIf((xferred >= Me.progressBar2.Maximum), Me.progressBar2.Maximum, xferred) + MyBase.Update() + End If + End Sub + + + Private Sub ResetState() + Me.btnCancel.Enabled = False + Me.btnZipUp.Enabled = True + Me.btnZipUp.Text = "Zip it!" + Me.progressBar1.Value = 0 + Me.progressBar2.Value = 0 + Me.Cursor = Cursors.Default + End Sub + + + + Private Sub SetProgressBars() + If Me.ProgressBar1.InvokeRequired Then + 'Me.ProgressBar1.Invoke(New MethodInvoker(Me, DirectCast(Me.SetProgressBars, IntPtr))) + Me.ProgressBar1.Invoke(New MethodInvoker(AddressOf SetProgressBars)) + Else + Me.ProgressBar1.Value = 0 + Me.ProgressBar1.Maximum = Me._entriesToZip + Me.ProgressBar1.Minimum = 0 + Me.ProgressBar1.Step = 1 + Me.ProgressBar2.Value = 0 + Me.ProgressBar2.Minimum = 0 + Me.ProgressBar2.Maximum = 1 + Me.ProgressBar2.Step = 2 + End If + End Sub + + + Private Sub btnCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCancel.Click + If Me.lblStatus.InvokeRequired Then + Me.lblStatus.Invoke(New ButtonClick(AddressOf Me.btnCancel_Click), New Object() {sender, e}) + Else + Me._saveCanceled = True + Me.lblStatus.Text = "Canceled..." + Me.ResetState() + End If + End Sub + + + Private Sub SaveFormToRegistry() + If AppCuKey IsNot Nothing Then + If Not String.IsNullOrEmpty(tbZipToCreate.Text) Then + AppCuKey.SetValue(rvn_ZipFile, Me.tbZipToCreate.Text) + End If + If Not String.IsNullOrEmpty(tbDirToZip.Text) Then + AppCuKey.SetValue(rvn_DirToZip, tbDirToZip.Text) + End If + End If + End Sub + + Private Sub LoadFormFromRegistry() + If AppCuKey IsNot Nothing Then + Dim s As String + s = AppCuKey.GetValue(rvn_ZipFile) + If Not String.IsNullOrEmpty(s) Then + Me.tbZipToCreate.Text = s + End If + s = AppCuKey.GetValue(rvn_DirToZip) + If Not String.IsNullOrEmpty(s) Then + tbDirToZip.Text = s + End If + End If + End Sub + + + Public ReadOnly Property AppCuKey() As Microsoft.Win32.RegistryKey + Get + If (_appCuKey Is Nothing) Then + Me._appCuKey = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(AppRegyPath, True) + If (Me._appCuKey Is Nothing) Then + Me._appCuKey = Microsoft.Win32.Registry.CurrentUser.CreateSubKey(AppRegyPath) + End If + End If + Return _appCuKey + End Get + End Property + + Private Sub Form1_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing + SaveFormToRegistry() + End Sub + + Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load + LoadFormFromRegistry() + End Sub +End Class + +Public Class WorkerOptions + ' Fields + 'Public Comment As String + 'Public CompressionLevel As CompressionLevel + 'Public Encoding As String + 'Public Encryption As EncryptionAlgorithm + Public Folder As String + 'Public Password As String + 'Public Zip64 As Zip64Option + 'Public ZipFlavor As Integer + Public ZipName As String +End Class + + diff --git a/src/Examples/VB/WinForms-TreeViewZip/ReadMe.txt b/old/src/Examples/VB/WinForms-TreeViewZip/ReadMe.txt similarity index 96% rename from src/Examples/VB/WinForms-TreeViewZip/ReadMe.txt rename to old/src/Examples/VB/WinForms-TreeViewZip/ReadMe.txt index 74ccdf4..ef61d45 100644 --- a/src/Examples/VB/WinForms-TreeViewZip/ReadMe.txt +++ b/old/src/Examples/VB/WinForms-TreeViewZip/ReadMe.txt @@ -1,6 +1,6 @@ -Tue, 27 Oct 2009 00:46 - -This application shows how to open and read a zip file, and display the -contents in a Windows Forms TreeView. - -The app is written in VB. +Tue, 27 Oct 2009 00:46 + +This application shows how to open and read a zip file, and display the +contents in a Windows Forms TreeView. + +The app is written in VB. diff --git a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip.sln b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip.sln similarity index 97% rename from src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip.sln rename to old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip.sln index 0006c4d..48f588e 100644 --- a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip.sln +++ b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip.sln @@ -1,20 +1,20 @@ - -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WinForms-TreeViewZip", "WinForms-TreeViewZip\WinForms-TreeViewZip.vbproj", "{2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WinForms-TreeViewZip", "WinForms-TreeViewZip\WinForms-TreeViewZip.vbproj", "{2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.Designer.vb b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.Designer.vb similarity index 97% rename from src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.Designer.vb rename to old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.Designer.vb index 3a95dba..8c87bde 100644 --- a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.Designer.vb +++ b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.Designer.vb @@ -1,93 +1,93 @@ - _ -Partial Class Form1 - Inherits System.Windows.Forms.Form - - 'Form overrides dispose to clean up the component list. - _ - Protected Overrides Sub Dispose(ByVal disposing As Boolean) - Try - If disposing AndAlso components IsNot Nothing Then - components.Dispose() - End If - Finally - MyBase.Dispose(disposing) - End Try - End Sub - - 'Required by the Windows Form Designer - Private components As System.ComponentModel.IContainer - - 'NOTE: The following procedure is required by the Windows Form Designer - 'It can be modified using the Windows Form Designer. - 'Do not modify it using the code editor. - _ - Private Sub InitializeComponent() - Me.TreeView1 = New System.Windows.Forms.TreeView - Me.tbZipToOpen = New System.Windows.Forms.TextBox - Me.Button1 = New System.Windows.Forms.Button - Me.Button2 = New System.Windows.Forms.Button - Me.SuspendLayout() - ' - 'TreeView1 - ' - Me.TreeView1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ - Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.TreeView1.Location = New System.Drawing.Point(12, 43) - Me.TreeView1.Name = "TreeView1" - Me.TreeView1.Size = New System.Drawing.Size(280, 232) - Me.TreeView1.TabIndex = 0 - ' - 'tbZipToOpen - ' - Me.tbZipToOpen.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.tbZipToOpen.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest - Me.tbZipToOpen.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem - Me.tbZipToOpen.Location = New System.Drawing.Point(12, 17) - Me.tbZipToOpen.Name = "tbZipToOpen" - Me.tbZipToOpen.Size = New System.Drawing.Size(204, 20) - Me.tbZipToOpen.TabIndex = 1 - ' - 'Button1 - ' - Me.Button1.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.Button1.Location = New System.Drawing.Point(251, 16) - Me.Button1.Name = "Button1" - Me.Button1.Size = New System.Drawing.Size(41, 20) - Me.Button1.TabIndex = 2 - Me.Button1.Text = "Open" - Me.Button1.UseVisualStyleBackColor = True - ' - 'Button2 - ' - Me.Button2.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) - Me.Button2.Location = New System.Drawing.Point(222, 18) - Me.Button2.Name = "Button2" - Me.Button2.Size = New System.Drawing.Size(23, 19) - Me.Button2.TabIndex = 3 - Me.Button2.Text = "..." - Me.Button2.UseVisualStyleBackColor = True - ' - 'Form1 - ' - Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) - Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font - Me.ClientSize = New System.Drawing.Size(304, 287) - Me.Controls.Add(Me.Button2) - Me.Controls.Add(Me.Button1) - Me.Controls.Add(Me.tbZipToOpen) - Me.Controls.Add(Me.TreeView1) - Me.MinimumSize = New System.Drawing.Size(320, 320) - Me.Name = "Form1" - Me.Text = "WinForms TreeView of ZipFile (DotNetZip)" - Me.ResumeLayout(False) - Me.PerformLayout() - - End Sub - Friend WithEvents TreeView1 As System.Windows.Forms.TreeView - Friend WithEvents tbZipToOpen As System.Windows.Forms.TextBox - Friend WithEvents Button1 As System.Windows.Forms.Button - Friend WithEvents Button2 As System.Windows.Forms.Button - -End Class + _ +Partial Class Form1 + Inherits System.Windows.Forms.Form + + 'Form overrides dispose to clean up the component list. + _ + Protected Overrides Sub Dispose(ByVal disposing As Boolean) + Try + If disposing AndAlso components IsNot Nothing Then + components.Dispose() + End If + Finally + MyBase.Dispose(disposing) + End Try + End Sub + + 'Required by the Windows Form Designer + Private components As System.ComponentModel.IContainer + + 'NOTE: The following procedure is required by the Windows Form Designer + 'It can be modified using the Windows Form Designer. + 'Do not modify it using the code editor. + _ + Private Sub InitializeComponent() + Me.TreeView1 = New System.Windows.Forms.TreeView + Me.tbZipToOpen = New System.Windows.Forms.TextBox + Me.Button1 = New System.Windows.Forms.Button + Me.Button2 = New System.Windows.Forms.Button + Me.SuspendLayout() + ' + 'TreeView1 + ' + Me.TreeView1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ + Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.TreeView1.Location = New System.Drawing.Point(12, 43) + Me.TreeView1.Name = "TreeView1" + Me.TreeView1.Size = New System.Drawing.Size(280, 232) + Me.TreeView1.TabIndex = 0 + ' + 'tbZipToOpen + ' + Me.tbZipToOpen.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.tbZipToOpen.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest + Me.tbZipToOpen.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem + Me.tbZipToOpen.Location = New System.Drawing.Point(12, 17) + Me.tbZipToOpen.Name = "tbZipToOpen" + Me.tbZipToOpen.Size = New System.Drawing.Size(204, 20) + Me.tbZipToOpen.TabIndex = 1 + ' + 'Button1 + ' + Me.Button1.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.Button1.Location = New System.Drawing.Point(251, 16) + Me.Button1.Name = "Button1" + Me.Button1.Size = New System.Drawing.Size(41, 20) + Me.Button1.TabIndex = 2 + Me.Button1.Text = "Open" + Me.Button1.UseVisualStyleBackColor = True + ' + 'Button2 + ' + Me.Button2.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Me.Button2.Location = New System.Drawing.Point(222, 18) + Me.Button2.Name = "Button2" + Me.Button2.Size = New System.Drawing.Size(23, 19) + Me.Button2.TabIndex = 3 + Me.Button2.Text = "..." + Me.Button2.UseVisualStyleBackColor = True + ' + 'Form1 + ' + Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) + Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font + Me.ClientSize = New System.Drawing.Size(304, 287) + Me.Controls.Add(Me.Button2) + Me.Controls.Add(Me.Button1) + Me.Controls.Add(Me.tbZipToOpen) + Me.Controls.Add(Me.TreeView1) + Me.MinimumSize = New System.Drawing.Size(320, 320) + Me.Name = "Form1" + Me.Text = "WinForms TreeView of ZipFile (DotNetZip)" + Me.ResumeLayout(False) + Me.PerformLayout() + + End Sub + Friend WithEvents TreeView1 As System.Windows.Forms.TreeView + Friend WithEvents tbZipToOpen As System.Windows.Forms.TextBox + Friend WithEvents Button1 As System.Windows.Forms.Button + Friend WithEvents Button2 As System.Windows.Forms.Button + +End Class diff --git a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.resx b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.resx similarity index 97% rename from src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.resx rename to old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.resx index ff31a6d..19dc0dd 100644 --- a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.resx +++ b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.resx @@ -1,120 +1,120 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.vb b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.vb similarity index 97% rename from src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.vb rename to old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.vb index b21294f..08b218e 100644 --- a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.vb +++ b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/Form1.vb @@ -1,174 +1,174 @@ -Imports Ionic.Zip -Imports System.Linq -Imports System.IO - -Public Class Form1 - - Private _appCuKey As Microsoft.Win32.RegistryKey - Private AppRegyPath As String = "Software\Ionic\VBzipTreeView" - Private rvn_ZipFile As String = "zipfile" - - Private Sub Button1_Click(ByVal sender As System.Object, _ - ByVal e As System.EventArgs) Handles Button1.Click - PopulateTreeView() - End Sub - - Private zip As ZipFile - - ''' - ''' Populates TreeView1 with the entries in the zipfile, named by TextBox1 - ''' - Private Sub PopulateTreeView() - Try - zip = ZipFile.Read(Me.tbZipToOpen.Text) - - Me.TreeView1.Nodes.Clear() - For Each e As ZipEntry In zip - AddTreeNode(e.FileName) - Next - - Catch ex As Exception - '' eg, file does not exist, or access denied, etc - MessageBox.Show("Exception: " + ex.ToString(), _ - "Exception during zip processing", _ - MessageBoxButtons.OK, _ - MessageBoxIcon.Exclamation) - - Finally - If Not (zip Is Nothing) Then - zip.Dispose() - End If - - End Try - End Sub - - ''' - ''' Add a node to the Treeview, for the given ZipEntry name - ''' - ''' name of the ZipEntry - ''' the TreeNode added - ''' - ''' - ''' Entries in a zip file exist in a "flat container space": there is a single container, - ''' the zip file itself, that contains all entries. Even though each entry has a filename - ''' attached to it, and that filename may include a hierarchial directory path, the entry is - ''' always contained in the zipfile itself. Even though it is possible to include directory - ''' entries in a zip file, those directory entries are not, themselves, containers - they do - ''' not contain other zip entries. - ''' - ''' - ''' This method overlays the zipentry, which exists only in a flat namespace, into a hierarchial - ''' tree, creating that tree from the pathname on the entry. If the entry name is /a/b/c.txt, - ''' then this method adds 3 nodes to the TreeView, one for each segment in the path. - ''' - ''' - ''' The method is smart enough to find existing nodes matching subsegements of the path - ''' for an entry. - ''' - ''' - Private Function AddTreeNode(ByVal name As String) As TreeNode - If (name.EndsWith("/")) Then - name = name.Substring(0, name.Length - 1) - End If - Dim node As TreeNode = FindNodeForTag(name, Me.TreeView1.Nodes) - If Not (node Is Nothing) Then - Return node - End If - Dim pnodeCollection As TreeNodeCollection - Dim parent As String = Path.GetDirectoryName(name) - If (parent = "") Then - pnodeCollection = Me.TreeView1.Nodes - Else - pnodeCollection = AddTreeNode(parent.Replace("\", "/")).Nodes - End If - node = New TreeNode - node.Text = Path.GetFileName(name) - node.Tag = name ' full path - pnodeCollection.Add(node) - Return node - End Function - - ''' - ''' Returns the TreeNode for a given name - ''' - ''' name of the ZipEntry - ''' The TreeNodeCollection to search - ''' the matching TreeNode, or nothing if none exists - ''' - ''' This method is used by AddTreeNode() to find existing nodes. - ''' - Private Function FindNodeForTag(ByVal name As String, ByRef nodes As TreeNodeCollection) As TreeNode - For Each node As TreeNode In nodes - If (name = node.Tag) Then - Return node - ElseIf (name.StartsWith(node.Tag + "/")) Then - Return FindNodeForTag(name, node.Nodes) - End If - Next - Return Nothing - End Function - - Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click - Dim openFileDialog1 As OpenFileDialog = New OpenFileDialog - - openFileDialog1.InitialDirectory = Me.tbZipToOpen.Text - openFileDialog1.Filter = "zip files|*.zip|EXE files|*.exe|All Files|*.*" - openFileDialog1.FilterIndex = 1 - openFileDialog1.RestoreDirectory = True - - If (openFileDialog1.ShowDialog() = DialogResult.OK) Then - Me.tbZipToOpen.Text = openFileDialog1.FileName - If (System.IO.File.Exists(Me.tbZipToOpen.Text)) Then - Button1_Click(sender, e) - End If - End If - - End Sub - - Private Sub TreeView1_DoubleClick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TreeView1.DoubleClick - If (e Is Nothing) Then - '' - End If - End Sub - - - Private Sub SaveFormToRegistry() - If AppCuKey IsNot Nothing Then - If Not String.IsNullOrEmpty(Me.tbZipToOpen.Text) Then - AppCuKey.SetValue(rvn_ZipFile, Me.tbZipToOpen.Text) - End If - End If - End Sub - - Private Sub LoadFormFromRegistry() - If AppCuKey IsNot Nothing Then - Dim s As String - s = AppCuKey.GetValue(rvn_ZipFile) - If Not String.IsNullOrEmpty(s) Then - Me.tbZipToOpen.Text = s - End If - End If - End Sub - - - Public ReadOnly Property AppCuKey() As Microsoft.Win32.RegistryKey - Get - If (_appCuKey Is Nothing) Then - Me._appCuKey = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(AppRegyPath, True) - If (Me._appCuKey Is Nothing) Then - Me._appCuKey = Microsoft.Win32.Registry.CurrentUser.CreateSubKey(AppRegyPath) - End If - End If - Return _appCuKey - End Get - End Property - - Private Sub Form1_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing - SaveFormToRegistry() - End Sub - - Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load - LoadFormFromRegistry() - End Sub - -End Class +Imports Ionic.Zip +Imports System.Linq +Imports System.IO + +Public Class Form1 + + Private _appCuKey As Microsoft.Win32.RegistryKey + Private AppRegyPath As String = "Software\Ionic\VBzipTreeView" + Private rvn_ZipFile As String = "zipfile" + + Private Sub Button1_Click(ByVal sender As System.Object, _ + ByVal e As System.EventArgs) Handles Button1.Click + PopulateTreeView() + End Sub + + Private zip As ZipFile + + ''' + ''' Populates TreeView1 with the entries in the zipfile, named by TextBox1 + ''' + Private Sub PopulateTreeView() + Try + zip = ZipFile.Read(Me.tbZipToOpen.Text) + + Me.TreeView1.Nodes.Clear() + For Each e As ZipEntry In zip + AddTreeNode(e.FileName) + Next + + Catch ex As Exception + '' eg, file does not exist, or access denied, etc + MessageBox.Show("Exception: " + ex.ToString(), _ + "Exception during zip processing", _ + MessageBoxButtons.OK, _ + MessageBoxIcon.Exclamation) + + Finally + If Not (zip Is Nothing) Then + zip.Dispose() + End If + + End Try + End Sub + + ''' + ''' Add a node to the Treeview, for the given ZipEntry name + ''' + ''' name of the ZipEntry + ''' the TreeNode added + ''' + ''' + ''' Entries in a zip file exist in a "flat container space": there is a single container, + ''' the zip file itself, that contains all entries. Even though each entry has a filename + ''' attached to it, and that filename may include a hierarchial directory path, the entry is + ''' always contained in the zipfile itself. Even though it is possible to include directory + ''' entries in a zip file, those directory entries are not, themselves, containers - they do + ''' not contain other zip entries. + ''' + ''' + ''' This method overlays the zipentry, which exists only in a flat namespace, into a hierarchial + ''' tree, creating that tree from the pathname on the entry. If the entry name is /a/b/c.txt, + ''' then this method adds 3 nodes to the TreeView, one for each segment in the path. + ''' + ''' + ''' The method is smart enough to find existing nodes matching subsegements of the path + ''' for an entry. + ''' + ''' + Private Function AddTreeNode(ByVal name As String) As TreeNode + If (name.EndsWith("/")) Then + name = name.Substring(0, name.Length - 1) + End If + Dim node As TreeNode = FindNodeForTag(name, Me.TreeView1.Nodes) + If Not (node Is Nothing) Then + Return node + End If + Dim pnodeCollection As TreeNodeCollection + Dim parent As String = Path.GetDirectoryName(name) + If (parent = "") Then + pnodeCollection = Me.TreeView1.Nodes + Else + pnodeCollection = AddTreeNode(parent.Replace("\", "/")).Nodes + End If + node = New TreeNode + node.Text = Path.GetFileName(name) + node.Tag = name ' full path + pnodeCollection.Add(node) + Return node + End Function + + ''' + ''' Returns the TreeNode for a given name + ''' + ''' name of the ZipEntry + ''' The TreeNodeCollection to search + ''' the matching TreeNode, or nothing if none exists + ''' + ''' This method is used by AddTreeNode() to find existing nodes. + ''' + Private Function FindNodeForTag(ByVal name As String, ByRef nodes As TreeNodeCollection) As TreeNode + For Each node As TreeNode In nodes + If (name = node.Tag) Then + Return node + ElseIf (name.StartsWith(node.Tag + "/")) Then + Return FindNodeForTag(name, node.Nodes) + End If + Next + Return Nothing + End Function + + Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click + Dim openFileDialog1 As OpenFileDialog = New OpenFileDialog + + openFileDialog1.InitialDirectory = Me.tbZipToOpen.Text + openFileDialog1.Filter = "zip files|*.zip|EXE files|*.exe|All Files|*.*" + openFileDialog1.FilterIndex = 1 + openFileDialog1.RestoreDirectory = True + + If (openFileDialog1.ShowDialog() = DialogResult.OK) Then + Me.tbZipToOpen.Text = openFileDialog1.FileName + If (System.IO.File.Exists(Me.tbZipToOpen.Text)) Then + Button1_Click(sender, e) + End If + End If + + End Sub + + Private Sub TreeView1_DoubleClick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TreeView1.DoubleClick + If (e Is Nothing) Then + '' + End If + End Sub + + + Private Sub SaveFormToRegistry() + If AppCuKey IsNot Nothing Then + If Not String.IsNullOrEmpty(Me.tbZipToOpen.Text) Then + AppCuKey.SetValue(rvn_ZipFile, Me.tbZipToOpen.Text) + End If + End If + End Sub + + Private Sub LoadFormFromRegistry() + If AppCuKey IsNot Nothing Then + Dim s As String + s = AppCuKey.GetValue(rvn_ZipFile) + If Not String.IsNullOrEmpty(s) Then + Me.tbZipToOpen.Text = s + End If + End If + End Sub + + + Public ReadOnly Property AppCuKey() As Microsoft.Win32.RegistryKey + Get + If (_appCuKey Is Nothing) Then + Me._appCuKey = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(AppRegyPath, True) + If (Me._appCuKey Is Nothing) Then + Me._appCuKey = Microsoft.Win32.Registry.CurrentUser.CreateSubKey(AppRegyPath) + End If + End If + Return _appCuKey + End Get + End Property + + Private Sub Form1_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing + SaveFormToRegistry() + End Sub + + Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load + LoadFormFromRegistry() + End Sub + +End Class diff --git a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.Designer.vb b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.Designer.vb similarity index 97% rename from src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.Designer.vb rename to old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.Designer.vb index 8cc9234..cdfc531 100644 --- a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.Designer.vb +++ b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.Designer.vb @@ -1,38 +1,38 @@ -'------------------------------------------------------------------------------ -' -' This code was generated by a tool. -' Runtime Version:4.0.30319.225 -' -' Changes to this file may cause incorrect behavior and will be lost if -' the code is regenerated. -' -'------------------------------------------------------------------------------ - -Option Strict On -Option Explicit On - - -Namespace My - - 'NOTE: This file is auto-generated; do not modify it directly. To make changes, - ' or if you encounter build errors in this file, go to the Project Designer - ' (go to Project Properties or double-click the My Project node in - ' Solution Explorer), and make changes on the Application tab. - ' - Partial Friend Class MyApplication - - _ - Public Sub New() - MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows) - Me.IsSingleInstance = false - Me.EnableVisualStyles = true - Me.SaveMySettingsOnExit = true - Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses - End Sub - - _ - Protected Overrides Sub OnCreateMainForm() - Me.MainForm = Global.WinForms_TreeViewZip.Form1 - End Sub - End Class -End Namespace +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.225 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + + +Namespace My + + 'NOTE: This file is auto-generated; do not modify it directly. To make changes, + ' or if you encounter build errors in this file, go to the Project Designer + ' (go to Project Properties or double-click the My Project node in + ' Solution Explorer), and make changes on the Application tab. + ' + Partial Friend Class MyApplication + + _ + Public Sub New() + MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows) + Me.IsSingleInstance = false + Me.EnableVisualStyles = true + Me.SaveMySettingsOnExit = true + Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses + End Sub + + _ + Protected Overrides Sub OnCreateMainForm() + Me.MainForm = Global.WinForms_TreeViewZip.Form1 + End Sub + End Class +End Namespace diff --git a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.myapp b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.myapp similarity index 97% rename from src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.myapp rename to old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.myapp index 7b0c597..1243847 100644 --- a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.myapp +++ b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Application.myapp @@ -1,11 +1,11 @@ - - - true - Form1 - false - 0 - true - 0 - 0 - true - + + + true + Form1 + false + 0 + true + 0 + 0 + true + diff --git a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/AssemblyInfo.vb b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/AssemblyInfo.vb similarity index 100% rename from src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/AssemblyInfo.vb rename to old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/AssemblyInfo.vb diff --git a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.Designer.vb b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.Designer.vb similarity index 97% rename from src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.Designer.vb rename to old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.Designer.vb index adc9190..a9ad13d 100644 --- a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.Designer.vb +++ b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.Designer.vb @@ -1,63 +1,63 @@ -'------------------------------------------------------------------------------ -' -' This code was generated by a tool. -' Runtime Version:4.0.30319.225 -' -' Changes to this file may cause incorrect behavior and will be lost if -' the code is regenerated. -' -'------------------------------------------------------------------------------ - -Option Strict On -Option Explicit On - -Imports System - -Namespace My.Resources - - 'This class was auto-generated by the StronglyTypedResourceBuilder - 'class via a tool like ResGen or Visual Studio. - 'To add or remove a member, edit your .ResX file then rerun ResGen - 'with the /str option, or rebuild your VS project. - ''' - ''' A strongly-typed resource class, for looking up localized strings, etc. - ''' - _ - Friend Module Resources - - Private resourceMan As Global.System.Resources.ResourceManager - - Private resourceCulture As Global.System.Globalization.CultureInfo - - ''' - ''' Returns the cached ResourceManager instance used by this class. - ''' - _ - Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager - Get - If Object.ReferenceEquals(resourceMan, Nothing) Then - Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("WinForms_TreeViewZip.Resources", GetType(Resources).Assembly) - resourceMan = temp - End If - Return resourceMan - End Get - End Property - - ''' - ''' Overrides the current thread's CurrentUICulture property for all - ''' resource lookups using this strongly typed resource class. - ''' - _ - Friend Property Culture() As Global.System.Globalization.CultureInfo - Get - Return resourceCulture - End Get - Set - resourceCulture = value - End Set - End Property - End Module -End Namespace +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.225 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + +Imports System + +Namespace My.Resources + + 'This class was auto-generated by the StronglyTypedResourceBuilder + 'class via a tool like ResGen or Visual Studio. + 'To add or remove a member, edit your .ResX file then rerun ResGen + 'with the /str option, or rebuild your VS project. + ''' + ''' A strongly-typed resource class, for looking up localized strings, etc. + ''' + _ + Friend Module Resources + + Private resourceMan As Global.System.Resources.ResourceManager + + Private resourceCulture As Global.System.Globalization.CultureInfo + + ''' + ''' Returns the cached ResourceManager instance used by this class. + ''' + _ + Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager + Get + If Object.ReferenceEquals(resourceMan, Nothing) Then + Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("WinForms_TreeViewZip.Resources", GetType(Resources).Assembly) + resourceMan = temp + End If + Return resourceMan + End Get + End Property + + ''' + ''' Overrides the current thread's CurrentUICulture property for all + ''' resource lookups using this strongly typed resource class. + ''' + _ + Friend Property Culture() As Global.System.Globalization.CultureInfo + Get + Return resourceCulture + End Get + Set + resourceCulture = value + End Set + End Property + End Module +End Namespace diff --git a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.resx b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.resx similarity index 97% rename from src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.resx rename to old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.resx index ffecec8..af7dbeb 100644 --- a/src/Examples/VB/WinForms-DotNetZip/WinForms-Unzip/My Project/Resources.resx +++ b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Resources.resx @@ -1,117 +1,117 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.Designer.vb b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.Designer.vb similarity index 97% rename from src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.Designer.vb rename to old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.Designer.vb index f5e5f18..1426f01 100644 --- a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.Designer.vb +++ b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.Designer.vb @@ -1,73 +1,73 @@ -'------------------------------------------------------------------------------ -' -' This code was generated by a tool. -' Runtime Version:4.0.30319.225 -' -' Changes to this file may cause incorrect behavior and will be lost if -' the code is regenerated. -' -'------------------------------------------------------------------------------ - -Option Strict On -Option Explicit On - - -Namespace My - - _ - Partial Friend NotInheritable Class MySettings - Inherits Global.System.Configuration.ApplicationSettingsBase - - Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings) - -#Region "My.Settings Auto-Save Functionality" -#If _MyType = "WindowsForms" Then - Private Shared addedHandler As Boolean - - Private Shared addedHandlerLockObject As New Object - - _ - Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) - If My.Application.SaveMySettingsOnExit Then - My.Settings.Save() - End If - End Sub -#End If -#End Region - - Public Shared ReadOnly Property [Default]() As MySettings - Get - -#If _MyType = "WindowsForms" Then - If Not addedHandler Then - SyncLock addedHandlerLockObject - If Not addedHandler Then - AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings - addedHandler = True - End If - End SyncLock - End If -#End If - Return defaultInstance - End Get - End Property - End Class -End Namespace - -Namespace My - - _ - Friend Module MySettingsProperty - - _ - Friend ReadOnly Property Settings() As Global.WinForms_TreeViewZip.My.MySettings - Get - Return Global.WinForms_TreeViewZip.My.MySettings.Default - End Get - End Property - End Module -End Namespace +'------------------------------------------------------------------------------ +' +' This code was generated by a tool. +' Runtime Version:4.0.30319.225 +' +' Changes to this file may cause incorrect behavior and will be lost if +' the code is regenerated. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + + +Namespace My + + _ + Partial Friend NotInheritable Class MySettings + Inherits Global.System.Configuration.ApplicationSettingsBase + + Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings) + +#Region "My.Settings Auto-Save Functionality" +#If _MyType = "WindowsForms" Then + Private Shared addedHandler As Boolean + + Private Shared addedHandlerLockObject As New Object + + _ + Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) + If My.Application.SaveMySettingsOnExit Then + My.Settings.Save() + End If + End Sub +#End If +#End Region + + Public Shared ReadOnly Property [Default]() As MySettings + Get + +#If _MyType = "WindowsForms" Then + If Not addedHandler Then + SyncLock addedHandlerLockObject + If Not addedHandler Then + AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings + addedHandler = True + End If + End SyncLock + End If +#End If + Return defaultInstance + End Get + End Property + End Class +End Namespace + +Namespace My + + _ + Friend Module MySettingsProperty + + _ + Friend ReadOnly Property Settings() As Global.WinForms_TreeViewZip.My.MySettings + Get + Return Global.WinForms_TreeViewZip.My.MySettings.Default + End Get + End Property + End Module +End Namespace diff --git a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.settings b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.settings similarity index 97% rename from src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.settings rename to old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.settings index 377f56d..85b890b 100644 --- a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.settings +++ b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/My Project/Settings.settings @@ -1,7 +1,7 @@ - - - - - - - + + + + + + + diff --git a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/WinForms-TreeViewZip.vbproj b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/WinForms-TreeViewZip.vbproj similarity index 97% rename from src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/WinForms-TreeViewZip.vbproj rename to old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/WinForms-TreeViewZip.vbproj index eefc6a4..6f8a3d1 100644 --- a/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/WinForms-TreeViewZip.vbproj +++ b/old/src/Examples/VB/WinForms-TreeViewZip/WinForms-TreeViewZip/WinForms-TreeViewZip.vbproj @@ -1,149 +1,149 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D} - WinExe - WinForms_TreeViewZip.My.MyApplication - WinForms_TreeViewZip - WinForms-TreeViewZip - 512 - WindowsForms - v4.0 - On - Binary - Off - On - - - - - - - - - - - 3.5 - - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - true - full - true - true - bin\Debug\ - WinForms-TreeViewZip.xml - 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 - AllRules.ruleset - - - pdbonly - false - true - true - bin\Release\ - WinForms-TreeViewZip.xml - 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355 - AllRules.ruleset - - - - - - - - - - - - - - - - - - - - - - - - - - - Form - - - Form1.vb - Form - - - - True - Application.myapp - - - True - True - Resources.resx - - - True - Settings.settings - True - - - - - Form1.vb - - - VbMyResourcesResXFileCodeGenerator - Resources.Designer.vb - My.Resources - Designer - - - - - MyApplicationCodeGenerator - Application.Designer.vb - - - SettingsSingleFileGenerator - My - Settings.Designer.vb - - - - - {d3b0ad67-44d8-4b3d-bed9-ce1fd6de2c5a} - Zip DLL - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {2E78FB6A-EE17-4EE4-9D8D-BE9AE675C69D} + WinExe + WinForms_TreeViewZip.My.MyApplication + WinForms_TreeViewZip + WinForms-TreeViewZip + 512 + WindowsForms + v4.0 + On + Binary + Off + On + + + + + + + + + + + 3.5 + + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + + + true + full + true + true + bin\Debug\ + WinForms-TreeViewZip.xml + 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 + AllRules.ruleset + + + pdbonly + false + true + true + bin\Release\ + WinForms-TreeViewZip.xml + 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355 + AllRules.ruleset + + + + + + + + + + + + + + + + + + + + + + + + + + + Form + + + Form1.vb + Form + + + + True + Application.myapp + + + True + True + Resources.resx + + + True + Settings.settings + True + + + + + Form1.vb + + + VbMyResourcesResXFileCodeGenerator + Resources.Designer.vb + My.Resources + Designer + + + + + MyApplicationCodeGenerator + Application.Designer.vb + + + SettingsSingleFileGenerator + My + Settings.Designer.vb + + + + + {d3b0ad67-44d8-4b3d-bed9-ce1fd6de2c5a} + Zip DLL + + + + \ No newline at end of file diff --git a/src/Help-VS-Integrated/HelpIntegration.sln b/old/src/Help-VS-Integrated/HelpIntegration.sln similarity index 98% rename from src/Help-VS-Integrated/HelpIntegration.sln rename to old/src/Help-VS-Integrated/HelpIntegration.sln index c79c9fa..ed6acdb 100644 --- a/src/Help-VS-Integrated/HelpIntegration.sln +++ b/old/src/Help-VS-Integrated/HelpIntegration.sln @@ -1,26 +1,26 @@ - -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "HelpIntegration", "HelpIntegration\HelpIntegration.vdproj", "{10FE6C88-8E0F-4A48-923A-65A58DDAB426}" -EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "HelpIntegrationMergeModule", "HelpIntegrationMergeModule\HelpIntegrationMergeModule.vdproj", "{39B858A8-21BE-40E3-B0C6-D265189C34F4}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Default = Debug|Default - Release|Default = Release|Default - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {10FE6C88-8E0F-4A48-923A-65A58DDAB426}.Debug|Default.ActiveCfg = Debug - {10FE6C88-8E0F-4A48-923A-65A58DDAB426}.Debug|Default.Build.0 = Debug - {10FE6C88-8E0F-4A48-923A-65A58DDAB426}.Release|Default.ActiveCfg = Release - {10FE6C88-8E0F-4A48-923A-65A58DDAB426}.Release|Default.Build.0 = Release - {39B858A8-21BE-40E3-B0C6-D265189C34F4}.Debug|Default.ActiveCfg = Debug - {39B858A8-21BE-40E3-B0C6-D265189C34F4}.Debug|Default.Build.0 = Debug - {39B858A8-21BE-40E3-B0C6-D265189C34F4}.Release|Default.ActiveCfg = Release - {39B858A8-21BE-40E3-B0C6-D265189C34F4}.Release|Default.Build.0 = Release - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "HelpIntegration", "HelpIntegration\HelpIntegration.vdproj", "{10FE6C88-8E0F-4A48-923A-65A58DDAB426}" +EndProject +Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "HelpIntegrationMergeModule", "HelpIntegrationMergeModule\HelpIntegrationMergeModule.vdproj", "{39B858A8-21BE-40E3-B0C6-D265189C34F4}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Default = Debug|Default + Release|Default = Release|Default + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {10FE6C88-8E0F-4A48-923A-65A58DDAB426}.Debug|Default.ActiveCfg = Debug + {10FE6C88-8E0F-4A48-923A-65A58DDAB426}.Debug|Default.Build.0 = Debug + {10FE6C88-8E0F-4A48-923A-65A58DDAB426}.Release|Default.ActiveCfg = Release + {10FE6C88-8E0F-4A48-923A-65A58DDAB426}.Release|Default.Build.0 = Release + {39B858A8-21BE-40E3-B0C6-D265189C34F4}.Debug|Default.ActiveCfg = Debug + {39B858A8-21BE-40E3-B0C6-D265189C34F4}.Debug|Default.Build.0 = Debug + {39B858A8-21BE-40E3-B0C6-D265189C34F4}.Release|Default.ActiveCfg = Release + {39B858A8-21BE-40E3-B0C6-D265189C34F4}.Release|Default.Build.0 = Release + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/src/Help-VS-Integrated/HelpIntegration/HelpIntegration.vdproj b/old/src/Help-VS-Integrated/HelpIntegration/HelpIntegration.vdproj similarity index 97% rename from src/Help-VS-Integrated/HelpIntegration/HelpIntegration.vdproj rename to old/src/Help-VS-Integrated/HelpIntegration/HelpIntegration.vdproj index 297dd43..18750f3 100644 --- a/src/Help-VS-Integrated/HelpIntegration/HelpIntegration.vdproj +++ b/old/src/Help-VS-Integrated/HelpIntegration/HelpIntegration.vdproj @@ -1,733 +1,733 @@ -"DeployProject" -{ -"VSVersion" = "3:800" -"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:HelpIntegration" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_5CDA10563C4245259ADDCAA29B0F6911" - "OwnerKey" = "8:_DE2433B8E76B4DFA9DCFA12F14AF5905" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5EDF84279FAA485CAC7F74ECEFDFB2FA" - "OwnerKey" = "8:_DE2433B8E76B4DFA9DCFA12F14AF5905" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE2433B8E76B4DFA9DCFA12F14AF5905" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\DotNetZip-HelpIntegration.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\DotNetZip-HelpIntegration.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - } - } - "File" - { - } - "FileType" - { - } - "Folder" - { - "{1525181F-901A-416C-8A58-119130FE478E}:_25C415CCF5F34F86BB4F9B33A68FE0D9" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_7ECC7F10742C4454B7E5C54260252C98" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - } - } - "{3C67513D-01DD-4637-8A68-80971EB9504F}:_8DA414573148486292EBA72D5F681300" - { - "DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]" - "Name" = "8:#1925" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:1033" - "RequiresElevation" = "11:FALSE" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:HelpIntegration" - "ProductCode" = "8:{3172CCB8-7695-46A4-887D-8364ACDEF3CA}" - "PackageCode" = "8:{FA6EAE1D-EE1B-4B3C-880B-ED32FC29A23A}" - "UpgradeCode" = "8:{2D2BE662-AFC0-4870-A176-C95D63EB8367}" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:FALSE" - "DetectNewerInstalledVersion" = "11:TRUE" - "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:1.0.0" - "Manufacturer" = "8:MSIT" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:" - "Title" = "8:HelpIntegration" - "Subject" = "8:" - "ARPCONTACT" = "8:MSIT" - "Keywords" = "8:" - "ARPCOMMENTS" = "8:" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - "TargetPlatform" = "3:0" - "PreBuildEvent" = "8:" - "PostBuildEvent" = "8:" - "RunPostBuildEvent" = "3:0" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_6045FB60DEF64A739B765CF1E1EF751A" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_770C7404A5D44B2F9873D780177B02F1" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_6F6D67043550494994DFBD8281164842" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_2FE5172CF11E483DB8E61697E97E6AB9" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - } - "UserInterface" - { - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_1974BD0F99A74ACEA9A7258D840ABD6A" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_75A3D4526ECF45FC8C2E36C746B9C811" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_488EA2BB134342CEB598B07D663DD3C9" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_903BD2D96DED49F4903E22622F8F396E" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_72557602305844DB94DBBE58DDCBCCCA" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_9CE3E0DBF82940C7A1CC3562A46BD572" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_C7F1AF3A317C410DA811BEE7E64528BE" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_C951FD835AE84D58B95EFDD3373C849E" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C9E4477B0B3447C9AB2FC6846039CEFA" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2D7C9B8E1F584A4E9826BAE754047BC6" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_71204350845D459BA0D00BD0C4368093" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_C1AD0BA6229E4FB1963F63C995BC9482" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "InstallAllUsersVisible" - { - "Name" = "8:InstallAllUsersVisible" - "DisplayName" = "8:#1059" - "Description" = "8:#1159" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_E2C40A6F8EC54047A564AC3B47D72209" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_DEA98FDFED6A4F6DA9D8D085FD40424A" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_F8AFDE09B57E4810AB9090C81DAD1DFA" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_0879F60EEC274E89AE40883C3E6AECBE" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_797AE3D27CA040C9A8CB19B12920AACC" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_ABAE7D6011A448D8A75CFC877B032C30" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - } - "MergeModule" - { - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_5CDA10563C4245259ADDCAA29B0F6911" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:HTML_Help_Registration__RTL_X86_---.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_5EDF84279FAA485CAC7F74ECEFDFB2FA" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:TRUE" - "SourcePath" = "8:VSIPCC_Collection_Files_RTL_---_---.msm" - "Properties" - { - } - "LanguageId" = "3:1033" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "ProjectOutput" - { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_DE2433B8E76B4DFA9DCFA12F14AF5905" - { - "SourcePath" = "8:..\\HelpIntegrationMergeModule\\Debug\\HelpIntegrationMergeModule.msm" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_8DA414573148486292EBA72D5F681300" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{39B858A8-21BE-40E3-B0C6-D265189C34F4}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - "KeyOutputModule" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:..\\HelpIntegrationMergeModule\\Debug\\HelpIntegrationMergeModule.msm" - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:_8DA414573148486292EBA72D5F681300" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - } - } -} +"DeployProject" +{ +"VSVersion" = "3:800" +"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" +"IsWebType" = "8:FALSE" +"ProjectName" = "8:HelpIntegration" +"LanguageId" = "3:1033" +"CodePage" = "3:1252" +"UILanguageId" = "3:1033" +"SccProjectName" = "8:" +"SccLocalPath" = "8:" +"SccAuxPath" = "8:" +"SccProvider" = "8:" + "Hierarchy" + { + "Entry" + { + "MsmKey" = "8:_5CDA10563C4245259ADDCAA29B0F6911" + "OwnerKey" = "8:_DE2433B8E76B4DFA9DCFA12F14AF5905" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_5EDF84279FAA485CAC7F74ECEFDFB2FA" + "OwnerKey" = "8:_DE2433B8E76B4DFA9DCFA12F14AF5905" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_DE2433B8E76B4DFA9DCFA12F14AF5905" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + } + "Configurations" + { + "Debug" + { + "DisplayName" = "8:Debug" + "IsDebugOnly" = "11:TRUE" + "IsReleaseOnly" = "11:FALSE" + "OutputFilename" = "8:Debug\\DotNetZip-HelpIntegration.msi" + "PackageFilesAs" = "3:2" + "PackageFileSize" = "3:-2147483648" + "CabType" = "3:1" + "Compression" = "3:2" + "SignOutput" = "11:FALSE" + "CertificateFile" = "8:" + "PrivateKeyFile" = "8:" + "TimeStampServer" = "8:" + "InstallerBootstrapper" = "3:2" + } + "Release" + { + "DisplayName" = "8:Release" + "IsDebugOnly" = "11:FALSE" + "IsReleaseOnly" = "11:TRUE" + "OutputFilename" = "8:Release\\DotNetZip-HelpIntegration.msi" + "PackageFilesAs" = "3:2" + "PackageFileSize" = "3:-2147483648" + "CabType" = "3:1" + "Compression" = "3:2" + "SignOutput" = "11:FALSE" + "CertificateFile" = "8:" + "PrivateKeyFile" = "8:" + "TimeStampServer" = "8:" + "InstallerBootstrapper" = "3:2" + } + } + "Deployable" + { + "CustomAction" + { + } + "DefaultFeature" + { + "Name" = "8:DefaultFeature" + "Title" = "8:" + "Description" = "8:" + } + "ExternalPersistence" + { + "LaunchCondition" + { + } + } + "File" + { + } + "FileType" + { + } + "Folder" + { + "{1525181F-901A-416C-8A58-119130FE478E}:_25C415CCF5F34F86BB4F9B33A68FE0D9" + { + "Name" = "8:#1916" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Property" = "8:DesktopFolder" + "Folders" + { + } + } + "{1525181F-901A-416C-8A58-119130FE478E}:_7ECC7F10742C4454B7E5C54260252C98" + { + "Name" = "8:#1919" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Property" = "8:ProgramMenuFolder" + "Folders" + { + } + } + "{3C67513D-01DD-4637-8A68-80971EB9504F}:_8DA414573148486292EBA72D5F681300" + { + "DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]" + "Name" = "8:#1925" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Property" = "8:TARGETDIR" + "Folders" + { + } + } + } + "LaunchCondition" + { + } + "Locator" + { + } + "MsiBootstrapper" + { + "LangId" = "3:1033" + "RequiresElevation" = "11:FALSE" + } + "Product" + { + "Name" = "8:Microsoft Visual Studio" + "ProductName" = "8:HelpIntegration" + "ProductCode" = "8:{3172CCB8-7695-46A4-887D-8364ACDEF3CA}" + "PackageCode" = "8:{FA6EAE1D-EE1B-4B3C-880B-ED32FC29A23A}" + "UpgradeCode" = "8:{2D2BE662-AFC0-4870-A176-C95D63EB8367}" + "RestartWWWService" = "11:FALSE" + "RemovePreviousVersions" = "11:FALSE" + "DetectNewerInstalledVersion" = "11:TRUE" + "InstallAllUsers" = "11:FALSE" + "ProductVersion" = "8:1.0.0" + "Manufacturer" = "8:MSIT" + "ARPHELPTELEPHONE" = "8:" + "ARPHELPLINK" = "8:" + "Title" = "8:HelpIntegration" + "Subject" = "8:" + "ARPCONTACT" = "8:MSIT" + "Keywords" = "8:" + "ARPCOMMENTS" = "8:" + "ARPURLINFOABOUT" = "8:" + "ARPPRODUCTICON" = "8:" + "ARPIconIndex" = "3:0" + "SearchPath" = "8:" + "UseSystemSearchPath" = "11:TRUE" + "TargetPlatform" = "3:0" + "PreBuildEvent" = "8:" + "PostBuildEvent" = "8:" + "RunPostBuildEvent" = "3:0" + } + "Registry" + { + "HKLM" + { + "Keys" + { + "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_6045FB60DEF64A739B765CF1E1EF751A" + { + "Name" = "8:Software" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_770C7404A5D44B2F9873D780177B02F1" + { + "Name" = "8:[Manufacturer]" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + } + "Values" + { + } + } + } + "Values" + { + } + } + } + } + "HKCU" + { + "Keys" + { + "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_6F6D67043550494994DFBD8281164842" + { + "Name" = "8:Software" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_2FE5172CF11E483DB8E61697E97E6AB9" + { + "Name" = "8:[Manufacturer]" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + } + "Values" + { + } + } + } + "Values" + { + } + } + } + } + "HKCR" + { + "Keys" + { + } + } + "HKU" + { + "Keys" + { + } + } + "HKPU" + { + "Keys" + { + } + } + } + "Sequences" + { + } + "Shortcut" + { + } + "UserInterface" + { + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_1974BD0F99A74ACEA9A7258D840ABD6A" + { + "Name" = "8:#1901" + "Sequence" = "3:2" + "Attributes" = "3:2" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_75A3D4526ECF45FC8C2E36C746B9C811" + { + "Sequence" = "3:100" + "DisplayName" = "8:Progress" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminProgressDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "ShowProgress" + { + "Name" = "8:ShowProgress" + "DisplayName" = "8:#1009" + "Description" = "8:#1109" + "Type" = "3:5" + "ContextData" = "8:1;True=1;False=0" + "Attributes" = "3:0" + "Setting" = "3:0" + "Value" = "3:1" + "DefaultValue" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_488EA2BB134342CEB598B07D663DD3C9" + { + "UseDynamicProperties" = "11:FALSE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdBasicDialogs.wim" + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_903BD2D96DED49F4903E22622F8F396E" + { + "Name" = "8:#1902" + "Sequence" = "3:1" + "Attributes" = "3:3" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_72557602305844DB94DBBE58DDCBCCCA" + { + "Sequence" = "3:100" + "DisplayName" = "8:Finished" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdFinishedDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "UpdateText" + { + "Name" = "8:UpdateText" + "DisplayName" = "8:#1058" + "Description" = "8:#1158" + "Type" = "3:15" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1258" + "DefaultValue" = "8:#1258" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_9CE3E0DBF82940C7A1CC3562A46BD572" + { + "Name" = "8:#1901" + "Sequence" = "3:1" + "Attributes" = "3:2" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_C7F1AF3A317C410DA811BEE7E64528BE" + { + "Sequence" = "3:100" + "DisplayName" = "8:Progress" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdProgressDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "ShowProgress" + { + "Name" = "8:ShowProgress" + "DisplayName" = "8:#1009" + "Description" = "8:#1109" + "Type" = "3:5" + "ContextData" = "8:1;True=1;False=0" + "Attributes" = "3:0" + "Setting" = "3:0" + "Value" = "3:1" + "DefaultValue" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_C951FD835AE84D58B95EFDD3373C849E" + { + "UseDynamicProperties" = "11:FALSE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdUserInterface.wim" + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C9E4477B0B3447C9AB2FC6846039CEFA" + { + "Name" = "8:#1900" + "Sequence" = "3:1" + "Attributes" = "3:1" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2D7C9B8E1F584A4E9826BAE754047BC6" + { + "Sequence" = "3:100" + "DisplayName" = "8:Welcome" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdWelcomeDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "CopyrightWarning" + { + "Name" = "8:CopyrightWarning" + "DisplayName" = "8:#1002" + "Description" = "8:#1102" + "Type" = "3:3" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1202" + "DefaultValue" = "8:#1202" + "UsePlugInResources" = "11:TRUE" + } + "Welcome" + { + "Name" = "8:Welcome" + "DisplayName" = "8:#1003" + "Description" = "8:#1103" + "Type" = "3:3" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1203" + "DefaultValue" = "8:#1203" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_71204350845D459BA0D00BD0C4368093" + { + "Sequence" = "3:300" + "DisplayName" = "8:Confirm Installation" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdConfirmDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_C1AD0BA6229E4FB1963F63C995BC9482" + { + "Sequence" = "3:200" + "DisplayName" = "8:Installation Folder" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdFolderDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "InstallAllUsersVisible" + { + "Name" = "8:InstallAllUsersVisible" + "DisplayName" = "8:#1059" + "Description" = "8:#1159" + "Type" = "3:5" + "ContextData" = "8:1;True=1;False=0" + "Attributes" = "3:0" + "Setting" = "3:0" + "Value" = "3:1" + "DefaultValue" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_E2C40A6F8EC54047A564AC3B47D72209" + { + "Name" = "8:#1902" + "Sequence" = "3:2" + "Attributes" = "3:3" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_DEA98FDFED6A4F6DA9D8D085FD40424A" + { + "Sequence" = "3:100" + "DisplayName" = "8:Finished" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_F8AFDE09B57E4810AB9090C81DAD1DFA" + { + "Name" = "8:#1900" + "Sequence" = "3:2" + "Attributes" = "3:1" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_0879F60EEC274E89AE40883C3E6AECBE" + { + "Sequence" = "3:300" + "DisplayName" = "8:Confirm Installation" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_797AE3D27CA040C9A8CB19B12920AACC" + { + "Sequence" = "3:100" + "DisplayName" = "8:Welcome" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + "CopyrightWarning" + { + "Name" = "8:CopyrightWarning" + "DisplayName" = "8:#1002" + "Description" = "8:#1102" + "Type" = "3:3" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1202" + "DefaultValue" = "8:#1202" + "UsePlugInResources" = "11:TRUE" + } + "Welcome" + { + "Name" = "8:Welcome" + "DisplayName" = "8:#1003" + "Description" = "8:#1103" + "Type" = "3:3" + "ContextData" = "8:" + "Attributes" = "3:0" + "Setting" = "3:1" + "Value" = "8:#1203" + "DefaultValue" = "8:#1203" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_ABAE7D6011A448D8A75CFC877B032C30" + { + "Sequence" = "3:200" + "DisplayName" = "8:Installation Folder" + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdAdminFolderDlg.wid" + "Properties" + { + "BannerBitmap" + { + "Name" = "8:BannerBitmap" + "DisplayName" = "8:#1001" + "Description" = "8:#1101" + "Type" = "3:8" + "ContextData" = "8:Bitmap" + "Attributes" = "3:4" + "Setting" = "3:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + } + "MergeModule" + { + "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_5CDA10563C4245259ADDCAA29B0F6911" + { + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:TRUE" + "SourcePath" = "8:HTML_Help_Registration__RTL_X86_---.msm" + "Properties" + { + } + "LanguageId" = "3:0" + "Exclude" = "11:FALSE" + "Folder" = "8:" + "Feature" = "8:" + "IsolateTo" = "8:" + } + "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_5EDF84279FAA485CAC7F74ECEFDFB2FA" + { + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:TRUE" + "SourcePath" = "8:VSIPCC_Collection_Files_RTL_---_---.msm" + "Properties" + { + } + "LanguageId" = "3:1033" + "Exclude" = "11:FALSE" + "Folder" = "8:" + "Feature" = "8:" + "IsolateTo" = "8:" + } + } + "ProjectOutput" + { + "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_DE2433B8E76B4DFA9DCFA12F14AF5905" + { + "SourcePath" = "8:..\\HelpIntegrationMergeModule\\Debug\\HelpIntegrationMergeModule.msm" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_8DA414573148486292EBA72D5F681300" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + "ProjectOutputGroupRegister" = "3:1" + "OutputConfiguration" = "8:" + "OutputGroupCanonicalName" = "8:Built" + "OutputProjectGuid" = "8:{39B858A8-21BE-40E3-B0C6-D265189C34F4}" + "ShowKeyOutput" = "11:TRUE" + "ExcludeFilters" + { + } + "KeyOutputModule" + { + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:..\\HelpIntegrationMergeModule\\Debug\\HelpIntegrationMergeModule.msm" + "LanguageId" = "3:0" + "Exclude" = "11:FALSE" + "Folder" = "8:_8DA414573148486292EBA72D5F681300" + "Feature" = "8:" + "IsolateTo" = "8:" + } + } + } + } +} diff --git a/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/FixRegTables.exe b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/FixRegTables.exe similarity index 100% rename from src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/FixRegTables.exe rename to old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/FixRegTables.exe diff --git a/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/IntegrationWizard.xml b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/IntegrationWizard.xml similarity index 97% rename from src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/IntegrationWizard.xml rename to old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/IntegrationWizard.xml index 07c05f5..365ea63 100644 --- a/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/IntegrationWizard.xml +++ b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/IntegrationWizard.xml @@ -1,48 +1,48 @@ - - - - MergeModule - VS_2008_VSIPCC - ionic.zip - DotNetZip Help - - - MS.VSIPCC.v90 - FL_vsipcc_hxt_86880_86880_cn_ln.3643236F_FC70_11D3_A536_0090278A1BB8.48273237_1399_45CF_801C_338E1AB00E90 - - - - - - - DotNetZipLib-v1.9.HxS - {63A1258F-C269-6085-81D2-4EDBD83C77D2} - - - _Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC - {9EC9766F-9C44-5D2D-2A54-BB16F98635E1} - - - _TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT - {28B9E55C-8BE0-9AA3-D46A-2BE89A6BDB3A} - - - _KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK - {2E10F8C5-F6D8-1464-CB91-23430483D79F} - - - _AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK - {89F6125B-F96D-4724-0625-C75215CD602B} - - - _FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK - {204C3FBE-0129-328B-44AF-DE0F27A6730D} - - - _NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK - {45435507-EAFD-9D0C-8959-1904ED53DABA} - - - - + + + + MergeModule + VS_2008_VSIPCC + ionic.zip + DotNetZip Help + + + MS.VSIPCC.v90 + FL_vsipcc_hxt_86880_86880_cn_ln.3643236F_FC70_11D3_A536_0090278A1BB8.48273237_1399_45CF_801C_338E1AB00E90 + + + + + + + DotNetZipLib-v1.9.HxS + {63A1258F-C269-6085-81D2-4EDBD83C77D2} + + + _Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC + {9EC9766F-9C44-5D2D-2A54-BB16F98635E1} + + + _TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT + {28B9E55C-8BE0-9AA3-D46A-2BE89A6BDB3A} + + + _KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK + {2E10F8C5-F6D8-1464-CB91-23430483D79F} + + + _AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK + {89F6125B-F96D-4724-0625-C75215CD602B} + + + _FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK + {204C3FBE-0129-328B-44AF-DE0F27A6730D} + + + _NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK + {45435507-EAFD-9D0C-8959-1904ED53DABA} + + + + \ No newline at end of file diff --git a/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK similarity index 99% rename from src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK rename to old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK index 8d793d1..ada3ec9 100644 --- a/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK +++ b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK @@ -1,3 +1,3 @@ - - + + \ No newline at end of file diff --git a/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC similarity index 98% rename from src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC rename to old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC index 214add3..5bebd97 100644 --- a/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC +++ b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC @@ -1,16 +1,16 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK similarity index 99% rename from src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK rename to old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK index 2cc2b75..6856a70 100644 --- a/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK +++ b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK @@ -1,3 +1,3 @@ - - + + \ No newline at end of file diff --git a/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK similarity index 99% rename from src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK rename to old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK index 5e959cf..d6e0771 100644 --- a/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK +++ b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK @@ -1,3 +1,3 @@ - - + + \ No newline at end of file diff --git a/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK similarity index 99% rename from src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK rename to old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK index 793b775..fa6c7ec 100644 --- a/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK +++ b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK @@ -1,3 +1,3 @@ - - + + \ No newline at end of file diff --git a/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT similarity index 98% rename from src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT rename to old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT index c10c856..d58eea2 100644 --- a/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT +++ b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/CollectionFiles/_TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff --git a/src/Help-VS-Integrated/HelpIntegrationMergeModule/HelpIntegrationMergeModule.vdproj b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/HelpIntegrationMergeModule.vdproj similarity index 97% rename from src/Help-VS-Integrated/HelpIntegrationMergeModule/HelpIntegrationMergeModule.vdproj rename to old/src/Help-VS-Integrated/HelpIntegrationMergeModule/HelpIntegrationMergeModule.vdproj index bb33280..8680458 100644 --- a/src/Help-VS-Integrated/HelpIntegrationMergeModule/HelpIntegrationMergeModule.vdproj +++ b/old/src/Help-VS-Integrated/HelpIntegrationMergeModule/HelpIntegrationMergeModule.vdproj @@ -1,370 +1,370 @@ -"DeployProject" -{ -"VSVersion" = "3:800" -"ProjectType" = "8:{06A35CCD-C46D-44D5-987B-CF40FF872267}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:HelpIntegrationMergeModule" -"LanguageId" = "3:1033" -"CodePage" = "3:1252" -"UILanguageId" = "3:1033" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_340E3967EA834C1AB08BF1E7BABE3AD4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CAF6ECACA0647918F182A03F926BFD6" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_48CA68671B074BD7A662AC6CA4E9FFF7" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E03708D4ACD41FE89A10A8DE144C495" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B2D1E188693E4BC9AE1851A3AFB8F4AF" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B9A6CFF7BC124812B653B38559E5D9D3" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C79061B6FA06410F9D558CF4396F6FF1" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D427A3A535274528860E7188D37325A4" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EFAD716E64E549F9A12500B6BE25E566" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\HelpIntegrationMergeModule.msm" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:1" - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\HelpIntegrationMergeModule.msm" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:1" - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "File" - { - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_340E3967EA834C1AB08BF1E7BABE3AD4" - { - "SourcePath" = "8:CollectionFiles\\_Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC" - "TargetName" = "8:_Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC" - "Tag" = "8:" - "Folder" = "8:_24E53BF792A14F60B4E45B7E00701F39" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CAF6ECACA0647918F182A03F926BFD6" - { - "SourcePath" = "8:..\\..\\Help\\out\\DotNetZipLib-v1.9.HxS" - "TargetName" = "8:DotNetZipLib-v1.9.HxS" - "Tag" = "8:" - "Folder" = "8:_24E53BF792A14F60B4E45B7E00701F39" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2D1E188693E4BC9AE1851A3AFB8F4AF" - { - "SourcePath" = "8:CollectionFiles\\_AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK" - "TargetName" = "8:_AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK" - "Tag" = "8:" - "Folder" = "8:_24E53BF792A14F60B4E45B7E00701F39" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9A6CFF7BC124812B653B38559E5D9D3" - { - "SourcePath" = "8:CollectionFiles\\_TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT" - "TargetName" = "8:_TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT" - "Tag" = "8:" - "Folder" = "8:_24E53BF792A14F60B4E45B7E00701F39" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C79061B6FA06410F9D558CF4396F6FF1" - { - "SourcePath" = "8:CollectionFiles\\_KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK" - "TargetName" = "8:_KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK" - "Tag" = "8:" - "Folder" = "8:_24E53BF792A14F60B4E45B7E00701F39" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D427A3A535274528860E7188D37325A4" - { - "SourcePath" = "8:CollectionFiles\\_FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK" - "TargetName" = "8:_FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK" - "Tag" = "8:" - "Folder" = "8:_24E53BF792A14F60B4E45B7E00701F39" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EFAD716E64E549F9A12500B6BE25E566" - { - "SourcePath" = "8:CollectionFiles\\_NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK" - "TargetName" = "8:_NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK" - "Tag" = "8:" - "Folder" = "8:_24E53BF792A14F60B4E45B7E00701F39" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{F4FE1E22-A4D2-4EE8-9259-29A1CE8BB2FF}:_24E53BF792A14F60B4E45B7E00701F39" - { - "DefaultLocation" = "8:[TARGETDIR]" - "DisplayName" = "8:Module Retargetable Folder" - "Description" = "8:" - "Name" = "8:Module Retargetable Folder" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:TRUE" - "Property" = "8:NEWRETARGETABLEPROPERTY1" - "Folders" - { - } - } - } - "Sequences" - { - } - "MergeModule" - { - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_48CA68671B074BD7A662AC6CA4E9FFF7" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:C:\\Program Files\\Microsoft Visual Studio 2008 SDK\\HelpIntegrationWizard\\VS_2008\\VSIPCC_Collection_Files_RTL_---_---.msm" - "Properties" - { - } - "LanguageId" = "3:1033" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_9E03708D4ACD41FE89A10A8DE144C495" - { - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:C:\\Program Files\\Microsoft Visual Studio 2008 SDK\\HelpIntegrationWizard\\MSHelp2\\2008\\HTML_Help_Registration__RTL_X86_---.msm" - "Properties" - { - } - "LanguageId" = "3:0" - "Exclude" = "11:FALSE" - "Folder" = "8:" - "Feature" = "8:" - "IsolateTo" = "8:" - } - } - "Module" - { - "ModuleSignature" = "8:MergeModule.5E86696916964FAC870AC72672758E6F" - "Version" = "8:1.0.0.0" - "Title" = "8:HelpIntegrationMergeModule" - "Subject" = "8:" - "Author" = "8:MSIT" - "Keywords" = "8:" - "Comments" = "8:" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - "TargetPlatform" = "3:0" - "PreBuildEvent" = "8:copy \"C:\\Program Files\\Microsoft Visual Studio 2008 SDK\\HelpIntegrationWizard\\MSHelp2\\MSHelp2_RegTables__RTL_---_---.msm\" \"$(ProjectDir)\\CollectionFiles\"" - "PostBuildEvent" = "8:\"$(ProjectDir)\\CollectionFiles\\FixRegTables.exe\" \"$(BuiltOuputPath)\" \"$(ProjectDir)\\\"" - "RunPostBuildEvent" = "3:0" - } - "ProjectOutput" - { - } - "Registry" - { - "HKLM" - { - "Keys" - { - } - } - "HKCU" - { - "Keys" - { - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Shortcut" - { - } - } -} +"DeployProject" +{ +"VSVersion" = "3:800" +"ProjectType" = "8:{06A35CCD-C46D-44D5-987B-CF40FF872267}" +"IsWebType" = "8:FALSE" +"ProjectName" = "8:HelpIntegrationMergeModule" +"LanguageId" = "3:1033" +"CodePage" = "3:1252" +"UILanguageId" = "3:1033" +"SccProjectName" = "8:" +"SccLocalPath" = "8:" +"SccAuxPath" = "8:" +"SccProvider" = "8:" + "Hierarchy" + { + "Entry" + { + "MsmKey" = "8:_340E3967EA834C1AB08BF1E7BABE3AD4" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_3CAF6ECACA0647918F182A03F926BFD6" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_48CA68671B074BD7A662AC6CA4E9FFF7" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_9E03708D4ACD41FE89A10A8DE144C495" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B2D1E188693E4BC9AE1851A3AFB8F4AF" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B9A6CFF7BC124812B653B38559E5D9D3" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_C79061B6FA06410F9D558CF4396F6FF1" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_D427A3A535274528860E7188D37325A4" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EFAD716E64E549F9A12500B6BE25E566" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + } + "Configurations" + { + "Debug" + { + "DisplayName" = "8:Debug" + "IsDebugOnly" = "11:TRUE" + "IsReleaseOnly" = "11:FALSE" + "OutputFilename" = "8:Debug\\HelpIntegrationMergeModule.msm" + "PackageFilesAs" = "3:2" + "PackageFileSize" = "3:-2147483648" + "CabType" = "3:1" + "Compression" = "3:2" + "SignOutput" = "11:FALSE" + "CertificateFile" = "8:" + "PrivateKeyFile" = "8:" + "TimeStampServer" = "8:" + "InstallerBootstrapper" = "3:1" + } + "Release" + { + "DisplayName" = "8:Release" + "IsDebugOnly" = "11:FALSE" + "IsReleaseOnly" = "11:TRUE" + "OutputFilename" = "8:Release\\HelpIntegrationMergeModule.msm" + "PackageFilesAs" = "3:2" + "PackageFileSize" = "3:-2147483648" + "CabType" = "3:1" + "Compression" = "3:2" + "SignOutput" = "11:FALSE" + "CertificateFile" = "8:" + "PrivateKeyFile" = "8:" + "TimeStampServer" = "8:" + "InstallerBootstrapper" = "3:1" + } + } + "Deployable" + { + "CustomAction" + { + } + "DefaultFeature" + { + "Name" = "8:DefaultFeature" + "Title" = "8:" + "Description" = "8:" + } + "File" + { + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_340E3967EA834C1AB08BF1E7BABE3AD4" + { + "SourcePath" = "8:CollectionFiles\\_Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC" + "TargetName" = "8:_Collection_ac27e462fa6f457eb8ee19031a4b91e1.HxC" + "Tag" = "8:" + "Folder" = "8:_24E53BF792A14F60B4E45B7E00701F39" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + } + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3CAF6ECACA0647918F182A03F926BFD6" + { + "SourcePath" = "8:..\\..\\Help\\out\\DotNetZipLib-v1.9.HxS" + "TargetName" = "8:DotNetZipLib-v1.9.HxS" + "Tag" = "8:" + "Folder" = "8:_24E53BF792A14F60B4E45B7E00701F39" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + } + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B2D1E188693E4BC9AE1851A3AFB8F4AF" + { + "SourcePath" = "8:CollectionFiles\\_AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK" + "TargetName" = "8:_AIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK" + "Tag" = "8:" + "Folder" = "8:_24E53BF792A14F60B4E45B7E00701F39" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + } + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_B9A6CFF7BC124812B653B38559E5D9D3" + { + "SourcePath" = "8:CollectionFiles\\_TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT" + "TargetName" = "8:_TOC_ac27e462fa6f457eb8ee19031a4b91e1.HxT" + "Tag" = "8:" + "Folder" = "8:_24E53BF792A14F60B4E45B7E00701F39" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + } + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C79061B6FA06410F9D558CF4396F6FF1" + { + "SourcePath" = "8:CollectionFiles\\_KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK" + "TargetName" = "8:_KIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK" + "Tag" = "8:" + "Folder" = "8:_24E53BF792A14F60B4E45B7E00701F39" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + } + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D427A3A535274528860E7188D37325A4" + { + "SourcePath" = "8:CollectionFiles\\_FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK" + "TargetName" = "8:_FIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK" + "Tag" = "8:" + "Folder" = "8:_24E53BF792A14F60B4E45B7E00701F39" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + } + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EFAD716E64E549F9A12500B6BE25E566" + { + "SourcePath" = "8:CollectionFiles\\_NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK" + "TargetName" = "8:_NUrlIndex_ac27e462fa6f457eb8ee19031a4b91e1.HxK" + "Tag" = "8:" + "Folder" = "8:_24E53BF792A14F60B4E45B7E00701F39" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + } + } + "FileType" + { + } + "Folder" + { + "{F4FE1E22-A4D2-4EE8-9259-29A1CE8BB2FF}:_24E53BF792A14F60B4E45B7E00701F39" + { + "DefaultLocation" = "8:[TARGETDIR]" + "DisplayName" = "8:Module Retargetable Folder" + "Description" = "8:" + "Name" = "8:Module Retargetable Folder" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:TRUE" + "Property" = "8:NEWRETARGETABLEPROPERTY1" + "Folders" + { + } + } + } + "Sequences" + { + } + "MergeModule" + { + "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_48CA68671B074BD7A662AC6CA4E9FFF7" + { + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:C:\\Program Files\\Microsoft Visual Studio 2008 SDK\\HelpIntegrationWizard\\VS_2008\\VSIPCC_Collection_Files_RTL_---_---.msm" + "Properties" + { + } + "LanguageId" = "3:1033" + "Exclude" = "11:FALSE" + "Folder" = "8:" + "Feature" = "8:" + "IsolateTo" = "8:" + } + "{CEE29DC0-9FBA-4B99-8D47-5BC643D9B626}:_9E03708D4ACD41FE89A10A8DE144C495" + { + "UseDynamicProperties" = "11:TRUE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:C:\\Program Files\\Microsoft Visual Studio 2008 SDK\\HelpIntegrationWizard\\MSHelp2\\2008\\HTML_Help_Registration__RTL_X86_---.msm" + "Properties" + { + } + "LanguageId" = "3:0" + "Exclude" = "11:FALSE" + "Folder" = "8:" + "Feature" = "8:" + "IsolateTo" = "8:" + } + } + "Module" + { + "ModuleSignature" = "8:MergeModule.5E86696916964FAC870AC72672758E6F" + "Version" = "8:1.0.0.0" + "Title" = "8:HelpIntegrationMergeModule" + "Subject" = "8:" + "Author" = "8:MSIT" + "Keywords" = "8:" + "Comments" = "8:" + "SearchPath" = "8:" + "UseSystemSearchPath" = "11:TRUE" + "TargetPlatform" = "3:0" + "PreBuildEvent" = "8:copy \"C:\\Program Files\\Microsoft Visual Studio 2008 SDK\\HelpIntegrationWizard\\MSHelp2\\MSHelp2_RegTables__RTL_---_---.msm\" \"$(ProjectDir)\\CollectionFiles\"" + "PostBuildEvent" = "8:\"$(ProjectDir)\\CollectionFiles\\FixRegTables.exe\" \"$(BuiltOuputPath)\" \"$(ProjectDir)\\\"" + "RunPostBuildEvent" = "3:0" + } + "ProjectOutput" + { + } + "Registry" + { + "HKLM" + { + "Keys" + { + } + } + "HKCU" + { + "Keys" + { + } + } + "HKCR" + { + "Keys" + { + } + } + "HKU" + { + "Keys" + { + } + } + "HKPU" + { + "Keys" + { + } + } + } + "Shortcut" + { + } + } +} diff --git a/src/Help/Code Examples/ASPNET-Csharp.htm b/old/src/Help/Code Examples/ASPNET-Csharp.htm similarity index 97% rename from src/Help/Code Examples/ASPNET-Csharp.htm rename to old/src/Help/Code Examples/ASPNET-Csharp.htm index c618c4d..62cec9e 100644 --- a/src/Help/Code Examples/ASPNET-Csharp.htm +++ b/old/src/Help/Code Examples/ASPNET-Csharp.htm @@ -1,237 +1,237 @@ - - -ASP.NET (C#) - - - - - - - -

DotNetZip - ASP.NET Example in C#

- -

ASP.NET Example in C#

- -

Here's an Example ASP.NET page, using C#, that dynamically creates a -zip file and saves it to Response.OutStream. From the browser, the user -will be prompted with the familiar download dialog box, allowing Open, -Save, or Cancel of the generated zip file.

- - -
-
-<%@ Page
-    Language="C#"
-    Debug="true" %>
-
-<%@ Import Namespace="System.Text" %>
-<%@ Import Namespace="System.IO" %>
-<%@ Import Namespace="Ionic.Zip" %>
-<%@ Import Namespace="System.Collections.Generic" %>
-
-<script language="C#" runat="server">
-
-// ZipExample.aspx
-//
-// This .aspx page demonstrates how to use the DotNetZip library from within ASP.NET.
-//
-// To run it,
-//  1. drop the Ionic.Zip.dll into the \bin directory of your ASP.NET app
-//  2. create a subdirectory called "fodder" in your web app directory.
-//  3. copy into that directory a variety of random files.
-//  4. insure your web.config is properly set up (See below)
-//
-//
-// notes:
-//  This requies the .NET Framework 3.5 - because it uses the ListView control that is
-//  new for ASP.NET in the .NET Framework v3.5.
-//
-//  To use this control, you must add the new web controls.  Also, you must use the v3.5 compiler.
-//  IF you build your app in Visual Studio, this is all done for you. If you don't use VS2008,
-//  here's an example web.config that works with this aspx file:
-//
-//    <configuration>
-//      <system.web>
-//        <trust level="Medium" />
-//        <compilation defaultLanguage="c#" />
-//        <pages>
-//          <controls>
-//            <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
-//          </controls>
-//        </pages>
-//      </system.web>
-//      <system.codedom>
-//        <compilers>
-//          <compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
-//            <providerOption name="CompilerVersion" value="v3.5" />
-//            <providerOption name="WarnAsError" value="false" />
-//          </compiler>
-//        </compilers>
-//      </system.codedom>
-//    </configuration>
-//
-//
-//
-
-
-public String width = "100%";
-
-public void Page_Load (Object sender, EventArgs e)
-{
-    try
-    {
-        if ( !Page.IsPostBack ) {
-            // populate the dropdownlist
-            // must have a directory called "fodder" in the web app
-            String homeDir = Server.MapPath(".");
-            String sMappedPath= Server.MapPath("fodder");
-
-            var fqFilenames= new List<String>(System.IO.Directory.GetFiles(sMappedPath));
-            var filenames= fqFilenames.ConvertAll((s) => { return s.Replace(sMappedPath+"\\", ""); });
-
-            ErrorMessage.InnerHtml = "";
-
-            FileListView.DataSource = filenames;
-            FileListView.DataBind();
-        }
-
-    }
-    catch (Exception)
-    {
-        // Ignored
-    }
-}
-
-
-public void btnGo_Click (Object sender, EventArgs e)
-{
-    ErrorMessage.InnerHtml ="";   // debugging only
-    var filesToInclude= new System.Collections.Generic.List<String>();
-    String sMappedPath= Server.MapPath("fodder");
-    var source= FileListView.DataKeys as DataKeyArray ;
-
-    foreach (var item in  FileListView.Items)
-    {
-        CheckBox chkbox= item.FindControl("include") as CheckBox ;
-        Label lbl= item.FindControl("label") as Label ;
-
-        if (chkbox!=null  && lbl != null)
-        {
-            if (chkbox.Checked)
-            {
-                ErrorMessage.InnerHtml += String.Format("adding file: {0}<br/>\n", lbl.Text);
-
-                filesToInclude.Add(System.IO.Path.Combine(sMappedPath,lbl.Text));
-            }
-        }
-    }
-
-    if (filesToInclude.Count==0)
-    {
-        ErrorMessage.InnerHtml += "You did not select any files?<br/>\n";
-
-    }
-    else
-    {
-        Response.Clear();
-
-        System.Web.HttpContext c= System.Web.HttpContext.Current;
-        String ReadmeText= String.Format("README.TXT\n\nHello!\n\n"+
-                                         "This is a zip file that was dynamically generated at {0}\n"+
-                                         "by an ASP.NET Page running on the machine named '{1}'.\n"+
-                                         "The server type is: {2}\n",
-                                         System.DateTime.Now.ToString("G"),
-                                         System.Environment.MachineName,
-                                         c.Request.ServerVariables["SERVER_SOFTWARE"]
-                                         );
-        string archiveName= String.Format("archive-{0}.zip", DateTime.Now.ToString("yyyy-MMM-dd-HHmmss"));
-        Response.ContentType = "application/zip";
-        Response.AddHeader("content-disposition", "filename=" + archiveName);
-
-        using (ZipFile zip = new ZipFile())
-        {
-            foreach (var f in filesToInclude)
-            {
-                zip.AddFile(f, "files");
-            }
-            zip.AddEntry("Readme.txt", ReadmeText);
-            zip.Save(Response.OutputStream);
-        }
-        Response.Close();
-    }
-
-}
-
-</script>
-
-
-
-<html>
-  <head>
-    <link rel="stylesheet" href="style/basic.css">
-  </head>
-
-  <body>
-
-    <form id="Form" runat="server">
-
-      <h3> <span id="Title" runat="server" />Zip Files from ASP.NET </h3>
-
-      <p>This page uses the .NET Zip library
-      (see <a href="http://www.codeplex/com/DotNetZip">http://www.codeplex/com/DotNetZip</a>)
-       to dynamically create a zip archive, and then download it to the browser through Response.OutputStream</p>
-
-      <span class="SampleTitle"><b>Check the boxes to select the files, then click the button to zip them up.</b></span>
-      <br/>
-      <br/>
-      <asp:Button id="btnGo" Text="Zip checked files" AutoPostBack OnClick="btnGo_Click" runat="server"/>
-
-      <br/>
-      <br/>
-      <span style="color:red" id="ErrorMessage" runat="server"/>
-      <br/>
-
-      <asp:ListView ID="FileListView" runat="server">
-
-        <LayoutTemplate>
-          <table>
-            <tr ID="itemPlaceholder" runat="server" />
-          </table>
-        </LayoutTemplate>
-
-        <ItemTemplate>
-          <tr>
-            <td><asp:Checkbox ID="include" runat="server"/></td>
-            <td><asp:Label id="label" runat="server" Text="<%# Container.DataItem %>" /></td>
-          </tr>
-        </ItemTemplate>
-
-        <EmptyDataTemplate>
-          <div>Nothing to see here...</div>
-        </EmptyDataTemplate>
-
-      </asp:ListView>
-
-
-    </form>
-
-  </body>
-
-</html>
-
-
- - - - - + + +ASP.NET (C#) + + + + + + + +

DotNetZip - ASP.NET Example in C#

+ +

ASP.NET Example in C#

+ +

Here's an Example ASP.NET page, using C#, that dynamically creates a +zip file and saves it to Response.OutStream. From the browser, the user +will be prompted with the familiar download dialog box, allowing Open, +Save, or Cancel of the generated zip file.

+ + +
+
+<%@ Page
+    Language="C#"
+    Debug="true" %>
+
+<%@ Import Namespace="System.Text" %>
+<%@ Import Namespace="System.IO" %>
+<%@ Import Namespace="Ionic.Zip" %>
+<%@ Import Namespace="System.Collections.Generic" %>
+
+<script language="C#" runat="server">
+
+// ZipExample.aspx
+//
+// This .aspx page demonstrates how to use the DotNetZip library from within ASP.NET.
+//
+// To run it,
+//  1. drop the Ionic.Zip.dll into the \bin directory of your ASP.NET app
+//  2. create a subdirectory called "fodder" in your web app directory.
+//  3. copy into that directory a variety of random files.
+//  4. insure your web.config is properly set up (See below)
+//
+//
+// notes:
+//  This requies the .NET Framework 3.5 - because it uses the ListView control that is
+//  new for ASP.NET in the .NET Framework v3.5.
+//
+//  To use this control, you must add the new web controls.  Also, you must use the v3.5 compiler.
+//  IF you build your app in Visual Studio, this is all done for you. If you don't use VS2008,
+//  here's an example web.config that works with this aspx file:
+//
+//    <configuration>
+//      <system.web>
+//        <trust level="Medium" />
+//        <compilation defaultLanguage="c#" />
+//        <pages>
+//          <controls>
+//            <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
+//          </controls>
+//        </pages>
+//      </system.web>
+//      <system.codedom>
+//        <compilers>
+//          <compiler language="c#;cs;csharp" extension=".cs" warningLevel="4" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+//            <providerOption name="CompilerVersion" value="v3.5" />
+//            <providerOption name="WarnAsError" value="false" />
+//          </compiler>
+//        </compilers>
+//      </system.codedom>
+//    </configuration>
+//
+//
+//
+
+
+public String width = "100%";
+
+public void Page_Load (Object sender, EventArgs e)
+{
+    try
+    {
+        if ( !Page.IsPostBack ) {
+            // populate the dropdownlist
+            // must have a directory called "fodder" in the web app
+            String homeDir = Server.MapPath(".");
+            String sMappedPath= Server.MapPath("fodder");
+
+            var fqFilenames= new List<String>(System.IO.Directory.GetFiles(sMappedPath));
+            var filenames= fqFilenames.ConvertAll((s) => { return s.Replace(sMappedPath+"\\", ""); });
+
+            ErrorMessage.InnerHtml = "";
+
+            FileListView.DataSource = filenames;
+            FileListView.DataBind();
+        }
+
+    }
+    catch (Exception)
+    {
+        // Ignored
+    }
+}
+
+
+public void btnGo_Click (Object sender, EventArgs e)
+{
+    ErrorMessage.InnerHtml ="";   // debugging only
+    var filesToInclude= new System.Collections.Generic.List<String>();
+    String sMappedPath= Server.MapPath("fodder");
+    var source= FileListView.DataKeys as DataKeyArray ;
+
+    foreach (var item in  FileListView.Items)
+    {
+        CheckBox chkbox= item.FindControl("include") as CheckBox ;
+        Label lbl= item.FindControl("label") as Label ;
+
+        if (chkbox!=null  && lbl != null)
+        {
+            if (chkbox.Checked)
+            {
+                ErrorMessage.InnerHtml += String.Format("adding file: {0}<br/>\n", lbl.Text);
+
+                filesToInclude.Add(System.IO.Path.Combine(sMappedPath,lbl.Text));
+            }
+        }
+    }
+
+    if (filesToInclude.Count==0)
+    {
+        ErrorMessage.InnerHtml += "You did not select any files?<br/>\n";
+
+    }
+    else
+    {
+        Response.Clear();
+
+        System.Web.HttpContext c= System.Web.HttpContext.Current;
+        String ReadmeText= String.Format("README.TXT\n\nHello!\n\n"+
+                                         "This is a zip file that was dynamically generated at {0}\n"+
+                                         "by an ASP.NET Page running on the machine named '{1}'.\n"+
+                                         "The server type is: {2}\n",
+                                         System.DateTime.Now.ToString("G"),
+                                         System.Environment.MachineName,
+                                         c.Request.ServerVariables["SERVER_SOFTWARE"]
+                                         );
+        string archiveName= String.Format("archive-{0}.zip", DateTime.Now.ToString("yyyy-MMM-dd-HHmmss"));
+        Response.ContentType = "application/zip";
+        Response.AddHeader("content-disposition", "filename=" + archiveName);
+
+        using (ZipFile zip = new ZipFile())
+        {
+            foreach (var f in filesToInclude)
+            {
+                zip.AddFile(f, "files");
+            }
+            zip.AddEntry("Readme.txt", ReadmeText);
+            zip.Save(Response.OutputStream);
+        }
+        Response.Close();
+    }
+
+}
+
+</script>
+
+
+
+<html>
+  <head>
+    <link rel="stylesheet" href="style/basic.css">
+  </head>
+
+  <body>
+
+    <form id="Form" runat="server">
+
+      <h3> <span id="Title" runat="server" />Zip Files from ASP.NET </h3>
+
+      <p>This page uses the .NET Zip library
+      (see <a href="http://www.codeplex/com/DotNetZip">http://www.codeplex/com/DotNetZip</a>)
+       to dynamically create a zip archive, and then download it to the browser through Response.OutputStream</p>
+
+      <span class="SampleTitle"><b>Check the boxes to select the files, then click the button to zip them up.</b></span>
+      <br/>
+      <br/>
+      <asp:Button id="btnGo" Text="Zip checked files" AutoPostBack OnClick="btnGo_Click" runat="server"/>
+
+      <br/>
+      <br/>
+      <span style="color:red" id="ErrorMessage" runat="server"/>
+      <br/>
+
+      <asp:ListView ID="FileListView" runat="server">
+
+        <LayoutTemplate>
+          <table>
+            <tr ID="itemPlaceholder" runat="server" />
+          </table>
+        </LayoutTemplate>
+
+        <ItemTemplate>
+          <tr>
+            <td><asp:Checkbox ID="include" runat="server"/></td>
+            <td><asp:Label id="label" runat="server" Text="<%# Container.DataItem %>" /></td>
+          </tr>
+        </ItemTemplate>
+
+        <EmptyDataTemplate>
+          <div>Nothing to see here...</div>
+        </EmptyDataTemplate>
+
+      </asp:ListView>
+
+
+    </form>
+
+  </body>
+
+</html>
+
+
+ + + + + diff --git a/src/Help/Code Examples/ASPNET-VB.htm b/old/src/Help/Code Examples/ASPNET-VB.htm similarity index 97% rename from src/Help/Code Examples/ASPNET-VB.htm rename to old/src/Help/Code Examples/ASPNET-VB.htm index 64e5c51..f8c6455 100644 --- a/src/Help/Code Examples/ASPNET-VB.htm +++ b/old/src/Help/Code Examples/ASPNET-VB.htm @@ -1,272 +1,272 @@ - - -ASP.NET (VB) - - - - - - - -

DotNetZip - ASP.NET VB Example

- -

ASP.NET Example in VB

- -

Here's an Example ASP.NET page, using VB, that dynamically creates a -zip file and saves it to Response.OutStream. From the browser, the user -will be prompted with the familiar download dialog box, allowing Open, -Save, or Cancel of the generated zip file.

- -
-
-
-
-<%@ Page
-    Language="VB"
-    Debug="true"
-%>
-
-<%@ Import Namespace="System.Text" %>
-<%@ Import Namespace="System.IO" %>
-<%@ Import Namespace="Ionic.Zip" %>
-<%@ Import Namespace="System.Collections.Generic" %>
-
-<script language="VB" runat="server">
-
-' ZipExample.aspx
-'
-' This .aspx page demonstrates how to use the DotNetZip library from within ASP.NET.
-'
-' To run it,
-'  1. drop the Ionic.Zip.dll into the \bin directory of your asp.net app
-'  2. create a subdirectory called "fodder" in your web app directory.
-'  3. copy into that directory a variety of random files.
-'  4. insure your web.config is properly set up (See below)
-'
-'
-' notes:
-'  This requies the .NET Framework 3.5 - because it uses the ListView control that is
-'  new for ASP.NET in the .NET Framework v3.5.
-'
-'  To use this control, you must add the new web controls.  Also, you must use the v3.5 compiler.
-'  Here's an example web.config that works with this aspx file:
-'
-'    <configuration>
-'      <system.web>
-'        <trust level="Medium" />
-'        <compilation defaultLanguage="c#" />
-'        <pages>
-'          <controls>
-'            <add tagPrefix="asp" namespace="System.Web.UI.WebControls"
-'                 assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
-'          </controls>
-'        </pages>
-'      </system.web>
-'      <system.codedom>
-'        <compilers>
-'          <compiler language="c#;cs;csharp"
-'                extension=".cs"
-'                warningLevel="4"
-'                type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
-'            <providerOption name="CompilerVersion" value="v3.5" />
-'            <providerOption name="WarnAsError" value="false" />
-'          </compiler>
-'
-'          <compiler language="vb;vbs;visualbasic;vbscript"
-'                    extension=".vb"
-'                    warningLevel="4"
-'                    type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
-'            <providerOption name="CompilerVersion" value="v3.5" />
-'            <providerOption name="OptionInfer" value="false" />
-'            <providerOption name="WarnAsError" value="false" />
-'          </compiler>
-'
-'      </system.codedom>
-'    </configuration>
-'
-'
-
-
-Dim width as String = "100%"
-
-Public Sub Page_Load (ByVal sender As Object, ByVal e As System.EventArgs)
-    Try
-        If Not ( Page.IsPostBack ) Then
-            ' populate the dropdownlist
-            ' must have a directory called "fodder" in the web app
-            Dim homeDir as String = Server.MapPath(".")
-            Dim sMappedPath as  String= Server.MapPath("fodder")
-
-            Dim fqFilenames As New List(Of String)(System.IO.Directory.GetFiles(sMappedPath))
-
-            Dim filenames as List(Of String) = _
-                fqFilenames.ConvertAll (Function(s) s.Replace(sMappedPath & "\", ""))
-
-            ErrorMessage.InnerHtml = ""
-
-            FileListView.DataSource = filenames
-            FileListView.DataBind()
-        End If
-
-    Catch
-        ' Ignored
-    End Try
-
-End Sub
-
-
-
-Public Sub btnGo_Click (ByVal sender As System.Object, ByVal e As System.EventArgs)
-
-    ErrorMessage.InnerHtml =""   ' debugging only
-    Dim filesToInclude as New System.Collections.Generic.List(Of String)()
-    Dim sMappedPath as String= Server.MapPath("fodder")
-    Dim source As DataKeyArray= FileListView.DataKeys
-
-    For Each item As ListViewDataItem in FileListView.Items
-
-        Dim chkbox As CheckBox= CType(item.FindControl("include"), CheckBox)
-        Dim lbl As Label = CType(item.FindControl("label"), Label)
-
-        If Not (chkbox Is Nothing  OR  lbl Is Nothing) Then
-            If (chkbox.Checked) Then
-                ErrorMessage.InnerHtml = ErrorMessage.InnerHtml & _
-                        String.Format("adding file: {0}<br/>\n", lbl.Text)
-                filesToInclude.Add(System.IO.Path.Combine(sMappedPath,lbl.Text))
-            End If
-        End If
-    Next
-
-    If (filesToInclude.Count=0) Then
-        ErrorMessage.InnerHtml = ErrorMessage.InnerHtml & "You did not select any files?<br/>\n"
-    Else
-        Response.Clear
-        Response.BufferOutput= false
-
-        Dim enc as Ionic.Zip.EncryptionAlgorithm = Ionic.Zip.EncryptionAlgorithm.None
-        If (chkUseAes.Checked) Then
-            enc = EncryptionAlgorithm.WinZipAes256
-        End If
-
-        Dim c As System.Web.HttpContext = System.Web.HttpContext.Current
-        Dim ReadmeText As String= String.Format("README.TXT\n\nHello!\n\n" & _
-                                         "This is a zip file that was dynamically generated at {0}\n" & _
-                                         "by an ASP.NET Page running on the machine named '{1}'.\n" & _
-                                         "The server type is: {2}\n" & _
-                                         "The password used: {3}\n", _
-                                         "Encryption: {4}\n", _
-                                         System.DateTime.Now.ToString("G"), _
-                                         System.Environment.MachineName, _
-                                         c.Request.ServerVariables("SERVER_SOFTWARE"), _
-                                         tbPassword.Text, _
-                                         enc.ToString )
-        Dim archiveName as String= String.Format("archive-{0}.zip", DateTime.Now.ToString("yyyy-MMM-dd-HHmmss"))
-        Response.ContentType = "application/zip"
-        Response.AddHeader("content-disposition", "filename=" + archiveName)
-
-        Using zip as new ZipFile()
-            ' the Readme.txt file will not be password-protected.
-            zip.AddEntry("Readme.txt", ReadmeText, Encoding.Default)
-            If Not String.IsNullOrEmpty(tbPassword.Text) Then
-                zip.Password = tbPassword.Text
-                zip.Encryption = enc
-            End If
-
-            ' filesToInclude is a string[] or List<String>
-            zip.AddFiles(filesToInclude, "files")
-
-            zip.Save(Response.OutputStream)
-        End Using
-        Response.Close
-
-    End If
-
-End Sub
-
-
-</script>
-
-
-
-<html>
-  <head>
-    <link rel="stylesheet" href="style/basic.css">
-  </head>
-
-  <body>
-
-    <form id="Form" runat="server">
-
-      <h3> <span id="Title" runat="server" />Zip Files from ASP.NET </h3>
-
-      <p>This page uses the .NET Zip library (see <a
-      href="http://DotNetZip.codeplex.com">http://DotNetZip.codeplex.com/</a>)
-      to dynamically create a zip archive, and then download it to the
-      browser through Response.OutputStream.  This page is implemented
-      in VB.NET.</p>
-
-      <span class="SampleTitle"><b>Check the boxes to select the files, set a password if you like,
-      then click the button to zip them up.</b></span>
-      <br/>
-      <br/>
-      Password: <asp:TextBox id="tbPassword" Password='true' Text="" AutoPostBack runat="server"/>
-      <span style="color:Red">(Optional)</span>
-      <br/>
-      <br/>
-      Use AES?: <asp:CheckBox id="chkUseAes" AutoPostBack runat="server"/>
-      <br/>
-      <br/>
-      <asp:Button id="btnGo" Text="Zip checked files" AutoPostBack OnClick="btnGo_Click" runat="server"/>
-
-      <br/>
-      <br/>
-      <span style="color:red" id="ErrorMessage" runat="server"/>
-      <br/>
-
-      <asp:ListView ID="FileListView" runat="server">
-
-        <LayoutTemplate>
-          <table>
-            <tr ID="itemPlaceholder" runat="server" />
-          </table>
-        </LayoutTemplate>
-
-        <ItemTemplate>
-          <tr>
-            <td><asp:Checkbox ID="include" runat="server"/></td>
-            <td><asp:Label id="label" runat="server" Text="<%# Container.DataItem %>" /></td>
-          </tr>
-        </ItemTemplate>
-
-        <EmptyDataTemplate>
-          <div>Nothing to see here...</div>
-        </EmptyDataTemplate>
-
-      </asp:ListView>
-
-
-    </form>
-
-  </body>
-
-</html>
-
-
-
- - - - - - - + + +ASP.NET (VB) + + + + + + + +

DotNetZip - ASP.NET VB Example

+ +

ASP.NET Example in VB

+ +

Here's an Example ASP.NET page, using VB, that dynamically creates a +zip file and saves it to Response.OutStream. From the browser, the user +will be prompted with the familiar download dialog box, allowing Open, +Save, or Cancel of the generated zip file.

+ +
+
+
+
+<%@ Page
+    Language="VB"
+    Debug="true"
+%>
+
+<%@ Import Namespace="System.Text" %>
+<%@ Import Namespace="System.IO" %>
+<%@ Import Namespace="Ionic.Zip" %>
+<%@ Import Namespace="System.Collections.Generic" %>
+
+<script language="VB" runat="server">
+
+' ZipExample.aspx
+'
+' This .aspx page demonstrates how to use the DotNetZip library from within ASP.NET.
+'
+' To run it,
+'  1. drop the Ionic.Zip.dll into the \bin directory of your asp.net app
+'  2. create a subdirectory called "fodder" in your web app directory.
+'  3. copy into that directory a variety of random files.
+'  4. insure your web.config is properly set up (See below)
+'
+'
+' notes:
+'  This requies the .NET Framework 3.5 - because it uses the ListView control that is
+'  new for ASP.NET in the .NET Framework v3.5.
+'
+'  To use this control, you must add the new web controls.  Also, you must use the v3.5 compiler.
+'  Here's an example web.config that works with this aspx file:
+'
+'    <configuration>
+'      <system.web>
+'        <trust level="Medium" />
+'        <compilation defaultLanguage="c#" />
+'        <pages>
+'          <controls>
+'            <add tagPrefix="asp" namespace="System.Web.UI.WebControls"
+'                 assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
+'          </controls>
+'        </pages>
+'      </system.web>
+'      <system.codedom>
+'        <compilers>
+'          <compiler language="c#;cs;csharp"
+'                extension=".cs"
+'                warningLevel="4"
+'                type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+'            <providerOption name="CompilerVersion" value="v3.5" />
+'            <providerOption name="WarnAsError" value="false" />
+'          </compiler>
+'
+'          <compiler language="vb;vbs;visualbasic;vbscript"
+'                    extension=".vb"
+'                    warningLevel="4"
+'                    type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+'            <providerOption name="CompilerVersion" value="v3.5" />
+'            <providerOption name="OptionInfer" value="false" />
+'            <providerOption name="WarnAsError" value="false" />
+'          </compiler>
+'
+'      </system.codedom>
+'    </configuration>
+'
+'
+
+
+Dim width as String = "100%"
+
+Public Sub Page_Load (ByVal sender As Object, ByVal e As System.EventArgs)
+    Try
+        If Not ( Page.IsPostBack ) Then
+            ' populate the dropdownlist
+            ' must have a directory called "fodder" in the web app
+            Dim homeDir as String = Server.MapPath(".")
+            Dim sMappedPath as  String= Server.MapPath("fodder")
+
+            Dim fqFilenames As New List(Of String)(System.IO.Directory.GetFiles(sMappedPath))
+
+            Dim filenames as List(Of String) = _
+                fqFilenames.ConvertAll (Function(s) s.Replace(sMappedPath & "\", ""))
+
+            ErrorMessage.InnerHtml = ""
+
+            FileListView.DataSource = filenames
+            FileListView.DataBind()
+        End If
+
+    Catch
+        ' Ignored
+    End Try
+
+End Sub
+
+
+
+Public Sub btnGo_Click (ByVal sender As System.Object, ByVal e As System.EventArgs)
+
+    ErrorMessage.InnerHtml =""   ' debugging only
+    Dim filesToInclude as New System.Collections.Generic.List(Of String)()
+    Dim sMappedPath as String= Server.MapPath("fodder")
+    Dim source As DataKeyArray= FileListView.DataKeys
+
+    For Each item As ListViewDataItem in FileListView.Items
+
+        Dim chkbox As CheckBox= CType(item.FindControl("include"), CheckBox)
+        Dim lbl As Label = CType(item.FindControl("label"), Label)
+
+        If Not (chkbox Is Nothing  OR  lbl Is Nothing) Then
+            If (chkbox.Checked) Then
+                ErrorMessage.InnerHtml = ErrorMessage.InnerHtml & _
+                        String.Format("adding file: {0}<br/>\n", lbl.Text)
+                filesToInclude.Add(System.IO.Path.Combine(sMappedPath,lbl.Text))
+            End If
+        End If
+    Next
+
+    If (filesToInclude.Count=0) Then
+        ErrorMessage.InnerHtml = ErrorMessage.InnerHtml & "You did not select any files?<br/>\n"
+    Else
+        Response.Clear
+        Response.BufferOutput= false
+
+        Dim enc as Ionic.Zip.EncryptionAlgorithm = Ionic.Zip.EncryptionAlgorithm.None
+        If (chkUseAes.Checked) Then
+            enc = EncryptionAlgorithm.WinZipAes256
+        End If
+
+        Dim c As System.Web.HttpContext = System.Web.HttpContext.Current
+        Dim ReadmeText As String= String.Format("README.TXT\n\nHello!\n\n" & _
+                                         "This is a zip file that was dynamically generated at {0}\n" & _
+                                         "by an ASP.NET Page running on the machine named '{1}'.\n" & _
+                                         "The server type is: {2}\n" & _
+                                         "The password used: {3}\n", _
+                                         "Encryption: {4}\n", _
+                                         System.DateTime.Now.ToString("G"), _
+                                         System.Environment.MachineName, _
+                                         c.Request.ServerVariables("SERVER_SOFTWARE"), _
+                                         tbPassword.Text, _
+                                         enc.ToString )
+        Dim archiveName as String= String.Format("archive-{0}.zip", DateTime.Now.ToString("yyyy-MMM-dd-HHmmss"))
+        Response.ContentType = "application/zip"
+        Response.AddHeader("content-disposition", "filename=" + archiveName)
+
+        Using zip as new ZipFile()
+            ' the Readme.txt file will not be password-protected.
+            zip.AddEntry("Readme.txt", ReadmeText, Encoding.Default)
+            If Not String.IsNullOrEmpty(tbPassword.Text) Then
+                zip.Password = tbPassword.Text
+                zip.Encryption = enc
+            End If
+
+            ' filesToInclude is a string[] or List<String>
+            zip.AddFiles(filesToInclude, "files")
+
+            zip.Save(Response.OutputStream)
+        End Using
+        Response.Close
+
+    End If
+
+End Sub
+
+
+</script>
+
+
+
+<html>
+  <head>
+    <link rel="stylesheet" href="style/basic.css">
+  </head>
+
+  <body>
+
+    <form id="Form" runat="server">
+
+      <h3> <span id="Title" runat="server" />Zip Files from ASP.NET </h3>
+
+      <p>This page uses the .NET Zip library (see <a
+      href="http://DotNetZip.codeplex.com">http://DotNetZip.codeplex.com/</a>)
+      to dynamically create a zip archive, and then download it to the
+      browser through Response.OutputStream.  This page is implemented
+      in VB.NET.</p>
+
+      <span class="SampleTitle"><b>Check the boxes to select the files, set a password if you like,
+      then click the button to zip them up.</b></span>
+      <br/>
+      <br/>
+      Password: <asp:TextBox id="tbPassword" Password='true' Text="" AutoPostBack runat="server"/>
+      <span style="color:Red">(Optional)</span>
+      <br/>
+      <br/>
+      Use AES?: <asp:CheckBox id="chkUseAes" AutoPostBack runat="server"/>
+      <br/>
+      <br/>
+      <asp:Button id="btnGo" Text="Zip checked files" AutoPostBack OnClick="btnGo_Click" runat="server"/>
+
+      <br/>
+      <br/>
+      <span style="color:red" id="ErrorMessage" runat="server"/>
+      <br/>
+
+      <asp:ListView ID="FileListView" runat="server">
+
+        <LayoutTemplate>
+          <table>
+            <tr ID="itemPlaceholder" runat="server" />
+          </table>
+        </LayoutTemplate>
+
+        <ItemTemplate>
+          <tr>
+            <td><asp:Checkbox ID="include" runat="server"/></td>
+            <td><asp:Label id="label" runat="server" Text="<%# Container.DataItem %>" /></td>
+          </tr>
+        </ItemTemplate>
+
+        <EmptyDataTemplate>
+          <div>Nothing to see here...</div>
+        </EmptyDataTemplate>
+
+      </asp:ListView>
+
+
+    </form>
+
+  </body>
+
+</html>
+
+
+
+ + + + + + + diff --git a/src/Help/Code Examples/COM.htm b/old/src/Help/Code Examples/COM.htm similarity index 96% rename from src/Help/Code Examples/COM.htm rename to old/src/Help/Code Examples/COM.htm index 58ef054..10ec131 100644 --- a/src/Help/Code Examples/COM.htm +++ b/old/src/Help/Code Examples/COM.htm @@ -1,726 +1,726 @@ - - - -COM - ASP, PHP, VB6, JavaScript, VBScript - - - - - - -

DotNetZip can be used from COM Environments

- -

You can use DotNetZip from COM environments, via an -IDispatch (late bound) interface. This means you can call into the DotNetZip -library (the Ionic.Zip.dll assembly) from programming environments like PHP, -Perl, Javascript, and VBScript (including old-school ASP pages), among others. -

- -

If you download and install the DotNetZip Runtime MSI package, it -will set up DotNetZip for use with COM.

- -

If for some reason you prefer to not use the MSI package, then you will need to perform some manual steps to enable DotNetZip for COM usage.

- -
    -
  1. open a CMD.exe prompt.
  2. -
  3. Install into the GAC: gacutil -i Ionic.Zip.dll
  4. -
  5. Register for COM use: regasm Ionic.Zip.dll
  6. -
- -

Notes: You will need to be local administrator in order to -perform these steps. You need to perform those steps just once, on each -computer where COM applications will run that use DotNetZip. The gacutil -and regasm tools are included in the .NET Framework SDK.

- - -

Using the COM interface to DotNetZip

- -

Via the COM exposure, applications written in COM-capable environments like -old-school ASP using VBScript or Javascript, VBScript or Javascript running in Windows -Script Host, PHP, Perl, and others, can create instances of the ZipFile class, add -entries, and save archives, as any .NET application could. Most of DotNetZip's advanced -features are available to these COM environments, including ZIP64 support, -self-extracting archives, password-protected zip files, AES Encryption, spanned Zip -files, and Unicode support. Beyond creating zips, COM environments can also read zips, -modify them, or extract files from zip files.

- -

Some of the advanced features of DotNetZip are not available through -COM, including eventing, and streaming.

- -

IDispatch

- -

The key classes in DotNetZip that are exposed to COM are: ZipFile, -ZipEntry, and the various ZipExceptions. These are all exposed via -IDispatch interfaces - late binding only. (For those familiar with -.NET, DotNetZip is decorated with ClassInterfaceType.AutoDispatch.) There is no explicit -typelib exposed by DotNetZip.

- -

COM supports calling instance methods and properties on .NET classes; COM does not -support calling static methods on .NET objects via interop. To allow the various static -methods on the ZipFile class, such as ZipFile.CheckZip() and ZipFile.IsZipFile(), to be called from COM, DotNetZip includes a -ComHelper class. Instead of calling ZipFile.IsZipFile(), which is inaccessible to COM clients because it is -a static method, COM clients should call Ionic.Zip.ComHelper.IsZipFile(). Use ComHelper as you would, any other -class. The methods on the class are documented as with all the other classes in -DotNetZip. If you are not programming DotNetZip from COM, you don't need the ComHelper -class.

- - -

Overloaded Methods

- -

COM does not directly support calling overloaded methods. In a .NET -assembbly exposed to COM via interop, only the simplest method in a -method group is directly available to COM callers. For example, -consider ZipFile.AddFile. There are two overloads. Only the overload -that accepts a single string will be accessible via the name "AddFile" -to COM clients.

- -

In most cases the thing you need to accomplish is achievable anyway. -In the AddFile() case, setting the FileName on the entry after calling -AddFile() will do the trick.

- -

Also, the overloaded methods are available, via "mangled" -names: each successive overload gets a numeric suffix. Consider the -ZipFile.ExtractSelectedEntries method group; there are 5 overloads. The first, -simplest, is available via the name ExtractSelectedEntries. Then, -additional overloads are available via ExtractSelectedEntries_2, -ExtractSelectedEntries_3, and so on. The same is true for other -overloaded methods on the ZipFile and ZipEntry classes. -

- - -

For the ZipFile class:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Method OverloadIDispatch name
AddItem(string)AddItem
AddItem(string, string)AddItem_2
AddFile(string)AddFile
AddFile(string, string)AddFile_2
UpdateFile(string)UpdateFile
UpdateFile(string, string)UpdateFile_2
UpdateDirectory(string)UpdateDirectory
UpdateDirectory(string, string)UpdateDirectory_2
UpdateItem(string)UpdateItem
UpdateItem(string, string)UpdateItem_2
AddEntry(string,string)AddEntry
AddEntry(string,string,Encoding)AddEntry_2
AddEntry(string,Stream)AddEntry_3
AddEntry(string,byte[])AddEntry_4
UpdateEntry(string,string)UpdateEntry
UpdateEntry(string,string,Encoding)UpdateEntry_2
UpdateEntry(string,Stream)UpdateEntry_3
UpdateEntry(string,byte[])UpdateEntry_4
AddDirectory(string)AddDirectory
AddDirectory(string,string)AddDirectory_2
RemoveEntry(ZipEntry)RemoveEntry
RemoveEntry(string)RemoveEntry_2
ExtractAll(string)ExtractAll
ExtractAll(string, bool)ExtractAll_2
ExtractAll(string, ExtractExistingFileAction)ExtractAll_3
Save()Save
Save(string)Save_2
Save(Stream)Save_3
AddSelectedFiles(string)AddSelectedFiles
AddSelectedFiles(string, bool)AddSelectedFiles_2
AddSelectedFiles(string, string)AddSelectedFiles_3
AddSelectedFiles(string, string, bool)AddSelectedFiles_4
AddSelectedFiles(string, string, string)AddSelectedFiles_5
AddSelectedFiles(string, string, string, bool)AddSelectedFiles_6
RemoveSelectedEntries(string)RemoveSelectedEntries
AddSelectedFiles(string, string)RemoveSelectedEntries_2
ExtractSelectedEntries(string)ExtractSelectedEntries
ExtractSelectedEntries(string, ExtractExistingFileAction)ExtractSelectedEntries_2
ExtractSelectedEntries(string, string)ExtractSelectedEntries_3
ExtractSelectedEntries(string, string, string)ExtractSelectedEntries_4
ExtractSelectedEntries(string, string, string, ExtractExistingFileAction)ExtractSelectedEntries_5
SaveSelfExtractor(string, SelfExtractorFlavor)SaveSelfExtractor
SaveSelfExtractor(string, SelfExtractorFlavor, string)SaveSelfExtractor_2
SaveSelfExtractor(string, SelfExtractorFlavor, string, string)SaveSelfExtractor_3
- - - - -

For the ZipEntry class:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Method OverloadIDispatch name
Extract()Extract
Extract(ExtractExistingFileAction)Extract_2
Extract(Stream)Extract_3
Extract(string)Extract_4
Extract(string, ExtractExistingFileAction)Extract_5
ExtractWithPassword(string)ExtractWithPassword
ExtractWithPassword(string,string)ExtractWithPassword_2
ExtractWithPassword(ExtractExistingFileAction,string)ExtractWithPassword_3
ExtractWithPassword(string, ExtractExistingFileAction, string)ExtractWithPassword_4
ExtractWithPassword(Stream, string)ExtractWithPassword_5
- - -

The bad news is that the mappings between names and actual methods -will change over releases of DotNetZip. This means depending on these -names is a bit fragile, but it will work.

- - - -

Destroy the ZipFile object

- -

After you call .Dispose() on the ZipFile object, you should destroy -it completely. In VBSCript, this is done by setting the object -reference to Nothing. -

- -

The usage model for the ZipFile object

- -

After you initialize a ZipFile object, you can't reuse the same -object instance for another zip file. If for example, you have a set of -6 zip files, and you want to read and extract them in a loop, then -you'll need to instantiate a new ZipFile object to read each one. You -should call Dispose() on each one when you're finished, and then set it -to null/Nothing.

- - -

For enumerations

- -

DotNetZip exposes various enumerations to specify behavior in the -interface - for example, the Ionic.Zlib.CompressionLevel enum, and the -Ionic.Zip.ExtractExistingFileAction enum. Enums are not available to -IDispatch clients. COM applications that need to use enum values can -simply use the integer equivalent for those enums. In most cases those -integer values are specified in the documentation for the enum. For -example, for Ionic.Zip.ExtractExistingFileAction, the value of Throw is -0, while OverwriteSilently is 1.

- -

-Some examples follow. -

- -
- -

Using DotNetZip in PHP

- -

-This is a PHP script that dynamically creates a ZIP file on the server, -then downloads it to the requesting client. The Zip archive will use -256-bit AES encryption. -

- -
-  $fname = "zip-generated-from-php-" . date('Y-m-d-His') . ".zip";
-  $zipOutput = "c:\\temp\\" . $fname;
-  $zip = new COM("Ionic.Zip.ZipFile");
-  $zip->Name = $zipOutput;
-  $dirToZip= "c:\\temp\\psh";
-  $zip->Encryption = 3;
-  $zip->Password = "AES-Encryption-Is-Secure";
-  $zip->AddDirectory($dirToZip);
-  $zip->Save();
-  $zip->Dispose();
-
-  if (file_exists($zipOutput))
-  {
-    header('Cache-Control: no-cache, must-revalidate');
-    header('Content-Type: application/x-zip');
-    header('Content-Disposition: attachment; filename=' . $fname);
-    header('Content-Length: ' . filesize($zipOutput));
-    readfile($zipOutput);
-    unlink($zipOutput);
-  }
-
- - - - -

Using DotNetZip in Javascript

- -

This example dynamically creates a zipfile, using AES 256-bit encryption. -

- - -
-var filename = "C:\\temp\\ZipFile-created-from-javascript-" + generateTimestamp() + ".zip";
-
-try
-{
-    WScript.echo("Instantiating a ZipFile object...");
-    var zip = new ActiveXObject("Ionic.Zip.ZipFile");
-
-    WScript.echo("setting the encryption...");
-    // 3 = AES256, 2 = AES128, 1 = PKZIP, 0 = none
-    zip.Encryption = 3;
-
-    WScript.echo("setting the password...");
-    zip.Password = "This is the Password.";
-
-    WScript.echo("adding a selection of files...");
-    zip.AddSelectedFiles("*.js");
-    zip.AddSelectedFiles("*.vbs");
-
-    WScript.echo("setting the save name...");
-    zip.Name = filename;
-
-    WScript.echo("Saving...");
-    zip.Save();
-
-    WScript.echo("Disposing...");
-    zip.Dispose();
-
-    WScript.echo("Done.");
-}
-catch (e2)
-{
-    WScript.echo(e2.number + ": " + e2.name);
-    WScript.echo(e2.message);
-}
-
- -

This example lists the entries in a zipfile. -

- -
-
-var filename = "C:\\temp\\CompressedData.zip";
-
-try
-{
-    WScript.echo("Instantiating a ZipFile object...");
-    var zip = new ActiveXObject("Ionic.Zip.ZipFile");
-
-    WScript.echo("Initialize (Read)...(" + filename + ")");
-    zip.Initialize(filename);
-
-    WScript.echo("listing entries...");
-    var e = new Enumerator(zip);
-    for (; !e.atEnd(); e.moveNext())
-    {
-        var entry= e.item();
-        WScript.Echo ("  " + entry.FileName);
-    }
-
-    WScript.echo("Disposing...")
-    zip.Dispose();
-
-    WScript.echo("Done.");
-}
-catch (e2)
-{
-    WScript.echo(e2.number + ": " + e2.name);
-    WScript.echo(e2.message);
-}
-
- - - -

This example checks a ZipFile using the ComHelper class. -

- -
-
-function checkZip(filename)
-{
-    var obj = new ActiveXObject("Ionic.Zip.ComHelper");
-    return obj.IsZipFile(filename);
-}
-
-function checkZipWithExtract(filename)
-{
-    var obj = new ActiveXObject("Ionic.Zip.ComHelper");
-    return obj.IsZipFileWithExtract(filename);
-}
-
-function main()
-{
-    var result;
-    var args = WScript.Arguments;
-
-    if (args.Length == 1)
-    {
-        result = checkZip(args(0));
-    }
-    else if (args.Length == 2 && args(0) == "-x")
-    {
-        result = checkZipWithExtract(args(1));
-    }
-    else
-    {
-        WScript.Echo("TestCheckZip.js - check a zipfile using Javascript.");
-        WScript.Echo("  usage: TestCheckZip.js [-x]  ");
-        WScript.Quit(1);
-    }
-
-    WScript.Echo((result==0)?"That zip is not OK":"That zip is OK");
-    WScript.Quit(0);
-}
-
-main();
-
- - - -

Using DotNetZip in VBScript

- -

This example creates a zipfile, using AES 256-bit encryption. -

- - -
-
-  dim filename
-  filename = "C:\temp\ZipFile-created-from-VBScript.zip"
-
-  WScript.echo("Instantiating a ZipFile object...")
-  dim zip
-  set zip = CreateObject("Ionic.Zip.ZipFile")
-
-  WScript.echo("Setting the encryption...")
-  ' 3=AES256, 2=AES128, 1=PKZIP, 0=none
-  zip.Encryption = 3
-
-  WScript.echo("setting the password...")
-  zip.Password = "This is the Password."
-
-  WScript.echo("adding a selection of files...")
-  zip.AddSelectedFiles "*.js"
-  zip.AddSelectedFiles "*.vbs"
-
-  WScript.echo("setting the save name...")
-  zip.Name = filename
-
-  WScript.echo("Saving...")
-  zip.Save
-
-  WScript.echo("Disposing...")
-  zip.Dispose
-
-  zip = Nothing
-
-  WScript.echo("Done.")
-
-
- - - -

This example extracts all entries from a zipfile. -

- -
-
-  WScript.echo("Instantiating a ZipFile object...")
-  dim zip
-  set zip = CreateObject("Ionic.Zip.ZipFile")
-
-  WScript.echo("Initialize (Read)...")
-  zip.Initialize("CompressedData.zip")
-
-  WScript.echo("setting the password for extraction...")
-  zip.Password = "This is the Password."
-
-  WScript.echo("extracting all files...")
-  zip.ExtractAll "DotNetZip-extract"
-
-  WScript.echo("Disposing...")
-  zip.Dispose
-
-  WScript.echo("Done.")
-
-
- - - -

This example lists the entries in a zipfile, and extracts some of them. -

- -
-
-    WScript.echo("")
-    Dim zip
-    WScript.echo("Instantiating a ZipFile object...")
-    Set zip = CreateObject("Ionic.Zip.ZipFile")
-
-    WScript.echo("Initialize (Read)...")
-    zip.Initialize filename
-
-    Set fso = CreateObject("Scripting.FileSystemObject")
-    If Not fso.FolderExists("unpack") Then
-        fso.CreateFolder("unpack")
-    End If
-
-    ' Any call to ZipEntry.Extract() will put files into the
-    ' current working directory.  So set it here:
-    Set objShell = CreateObject("Wscript.Shell")
-    objShell.CurrentDirectory = "unpack"
-
-    WScript.echo("listing...")
-    For Each entry in zip
-       WScript.echo("  " & entry.FileName)
-       ext = Right(entry.FileName,4)
-       If (ext = ".vbs") Then
-          ' set password for extraction if necessary
-          entry.Password = "This is the Password."
-          entry.Extract
-       End If
-    Next
-
-    WScript.echo("Disposing...")
-    zip.Dispose
-
-    WScript.echo("Done.")
-
-
- - -

This example extracts selected entries from a zip archive, via the -ExtractSelectedEntries overload. It uses the mangled name to access the -method, as described above.

- -
-
-    Sub extractZip()
-        If Not (extractLocation = "") Then
-          Dim OverwriteSilently
-          OverwriteSilently = 1
-
-          Dim zip
-          Set zip = CreateObject("Ionic.Zip.ZipFile")
-
-          zip.Initialize filename
-
-          If password <> "" Then
-            zip.Password = password
-          End If
-
-          zip.ExtractSelectedEntries_5 "name = *.xml", Null, extractLocation, OverwriteSilently
-
-          zip.Dispose
-          zip = Nothing
-        End If
-
-    End Sub
-
-
- - - + + + +COM - ASP, PHP, VB6, JavaScript, VBScript + + + + + + +

DotNetZip can be used from COM Environments

+ +

You can use DotNetZip from COM environments, via an +IDispatch (late bound) interface. This means you can call into the DotNetZip +library (the Ionic.Zip.dll assembly) from programming environments like PHP, +Perl, Javascript, and VBScript (including old-school ASP pages), among others. +

+ +

If you download and install the DotNetZip Runtime MSI package, it +will set up DotNetZip for use with COM.

+ +

If for some reason you prefer to not use the MSI package, then you will need to perform some manual steps to enable DotNetZip for COM usage.

+ +
    +
  1. open a CMD.exe prompt.
  2. +
  3. Install into the GAC: gacutil -i Ionic.Zip.dll
  4. +
  5. Register for COM use: regasm Ionic.Zip.dll
  6. +
+ +

Notes: You will need to be local administrator in order to +perform these steps. You need to perform those steps just once, on each +computer where COM applications will run that use DotNetZip. The gacutil +and regasm tools are included in the .NET Framework SDK.

+ + +

Using the COM interface to DotNetZip

+ +

Via the COM exposure, applications written in COM-capable environments like +old-school ASP using VBScript or Javascript, VBScript or Javascript running in Windows +Script Host, PHP, Perl, and others, can create instances of the ZipFile class, add +entries, and save archives, as any .NET application could. Most of DotNetZip's advanced +features are available to these COM environments, including ZIP64 support, +self-extracting archives, password-protected zip files, AES Encryption, spanned Zip +files, and Unicode support. Beyond creating zips, COM environments can also read zips, +modify them, or extract files from zip files.

+ +

Some of the advanced features of DotNetZip are not available through +COM, including eventing, and streaming.

+ +

IDispatch

+ +

The key classes in DotNetZip that are exposed to COM are: ZipFile, +ZipEntry, and the various ZipExceptions. These are all exposed via +IDispatch interfaces - late binding only. (For those familiar with +.NET, DotNetZip is decorated with ClassInterfaceType.AutoDispatch.) There is no explicit +typelib exposed by DotNetZip.

+ +

COM supports calling instance methods and properties on .NET classes; COM does not +support calling static methods on .NET objects via interop. To allow the various static +methods on the ZipFile class, such as ZipFile.CheckZip() and ZipFile.IsZipFile(), to be called from COM, DotNetZip includes a +ComHelper class. Instead of calling ZipFile.IsZipFile(), which is inaccessible to COM clients because it is +a static method, COM clients should call Ionic.Zip.ComHelper.IsZipFile(). Use ComHelper as you would, any other +class. The methods on the class are documented as with all the other classes in +DotNetZip. If you are not programming DotNetZip from COM, you don't need the ComHelper +class.

+ + +

Overloaded Methods

+ +

COM does not directly support calling overloaded methods. In a .NET +assembbly exposed to COM via interop, only the simplest method in a +method group is directly available to COM callers. For example, +consider ZipFile.AddFile. There are two overloads. Only the overload +that accepts a single string will be accessible via the name "AddFile" +to COM clients.

+ +

In most cases the thing you need to accomplish is achievable anyway. +In the AddFile() case, setting the FileName on the entry after calling +AddFile() will do the trick.

+ +

Also, the overloaded methods are available, via "mangled" +names: each successive overload gets a numeric suffix. Consider the +ZipFile.ExtractSelectedEntries method group; there are 5 overloads. The first, +simplest, is available via the name ExtractSelectedEntries. Then, +additional overloads are available via ExtractSelectedEntries_2, +ExtractSelectedEntries_3, and so on. The same is true for other +overloaded methods on the ZipFile and ZipEntry classes. +

+ + +

For the ZipFile class:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method OverloadIDispatch name
AddItem(string)AddItem
AddItem(string, string)AddItem_2
AddFile(string)AddFile
AddFile(string, string)AddFile_2
UpdateFile(string)UpdateFile
UpdateFile(string, string)UpdateFile_2
UpdateDirectory(string)UpdateDirectory
UpdateDirectory(string, string)UpdateDirectory_2
UpdateItem(string)UpdateItem
UpdateItem(string, string)UpdateItem_2
AddEntry(string,string)AddEntry
AddEntry(string,string,Encoding)AddEntry_2
AddEntry(string,Stream)AddEntry_3
AddEntry(string,byte[])AddEntry_4
UpdateEntry(string,string)UpdateEntry
UpdateEntry(string,string,Encoding)UpdateEntry_2
UpdateEntry(string,Stream)UpdateEntry_3
UpdateEntry(string,byte[])UpdateEntry_4
AddDirectory(string)AddDirectory
AddDirectory(string,string)AddDirectory_2
RemoveEntry(ZipEntry)RemoveEntry
RemoveEntry(string)RemoveEntry_2
ExtractAll(string)ExtractAll
ExtractAll(string, bool)ExtractAll_2
ExtractAll(string, ExtractExistingFileAction)ExtractAll_3
Save()Save
Save(string)Save_2
Save(Stream)Save_3
AddSelectedFiles(string)AddSelectedFiles
AddSelectedFiles(string, bool)AddSelectedFiles_2
AddSelectedFiles(string, string)AddSelectedFiles_3
AddSelectedFiles(string, string, bool)AddSelectedFiles_4
AddSelectedFiles(string, string, string)AddSelectedFiles_5
AddSelectedFiles(string, string, string, bool)AddSelectedFiles_6
RemoveSelectedEntries(string)RemoveSelectedEntries
AddSelectedFiles(string, string)RemoveSelectedEntries_2
ExtractSelectedEntries(string)ExtractSelectedEntries
ExtractSelectedEntries(string, ExtractExistingFileAction)ExtractSelectedEntries_2
ExtractSelectedEntries(string, string)ExtractSelectedEntries_3
ExtractSelectedEntries(string, string, string)ExtractSelectedEntries_4
ExtractSelectedEntries(string, string, string, ExtractExistingFileAction)ExtractSelectedEntries_5
SaveSelfExtractor(string, SelfExtractorFlavor)SaveSelfExtractor
SaveSelfExtractor(string, SelfExtractorFlavor, string)SaveSelfExtractor_2
SaveSelfExtractor(string, SelfExtractorFlavor, string, string)SaveSelfExtractor_3
+ + + + +

For the ZipEntry class:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method OverloadIDispatch name
Extract()Extract
Extract(ExtractExistingFileAction)Extract_2
Extract(Stream)Extract_3
Extract(string)Extract_4
Extract(string, ExtractExistingFileAction)Extract_5
ExtractWithPassword(string)ExtractWithPassword
ExtractWithPassword(string,string)ExtractWithPassword_2
ExtractWithPassword(ExtractExistingFileAction,string)ExtractWithPassword_3
ExtractWithPassword(string, ExtractExistingFileAction, string)ExtractWithPassword_4
ExtractWithPassword(Stream, string)ExtractWithPassword_5
+ + +

The bad news is that the mappings between names and actual methods +will change over releases of DotNetZip. This means depending on these +names is a bit fragile, but it will work.

+ + + +

Destroy the ZipFile object

+ +

After you call .Dispose() on the ZipFile object, you should destroy +it completely. In VBSCript, this is done by setting the object +reference to Nothing. +

+ +

The usage model for the ZipFile object

+ +

After you initialize a ZipFile object, you can't reuse the same +object instance for another zip file. If for example, you have a set of +6 zip files, and you want to read and extract them in a loop, then +you'll need to instantiate a new ZipFile object to read each one. You +should call Dispose() on each one when you're finished, and then set it +to null/Nothing.

+ + +

For enumerations

+ +

DotNetZip exposes various enumerations to specify behavior in the +interface - for example, the Ionic.Zlib.CompressionLevel enum, and the +Ionic.Zip.ExtractExistingFileAction enum. Enums are not available to +IDispatch clients. COM applications that need to use enum values can +simply use the integer equivalent for those enums. In most cases those +integer values are specified in the documentation for the enum. For +example, for Ionic.Zip.ExtractExistingFileAction, the value of Throw is +0, while OverwriteSilently is 1.

+ +

+Some examples follow. +

+ +
+ +

Using DotNetZip in PHP

+ +

+This is a PHP script that dynamically creates a ZIP file on the server, +then downloads it to the requesting client. The Zip archive will use +256-bit AES encryption. +

+ +
+  $fname = "zip-generated-from-php-" . date('Y-m-d-His') . ".zip";
+  $zipOutput = "c:\\temp\\" . $fname;
+  $zip = new COM("Ionic.Zip.ZipFile");
+  $zip->Name = $zipOutput;
+  $dirToZip= "c:\\temp\\psh";
+  $zip->Encryption = 3;
+  $zip->Password = "AES-Encryption-Is-Secure";
+  $zip->AddDirectory($dirToZip);
+  $zip->Save();
+  $zip->Dispose();
+
+  if (file_exists($zipOutput))
+  {
+    header('Cache-Control: no-cache, must-revalidate');
+    header('Content-Type: application/x-zip');
+    header('Content-Disposition: attachment; filename=' . $fname);
+    header('Content-Length: ' . filesize($zipOutput));
+    readfile($zipOutput);
+    unlink($zipOutput);
+  }
+
+ + + + +

Using DotNetZip in Javascript

+ +

This example dynamically creates a zipfile, using AES 256-bit encryption. +

+ + +
+var filename = "C:\\temp\\ZipFile-created-from-javascript-" + generateTimestamp() + ".zip";
+
+try
+{
+    WScript.echo("Instantiating a ZipFile object...");
+    var zip = new ActiveXObject("Ionic.Zip.ZipFile");
+
+    WScript.echo("setting the encryption...");
+    // 3 = AES256, 2 = AES128, 1 = PKZIP, 0 = none
+    zip.Encryption = 3;
+
+    WScript.echo("setting the password...");
+    zip.Password = "This is the Password.";
+
+    WScript.echo("adding a selection of files...");
+    zip.AddSelectedFiles("*.js");
+    zip.AddSelectedFiles("*.vbs");
+
+    WScript.echo("setting the save name...");
+    zip.Name = filename;
+
+    WScript.echo("Saving...");
+    zip.Save();
+
+    WScript.echo("Disposing...");
+    zip.Dispose();
+
+    WScript.echo("Done.");
+}
+catch (e2)
+{
+    WScript.echo(e2.number + ": " + e2.name);
+    WScript.echo(e2.message);
+}
+
+ +

This example lists the entries in a zipfile. +

+ +
+
+var filename = "C:\\temp\\CompressedData.zip";
+
+try
+{
+    WScript.echo("Instantiating a ZipFile object...");
+    var zip = new ActiveXObject("Ionic.Zip.ZipFile");
+
+    WScript.echo("Initialize (Read)...(" + filename + ")");
+    zip.Initialize(filename);
+
+    WScript.echo("listing entries...");
+    var e = new Enumerator(zip);
+    for (; !e.atEnd(); e.moveNext())
+    {
+        var entry= e.item();
+        WScript.Echo ("  " + entry.FileName);
+    }
+
+    WScript.echo("Disposing...")
+    zip.Dispose();
+
+    WScript.echo("Done.");
+}
+catch (e2)
+{
+    WScript.echo(e2.number + ": " + e2.name);
+    WScript.echo(e2.message);
+}
+
+ + + +

This example checks a ZipFile using the ComHelper class. +

+ +
+
+function checkZip(filename)
+{
+    var obj = new ActiveXObject("Ionic.Zip.ComHelper");
+    return obj.IsZipFile(filename);
+}
+
+function checkZipWithExtract(filename)
+{
+    var obj = new ActiveXObject("Ionic.Zip.ComHelper");
+    return obj.IsZipFileWithExtract(filename);
+}
+
+function main()
+{
+    var result;
+    var args = WScript.Arguments;
+
+    if (args.Length == 1)
+    {
+        result = checkZip(args(0));
+    }
+    else if (args.Length == 2 && args(0) == "-x")
+    {
+        result = checkZipWithExtract(args(1));
+    }
+    else
+    {
+        WScript.Echo("TestCheckZip.js - check a zipfile using Javascript.");
+        WScript.Echo("  usage: TestCheckZip.js [-x]  ");
+        WScript.Quit(1);
+    }
+
+    WScript.Echo((result==0)?"That zip is not OK":"That zip is OK");
+    WScript.Quit(0);
+}
+
+main();
+
+ + + +

Using DotNetZip in VBScript

+ +

This example creates a zipfile, using AES 256-bit encryption. +

+ + +
+
+  dim filename
+  filename = "C:\temp\ZipFile-created-from-VBScript.zip"
+
+  WScript.echo("Instantiating a ZipFile object...")
+  dim zip
+  set zip = CreateObject("Ionic.Zip.ZipFile")
+
+  WScript.echo("Setting the encryption...")
+  ' 3=AES256, 2=AES128, 1=PKZIP, 0=none
+  zip.Encryption = 3
+
+  WScript.echo("setting the password...")
+  zip.Password = "This is the Password."
+
+  WScript.echo("adding a selection of files...")
+  zip.AddSelectedFiles "*.js"
+  zip.AddSelectedFiles "*.vbs"
+
+  WScript.echo("setting the save name...")
+  zip.Name = filename
+
+  WScript.echo("Saving...")
+  zip.Save
+
+  WScript.echo("Disposing...")
+  zip.Dispose
+
+  zip = Nothing
+
+  WScript.echo("Done.")
+
+
+ + + +

This example extracts all entries from a zipfile. +

+ +
+
+  WScript.echo("Instantiating a ZipFile object...")
+  dim zip
+  set zip = CreateObject("Ionic.Zip.ZipFile")
+
+  WScript.echo("Initialize (Read)...")
+  zip.Initialize("CompressedData.zip")
+
+  WScript.echo("setting the password for extraction...")
+  zip.Password = "This is the Password."
+
+  WScript.echo("extracting all files...")
+  zip.ExtractAll "DotNetZip-extract"
+
+  WScript.echo("Disposing...")
+  zip.Dispose
+
+  WScript.echo("Done.")
+
+
+ + + +

This example lists the entries in a zipfile, and extracts some of them. +

+ +
+
+    WScript.echo("")
+    Dim zip
+    WScript.echo("Instantiating a ZipFile object...")
+    Set zip = CreateObject("Ionic.Zip.ZipFile")
+
+    WScript.echo("Initialize (Read)...")
+    zip.Initialize filename
+
+    Set fso = CreateObject("Scripting.FileSystemObject")
+    If Not fso.FolderExists("unpack") Then
+        fso.CreateFolder("unpack")
+    End If
+
+    ' Any call to ZipEntry.Extract() will put files into the
+    ' current working directory.  So set it here:
+    Set objShell = CreateObject("Wscript.Shell")
+    objShell.CurrentDirectory = "unpack"
+
+    WScript.echo("listing...")
+    For Each entry in zip
+       WScript.echo("  " & entry.FileName)
+       ext = Right(entry.FileName,4)
+       If (ext = ".vbs") Then
+          ' set password for extraction if necessary
+          entry.Password = "This is the Password."
+          entry.Extract
+       End If
+    Next
+
+    WScript.echo("Disposing...")
+    zip.Dispose
+
+    WScript.echo("Done.")
+
+
+ + +

This example extracts selected entries from a zip archive, via the +ExtractSelectedEntries overload. It uses the mangled name to access the +method, as described above.

+ +
+
+    Sub extractZip()
+        If Not (extractLocation = "") Then
+          Dim OverwriteSilently
+          OverwriteSilently = 1
+
+          Dim zip
+          Set zip = CreateObject("Ionic.Zip.ZipFile")
+
+          zip.Initialize filename
+
+          If password <> "" Then
+            zip.Password = password
+          End If
+
+          zip.ExtractSelectedEntries_5 "name = *.xml", Null, extractLocation, OverwriteSilently
+
+          zip.Dispose
+          zip = Nothing
+        End If
+
+    End Sub
+
+
+ + + diff --git a/src/Help/Code Examples/Code Examples.htm b/old/src/Help/Code Examples/Code Examples.htm similarity index 93% rename from src/Help/Code Examples/Code Examples.htm rename to old/src/Help/Code Examples/Code Examples.htm index 5a35c06..4b06c1f 100644 --- a/src/Help/Code Examples/Code Examples.htm +++ b/old/src/Help/Code Examples/Code Examples.htm @@ -1,7 +1,7 @@ - - - - -Code Examples - - + + + + +Code Examples + + diff --git a/src/Help/Code Examples/Cpp.htm b/old/src/Help/Code Examples/Cpp.htm similarity index 96% rename from src/Help/Code Examples/Cpp.htm rename to old/src/Help/Code Examples/Cpp.htm index 7ec8e9a..197b0db 100644 --- a/src/Help/Code Examples/Cpp.htm +++ b/old/src/Help/Code Examples/Cpp.htm @@ -1,312 +1,312 @@ - - -C++/CLI - - - - - - -

You can use DotNetZip from C++/CLI

- -

- A program written in C++/CLI can take advantage of any managed - library. It"s easy to use DotNetZip from a C++/CLI application. This - page will show some examples. -

- -

- Using C++/CLI, the key difference from VB and C#, is that there is - no using statement in C++. C++ applications need to - surround the use of the ZipFile class with a try..catch.. and call the - ZipFile destructor, or call delete, in the finally clause. -

- -
- -

Create a zip file

- -

This example just creates a simple zipfile. It uses the destructor. -

- -
-
-using namespace System;
-using namespace Ionic::Zip;
-
-int main(array<System::String ^> ^args)
-{
-    Console::WriteLine(L"Hello World");
-
-    ZipFile ^ zip;
-    try
-    {
-        zip = gcnew ZipFile();
-        zip->AddEntry("Readme.txt", "This is the content for the Readme.txt entry.");
-        zip->AddFile("CreateZipFile.cpp");
-        zip->Save("test.zip");
-    }
-    finally
-    {
-        zip->~ZipFile();
-    }
-
-    Console::WriteLine(L"Press <ENTER> to quit.");
-    Console::ReadLine();
-    return 0;
-}
-
-
- -

This alternative uses the C++ deleee syntax: -

- - -
-
-using namespace System;
-using namespace Ionic::Zip;
-
-int main(array<System::String ^> ^args)
-{
-    Console::WriteLine(L"Hello World");
-
-    ZipFile ^ zip;
-    try
-    {
-        zip = gcnew ZipFile();
-        zip->AddEntry("Readme.txt", "This is the content for the Readme.txt entry.");
-        zip->AddFile("CreateZipFile.cpp");
-        zip->Save("test.zip");
-    }
-    finally
-    {
-        delete zip;
-    }
-
-    Console::WriteLine(L"Press <ENTER> to quit.");
-    Console::ReadLine();
-    return 0;
-}
-
-
- - -

Building C++/CLI program that uses DotNetZip

- -

Build a C++/CLI program that uses DotNetZip, just as you would build -any C++/CLI program.

- -

The easiest way is to use Visual Studio, and create a C++/CLI -project. Right click on the project and select References.... Add a reference to the Ionic.Zip.dll -assembly. Click OK, then build your application.

- -

You can also build using command-line tools. To do this, you will -need to compile using the c++ source using the cl.exe tool, specifying -the /clr option, and specifying where to find the Ionic.Zip.dll -assembly. A typical series of steps to build a simple C++/CLI program -that uses DotNetZip from one source file, supposing the name of the -source file is CreateZipFile.cpp, is:

- -
-  \vc9\bin\cl.exe /Od /FD /EHa /MDd  /Fo".\\"  -I\vc9\include /W3 /c /Zi /clr /TP
-      /FU "c:\Windows\Microsoft.NET\Framework\v2.0.50727\System.dll"
-      /FU Ionic.Zip.dll CreateZipFile.cpp
-
-  \vc9\bin\link.exe /OUT:CreateZipFile.exe  /DEBUG /ASSEMBLYDEBUG
-      /MANIFEST /MANIFESTFILE:"CreateZipFile.exe.intermediate.manifest"
-      /MANIFESTUAC:"level='asInvoker' uiAccess='false'"
-      /PDB:CreateZipFile.pdb /DYNAMICBASE /FIXED:No /NXCOMPAT /MACHINE:X86
-      /LIBPATH:\vc9\lib /LIBPATH:\winsdk\lib CreateZipFile.obj
-
-  c:\netsdk2.0\Bin\mt.exe /outputresource:"CreateZipFile.exe;#1"
-      /manifest CreateZipFile.exe.intermediate.manifest
-
- - - -

Create a zip file using AES encryption

- -

This example creates a zipfile, using AES 128-bit -encryption to encrypt the entries. -

- -
-
-#include "stdafx.h"
-
-using namespace System;
-using namespace Ionic::Zip;
-
-int main(array<System::String ^> ^args)
-{
-    Console::WriteLine(L"Hello World");
-
-    ZipFile ^ zip;
-    try
-    {
-        zip = gcnew ZipFile();
-        zip->Password = verySecret;
-        zip->Encryption = EncryptionAlgorithm::WinZipAes128;
-        zip->AddEntry("Readme.txt", "This is the content for the Readme.txt entry.");
-        zip->AddFile("Data.csv");
-        zip->Save("test.zip");
-    }
-    finally
-    {
-        zip->~ZipFile();
-    }
-
-    Console::WriteLine(L"Press <ENTER> to quit.");
-    Console::ReadLine();
-    return 0;
-}
-
-
- - -

Use a SaveProgress event from C++

- -

This example creates a zipfile, and uses a SaveProgress event. -

- -
-
-
-#include "stdafx.h"
-
-using namespace System;
-using namespace System::IO;
-using namespace Ionic::Zip;
-
-
-public ref class DnzHelloCppCli
-{
-
-private:
-    bool justHadByteUpdate;
-
-public:
-    DnzHelloCppCli()
-        {
-        }
-
-public:
-    void Run()
-        {
-            Console::WriteLine(L"Hello World");
-            Console::WriteLine("Using DotNetZip version {0}", ZipFile::LibraryVersion);
-            array<String^>^ filesToAdd = System::IO::Directory::GetFiles(".", "*.cpp");
-
-            ZipFile ^ zip;
-            try
-            {
-                zip = gcnew ZipFile();
-                zip->Password = "Harbinger";
-                zip->Encryption = EncryptionAlgorithm::WinZipAes128;
-                zip->SaveProgress += gcnew EventHandler<SaveProgressEventArgs^>(this, &DnzHelloCppCli::SaveProgress);
-                zip->AddEntry("Readme.txt", "This is the content for the Readme.txt entry.");
-                zip->AddFiles(filesToAdd, "files");
-                zip->Save("MyArchive.zip");
-            }
-            finally
-            {
-                zip->~ZipFile();
-            }
-
-            Console::WriteLine(L"Press <ENTER> to quit.");
-            Console::ReadLine();
-            return;
-        }
-
-public:
-    void SaveProgress(Object^ sender, SaveProgressEventArgs^ e)
-        {
-            switch (e->EventType)
-            {
-                case ZipProgressEventType::Saving_Started:
-                {
-                    Console::WriteLine("Saving: {0}", e->ArchiveName);
-                    break;
-                }
-                case ZipProgressEventType::Saving_BeforeWriteEntry:
-                {
-                    if (this->justHadByteUpdate)
-                    {
-                        Console::WriteLine();
-                    }
-                    Console::WriteLine("  Writing: {0} ({1}/{2})",
-                                       e->CurrentEntry->FileName,
-                                       (e->EntriesSaved + 1),
-                                       e->EntriesTotal);
-                    this->justHadByteUpdate = false;
-                    break;
-                }
-                case ZipProgressEventType::Saving_AfterWriteEntry:
-                {
-                    if (e->CurrentEntry->InputStreamWasJitProvided)
-                    {
-                        e->CurrentEntry->InputStream->Close();
-                        e->CurrentEntry->InputStream = nullptr;
-                    }
-                    break;
-                }
-                case ZipProgressEventType::Saving_Completed:
-                {
-                    this->justHadByteUpdate = false;
-                    Console::WriteLine();
-                    Console::WriteLine("Done: {0}", e->ArchiveName);
-                    break;
-                }
-                case ZipProgressEventType::Saving_EntryBytesRead:
-                {
-                    if (this->justHadByteUpdate)
-                    {
-                        Console::SetCursorPosition(0, Console::CursorTop);
-                    }
-                    Console::Write("     {0}/{1} ({2:N0}%)",
-                                   e->BytesTransferred,
-                                   e->TotalBytesToTransfer,
-                                   (((double) e->BytesTransferred) / (0.01 * e->TotalBytesToTransfer)));
-                    this->justHadByteUpdate = true;
-                    break;
-                }
-            }
-        }
-
-};
-
-
-int main(array<System::String ^> ^args)
-{
-    try
-    {
-        DnzHelloCppCli^ me = gcnew DnzHelloCppCli();
-        me->Run();
-    }
-    catch (Exception^ ex1)
-    {
-        Console::Error->WriteLine(String::Concat("exception: ", ex1));
-    }
-    return 0;
-}
-
-
- - - - + + +C++/CLI + + + + + + +

You can use DotNetZip from C++/CLI

+ +

+ A program written in C++/CLI can take advantage of any managed + library. It"s easy to use DotNetZip from a C++/CLI application. This + page will show some examples. +

+ +

+ Using C++/CLI, the key difference from VB and C#, is that there is + no using statement in C++. C++ applications need to + surround the use of the ZipFile class with a try..catch.. and call the + ZipFile destructor, or call delete, in the finally clause. +

+ +
+ +

Create a zip file

+ +

This example just creates a simple zipfile. It uses the destructor. +

+ +
+
+using namespace System;
+using namespace Ionic::Zip;
+
+int main(array<System::String ^> ^args)
+{
+    Console::WriteLine(L"Hello World");
+
+    ZipFile ^ zip;
+    try
+    {
+        zip = gcnew ZipFile();
+        zip->AddEntry("Readme.txt", "This is the content for the Readme.txt entry.");
+        zip->AddFile("CreateZipFile.cpp");
+        zip->Save("test.zip");
+    }
+    finally
+    {
+        zip->~ZipFile();
+    }
+
+    Console::WriteLine(L"Press <ENTER> to quit.");
+    Console::ReadLine();
+    return 0;
+}
+
+
+ +

This alternative uses the C++ deleee syntax: +

+ + +
+
+using namespace System;
+using namespace Ionic::Zip;
+
+int main(array<System::String ^> ^args)
+{
+    Console::WriteLine(L"Hello World");
+
+    ZipFile ^ zip;
+    try
+    {
+        zip = gcnew ZipFile();
+        zip->AddEntry("Readme.txt", "This is the content for the Readme.txt entry.");
+        zip->AddFile("CreateZipFile.cpp");
+        zip->Save("test.zip");
+    }
+    finally
+    {
+        delete zip;
+    }
+
+    Console::WriteLine(L"Press <ENTER> to quit.");
+    Console::ReadLine();
+    return 0;
+}
+
+
+ + +

Building C++/CLI program that uses DotNetZip

+ +

Build a C++/CLI program that uses DotNetZip, just as you would build +any C++/CLI program.

+ +

The easiest way is to use Visual Studio, and create a C++/CLI +project. Right click on the project and select References.... Add a reference to the Ionic.Zip.dll +assembly. Click OK, then build your application.

+ +

You can also build using command-line tools. To do this, you will +need to compile using the c++ source using the cl.exe tool, specifying +the /clr option, and specifying where to find the Ionic.Zip.dll +assembly. A typical series of steps to build a simple C++/CLI program +that uses DotNetZip from one source file, supposing the name of the +source file is CreateZipFile.cpp, is:

+ +
+  \vc9\bin\cl.exe /Od /FD /EHa /MDd  /Fo".\\"  -I\vc9\include /W3 /c /Zi /clr /TP
+      /FU "c:\Windows\Microsoft.NET\Framework\v2.0.50727\System.dll"
+      /FU Ionic.Zip.dll CreateZipFile.cpp
+
+  \vc9\bin\link.exe /OUT:CreateZipFile.exe  /DEBUG /ASSEMBLYDEBUG
+      /MANIFEST /MANIFESTFILE:"CreateZipFile.exe.intermediate.manifest"
+      /MANIFESTUAC:"level='asInvoker' uiAccess='false'"
+      /PDB:CreateZipFile.pdb /DYNAMICBASE /FIXED:No /NXCOMPAT /MACHINE:X86
+      /LIBPATH:\vc9\lib /LIBPATH:\winsdk\lib CreateZipFile.obj
+
+  c:\netsdk2.0\Bin\mt.exe /outputresource:"CreateZipFile.exe;#1"
+      /manifest CreateZipFile.exe.intermediate.manifest
+
+ + + +

Create a zip file using AES encryption

+ +

This example creates a zipfile, using AES 128-bit +encryption to encrypt the entries. +

+ +
+
+#include "stdafx.h"
+
+using namespace System;
+using namespace Ionic::Zip;
+
+int main(array<System::String ^> ^args)
+{
+    Console::WriteLine(L"Hello World");
+
+    ZipFile ^ zip;
+    try
+    {
+        zip = gcnew ZipFile();
+        zip->Password = verySecret;
+        zip->Encryption = EncryptionAlgorithm::WinZipAes128;
+        zip->AddEntry("Readme.txt", "This is the content for the Readme.txt entry.");
+        zip->AddFile("Data.csv");
+        zip->Save("test.zip");
+    }
+    finally
+    {
+        zip->~ZipFile();
+    }
+
+    Console::WriteLine(L"Press <ENTER> to quit.");
+    Console::ReadLine();
+    return 0;
+}
+
+
+ + +

Use a SaveProgress event from C++

+ +

This example creates a zipfile, and uses a SaveProgress event. +

+ +
+
+
+#include "stdafx.h"
+
+using namespace System;
+using namespace System::IO;
+using namespace Ionic::Zip;
+
+
+public ref class DnzHelloCppCli
+{
+
+private:
+    bool justHadByteUpdate;
+
+public:
+    DnzHelloCppCli()
+        {
+        }
+
+public:
+    void Run()
+        {
+            Console::WriteLine(L"Hello World");
+            Console::WriteLine("Using DotNetZip version {0}", ZipFile::LibraryVersion);
+            array<String^>^ filesToAdd = System::IO::Directory::GetFiles(".", "*.cpp");
+
+            ZipFile ^ zip;
+            try
+            {
+                zip = gcnew ZipFile();
+                zip->Password = "Harbinger";
+                zip->Encryption = EncryptionAlgorithm::WinZipAes128;
+                zip->SaveProgress += gcnew EventHandler<SaveProgressEventArgs^>(this, &DnzHelloCppCli::SaveProgress);
+                zip->AddEntry("Readme.txt", "This is the content for the Readme.txt entry.");
+                zip->AddFiles(filesToAdd, "files");
+                zip->Save("MyArchive.zip");
+            }
+            finally
+            {
+                zip->~ZipFile();
+            }
+
+            Console::WriteLine(L"Press <ENTER> to quit.");
+            Console::ReadLine();
+            return;
+        }
+
+public:
+    void SaveProgress(Object^ sender, SaveProgressEventArgs^ e)
+        {
+            switch (e->EventType)
+            {
+                case ZipProgressEventType::Saving_Started:
+                {
+                    Console::WriteLine("Saving: {0}", e->ArchiveName);
+                    break;
+                }
+                case ZipProgressEventType::Saving_BeforeWriteEntry:
+                {
+                    if (this->justHadByteUpdate)
+                    {
+                        Console::WriteLine();
+                    }
+                    Console::WriteLine("  Writing: {0} ({1}/{2})",
+                                       e->CurrentEntry->FileName,
+                                       (e->EntriesSaved + 1),
+                                       e->EntriesTotal);
+                    this->justHadByteUpdate = false;
+                    break;
+                }
+                case ZipProgressEventType::Saving_AfterWriteEntry:
+                {
+                    if (e->CurrentEntry->InputStreamWasJitProvided)
+                    {
+                        e->CurrentEntry->InputStream->Close();
+                        e->CurrentEntry->InputStream = nullptr;
+                    }
+                    break;
+                }
+                case ZipProgressEventType::Saving_Completed:
+                {
+                    this->justHadByteUpdate = false;
+                    Console::WriteLine();
+                    Console::WriteLine("Done: {0}", e->ArchiveName);
+                    break;
+                }
+                case ZipProgressEventType::Saving_EntryBytesRead:
+                {
+                    if (this->justHadByteUpdate)
+                    {
+                        Console::SetCursorPosition(0, Console::CursorTop);
+                    }
+                    Console::Write("     {0}/{1} ({2:N0}%)",
+                                   e->BytesTransferred,
+                                   e->TotalBytesToTransfer,
+                                   (((double) e->BytesTransferred) / (0.01 * e->TotalBytesToTransfer)));
+                    this->justHadByteUpdate = true;
+                    break;
+                }
+            }
+        }
+
+};
+
+
+int main(array<System::String ^> ^args)
+{
+    try
+    {
+        DnzHelloCppCli^ me = gcnew DnzHelloCppCli();
+        me->Run();
+    }
+    catch (Exception^ ex1)
+    {
+        Console::Error->WriteLine(String::Concat("exception: ", ex1));
+    }
+    return 0;
+}
+
+
+ + + + diff --git a/src/Help/Code Examples/Csharp.htm b/old/src/Help/Code Examples/Csharp.htm similarity index 96% rename from src/Help/Code Examples/Csharp.htm rename to old/src/Help/Code Examples/Csharp.htm index 8155281..d6ef6fa 100644 --- a/src/Help/Code Examples/Csharp.htm +++ b/old/src/Help/Code Examples/Csharp.htm @@ -1,449 +1,449 @@ - - -C# - - - - - - -

DotNetZip - C# Examples

- -

Here are a bunch of examples in C# that illustrate how to use the library. -

- -

There are a few complete, working example applications shipped in the source code distribution.

- -
-

Create a zip file, and add items to it.

- -
-  using (ZipFile zip = new ZipFile())
-  {
-    zip.AddFile("ReadMe.txt");
-    zip.AddFile("Resume.doc");
-    zip.AddFile("Portrait.png");
-    zip.Save("Package.zip");
-  }
-
- - -
- -

Add items to a zip file, using Zip 2.0 encryption, and the same password for all items.

- -
-  using (ZipFile zip = new ZipFile())
-  {
-    zip.Password= "123456!";
-    zip.AddFile("ReadMe.txt");
-    zip.AddFile("7440-N49th.png");
-    zip.AddFile("2005_Annual_Report.pdf");
-    zip.Save("Backup.zip");
-  }
-
- - -
- -

Add files to a zip file, using Zip 2.0 encryption, and different passwords for different files.

-
-  using (ZipFile zip = new ZipFile())
-  {
-    zip.AddFile("ReadMe.txt"); // no password for this one
-    zip.Password= "123456!";
-    zip.AddFile("7440-N49th.png");
-    zip.Password= "!Secret1";
-    zip.AddFile("2005_Annual_Report.pdf");
-
-    zip.Save("Backup.zip");
-  }
-
- - -

Create a zip archive, and add files to it, using WinZip-compatible AES 256-bit encryption for one of the files.

-
-  using (ZipFile zip = new ZipFile())
-  {
-    zip.AddFile("ReadMe.txt"); // no password for this one
-    zip.Password= "Cool.Hand.Luke!";
-    zip.Encryption= EncryptionAlgorithm.WinZipAes256;
-    zip.AddFile("Rawdata-2008-12-18.csv");
-    zip.Save("Backup-AES-Encrypted.zip");
-  }
-
- - - -
- -

-Create a zip, and add a file, telling the library to not use compression -when adding in the file. This makes sense with previously-compressed -files such as those in .mp3 format. The Deflate algorithm can actually -increase the size of a data stream that has already been compressed. -The DotNetZip library intelligently turns off compression for those -files that get bigger with compression, but the ForceNoCompression -property allows you to do it explicitly. -

- -
-  using (ZipFile zip = new ZipFile())
-  {
-    zip.ForceNoCompression = true;
-    zip.AddFile(@"MyMusic\Handel\Messiah-01.mp3");
-    zip.Save(ZipFileToCreate);
-  }
-
- - - -
- -

Zip up an entire directory, recursively. Use unicode to encode -entries in the archive, for those files in that directory tree that have -characters outside the ANSI range. Finally, specify a comment on the -zip archive when creating it. (Be careful using Unicode - it is not -widely supported by other zip utilities)

- -
-  using (ZipFile zip = new ZipFile())
-  {
-    zip.UseUnicode= true;  // utf-8
-    zip.AddDirectory(@"MyDocuments\ProjectX");
-    zip.Comment = "This zip was created at " + System.DateTime.Now.ToString("G") ;
-    zip.Save(ZipFileToCreate);
-  }
-
- - - -
- -

Zip up an entire directory, recursively. Use the "big5" encoding for -those files in that directory tree that have -chinese characters. -

- -
-  using (ZipFile zip = new ZipFile())
-  {
-    zip.Encoding = System.Text.Encoding.GetEncoding("big5"); // chinese
-    zip.AddDirectory(@"MyDocuments\ProjectX");
-    zip.Save(ZipFileToCreate);
-  }
-
- - - -
- -

Zip up an file, using the ZIP64 extensions if necessary to support large files. -

- -
-  using (ZipFile zip = new ZipFile())
-  {
-    zip.UseZip64WhenSaving = Zip64Option.AsNecessary;
-    zip.AddFile(@"RawData-HugeFile-13800.dat");
-    zip.Save(ZipFileToCreate);
-  }
-
- - - -
- -

Zip up a set of files, each protected by the same password. Also, -explicitly override the last modified time for all of the files as they are stored -in the zip archive.

- -
-
-
- -

Zip up a set of files and directories, and re-map them into a -different directory hierarchy in the zip file.

- -
-  using (ZipFile zip = new ZipFile())
-  {
-    // files in the filesystem like MyDocuments\ProjectX\File1.txt , will be stored in the zip archive as  backup\File1.txt
-    zip.AddDirectory(@"MyDocuments\ProjectX", "backup");
-    // files in the filesystem like MyMusic\Santana\OyeComoVa.mp3, will be stored in the zip archive as  tunes\Santana\OyeComoVa.mp3
-    zip.AddDirectory("MyMusic", "tunes");
-    // The Readme.txt file in the filesystem will be stored in the zip archive as documents\Readme.txt
-    zip.AddDirectory("Readme.txt", "documents");
-
-    zip.Comment = "This zip was created at " + System.DateTime.Now.ToString("G") ;
-    zip.Save(ZipFileToCreate);
-  }
-
- -
- -

Add content obtained from a stream (MemoryStrean, FileStream, etc) -into a zip archive. Also, add a comment to the entry that was added from -the stream.

- -
-  using (ZipFile zip = new ZipFile())
-  {
-    ZipEntry e= zip.AddEntry("Content-From-Stream.bin", StreamToRead);
-    e.Comment = "The content for entry in the zip file was obtained from a stream";
-    zip.AddFile("Readme.txt");
-    zip.Save(ZipToCreate);
-  }
-
- - -
- -

Open an existing zip file, remove an entry from it, and save the archive. This was first supported in v1.5 of the library.

-
-  using (ZipFile zip = ZipFile.Read(ExistingZipFile))
-  {
-    // use the indexer to remove the file from the zip archive
-    zip["Readme.txt"] = null;
-    zip.Comment = "This archive has been modified from its original version. Some files have been removed.";
-    zip.Save();
-  }
-
- - -
- -

Open an existing zip file, rename an entry, then save it. This was first supported in v1.7 of the library.

-
- int renameCount = 0;
- using (ZipFile zip2 = ZipFile.Read(ExistingZipFile))
- {
-    foreach (ZipEntry e in zip2)
-    {
-      if (e.FileName.EndsWith(".txt"))
-      {
-         var newname = "renamed_files\\" + e.FileName;
-
-         e.FileName = newname;
-         e.Comment = "renamed";
-         renameCount++;
-      }
-    }
-    zip2.Comment = String.Format("This archive has been modified. {0} files have been renamed.", renameCount);
-    zip2.Save();
- }
-
- - -
- -

Extract all files from a zip archive:

-
-  using (ZipFile zip = ZipFile.Read(ExistingZipFile))
-  {
-    foreach (ZipEntry e in zip)
-    {
-      e.Extract(TargetDirectory);
-    }
-  }
-
- - -
- -

The default behavior of extraction is to NOT overwrite existing -files. In this example, the app Extracts all files, and overwrites -existing files in the filesystem:

- -
-  using (ZipFile zip = ZipFile.Read(ExistingZipFile))
-  {
-    foreach (ZipEntry e in zip)
-    {
-      e.Extract(TargetDirectory, true);  // overwrite == true
-    }
-  }
-
- - -
-

Extract an entry from the zip archive into a previously-opened stream:

- -
-  using (ZipFile zip = ZipFile.Read(ExistingZipFile))
-  {
-    ZipEntry e = zip["MyReport.doc"];
-    e.Extract(OutputStream);
-  }
-
- -
- -

Extract an Entry that was encrypted with a password, into the -specified base directory:

- -
-  using (ZipFile zip = ZipFile.Read(ExistingZipFile))
-  {
-    ZipEntry e = zip["TaxInformation-2008.xls"];
-    e.ExtractWithPassword(BaseDirectory, Password);
-  }
-
- -
- -

List all the entries in a zip file:

- -
-  using (ZipFile zip = ZipFile.Read(ExistingZipFile))
-  {
-    foreach (ZipEntry e in zip)
-    {
-      if (header)
-      {
-        System.Console.WriteLine("Zipfile: {0}", zip.Name);
-        if ((zip.Comment != null) && (zip.Comment != ""))
-          System.Console.WriteLine("Comment: {0}", zip.Comment);
-        System.Console.WriteLine("\n{1,-22} {2,8}  {3,5}   {4,8}  {5,3} {0}",
-                                 "Filename", "Modified", "Size", "Ratio", "Packed", "pw?");
-        System.Console.WriteLine(new System.String('-', 72));
-        header = false;
-      }
-      System.Console.WriteLine("{1,-22} {2,8} {3,5:F0}%   {4,8}  {5,3} {0}",
-                               e.FileName,
-                               e.LastModified.ToString("yyyy-MM-dd HH:mm:ss"),
-                               e.UncompressedSize,
-                               e.CompressionRatio,
-                               e.CompressedSize,
-                               (e.UsesEncryption) ? "Y" : "N");
-
-    }
-  }
-
- -
- -

Read in zip archive content from a stream, and extract the content -for one entry to another stream. In this example, the filename -"NameOfEntryInArchive.doc", refers only to the name of the entry within -the zip archive. A file by that name is not created in the -filesystem. The I/O is done strictly with the given streams.

- -
-  using (ZipFile zip = ZipFile.Read(InputStream))
-  {
-    zip.Extract("NameOfEntryInArchive.doc", OutputStream);
-  }
-
- -
- -

Create a zip dynamically within an ASP.NET postback method, then -download that zipfile to the requesting browser through -Response.OutputStream. This works in DotNetZip v1.5 and later.

- -
-public void btnGo_Click (Object sender, EventArgs e)
-{
-  Response.Clear();
-  String ReadmeText= "This is a zip file dynamically generated at " + System.DateTime.Now.ToString("G");
-  string filename = System.IO.Path.GetFileName(ListOfFiles.SelectedItem.Text) + ".zip";
-  Response.ContentType = "application/zip";
-  Response.AddHeader("content-disposition", "filename=" + filename);
-
-  using (ZipFile zip = new ZipFile())
-  {
-    zip.AddFile(ListOfFiles.SelectedItem.Text, "files");
-    zip.AddStringAsFile(ReadmeText, "Readme.txt", "");
-    zip.Save(Response.OutputStream);
-  }
-
-  Response.End();
-}
-
- -
-

Create a zip with a single entry, obtaining the content for that entry -from a string. Attach a comment to that entry. Specify the name of the zip file at the time of -save.

- -
-  string content = "......whatever....";
-  using (ZipFile zip = new ZipFile())
-  {
-    ZipEntry e = zip.AddEntry("README.txt", content);
-    e.Comment = "This entry in the zip archive was created from a string.";
-    zip.Save("archive-2008july12.zip");
-  }
-
- -
- -

Open an existing zip archive and modify it: update one entry, -remove another, and rename a third. Update the comment on the archive as well.

- -
-  using (ZipFile zip = ZipFile.Read("ExistingArchive.zip"))
-  {
-    ZipEntry e = zip["README.txt"];
-    e.RemoveEntry();
-
-    // for this entry, update the archive  with content from the filesystem
-    zip.UpdateItem("Portfolio.doc");
-
-    // update the filename of an entry
-    e = zip["Table1.jpg"];
-    e.FileName = "Figure1.jpg";
-
-    zip.Comment = "This zip archive was updated " + System.DateTime.ToString("G");
-    zip.Save();
-  }
-
- - - + + +C# + + + + + + +

DotNetZip - C# Examples

+ +

Here are a bunch of examples in C# that illustrate how to use the library. +

+ +

There are a few complete, working example applications shipped in the source code distribution.

+ +
+

Create a zip file, and add items to it.

+ +
+  using (ZipFile zip = new ZipFile())
+  {
+    zip.AddFile("ReadMe.txt");
+    zip.AddFile("Resume.doc");
+    zip.AddFile("Portrait.png");
+    zip.Save("Package.zip");
+  }
+
+ + +
+ +

Add items to a zip file, using Zip 2.0 encryption, and the same password for all items.

+ +
+  using (ZipFile zip = new ZipFile())
+  {
+    zip.Password= "123456!";
+    zip.AddFile("ReadMe.txt");
+    zip.AddFile("7440-N49th.png");
+    zip.AddFile("2005_Annual_Report.pdf");
+    zip.Save("Backup.zip");
+  }
+
+ + +
+ +

Add files to a zip file, using Zip 2.0 encryption, and different passwords for different files.

+
+  using (ZipFile zip = new ZipFile())
+  {
+    zip.AddFile("ReadMe.txt"); // no password for this one
+    zip.Password= "123456!";
+    zip.AddFile("7440-N49th.png");
+    zip.Password= "!Secret1";
+    zip.AddFile("2005_Annual_Report.pdf");
+
+    zip.Save("Backup.zip");
+  }
+
+ + +

Create a zip archive, and add files to it, using WinZip-compatible AES 256-bit encryption for one of the files.

+
+  using (ZipFile zip = new ZipFile())
+  {
+    zip.AddFile("ReadMe.txt"); // no password for this one
+    zip.Password= "Cool.Hand.Luke!";
+    zip.Encryption= EncryptionAlgorithm.WinZipAes256;
+    zip.AddFile("Rawdata-2008-12-18.csv");
+    zip.Save("Backup-AES-Encrypted.zip");
+  }
+
+ + + +
+ +

+Create a zip, and add a file, telling the library to not use compression +when adding in the file. This makes sense with previously-compressed +files such as those in .mp3 format. The Deflate algorithm can actually +increase the size of a data stream that has already been compressed. +The DotNetZip library intelligently turns off compression for those +files that get bigger with compression, but the ForceNoCompression +property allows you to do it explicitly. +

+ +
+  using (ZipFile zip = new ZipFile())
+  {
+    zip.ForceNoCompression = true;
+    zip.AddFile(@"MyMusic\Handel\Messiah-01.mp3");
+    zip.Save(ZipFileToCreate);
+  }
+
+ + + +
+ +

Zip up an entire directory, recursively. Use unicode to encode +entries in the archive, for those files in that directory tree that have +characters outside the ANSI range. Finally, specify a comment on the +zip archive when creating it. (Be careful using Unicode - it is not +widely supported by other zip utilities)

+ +
+  using (ZipFile zip = new ZipFile())
+  {
+    zip.UseUnicode= true;  // utf-8
+    zip.AddDirectory(@"MyDocuments\ProjectX");
+    zip.Comment = "This zip was created at " + System.DateTime.Now.ToString("G") ;
+    zip.Save(ZipFileToCreate);
+  }
+
+ + + +
+ +

Zip up an entire directory, recursively. Use the "big5" encoding for +those files in that directory tree that have +chinese characters. +

+ +
+  using (ZipFile zip = new ZipFile())
+  {
+    zip.Encoding = System.Text.Encoding.GetEncoding("big5"); // chinese
+    zip.AddDirectory(@"MyDocuments\ProjectX");
+    zip.Save(ZipFileToCreate);
+  }
+
+ + + +
+ +

Zip up an file, using the ZIP64 extensions if necessary to support large files. +

+ +
+  using (ZipFile zip = new ZipFile())
+  {
+    zip.UseZip64WhenSaving = Zip64Option.AsNecessary;
+    zip.AddFile(@"RawData-HugeFile-13800.dat");
+    zip.Save(ZipFileToCreate);
+  }
+
+ + + +
+ +

Zip up a set of files, each protected by the same password. Also, +explicitly override the last modified time for all of the files as they are stored +in the zip archive.

+ +
+
+
+ +

Zip up a set of files and directories, and re-map them into a +different directory hierarchy in the zip file.

+ +
+  using (ZipFile zip = new ZipFile())
+  {
+    // files in the filesystem like MyDocuments\ProjectX\File1.txt , will be stored in the zip archive as  backup\File1.txt
+    zip.AddDirectory(@"MyDocuments\ProjectX", "backup");
+    // files in the filesystem like MyMusic\Santana\OyeComoVa.mp3, will be stored in the zip archive as  tunes\Santana\OyeComoVa.mp3
+    zip.AddDirectory("MyMusic", "tunes");
+    // The Readme.txt file in the filesystem will be stored in the zip archive as documents\Readme.txt
+    zip.AddDirectory("Readme.txt", "documents");
+
+    zip.Comment = "This zip was created at " + System.DateTime.Now.ToString("G") ;
+    zip.Save(ZipFileToCreate);
+  }
+
+ +
+ +

Add content obtained from a stream (MemoryStrean, FileStream, etc) +into a zip archive. Also, add a comment to the entry that was added from +the stream.

+ +
+  using (ZipFile zip = new ZipFile())
+  {
+    ZipEntry e= zip.AddEntry("Content-From-Stream.bin", StreamToRead);
+    e.Comment = "The content for entry in the zip file was obtained from a stream";
+    zip.AddFile("Readme.txt");
+    zip.Save(ZipToCreate);
+  }
+
+ + +
+ +

Open an existing zip file, remove an entry from it, and save the archive. This was first supported in v1.5 of the library.

+
+  using (ZipFile zip = ZipFile.Read(ExistingZipFile))
+  {
+    // use the indexer to remove the file from the zip archive
+    zip["Readme.txt"] = null;
+    zip.Comment = "This archive has been modified from its original version. Some files have been removed.";
+    zip.Save();
+  }
+
+ + +
+ +

Open an existing zip file, rename an entry, then save it. This was first supported in v1.7 of the library.

+
+ int renameCount = 0;
+ using (ZipFile zip2 = ZipFile.Read(ExistingZipFile))
+ {
+    foreach (ZipEntry e in zip2)
+    {
+      if (e.FileName.EndsWith(".txt"))
+      {
+         var newname = "renamed_files\\" + e.FileName;
+
+         e.FileName = newname;
+         e.Comment = "renamed";
+         renameCount++;
+      }
+    }
+    zip2.Comment = String.Format("This archive has been modified. {0} files have been renamed.", renameCount);
+    zip2.Save();
+ }
+
+ + +
+ +

Extract all files from a zip archive:

+
+  using (ZipFile zip = ZipFile.Read(ExistingZipFile))
+  {
+    foreach (ZipEntry e in zip)
+    {
+      e.Extract(TargetDirectory);
+    }
+  }
+
+ + +
+ +

The default behavior of extraction is to NOT overwrite existing +files. In this example, the app Extracts all files, and overwrites +existing files in the filesystem:

+ +
+  using (ZipFile zip = ZipFile.Read(ExistingZipFile))
+  {
+    foreach (ZipEntry e in zip)
+    {
+      e.Extract(TargetDirectory, true);  // overwrite == true
+    }
+  }
+
+ + +
+

Extract an entry from the zip archive into a previously-opened stream:

+ +
+  using (ZipFile zip = ZipFile.Read(ExistingZipFile))
+  {
+    ZipEntry e = zip["MyReport.doc"];
+    e.Extract(OutputStream);
+  }
+
+ +
+ +

Extract an Entry that was encrypted with a password, into the +specified base directory:

+ +
+  using (ZipFile zip = ZipFile.Read(ExistingZipFile))
+  {
+    ZipEntry e = zip["TaxInformation-2008.xls"];
+    e.ExtractWithPassword(BaseDirectory, Password);
+  }
+
+ +
+ +

List all the entries in a zip file:

+ +
+  using (ZipFile zip = ZipFile.Read(ExistingZipFile))
+  {
+    foreach (ZipEntry e in zip)
+    {
+      if (header)
+      {
+        System.Console.WriteLine("Zipfile: {0}", zip.Name);
+        if ((zip.Comment != null) && (zip.Comment != ""))
+          System.Console.WriteLine("Comment: {0}", zip.Comment);
+        System.Console.WriteLine("\n{1,-22} {2,8}  {3,5}   {4,8}  {5,3} {0}",
+                                 "Filename", "Modified", "Size", "Ratio", "Packed", "pw?");
+        System.Console.WriteLine(new System.String('-', 72));
+        header = false;
+      }
+      System.Console.WriteLine("{1,-22} {2,8} {3,5:F0}%   {4,8}  {5,3} {0}",
+                               e.FileName,
+                               e.LastModified.ToString("yyyy-MM-dd HH:mm:ss"),
+                               e.UncompressedSize,
+                               e.CompressionRatio,
+                               e.CompressedSize,
+                               (e.UsesEncryption) ? "Y" : "N");
+
+    }
+  }
+
+ +
+ +

Read in zip archive content from a stream, and extract the content +for one entry to another stream. In this example, the filename +"NameOfEntryInArchive.doc", refers only to the name of the entry within +the zip archive. A file by that name is not created in the +filesystem. The I/O is done strictly with the given streams.

+ +
+  using (ZipFile zip = ZipFile.Read(InputStream))
+  {
+    zip.Extract("NameOfEntryInArchive.doc", OutputStream);
+  }
+
+ +
+ +

Create a zip dynamically within an ASP.NET postback method, then +download that zipfile to the requesting browser through +Response.OutputStream. This works in DotNetZip v1.5 and later.

+ +
+public void btnGo_Click (Object sender, EventArgs e)
+{
+  Response.Clear();
+  String ReadmeText= "This is a zip file dynamically generated at " + System.DateTime.Now.ToString("G");
+  string filename = System.IO.Path.GetFileName(ListOfFiles.SelectedItem.Text) + ".zip";
+  Response.ContentType = "application/zip";
+  Response.AddHeader("content-disposition", "filename=" + filename);
+
+  using (ZipFile zip = new ZipFile())
+  {
+    zip.AddFile(ListOfFiles.SelectedItem.Text, "files");
+    zip.AddStringAsFile(ReadmeText, "Readme.txt", "");
+    zip.Save(Response.OutputStream);
+  }
+
+  Response.End();
+}
+
+ +
+

Create a zip with a single entry, obtaining the content for that entry +from a string. Attach a comment to that entry. Specify the name of the zip file at the time of +save.

+ +
+  string content = "......whatever....";
+  using (ZipFile zip = new ZipFile())
+  {
+    ZipEntry e = zip.AddEntry("README.txt", content);
+    e.Comment = "This entry in the zip archive was created from a string.";
+    zip.Save("archive-2008july12.zip");
+  }
+
+ +
+ +

Open an existing zip archive and modify it: update one entry, +remove another, and rename a third. Update the comment on the archive as well.

+ +
+  using (ZipFile zip = ZipFile.Read("ExistingArchive.zip"))
+  {
+    ZipEntry e = zip["README.txt"];
+    e.RemoveEntry();
+
+    // for this entry, update the archive  with content from the filesystem
+    zip.UpdateItem("Portfolio.doc");
+
+    // update the filename of an entry
+    e = zip["Table1.jpg"];
+    e.FileName = "Figure1.jpg";
+
+    zip.Comment = "This zip archive was updated " + System.DateTime.ToString("G");
+    zip.Save();
+  }
+
+ + + diff --git a/src/Help/Code Examples/Powershell.htm b/old/src/Help/Code Examples/Powershell.htm similarity index 96% rename from src/Help/Code Examples/Powershell.htm rename to old/src/Help/Code Examples/Powershell.htm index 90870f9..b7638bd 100644 --- a/src/Help/Code Examples/Powershell.htm +++ b/old/src/Help/Code Examples/Powershell.htm @@ -1,99 +1,99 @@ - - -Powershell - - - - - - -

You can use DotNetZip from Powershell

- -

The programming model is the same as for VB or C#, with a few syntactic changes for Powershell. -This page will show some examples. -

- - -
- -

Create a zip file

- -

This example just creates a simple zipfile -

- - -
-
-# Load the assembly - replace this with your own path
-[System.Reflection.Assembly]::LoadFrom("c:\\dinoch\\bin\\Ionic.Zip.dll");
-
-$directoryToZip = "c:\\temp";
-$zipfile =  new-object Ionic.Zip.ZipFile;
-$e= $zipfile.AddEntry("Readme.txt", "This is a zipfile created from within powershell.")
-$e= $zipfile.AddDirectory($directoryToZip, "home")
-$zipfile.Save("ZipFiles.ps1.out.zip");
-$zipfile.Dispose();
-
- - -

Create a zip file using AES encryption

- -

This example creates a zipfile, using AES 256-bit -encryption to encrypt the entries. -

- -
-
-# Load the assembly - replace this with your own path
-[System.Reflection.Assembly]::LoadFrom("c:\\dinoch\\bin\\Ionic.Zip.dll")
-
-$directoryToZip = "c:\\dinoch\\dev\\powershell"
-$zipfile =  new-object Ionic.Zip.ZipFile
-$zipfile.Encryption = [Ionic.Zip.EncryptionAlgorithm]::WinZipAes256
-$zipfile.Password = "Albatros$"
-$e= $zipfile.AddEntry("Readme.txt", "This is a zipfile created from within powershell.")
-$e= $zipfile.AddSelectedFiles("name != *.zip", $directoryToZip, "home")
-$zipfile.Save("ZipFiles.ps1.out.zip")
-$zipfile.Dispose()
-
-
- - - -

Create a number of zip files, each containing a single file

- -

This example iterates through a set of files, and creates a -zipfile containing a single file, for each one. -

- -
-
-# Load the assembly - replace this with your own path
-[System.Reflection.Assembly]::LoadFrom("c:\\dinoch\\bin\\Ionic.Zip.dll");
-
-foreach ($file in gci $LogPath -filter $FileType -recurse |
-        where{$_.LastWriteTime -lt [DateTime]::Now.AddDays($DaysOld)})
-{
-    $FileName = $File.FullName
-    $ZipName = $File.FullName + ".zip"
-    $zip = new-object Ionic.Zip.ZipFile
-    $zip.AddFile($FileName, "");
-    $zip.Save($ZipName)
-    $zip.Dispose()
-}
-
- - - + + +Powershell + + + + + + +

You can use DotNetZip from Powershell

+ +

The programming model is the same as for VB or C#, with a few syntactic changes for Powershell. +This page will show some examples. +

+ + +
+ +

Create a zip file

+ +

This example just creates a simple zipfile +

+ + +
+
+# Load the assembly - replace this with your own path
+[System.Reflection.Assembly]::LoadFrom("c:\\dinoch\\bin\\Ionic.Zip.dll");
+
+$directoryToZip = "c:\\temp";
+$zipfile =  new-object Ionic.Zip.ZipFile;
+$e= $zipfile.AddEntry("Readme.txt", "This is a zipfile created from within powershell.")
+$e= $zipfile.AddDirectory($directoryToZip, "home")
+$zipfile.Save("ZipFiles.ps1.out.zip");
+$zipfile.Dispose();
+
+ + +

Create a zip file using AES encryption

+ +

This example creates a zipfile, using AES 256-bit +encryption to encrypt the entries. +

+ +
+
+# Load the assembly - replace this with your own path
+[System.Reflection.Assembly]::LoadFrom("c:\\dinoch\\bin\\Ionic.Zip.dll")
+
+$directoryToZip = "c:\\dinoch\\dev\\powershell"
+$zipfile =  new-object Ionic.Zip.ZipFile
+$zipfile.Encryption = [Ionic.Zip.EncryptionAlgorithm]::WinZipAes256
+$zipfile.Password = "Albatros$"
+$e= $zipfile.AddEntry("Readme.txt", "This is a zipfile created from within powershell.")
+$e= $zipfile.AddSelectedFiles("name != *.zip", $directoryToZip, "home")
+$zipfile.Save("ZipFiles.ps1.out.zip")
+$zipfile.Dispose()
+
+
+ + + +

Create a number of zip files, each containing a single file

+ +

This example iterates through a set of files, and creates a +zipfile containing a single file, for each one. +

+ +
+
+# Load the assembly - replace this with your own path
+[System.Reflection.Assembly]::LoadFrom("c:\\dinoch\\bin\\Ionic.Zip.dll");
+
+foreach ($file in gci $LogPath -filter $FileType -recurse |
+        where{$_.LastWriteTime -lt [DateTime]::Now.AddDays($DaysOld)})
+{
+    $FileName = $File.FullName
+    $ZipName = $File.FullName + ".zip"
+    $zip = new-object Ionic.Zip.ZipFile
+    $zip.AddFile($FileName, "");
+    $zip.Save($ZipName)
+    $zip.Dispose()
+}
+
+ + + diff --git a/src/Help/Code Examples/VB.htm b/old/src/Help/Code Examples/VB.htm similarity index 96% rename from src/Help/Code Examples/VB.htm rename to old/src/Help/Code Examples/VB.htm index 763d971..517e241 100644 --- a/src/Help/Code Examples/VB.htm +++ b/old/src/Help/Code Examples/VB.htm @@ -1,319 +1,319 @@ - - -VB.NET - - - - - - -

DotNetZip - VB.NET Examples

- -

Here are a bunch of examples in VB.NET showing how to use the library. -

- -

There are also a few complete, working example applications shipped in the source code distribution.

- -
-

Add items to a zip file:

- -
- Try
-     Using zip As ZipFile = New ZipFile
-         zip.AddFile("c:\photos\personal\7440-N49th.png", "")
-         zip.AddFile("c:\Desktop\2005_Annual_Report.pdf", "")
-         zip.AddFile("ReadMe.txt")
-         zip.Save("MyZipFile.zip")
-     End Using
- Catch ex1 As Exception
-     Console.Error.WriteLine("exception: {0}", ex1.ToString)
- End Try
-
- - -
-

Extract items from a zip file:

- -
- Try
-     Using zip As ZipFile = ZipFile.Read(ZipFileToExtract)
-        Dim e As ZipEntry
-        For Each e In zip
-            e.Extract
-        Next
-     End Using
- Catch ex1 As Exception
-     Console.Error.WriteLine("exception: {0}", ex1.ToString)
- End Try
-
- - -
-

Extract all entries, and set the StatusMessageTextWriter so that verbose messages are generated:

- -
-Using zip As  ZipFile = ZipFile.Read(FilePath)
-  zip.StatusMessageTextWriter= System.Console.Out
-  'Status Messages will be sent to the console during extraction
-  zip.ExtractAll()
-End Using
-
- - - -
-

Add a few files to a zip file, specifying different passwords for different items:

- -
-Try
-  Using zip As New ZipFile
-    'the first entry is not protected by a password
-    zip.AddFile("c:\datafiles\ReadMe.txt", "")
-    zip.Password = "123456!"
-    zip.AddFile("c:\photos\personal\7440-N49th.png", "images")
-    zip.Password= "!Secret1";
-    zip.AddFile("c:\Desktop\2005_Annual_Report.pdf", "files\documents")
-    zip.Save("Secret.zip")
-  End Using
-Catch ex1 As System.Exception
-  System.Console.Error.WriteLine("exception: {0}", ex1)
-End Try
-
- -
-

Add a few files to a zip file, using WinZip-compatible AES encryption on the entries:

- -
-Try
-  Using zip As New ZipFile
-    zip.Password = "The.Silvertones.Box.Set!"
-    zip.Encryption = EncryptionAlgorithm.WinZipAes256
-    zip.AddFile("c:\datafiles\RawData-2008-12-20.csv", "")
-    zip.AddFile("c:\photos\personal\7440-N49th.png", "images")
-    zip.AddFile("c:\Desktop\2005_Annual_Report.pdf", "files\documents")
-    zip.Save("AES-Encrypted-Secret.zip")
-  End Using
-Catch ex1 As System.Exception
-  System.Console.Error.WriteLine("exception: {0}", ex1)
-End Try
-
- - -
-

Extract entries using a password:

- -
-Using zip As new ZipFile(FilePath)
-    Dim e As ZipEntry
-    For Each e In zip
-        If (e.UsesEncryption)
-          e.ExtractWithPassword("Secret!")
-        Else
-          e.Extract
-        End If
-    Next
-End Using
-
- - -
-

This example creates a zip using ZIP64 extensions. ZIP64 allows you to exceed 4gb in a zip, or 65535 entries in a zip.

- -
- Try
-     Using zip As ZipFile = New ZipFile
-         zip.UseZip64WhenSaving = Zip64Option.AsNecessary
-         zip.AddFile("c:\datafiles\RawData-2009-02-12.csv", "")
-         zip.AddFile("ReadMe.txt")
-         zip.Save(String.Format("backup-{0}.zip", DateTime.Now.ToString("yyyyMMMdd")))
-     End Using
- Catch ex1 As Exception
-     Console.Error.WriteLine("exception: {0}", ex1.ToString)
- End Try
-
- - - - -
- -

Create a zip file, add a file, and also add an entry from a -string. When the zip is unzipped, the content from the string will be -inserted into the file "Readme.txt".

- -
-Dim Content As String = "This string will be the content of the Readme.txt file in the zip archive."
-Using zip1 As ZipFile = New ZipFile
-    zip1.AddEntry("Readme.txt", "This is the readme content...")
-    zip1.AddFile("MyDocuments\Resume.doc", "files")
-    zip1.Comment = ("This zip file was created at " & DateTime.Now.ToString("G"))
-    zip1.Save("Content.zip")
-End Using
-
- -
- -

Create a zip file, and add an entry taking content from a stream, like a MemoryStream or a FileStream. -

- -
-Dim Content As String = "This string will be the content of the Readme.txt file in the zip archive."
-Using zip1 As ZipFile = New ZipFile
-    zip1.AddEntry("Readme.txt", stream)
-    zip1.AddFile("MyDocuments\Resume.doc", "files")
-    zip1.Comment = ("This zip file was created at " & DateTime.Now.ToString("G"))
-    zip1.Save("Content.zip")
-End Using
-
- - - -
-

Read in a zip file, remove a few entries, save the file:

- -
-Dim sw As New System.IO.StringWriter
-Using zip As ZipFile = ZipFile.Read("PackedDocuments.zip", sw)
-    Dim Threshold As New DateTime(2007, 7, 4)
-    ' We cannot remove the entry from the list, within the context of
-    ' an enumeration of said list.
-    ' So we add the doomed entry to a list to be removed later.
-    ' pass 1: mark the entries for removal
-    Dim MarkedEntries As New System.Collections.Generic.List(Of ZipEntry)
-    Dim e As ZipEntry
-    For Each e In zip
-        If (e.LastModified < Threshold) Then
-            MarkedEntries.Add(e)
-        End If
-    Next
-    ' pass 2: actually remove the entry.
-    Dim zombie As ZipEntry
-    For Each zombie In MarkedEntries
-        zip.RemoveEntry(zombie)
-    Next
-    zip.Comment = "This archive has been updated."
-    zip.Save
-End Using
-
- - - -
-

Add a bunch of items, whether files or directories:

- -
-Dim itempaths As String() = _
-  New String() { "c:\temp\Readme.txt", _
-                 "MyProposal.docx", _
-                 "SupportingFiles", _
-                 "images\Image1.jpg" }
-Try
-    Using zip As New ZipFile(ZipToCreate, Console.Out)
-        Dim i As Integer
-        For i = 1 To itempaths.Length - 1
-            ' will add Files or Dirs, recursing and flattening subdirectories.
-            zip.AddItem(itempaths(i), "flat")
-        Next i
-        zip.Save
-    End Using
-Catch ex1 As Exception
-    Console.Error.WriteLine("exception: {0}", ex1.ToString())
-End Try
-
- - -
-

Create a self-extracting archive:

- -
-Dim DirectoryPath As String = "c:\Documents\Project7"
-Using zip As New ZipFile()
-    zip.AddDirectory(DirectoryPath, System.IO.Path.GetFileName(DirectoryPath))
-    zip.Comment = "This will be embedded into a self-extracting console-based exe"
-    zip.SaveSelfExtractor("archive.exe", SelfExtractorFlavor.ConsoleApplication)
-End Using
-
- - - -
-

Update some entries in a Zip file:

- -
-Using zip1 As New ZipFile
-    ' the UpdateFile method works even if the entry does not yet exist.
-    ' Really it should be called "AddOrUpdateFile"
-    zip1.UpdateFile("MyDocuments\Readme.txt", "")
-    zip1.UpdateFile("CustomerList.csv", "")
-    zip1.Comment = "This zip archive has been created."
-    zip1.Save("Content.zip")
-End Using
-
-Using zip2 As ZipFile = ZipFile.Read("Content.zip")
-    zip2.UpdateFile("Updates\Readme.txt", "")
-    zip2.Comment = "This zip archive has been updated: the Readme has been changed."
-    zip2.Save
-End Using
-
- - - -
- -

Produce a zip file that contains embedded zip files.

- -
-
-Public Sub Run()
-    Using s1 As Stream = ZipIntoMemory("c:\temp\dir1")
-        Using s2 As Stream = ZipIntoMemory("c:\temp\dir2")
-            Using zip1 as New ZipFile
-                zip1.AddEntry("test1.zip", s1)
-                zip1.AddEntry("test2.zip", s2)
-                ' save to a file.  Could also save to a stream here
-                zip1.Save("Tescher.zip")
-            End Using
-        End Using
-    End Using
-End Sub
-
-Public Function ZipIntoMemory(ByVal path As String) As Stream
-    Dim ms As New MemoryStream
-    Using zip1 as New ZipFile
-        zip1.AddDirectory(path, "Result")
-        zip1.Save(ms)
-    End Using
-    ' move the stream position to the beginning
-    ms.Seek(0,SeekOrigin.Begin)
-    Return ms
-End Function
-
-
- - - - - + + +VB.NET + + + + + + +

DotNetZip - VB.NET Examples

+ +

Here are a bunch of examples in VB.NET showing how to use the library. +

+ +

There are also a few complete, working example applications shipped in the source code distribution.

+ +
+

Add items to a zip file:

+ +
+ Try
+     Using zip As ZipFile = New ZipFile
+         zip.AddFile("c:\photos\personal\7440-N49th.png", "")
+         zip.AddFile("c:\Desktop\2005_Annual_Report.pdf", "")
+         zip.AddFile("ReadMe.txt")
+         zip.Save("MyZipFile.zip")
+     End Using
+ Catch ex1 As Exception
+     Console.Error.WriteLine("exception: {0}", ex1.ToString)
+ End Try
+
+ + +
+

Extract items from a zip file:

+ +
+ Try
+     Using zip As ZipFile = ZipFile.Read(ZipFileToExtract)
+        Dim e As ZipEntry
+        For Each e In zip
+            e.Extract
+        Next
+     End Using
+ Catch ex1 As Exception
+     Console.Error.WriteLine("exception: {0}", ex1.ToString)
+ End Try
+
+ + +
+

Extract all entries, and set the StatusMessageTextWriter so that verbose messages are generated:

+ +
+Using zip As  ZipFile = ZipFile.Read(FilePath)
+  zip.StatusMessageTextWriter= System.Console.Out
+  'Status Messages will be sent to the console during extraction
+  zip.ExtractAll()
+End Using
+
+ + + +
+

Add a few files to a zip file, specifying different passwords for different items:

+ +
+Try
+  Using zip As New ZipFile
+    'the first entry is not protected by a password
+    zip.AddFile("c:\datafiles\ReadMe.txt", "")
+    zip.Password = "123456!"
+    zip.AddFile("c:\photos\personal\7440-N49th.png", "images")
+    zip.Password= "!Secret1";
+    zip.AddFile("c:\Desktop\2005_Annual_Report.pdf", "files\documents")
+    zip.Save("Secret.zip")
+  End Using
+Catch ex1 As System.Exception
+  System.Console.Error.WriteLine("exception: {0}", ex1)
+End Try
+
+ +
+

Add a few files to a zip file, using WinZip-compatible AES encryption on the entries:

+ +
+Try
+  Using zip As New ZipFile
+    zip.Password = "The.Silvertones.Box.Set!"
+    zip.Encryption = EncryptionAlgorithm.WinZipAes256
+    zip.AddFile("c:\datafiles\RawData-2008-12-20.csv", "")
+    zip.AddFile("c:\photos\personal\7440-N49th.png", "images")
+    zip.AddFile("c:\Desktop\2005_Annual_Report.pdf", "files\documents")
+    zip.Save("AES-Encrypted-Secret.zip")
+  End Using
+Catch ex1 As System.Exception
+  System.Console.Error.WriteLine("exception: {0}", ex1)
+End Try
+
+ + +
+

Extract entries using a password:

+ +
+Using zip As new ZipFile(FilePath)
+    Dim e As ZipEntry
+    For Each e In zip
+        If (e.UsesEncryption)
+          e.ExtractWithPassword("Secret!")
+        Else
+          e.Extract
+        End If
+    Next
+End Using
+
+ + +
+

This example creates a zip using ZIP64 extensions. ZIP64 allows you to exceed 4gb in a zip, or 65535 entries in a zip.

+ +
+ Try
+     Using zip As ZipFile = New ZipFile
+         zip.UseZip64WhenSaving = Zip64Option.AsNecessary
+         zip.AddFile("c:\datafiles\RawData-2009-02-12.csv", "")
+         zip.AddFile("ReadMe.txt")
+         zip.Save(String.Format("backup-{0}.zip", DateTime.Now.ToString("yyyyMMMdd")))
+     End Using
+ Catch ex1 As Exception
+     Console.Error.WriteLine("exception: {0}", ex1.ToString)
+ End Try
+
+ + + + +
+ +

Create a zip file, add a file, and also add an entry from a +string. When the zip is unzipped, the content from the string will be +inserted into the file "Readme.txt".

+ +
+Dim Content As String = "This string will be the content of the Readme.txt file in the zip archive."
+Using zip1 As ZipFile = New ZipFile
+    zip1.AddEntry("Readme.txt", "This is the readme content...")
+    zip1.AddFile("MyDocuments\Resume.doc", "files")
+    zip1.Comment = ("This zip file was created at " & DateTime.Now.ToString("G"))
+    zip1.Save("Content.zip")
+End Using
+
+ +
+ +

Create a zip file, and add an entry taking content from a stream, like a MemoryStream or a FileStream. +

+ +
+Dim Content As String = "This string will be the content of the Readme.txt file in the zip archive."
+Using zip1 As ZipFile = New ZipFile
+    zip1.AddEntry("Readme.txt", stream)
+    zip1.AddFile("MyDocuments\Resume.doc", "files")
+    zip1.Comment = ("This zip file was created at " & DateTime.Now.ToString("G"))
+    zip1.Save("Content.zip")
+End Using
+
+ + + +
+

Read in a zip file, remove a few entries, save the file:

+ +
+Dim sw As New System.IO.StringWriter
+Using zip As ZipFile = ZipFile.Read("PackedDocuments.zip", sw)
+    Dim Threshold As New DateTime(2007, 7, 4)
+    ' We cannot remove the entry from the list, within the context of
+    ' an enumeration of said list.
+    ' So we add the doomed entry to a list to be removed later.
+    ' pass 1: mark the entries for removal
+    Dim MarkedEntries As New System.Collections.Generic.List(Of ZipEntry)
+    Dim e As ZipEntry
+    For Each e In zip
+        If (e.LastModified < Threshold) Then
+            MarkedEntries.Add(e)
+        End If
+    Next
+    ' pass 2: actually remove the entry.
+    Dim zombie As ZipEntry
+    For Each zombie In MarkedEntries
+        zip.RemoveEntry(zombie)
+    Next
+    zip.Comment = "This archive has been updated."
+    zip.Save
+End Using
+
+ + + +
+

Add a bunch of items, whether files or directories:

+ +
+Dim itempaths As String() = _
+  New String() { "c:\temp\Readme.txt", _
+                 "MyProposal.docx", _
+                 "SupportingFiles", _
+                 "images\Image1.jpg" }
+Try
+    Using zip As New ZipFile(ZipToCreate, Console.Out)
+        Dim i As Integer
+        For i = 1 To itempaths.Length - 1
+            ' will add Files or Dirs, recursing and flattening subdirectories.
+            zip.AddItem(itempaths(i), "flat")
+        Next i
+        zip.Save
+    End Using
+Catch ex1 As Exception
+    Console.Error.WriteLine("exception: {0}", ex1.ToString())
+End Try
+
+ + +
+

Create a self-extracting archive:

+ +
+Dim DirectoryPath As String = "c:\Documents\Project7"
+Using zip As New ZipFile()
+    zip.AddDirectory(DirectoryPath, System.IO.Path.GetFileName(DirectoryPath))
+    zip.Comment = "This will be embedded into a self-extracting console-based exe"
+    zip.SaveSelfExtractor("archive.exe", SelfExtractorFlavor.ConsoleApplication)
+End Using
+
+ + + +
+

Update some entries in a Zip file:

+ +
+Using zip1 As New ZipFile
+    ' the UpdateFile method works even if the entry does not yet exist.
+    ' Really it should be called "AddOrUpdateFile"
+    zip1.UpdateFile("MyDocuments\Readme.txt", "")
+    zip1.UpdateFile("CustomerList.csv", "")
+    zip1.Comment = "This zip archive has been created."
+    zip1.Save("Content.zip")
+End Using
+
+Using zip2 As ZipFile = ZipFile.Read("Content.zip")
+    zip2.UpdateFile("Updates\Readme.txt", "")
+    zip2.Comment = "This zip archive has been updated: the Readme has been changed."
+    zip2.Save
+End Using
+
+ + + +
+ +

Produce a zip file that contains embedded zip files.

+ +
+
+Public Sub Run()
+    Using s1 As Stream = ZipIntoMemory("c:\temp\dir1")
+        Using s2 As Stream = ZipIntoMemory("c:\temp\dir2")
+            Using zip1 as New ZipFile
+                zip1.AddEntry("test1.zip", s1)
+                zip1.AddEntry("test2.zip", s2)
+                ' save to a file.  Could also save to a stream here
+                zip1.Save("Tescher.zip")
+            End Using
+        End Using
+    End Using
+End Sub
+
+Public Function ZipIntoMemory(ByVal path As String) As Stream
+    Dim ms As New MemoryStream
+    Using zip1 as New ZipFile
+        zip1.AddDirectory(path, "Result")
+        zip1.Save(ms)
+    End Using
+    ' move the stream position to the beginning
+    ms.Seek(0,SeekOrigin.Begin)
+    Return ms
+End Function
+
+
+ + + + + diff --git a/src/Help/HelpViewer.shfbproj b/old/src/Help/HelpViewer.shfbproj similarity index 98% rename from src/Help/HelpViewer.shfbproj rename to old/src/Help/HelpViewer.shfbproj index 38cdadd..d31f6ce 100644 --- a/src/Help/HelpViewer.shfbproj +++ b/old/src/Help/HelpViewer.shfbproj @@ -1,88 +1,88 @@ - - - - Debug - AnyCPU - 2.0 - {f0d56889-aa19-4331-b4f0-2bfe3e970a4f} - 1.9.0.0 - - Documentation - Documentation - Documentation - - .\bin\HelpViewer - DotNetZipLib-v1.9.1.6 - DotNetZip is a small, easy-to-use class library for manipulating .zip files. It can enable .NET applications written in VB.NET, C#, any .NET language, to easily create, read, and update zip files. DotNetZip is donationware: http://cheeso.members.winisp.net/DotNetZipDonate.aspx - Summary, Parameter, Returns, AutoDocumentCtors, Namespace, TypeParameter - InheritedMembers, InheritedFrameworkMembers, Protected, SealedProtected - - - c:\Program Files (x86)\Common Files\microsoft shared\Help 2.0 Compiler\ - - - - - 3.0 - Ionic Zip Library v1.9.1.6 - dpchiesa%40hotmail.com - Prototype - - - - - - - The Ionic namespace includes supporting classes used in the DotNetZip library. - Classes in the Ionic.Zip namespace allow applications to read and write zip files according to the format -described by pkware, at: -http://www.pkware.com/business_and_developers/developer/popups/appnote.txt. - -This implementation utilizes a DeflateStream class implemented in managed code, in the Ionic.Zlib namespace. It does not use System.IO.Compression.DeflateStream in the .NET Framework -v2.0 base class library. - -DotNetZip is donationware. Please donate. Proceeds go to the Boys &amp; Girls Club in Pennsylvania, USA. http://cheeso.members.winisp.net/DotNetZipDonate.aspx - Ionic.Zlib namespace includes classes for doing ZLIB, DEFLATE, and GZIP compression and decompression, according to RFC 1950, RFC 1951, and RFC 1952. It includes stream classes that can directly replace the DeflateStream and GZipStream classes that are included in the Base Class Library of the .NET Framework. - - Copyright 2009-2011, Dino Chiesa - True - Reference - MSHelpViewer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + Debug + AnyCPU + 2.0 + {f0d56889-aa19-4331-b4f0-2bfe3e970a4f} + 1.9.0.0 + + Documentation + Documentation + Documentation + + .\bin\HelpViewer + DotNetZipLib-v1.9.1.6 + DotNetZip is a small, easy-to-use class library for manipulating .zip files. It can enable .NET applications written in VB.NET, C#, any .NET language, to easily create, read, and update zip files. DotNetZip is donationware: http://cheeso.members.winisp.net/DotNetZipDonate.aspx + Summary, Parameter, Returns, AutoDocumentCtors, Namespace, TypeParameter + InheritedMembers, InheritedFrameworkMembers, Protected, SealedProtected + + + c:\Program Files (x86)\Common Files\microsoft shared\Help 2.0 Compiler\ + + + + + 3.0 + Ionic Zip Library v1.9.1.6 + dpchiesa%40hotmail.com + Prototype + + + + + + + The Ionic namespace includes supporting classes used in the DotNetZip library. + Classes in the Ionic.Zip namespace allow applications to read and write zip files according to the format +described by pkware, at: +http://www.pkware.com/business_and_developers/developer/popups/appnote.txt. + +This implementation utilizes a DeflateStream class implemented in managed code, in the Ionic.Zlib namespace. It does not use System.IO.Compression.DeflateStream in the .NET Framework +v2.0 base class library. + +DotNetZip is donationware. Please donate. Proceeds go to the Boys &amp; Girls Club in Pennsylvania, USA. http://cheeso.members.winisp.net/DotNetZipDonate.aspx + Ionic.Zlib namespace includes classes for doing ZLIB, DEFLATE, and GZIP compression and decompression, according to RFC 1950, RFC 1951, and RFC 1952. It includes stream classes that can directly replace the DeflateStream and GZipStream classes that are included in the Base Class Library of the .NET Framework. + + Copyright 2009-2011, Dino Chiesa + True + Reference + MSHelpViewer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Help/HtmlHelp1.shfbproj b/old/src/Help/HtmlHelp1.shfbproj similarity index 98% rename from src/Help/HtmlHelp1.shfbproj rename to old/src/Help/HtmlHelp1.shfbproj index 4f36e48..10c36fd 100644 --- a/src/Help/HtmlHelp1.shfbproj +++ b/old/src/Help/HtmlHelp1.shfbproj @@ -1,93 +1,93 @@ - - - - Debug - AnyCPU - 2.0 - {b4390741-ad2c-41f3-9c33-937bd218b91c} - 1.9.0.0 - - Documentation - Documentation - Documentation - - .\bin\HtmlHelp1 - DotNetZipLib-v1.9.1.6 - DotNetZip is a small, easy-to-use class library for manipulating .zip files. It can enable .NET applications written in VB.NET, C#, any .NET language, to easily create, read, and update zip files. DotNetZip is donationware: http://cheeso.members.winisp.net/DotNetZipDonate.aspx - Summary, Parameter, Returns, AutoDocumentCtors, Namespace, TypeParameter - InheritedMembers, InheritedFrameworkMembers, Protected, SealedProtected - - - c:\Program Files (x86)\Common Files\microsoft shared\Help 2.0 Compiler\ - - - - - 3.0 - Ionic Zip Library v1.9.1.6 - dpchiesa%40hotmail.com - Prototype - - - - - - -The Ionic namespace includes supporting classes used in the DotNetZip library. -<para>Classes in the Ionic.Zip namespace allow applications to read and write zip files according to -<see href='http://www.pkware.com/business_and_developers/developer/popups/appnote.txt.'>the format -described by PKWARE</see> -</para> -<para> -DotNetZip is donationware. <see href='http://cheeso.members.winisp.net/DotNetZipDonate.aspx'>Please donate.</see></para> -Ionic.Zlib namespace includes classes for doing ZLIB, DEFLATE, and GZIP compression and decompression, according to RFC 1950, RFC 1951, and RFC 1952. It includes stream classes that can directly replace the DeflateStream and GZipStream classes that are included in the Base Class Library of the .NET Framework. -The Ionic.BZip2 namespace includes classes for doing BZip2 compression and decompression, according to the BZip2 specification provided by Julian Seward. -The Ionic.Crc namespace includes a classes that calculate 32-bit Cyclic Redundancy Checks (CRC32) for data. - Copyright 2009-2011, Dino Chiesa - True - Reference - HtmlHelp1, Website - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} - Zip Full DLL - - - - + + + + Debug + AnyCPU + 2.0 + {b4390741-ad2c-41f3-9c33-937bd218b91c} + 1.9.0.0 + + Documentation + Documentation + Documentation + + .\bin\HtmlHelp1 + DotNetZipLib-v1.9.1.6 + DotNetZip is a small, easy-to-use class library for manipulating .zip files. It can enable .NET applications written in VB.NET, C#, any .NET language, to easily create, read, and update zip files. DotNetZip is donationware: http://cheeso.members.winisp.net/DotNetZipDonate.aspx + Summary, Parameter, Returns, AutoDocumentCtors, Namespace, TypeParameter + InheritedMembers, InheritedFrameworkMembers, Protected, SealedProtected + + + c:\Program Files (x86)\Common Files\microsoft shared\Help 2.0 Compiler\ + + + + + 3.0 + Ionic Zip Library v1.9.1.6 + dpchiesa%40hotmail.com + Prototype + + + + + + +The Ionic namespace includes supporting classes used in the DotNetZip library. +<para>Classes in the Ionic.Zip namespace allow applications to read and write zip files according to +<see href='http://www.pkware.com/business_and_developers/developer/popups/appnote.txt.'>the format +described by PKWARE</see> +</para> +<para> +DotNetZip is donationware. <see href='http://cheeso.members.winisp.net/DotNetZipDonate.aspx'>Please donate.</see></para> +Ionic.Zlib namespace includes classes for doing ZLIB, DEFLATE, and GZIP compression and decompression, according to RFC 1950, RFC 1951, and RFC 1952. It includes stream classes that can directly replace the DeflateStream and GZipStream classes that are included in the Base Class Library of the .NET Framework. +The Ionic.BZip2 namespace includes classes for doing BZip2 compression and decompression, according to the BZip2 specification provided by Julian Seward. +The Ionic.Crc namespace includes a classes that calculate 32-bit Cyclic Redundancy Checks (CRC32) for data. + Copyright 2009-2011, Dino Chiesa + True + Reference + HtmlHelp1, Website + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} + Zip Full DLL + + + + \ No newline at end of file diff --git a/src/Help/Introduction/About.htm b/old/src/Help/Introduction/About.htm similarity index 97% rename from src/Help/Introduction/About.htm rename to old/src/Help/Introduction/About.htm index bd837d5..b0b13fc 100644 --- a/src/Help/Introduction/About.htm +++ b/old/src/Help/Introduction/About.htm @@ -1,406 +1,406 @@ - - -About DotNetZip - - - - - - - -

DotNetZip - Zip file manipulation in .NET languages

- - -

- DotNetZip is a small, easy-to-use class library for manipulating .zip files. It - can enable .NET applications written in VB.NET, C#, or any .NET language, to - easily create, read, and update zip files. Zip Compression is easy with - DotNetZip. The DotNetZip project also includes a library for performing ZLIB, - Deflate, or GZIP compression and decompression, a library for BZip2 compression - and decompression, a GUI ZIP tool, and a few command line tools. -

- - -

- DotNetZip works on Windows-powered PCs with the full .NET Framework. Create - and read zip files in VB, C#, or any .NET language. The library can also be - used from COM enironments, like PHP, Classivc ASP, or VBSCript. DotNetZip - supports these scenarios: -

-
    -
  • creating a zip archive, adding files or directories into the archive
  • -
  • listing files in an archive, extracting files from an archive
  • -
  • modifying an existing archive - renaming entries, removing entries from an archive, or adding new entries to an archive
  • -
  • creating zip files from stream content, saving to a stream, extracting to a stream, reading from a stream
  • -
  • dynamically creating ZIP files from ASP.NET applications
  • -
- - -

- If all you want is a better DeflateStream or GZipStream class to replace the one - that is built-into the .NET BCL, that is here, too. DotNetZip's DeflateStream - and GZipStream are available in a standalone assembly, based on a .NET port of - Zlib. These streams support compression levels and deliver much better performance - that the built-in classes. There is also a ZlibStream to complete the set (RFC - 1950, 1951, 1952). -

- -

- This 100% managed code library can be used in any .NET application - Console, - Winforms, WPF, ASP.NET, Sharepoint, Web services apps, Powershell scripts, and so - on. It produces zip files that are fully interoperable with Windows Explorer, as - well as Java applications, apps running on Linux. -

- -

- It is designed to be simple and easy to use. DotNetZip is packaged as a single - DLL, about 400k in size. It has no third-party dependencies. It is Medium Trust, - so can be used on most hosters. Get zipping just by referencing the DLL. The - library supports zip passwords, Unicode, ZIP64, stream input and output, AES - encryption, multiple compression levels, self-extracting archives, and more. -

- -

- The release includes the library, as well as some sample applications (with - source) showing how to use the library. -

- - -

DotNetZip is DonationWare

- -

If you find DotNetZip useful, consider donating. I am now accepting -donations on behalf of my favorite charity. and Yes, it is a real -charity.

- - -

Example Usage

-
-  using (ZipFile zip = new ZipFile("MyZipFile.zip")
-  {
-    zip.AddFile("c:\\images\\personal\\7440-N49th.png");
-    zip.AddFile("c:\\Desktop\\2008-Regional-Sales-Report.pdf");
-    zip.AddFile("ReadMe.txt");
-    zip.Save();
-  }
-
- -

Tons more examples on Codeplex, -and later in this helpfile.

- - - -

Frequently Asked Questions

- -

How does this Zip Library work?
-DotNetZip is packaged as a single DLL, a single assembly. It is fully -managed code, written in C#, and provides support for reading and -writing Zip archive files and streams. The main type is ZipFile, -featuring methods like Add(), Extract() and Save(). There are string and -int indexers for the entries of the ZipFile. There are properties for -things like password protection, unicode and codepage support, and ZIP64 -behavior. And there are progress events for Reading, Saving, and -Extracting. -

- - -

What do I need, in order to be able to create and read zip files from within my application using this library?
-To use the zip capability in your applications, you need to be using the .NET Framework 4.0 or later, and you need the DotNetZip assembly. You can use the Zip library from any application, whether a console application, a Windows-Forms application, a server-based application like an ASP.NET page, or something else. You can use C#, VB.NET, COBOL.NET, IronPython, IronRuby, F#, or any other .NET language.

- -

What do I need to build this library from the source?
- -To use the zip capability in your applications, you need to be using the -.NET Framework 4.0 or later, and you need the DotNetZip assembly. You -can use the Zip library from any application, whether a console -application, a Windows-Forms application, a server-based application -like an ASP.NET page, a smart-device app, a Windows Service, or -something else. You can use C#, VB.NET, COBOL.NET, IronPython, -IronRuby, F#, or any other .NET language. You can use the full version -of Visual Studio, or one of the Visual Studio Express tools, or just a -text editor. - -

- - - -

What if I just want to use the graphical tool?
- -No problem. Just download the Utils download from the latest releases -tab, and you will get an easy-to-use fully-functional ZIP creation and -extraction tool, a free functional-equialent replacement for WinZip. It -supports all the DotNetZip capability, like SFX, AES, ZIP64, arbitrary -Code Pages, Unicode, zip comments, file and entry selection, and more. -

- - - -

What do I need to _build_ this library from the source?f
- -You need the .NET Framework SDK v4.0, or later. - -

- - - -

How big is the library?
- -As of version 1.9, the Ionic zip DLL is about 420k in size. The -self-extracting capability comprises about 200k of that. There is a "Reduced" build of the -library in the Developer's Kit, that eliminates the SFX capability and results in a DLL of about half the size. -There is just one DLL. There is no other pre-requisite. -

- - -

Why would you want to produce yet another Zip Library?
- -There are a number of options in the .NET world for manipulating zip -files. Some are commercial libraries, some are open-source. You can -even shoe-horn the System.IO.Packaging API, which is included in .NET -3.0, into a zip library. But there are tradeoffs for all of them. Some -people are willing to give up commercial support for a lower price. -Some people don't like the GPL. Some of those other packages are -complex to use for zip files. Some of them don't have enough features -(Eg, AES encryption, ZIP64). Some are too slow. What I found is that -most people want something simple and easy to use, that works well, has -good features, compresses effectively and fast, and is the right price. -DotNetZip is that option. It's fast, it's simple, it's free. - -

- - - -

Does this library make self-extracting zip files?
- -Yes. It can make self-extracting zip files or standard zip files. The -self-extracting archives can either be Windows (GUI) apps or -command-line applications. The self-extractors require .NET 4.0 on the -computer doing the extraction.

- - - -

Does this library read self-extracting zip files?
- -Yes. As of v1.7, DotNetZip can read self-extracting zip files generated by -WinZip. As of v1.8 (currently in preview), DotNetZip can read SFX -archives generated by itself. DotNetZip does not (yet) read SFX -archives built by some other tools. I've not tested it. - -

- - -

Are the zip files this library makes compatible with the java.util.zip classes in the Java class library?
- -Yes. This library makes standard zip files. If you use some advanced -features not supported by the built-in Java library, like AES encryption -or ZIP64, then the zip files won't be readable by Java. This is a -shortcoming in Java, not in DotNetZip. - -

- -

If I create a zipfile with this library, can I open it from within a Java/PHP/Python/C/Perl application? From within WinRar/WinZIP?
- -Yes. This library makes standard zip files, so anything that can read -and write zip files, on any platform, can work with zipfiles generated -from this library. In Java, you would use the java.util.zip library. In -Python, you would use the zipfile module. Keep in mind that not all -languages and environments support all ZIP features. For example, -currently the Java library does not do ZIP64, and the zipfile module in -Python does not support zipfile comments, while DotNetZip can create and -read zip archives using those features. You need to be careful with -interop testing. If you don't know what these features are, you probably -don't need them and you won't run into interop problems. - -

- - -

If I create a zipfile with a java/PHP/Python/C/Perl application, or with WinRar/WinZip/7zip, can I open it from within a .NET application, using this library?
- -Yes. This library reads compliant zip files. -

- - -

Can I use Windows Explorer to open the zip files that this library creates, and vice versa?
- -Yes. This library reads and writes standard zip files. If you use extensions to the ZIP spec not supported by Windows, like ZIP64 or AES encryption, Windows Explorer will not be able to extract the files. - -

- -

Does the library support zero-length zip entries, zipfile comments, zip entry comments, zipping up empty directories, recursive directory traversal, zipping up selected files by filename (with wildcards), and password-protecting entries?
-Yes.

- - - -

Does the library handle ZIP64?
- -Yes. This was added in December 2008 in v1.7. The original ZIP -specification allowed up to 65535 entries in a zip archive, and archive -and entry sizes up to 4.2g. The ZIP64 extensions raise those -restrictions, at the expense of compatibility and -interoperability. DotNetZip can read or write "standard" zip files or -ZIP64 zip files. -

- -

Does this library support any compression algorithm other than deflate?
- -No. Entries are either Stored or Deflated. -

- -

Does this library use System.IO.Compression.DeflateStream for the DEFLATE algorithm?
- -No. In earlier versions, it did. But the DeflateStream built-into the -.NET Framework BCL exhibits anomalous compression behavior on previously -compressed data, like mp3 or jpg files. DotNetZip includes a managed -compression library, based on ZLIB. It's fast, fully DEFLATE compliant, -and it compresses better than the built in version! And, the -DeflateStream that is included in DotNetZip is available for any -application to use, under the same terms as the rest of the DotNetZip -library. -

- - - - -

Why would a developer not just use the Packaging APIs included in the .NET Framework 3.0?
- -The Packaging APIs are optimized for producing .docx files and .xlsx -files. This library is generally simpler and cleaner for creating or -reading plain, generic zipfiles. Also this library takes advantage of -ZIP features like ZIP64 or AES, in a much nicer way. And it provides -nice features like progress events and file selectors. -

- -

Does the library support reading or writing encrypted or password protected zip files?
- -Yes, this library helps applications read and write zip files that use -passwords to protect the entries in the zip archive. Either PKZIP -("weak") encryption or WinZip-compatible AES encryption. -

- -

Can Windows Explorer ("compressed folders") read and extract the zip files created by this library if the zip has password protection?
- -Yes. It just works. -

- - -

Can I use the DotNetZip library to read .docx files, .xslx files?
-Yes. They are just zip files. Keep in mind, the Packaging APIs included in .NET 3.0 are optimized for producing .docx files and .xlsx files.

- - -

Does the library support Unicode filenames and comments?
-Yes, as of September 2008, the library can create and read zip files -that have Unicode (UTF-8) filenames and comments. You can also specify -arbitrary code pages when reading or writing zipfiles. But, Windows -Explorer does not support UTF-8 encoded zip files. To read the zip you -create, you will have to use a tool or library that supports unicode, -such as WinRar, DotNetZip, etc.

- - -

Can the library be used to read a zip file that has entries with filenames containing Chinese characters, as produced by WinRAR?
-Yes. To do this you would specify the "big5" code page (cp 950) when reading the zip. In addition to Chinese, it can handle any code page. -

- -

What about reading and writing zip files with other languages and code pages? Portugese? Hebrew? Arabic? Greek? Cyrillic? Norwegian? Finnish? etc?
- -Yes. Just specify the appropriate code page when reading or writing the -zip archive. -

- - - - - -

Can Windows Explorer ("compressed folders") read the zip files created by this library if the zip has entries with Unicode-encoded filenames?
-No. But that is a limitation of Windows XP and Windows Vista. It is not a limitation of this library.

- -

Is there documentation for the library?
-Yes, there is a CHM file in MSDN helpfile format, generated from the xml comments in the code. All the public interfaces are thoroughly documented. There are tons of code examples in the doc. -

- - - -

Does the library support zipping to a stream? Or unzipping from a stream?
- -Yes, you can zip up files and Save the zip archive to a stream. As well -you can Read a zip archive from an open stream - I use this for embedded -resources in apps: I call GetManifestResourceStream(), and then unzip -that resource. Reading and writing streams complements the capability of -being able to Save to a plain file or read from a plain file. The -Save-to-a-stream capability allows you to write a zip archive out to, -for example, the ASP.NET Response.Output stream, without creating an -intermediate file. Very nice for ASP.NET applications. -

- -

Ok, the library can write a zip archive to a stream, and read a zip from a stream, But... can the library add an entry to a zipfile, grabbing content from a stream? can the library unzip a single entry into a stream? Can an application read an entry as a stream?
- -Yes. Yes. Yes. Unlike some other libraries, in most cases DotNetZip -handles the streaming; your application does not need to implement a -Read/Write data pump. The application needs only to open the -streams. Using the stream support, you could, for example, open a zip -archive, and then modify the files in the archive, and Save out to a -Response.OutputStream in ASP.NET, without ever writing a file to the -disk. All the zip file content can be maniulated in memory (using -MemoryStream for example). -

- -

Does this library allow removal of entries from zip files, or updating of entries in zip files?
- -Yes. -

- -

Do I have to write programs to take advantage of this thing? or is there some other way I can take advantage of the DotNetZip?
- -Typically people will embed this DLL into an application. But, the -DotNetZip downloads includes a package of "example" applications: -command-line utilities that utilize the library, that you can use out of -the box to zip and unzip. I drop these in my own bin directory and it -allows me to zip and unzip from the command line or from batch -files. Also, you can take advantage of the DotNetZip library from within -Powershell, if that is your bag. Creating or extracting zips within a -script is pretty handy. -

- -

Can I grab the source for DotNetZip and embed it into my own project?
- -Yes - that's allowed by the license. But you may want to think about -just redistributing the binary DLL - it is a much easier option. -

- -

Can I distribute the binary DLL with my own project?
- -Yes - that's allowed by the license. -

- - -

What's the mainstream approach for using DotNetZip in a 3rd party app?
- -The mainstream approach is to distribute the binary DLL with your own -app. -

- -

What if I want to use DotNetZip in my app, but I don't want to distribute it as a separate DLL?
- -You have options. The most mainstream and generally easiest way to embed -DotNetZip into your application is to redistribute the DLL. But if you -don't want to do that, there are alternatives. One option is to embed -the source for DotNetZip into your own project. This may seem like the -obvious approach, but it is probably not what you want, unless you -really need to modify the source of DotNetZip. A better approach is to -merge the DLL into your EXE, with ILMerge. -This works with your app regardless of what language it uses, whether it -is a Winforms app, a WPF app, a service, etc. -

- - - - + + +About DotNetZip + + + + + + + +

DotNetZip - Zip file manipulation in .NET languages

+ + +

+ DotNetZip is a small, easy-to-use class library for manipulating .zip files. It + can enable .NET applications written in VB.NET, C#, or any .NET language, to + easily create, read, and update zip files. Zip Compression is easy with + DotNetZip. The DotNetZip project also includes a library for performing ZLIB, + Deflate, or GZIP compression and decompression, a library for BZip2 compression + and decompression, a GUI ZIP tool, and a few command line tools. +

+ + +

+ DotNetZip works on Windows-powered PCs with the full .NET Framework. Create + and read zip files in VB, C#, or any .NET language. The library can also be + used from COM enironments, like PHP, Classivc ASP, or VBSCript. DotNetZip + supports these scenarios: +

+
    +
  • creating a zip archive, adding files or directories into the archive
  • +
  • listing files in an archive, extracting files from an archive
  • +
  • modifying an existing archive - renaming entries, removing entries from an archive, or adding new entries to an archive
  • +
  • creating zip files from stream content, saving to a stream, extracting to a stream, reading from a stream
  • +
  • dynamically creating ZIP files from ASP.NET applications
  • +
+ + +

+ If all you want is a better DeflateStream or GZipStream class to replace the one + that is built-into the .NET BCL, that is here, too. DotNetZip's DeflateStream + and GZipStream are available in a standalone assembly, based on a .NET port of + Zlib. These streams support compression levels and deliver much better performance + that the built-in classes. There is also a ZlibStream to complete the set (RFC + 1950, 1951, 1952). +

+ +

+ This 100% managed code library can be used in any .NET application - Console, + Winforms, WPF, ASP.NET, Sharepoint, Web services apps, Powershell scripts, and so + on. It produces zip files that are fully interoperable with Windows Explorer, as + well as Java applications, apps running on Linux. +

+ +

+ It is designed to be simple and easy to use. DotNetZip is packaged as a single + DLL, about 400k in size. It has no third-party dependencies. It is Medium Trust, + so can be used on most hosters. Get zipping just by referencing the DLL. The + library supports zip passwords, Unicode, ZIP64, stream input and output, AES + encryption, multiple compression levels, self-extracting archives, and more. +

+ +

+ The release includes the library, as well as some sample applications (with + source) showing how to use the library. +

+ + +

DotNetZip is DonationWare

+ +

If you find DotNetZip useful, consider donating. I am now accepting +donations on behalf of my favorite charity. and Yes, it is a real +charity.

+ + +

Example Usage

+
+  using (ZipFile zip = new ZipFile("MyZipFile.zip")
+  {
+    zip.AddFile("c:\\images\\personal\\7440-N49th.png");
+    zip.AddFile("c:\\Desktop\\2008-Regional-Sales-Report.pdf");
+    zip.AddFile("ReadMe.txt");
+    zip.Save();
+  }
+
+ +

Tons more examples on Codeplex, +and later in this helpfile.

+ + + +

Frequently Asked Questions

+ +

How does this Zip Library work?
+DotNetZip is packaged as a single DLL, a single assembly. It is fully +managed code, written in C#, and provides support for reading and +writing Zip archive files and streams. The main type is ZipFile, +featuring methods like Add(), Extract() and Save(). There are string and +int indexers for the entries of the ZipFile. There are properties for +things like password protection, unicode and codepage support, and ZIP64 +behavior. And there are progress events for Reading, Saving, and +Extracting. +

+ + +

What do I need, in order to be able to create and read zip files from within my application using this library?
+To use the zip capability in your applications, you need to be using the .NET Framework 4.0 or later, and you need the DotNetZip assembly. You can use the Zip library from any application, whether a console application, a Windows-Forms application, a server-based application like an ASP.NET page, or something else. You can use C#, VB.NET, COBOL.NET, IronPython, IronRuby, F#, or any other .NET language.

+ +

What do I need to build this library from the source?
+ +To use the zip capability in your applications, you need to be using the +.NET Framework 4.0 or later, and you need the DotNetZip assembly. You +can use the Zip library from any application, whether a console +application, a Windows-Forms application, a server-based application +like an ASP.NET page, a smart-device app, a Windows Service, or +something else. You can use C#, VB.NET, COBOL.NET, IronPython, +IronRuby, F#, or any other .NET language. You can use the full version +of Visual Studio, or one of the Visual Studio Express tools, or just a +text editor. + +

+ + + +

What if I just want to use the graphical tool?
+ +No problem. Just download the Utils download from the latest releases +tab, and you will get an easy-to-use fully-functional ZIP creation and +extraction tool, a free functional-equialent replacement for WinZip. It +supports all the DotNetZip capability, like SFX, AES, ZIP64, arbitrary +Code Pages, Unicode, zip comments, file and entry selection, and more. +

+ + + +

What do I need to _build_ this library from the source?f
+ +You need the .NET Framework SDK v4.0, or later. + +

+ + + +

How big is the library?
+ +As of version 1.9, the Ionic zip DLL is about 420k in size. The +self-extracting capability comprises about 200k of that. There is a "Reduced" build of the +library in the Developer's Kit, that eliminates the SFX capability and results in a DLL of about half the size. +There is just one DLL. There is no other pre-requisite. +

+ + +

Why would you want to produce yet another Zip Library?
+ +There are a number of options in the .NET world for manipulating zip +files. Some are commercial libraries, some are open-source. You can +even shoe-horn the System.IO.Packaging API, which is included in .NET +3.0, into a zip library. But there are tradeoffs for all of them. Some +people are willing to give up commercial support for a lower price. +Some people don't like the GPL. Some of those other packages are +complex to use for zip files. Some of them don't have enough features +(Eg, AES encryption, ZIP64). Some are too slow. What I found is that +most people want something simple and easy to use, that works well, has +good features, compresses effectively and fast, and is the right price. +DotNetZip is that option. It's fast, it's simple, it's free. + +

+ + + +

Does this library make self-extracting zip files?
+ +Yes. It can make self-extracting zip files or standard zip files. The +self-extracting archives can either be Windows (GUI) apps or +command-line applications. The self-extractors require .NET 4.0 on the +computer doing the extraction.

+ + + +

Does this library read self-extracting zip files?
+ +Yes. As of v1.7, DotNetZip can read self-extracting zip files generated by +WinZip. As of v1.8 (currently in preview), DotNetZip can read SFX +archives generated by itself. DotNetZip does not (yet) read SFX +archives built by some other tools. I've not tested it. + +

+ + +

Are the zip files this library makes compatible with the java.util.zip classes in the Java class library?
+ +Yes. This library makes standard zip files. If you use some advanced +features not supported by the built-in Java library, like AES encryption +or ZIP64, then the zip files won't be readable by Java. This is a +shortcoming in Java, not in DotNetZip. + +

+ +

If I create a zipfile with this library, can I open it from within a Java/PHP/Python/C/Perl application? From within WinRar/WinZIP?
+ +Yes. This library makes standard zip files, so anything that can read +and write zip files, on any platform, can work with zipfiles generated +from this library. In Java, you would use the java.util.zip library. In +Python, you would use the zipfile module. Keep in mind that not all +languages and environments support all ZIP features. For example, +currently the Java library does not do ZIP64, and the zipfile module in +Python does not support zipfile comments, while DotNetZip can create and +read zip archives using those features. You need to be careful with +interop testing. If you don't know what these features are, you probably +don't need them and you won't run into interop problems. + +

+ + +

If I create a zipfile with a java/PHP/Python/C/Perl application, or with WinRar/WinZip/7zip, can I open it from within a .NET application, using this library?
+ +Yes. This library reads compliant zip files. +

+ + +

Can I use Windows Explorer to open the zip files that this library creates, and vice versa?
+ +Yes. This library reads and writes standard zip files. If you use extensions to the ZIP spec not supported by Windows, like ZIP64 or AES encryption, Windows Explorer will not be able to extract the files. + +

+ +

Does the library support zero-length zip entries, zipfile comments, zip entry comments, zipping up empty directories, recursive directory traversal, zipping up selected files by filename (with wildcards), and password-protecting entries?
+Yes.

+ + + +

Does the library handle ZIP64?
+ +Yes. This was added in December 2008 in v1.7. The original ZIP +specification allowed up to 65535 entries in a zip archive, and archive +and entry sizes up to 4.2g. The ZIP64 extensions raise those +restrictions, at the expense of compatibility and +interoperability. DotNetZip can read or write "standard" zip files or +ZIP64 zip files. +

+ +

Does this library support any compression algorithm other than deflate?
+ +No. Entries are either Stored or Deflated. +

+ +

Does this library use System.IO.Compression.DeflateStream for the DEFLATE algorithm?
+ +No. In earlier versions, it did. But the DeflateStream built-into the +.NET Framework BCL exhibits anomalous compression behavior on previously +compressed data, like mp3 or jpg files. DotNetZip includes a managed +compression library, based on ZLIB. It's fast, fully DEFLATE compliant, +and it compresses better than the built in version! And, the +DeflateStream that is included in DotNetZip is available for any +application to use, under the same terms as the rest of the DotNetZip +library. +

+ + + + +

Why would a developer not just use the Packaging APIs included in the .NET Framework 3.0?
+ +The Packaging APIs are optimized for producing .docx files and .xlsx +files. This library is generally simpler and cleaner for creating or +reading plain, generic zipfiles. Also this library takes advantage of +ZIP features like ZIP64 or AES, in a much nicer way. And it provides +nice features like progress events and file selectors. +

+ +

Does the library support reading or writing encrypted or password protected zip files?
+ +Yes, this library helps applications read and write zip files that use +passwords to protect the entries in the zip archive. Either PKZIP +("weak") encryption or WinZip-compatible AES encryption. +

+ +

Can Windows Explorer ("compressed folders") read and extract the zip files created by this library if the zip has password protection?
+ +Yes. It just works. +

+ + +

Can I use the DotNetZip library to read .docx files, .xslx files?
+Yes. They are just zip files. Keep in mind, the Packaging APIs included in .NET 3.0 are optimized for producing .docx files and .xlsx files.

+ + +

Does the library support Unicode filenames and comments?
+Yes, as of September 2008, the library can create and read zip files +that have Unicode (UTF-8) filenames and comments. You can also specify +arbitrary code pages when reading or writing zipfiles. But, Windows +Explorer does not support UTF-8 encoded zip files. To read the zip you +create, you will have to use a tool or library that supports unicode, +such as WinRar, DotNetZip, etc.

+ + +

Can the library be used to read a zip file that has entries with filenames containing Chinese characters, as produced by WinRAR?
+Yes. To do this you would specify the "big5" code page (cp 950) when reading the zip. In addition to Chinese, it can handle any code page. +

+ +

What about reading and writing zip files with other languages and code pages? Portugese? Hebrew? Arabic? Greek? Cyrillic? Norwegian? Finnish? etc?
+ +Yes. Just specify the appropriate code page when reading or writing the +zip archive. +

+ + + + + +

Can Windows Explorer ("compressed folders") read the zip files created by this library if the zip has entries with Unicode-encoded filenames?
+No. But that is a limitation of Windows XP and Windows Vista. It is not a limitation of this library.

+ +

Is there documentation for the library?
+Yes, there is a CHM file in MSDN helpfile format, generated from the xml comments in the code. All the public interfaces are thoroughly documented. There are tons of code examples in the doc. +

+ + + +

Does the library support zipping to a stream? Or unzipping from a stream?
+ +Yes, you can zip up files and Save the zip archive to a stream. As well +you can Read a zip archive from an open stream - I use this for embedded +resources in apps: I call GetManifestResourceStream(), and then unzip +that resource. Reading and writing streams complements the capability of +being able to Save to a plain file or read from a plain file. The +Save-to-a-stream capability allows you to write a zip archive out to, +for example, the ASP.NET Response.Output stream, without creating an +intermediate file. Very nice for ASP.NET applications. +

+ +

Ok, the library can write a zip archive to a stream, and read a zip from a stream, But... can the library add an entry to a zipfile, grabbing content from a stream? can the library unzip a single entry into a stream? Can an application read an entry as a stream?
+ +Yes. Yes. Yes. Unlike some other libraries, in most cases DotNetZip +handles the streaming; your application does not need to implement a +Read/Write data pump. The application needs only to open the +streams. Using the stream support, you could, for example, open a zip +archive, and then modify the files in the archive, and Save out to a +Response.OutputStream in ASP.NET, without ever writing a file to the +disk. All the zip file content can be maniulated in memory (using +MemoryStream for example). +

+ +

Does this library allow removal of entries from zip files, or updating of entries in zip files?
+ +Yes. +

+ +

Do I have to write programs to take advantage of this thing? or is there some other way I can take advantage of the DotNetZip?
+ +Typically people will embed this DLL into an application. But, the +DotNetZip downloads includes a package of "example" applications: +command-line utilities that utilize the library, that you can use out of +the box to zip and unzip. I drop these in my own bin directory and it +allows me to zip and unzip from the command line or from batch +files. Also, you can take advantage of the DotNetZip library from within +Powershell, if that is your bag. Creating or extracting zips within a +script is pretty handy. +

+ +

Can I grab the source for DotNetZip and embed it into my own project?
+ +Yes - that's allowed by the license. But you may want to think about +just redistributing the binary DLL - it is a much easier option. +

+ +

Can I distribute the binary DLL with my own project?
+ +Yes - that's allowed by the license. +

+ + +

What's the mainstream approach for using DotNetZip in a 3rd party app?
+ +The mainstream approach is to distribute the binary DLL with your own +app. +

+ +

What if I want to use DotNetZip in my app, but I don't want to distribute it as a separate DLL?
+ +You have options. The most mainstream and generally easiest way to embed +DotNetZip into your application is to redistribute the DLL. But if you +don't want to do that, there are alternatives. One option is to embed +the source for DotNetZip into your own project. This may seem like the +obvious approach, but it is probably not what you want, unless you +really need to modify the source of DotNetZip. A better approach is to +merge the DLL into your EXE, with ILMerge. +This works with your app regardless of what language it uses, whether it +is a Winforms app, a WPF app, a service, etc. +

+ + + + diff --git a/src/Help/Introduction/GettingStarted.htm b/old/src/Help/Introduction/GettingStarted.htm similarity index 96% rename from src/Help/Introduction/GettingStarted.htm rename to old/src/Help/Introduction/GettingStarted.htm index 957ada6..ef5631e 100644 --- a/src/Help/Introduction/GettingStarted.htm +++ b/old/src/Help/Introduction/GettingStarted.htm @@ -1,203 +1,203 @@ - - -Getting Started - - - - - - -

Getting Started with DotNetZip

- -

This page describes how to get started using DotNetZip.

- -

Which download to choose?

- -

DotNetZip is free to use. You just need to download it and start using it. Different downloads -of DotNetZip are available. Which one you choose depends on what -you want to do.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
If your goal is...Download this...which contains...
To read the documentation for the library and toolsDotNetZipLib-*.chma compiled helpfile containing all the documentation.
To build .NET, COM, or PowerShell apps that use the Zip - library. - DotNetZipLib-DevKit-vx.x.zipthe signed DLLs for Zip and Zlib; the XML Documentation file - for intellisense; the compiled help file (CHM); an MSI file - that installs help into Visual Studio; and the License. -
To modify or view the source code for the Zip & Zlib Libraries, - the setup (msi) project, or the examples. DotNetzip-src-vx.x.x.x.zipthe VS2008 solution, containing a number of VS projects and the - source code for the library and various examples that use the - library.
To distribute .NET applications that use the Zip library, or if - you want to run a .NET application that depends on this library. - DotNetZipLib-Runtime-vx.x.zipthe signed DLLs for Zip and Zlib; and the License. This is a - strict subset of the DevKit download. -
To distribute .NET applications that use the Zip library, or if - you want to run a .NET application that depends on this library. - DotNetZipLib-Runtime-vx.x.msian .MSI version of the Runtime release, containing signed DLLs for - Zip and Zlib; and the License.
To create, read, or modify ZIP files from within a Windows GUI interface, - or from the command line, or from within batch files. - DotNetZipUtils-v1.8.zipa set of exe tools (command-line and GUI) that rely on the - DotNetZip library, to create and manage zip files.
To create, read, or modify ZIP files from within a Windows GUI interface, - or from the command line, or from within batch files. - DotNetZipUtils-v1.8.msian .MSI version of the Utils download. This installs a set of exe - tools (command-line and GUI) that rely on the DotNetZip library, - to create and manage zip files. There's also an - uninstaller.
- - - - -

Which DLL to use?

- -

When you are building an application that manipulates ZIP files, you -will want to use one of the binary releases of DotNetZip. These -releases include multiple distinct DLLs or assemblies. Which one should -you use?

- -

The likely answer is: Ionic.Zip.dll

- -

That's the mainstream library, the full library, and it includes all the -capability of DotNetZip. The other DLLs are reduced in various ways, to suite particular requirements. -

- -

For example, you may want a -smaller library, or you want to exclude the Self-Extracting capability, or -you only want the ZLIB capability. In these cases, you may want to choose a -different assembly. -

- -

Here's a summary of the options.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Usage scenarioDLL
Basic reading or writing of Zip files Ionic.Zip.dll
raw block or stream compression using ZLIB, DEFLATE, or - GZip Ionic.Zlib.dll
compression using the BZip2 algorithmIonic.BZip2.dll
Some combination of ZLIB/DEFLATE/GZIP compression, BZip2 - compression, and reading or writing Zip - files Ionic.Zip.dll
reading or writing Zip files, but never creating a self-extracting - archive Ionic.Zip.Reduced.dll
- -

- Never reference both Ionic.Zlib.dll and Ionic.Zip.dll in the same - application, or both Ionic.BZip2.dll and Ionic.Zip.dll. If your - application does both Zlib and Zip things, or both BZip2 and Zip - things, or all three, you need only add a reference to Ionic.Zip.dll. - Ionic.Zip.dll includes all the capability in Ionic.Zlib.dll and - Ionic.BZip2.dll. You always need to reference only a single Ionic - DLL, regardless whether you use Zlib or BZip2 or Zip or some - combination. -

- -

- If you use COM, then you want to reference the main DLL, - Ionic.Zip.dll. If you install the DotNetZip Runtime library via the - .MSI installer, the correct DLL will automatically be installed and - registered for use with COM. If you don't use the .MSI - installer, you will have to perform these steps yourself. Consult the - documentation on using DotNetZip with COM for more information. -

- - - + + +Getting Started + + + + + + +

Getting Started with DotNetZip

+ +

This page describes how to get started using DotNetZip.

+ +

Which download to choose?

+ +

DotNetZip is free to use. You just need to download it and start using it. Different downloads +of DotNetZip are available. Which one you choose depends on what +you want to do.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
If your goal is...Download this...which contains...
To read the documentation for the library and toolsDotNetZipLib-*.chma compiled helpfile containing all the documentation.
To build .NET, COM, or PowerShell apps that use the Zip + library. + DotNetZipLib-DevKit-vx.x.zipthe signed DLLs for Zip and Zlib; the XML Documentation file + for intellisense; the compiled help file (CHM); an MSI file + that installs help into Visual Studio; and the License. +
To modify or view the source code for the Zip & Zlib Libraries, + the setup (msi) project, or the examples. DotNetzip-src-vx.x.x.x.zipthe VS2008 solution, containing a number of VS projects and the + source code for the library and various examples that use the + library.
To distribute .NET applications that use the Zip library, or if + you want to run a .NET application that depends on this library. + DotNetZipLib-Runtime-vx.x.zipthe signed DLLs for Zip and Zlib; and the License. This is a + strict subset of the DevKit download. +
To distribute .NET applications that use the Zip library, or if + you want to run a .NET application that depends on this library. + DotNetZipLib-Runtime-vx.x.msian .MSI version of the Runtime release, containing signed DLLs for + Zip and Zlib; and the License.
To create, read, or modify ZIP files from within a Windows GUI interface, + or from the command line, or from within batch files. + DotNetZipUtils-v1.8.zipa set of exe tools (command-line and GUI) that rely on the + DotNetZip library, to create and manage zip files.
To create, read, or modify ZIP files from within a Windows GUI interface, + or from the command line, or from within batch files. + DotNetZipUtils-v1.8.msian .MSI version of the Utils download. This installs a set of exe + tools (command-line and GUI) that rely on the DotNetZip library, + to create and manage zip files. There's also an + uninstaller.
+ + + + +

Which DLL to use?

+ +

When you are building an application that manipulates ZIP files, you +will want to use one of the binary releases of DotNetZip. These +releases include multiple distinct DLLs or assemblies. Which one should +you use?

+ +

The likely answer is: Ionic.Zip.dll

+ +

That's the mainstream library, the full library, and it includes all the +capability of DotNetZip. The other DLLs are reduced in various ways, to suite particular requirements. +

+ +

For example, you may want a +smaller library, or you want to exclude the Self-Extracting capability, or +you only want the ZLIB capability. In these cases, you may want to choose a +different assembly. +

+ +

Here's a summary of the options.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Usage scenarioDLL
Basic reading or writing of Zip files Ionic.Zip.dll
raw block or stream compression using ZLIB, DEFLATE, or + GZip Ionic.Zlib.dll
compression using the BZip2 algorithmIonic.BZip2.dll
Some combination of ZLIB/DEFLATE/GZIP compression, BZip2 + compression, and reading or writing Zip + files Ionic.Zip.dll
reading or writing Zip files, but never creating a self-extracting + archive Ionic.Zip.Reduced.dll
+ +

+ Never reference both Ionic.Zlib.dll and Ionic.Zip.dll in the same + application, or both Ionic.BZip2.dll and Ionic.Zip.dll. If your + application does both Zlib and Zip things, or both BZip2 and Zip + things, or all three, you need only add a reference to Ionic.Zip.dll. + Ionic.Zip.dll includes all the capability in Ionic.Zlib.dll and + Ionic.BZip2.dll. You always need to reference only a single Ionic + DLL, regardless whether you use Zlib or BZip2 or Zip or some + combination. +

+ +

+ If you use COM, then you want to reference the main DLL, + Ionic.Zip.dll. If you install the DotNetZip Runtime library via the + .MSI installer, the correct DLL will automatically be installed and + registered for use with COM. If you don't use the .MSI + installer, you will have to perform these steps yourself. Consult the + documentation on using DotNetZip with COM for more information. +

+ + + diff --git a/src/Help/Introduction/Introduction.htm b/old/src/Help/Introduction/Introduction.htm similarity index 93% rename from src/Help/Introduction/Introduction.htm rename to old/src/Help/Introduction/Introduction.htm index 8c568fe..b6d3bf6 100644 --- a/src/Help/Introduction/Introduction.htm +++ b/old/src/Help/Introduction/Introduction.htm @@ -1,7 +1,7 @@ - - - - -Introduction - - + + + + +Introduction + + diff --git a/src/Help/MSHelp2.shfbproj b/old/src/Help/MSHelp2.shfbproj similarity index 98% rename from src/Help/MSHelp2.shfbproj rename to old/src/Help/MSHelp2.shfbproj index f4c2aa4..b0b6cef 100644 --- a/src/Help/MSHelp2.shfbproj +++ b/old/src/Help/MSHelp2.shfbproj @@ -1,87 +1,87 @@ - - - - Debug - AnyCPU - 2.0 - {47122ab7-f040-4735-a59a-5b2d7f073b57} - 1.9.0.0 - - Documentation - Documentation - Documentation - - .\bin\MSHelp2 - DotNetZipLib-v1.9.1.6 - DotNetZip is a small, easy-to-use class library for manipulating .zip files. It can enable .NET applications written in VB.NET, C#, any .NET language, to easily create, read, and update zip files. DotNetZip is donationware: http://cheeso.members.winisp.net/DotNetZipDonate.aspx - Summary, Parameter, Returns, AutoDocumentCtors, Namespace, TypeParameter - InheritedMembers, InheritedFrameworkMembers, Protected, SealedProtected - - - c:\Program Files (x86)\Common Files\microsoft shared\Help 2.0 Compiler\ - - - - - 3.0 - Ionic Zip Library v1.9.1.6 - dpchiesa%40hotmail.com - Prototype - - - - - - - The Ionic namespace includes supporting classes used in the DotNetZip library. - Classes in the Ionic.Zip namespace allow applications to read and write zip files according to the format -described by pkware, at: -http://www.pkware.com/business_and_developers/developer/popups/appnote.txt. - -This implementation utilizes a DeflateStream class implemented in managed code, in the Ionic.Zlib namespace. It does not use System.IO.Compression.DeflateStream in the .NET Framework -v2.0 base class library. - -DotNetZip is donationware. Please donate. Proceeds go to the Boys &amp; Girls Club in Pennsylvania, USA. http://cheeso.members.winisp.net/DotNetZipDonate.aspx - Ionic.Zlib namespace includes classes for doing ZLIB, DEFLATE, and GZIP compression and decompression, according to RFC 1950, RFC 1951, and RFC 1952. It includes stream classes that can directly replace the DeflateStream and GZipStream classes that are included in the Base Class Library of the .NET Framework. - - Copyright 2009-2011, Dino Chiesa - True - Reference - MSHelp2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + Debug + AnyCPU + 2.0 + {47122ab7-f040-4735-a59a-5b2d7f073b57} + 1.9.0.0 + + Documentation + Documentation + Documentation + + .\bin\MSHelp2 + DotNetZipLib-v1.9.1.6 + DotNetZip is a small, easy-to-use class library for manipulating .zip files. It can enable .NET applications written in VB.NET, C#, any .NET language, to easily create, read, and update zip files. DotNetZip is donationware: http://cheeso.members.winisp.net/DotNetZipDonate.aspx + Summary, Parameter, Returns, AutoDocumentCtors, Namespace, TypeParameter + InheritedMembers, InheritedFrameworkMembers, Protected, SealedProtected + + + c:\Program Files (x86)\Common Files\microsoft shared\Help 2.0 Compiler\ + + + + + 3.0 + Ionic Zip Library v1.9.1.6 + dpchiesa%40hotmail.com + Prototype + + + + + + + The Ionic namespace includes supporting classes used in the DotNetZip library. + Classes in the Ionic.Zip namespace allow applications to read and write zip files according to the format +described by pkware, at: +http://www.pkware.com/business_and_developers/developer/popups/appnote.txt. + +This implementation utilizes a DeflateStream class implemented in managed code, in the Ionic.Zlib namespace. It does not use System.IO.Compression.DeflateStream in the .NET Framework +v2.0 base class library. + +DotNetZip is donationware. Please donate. Proceeds go to the Boys &amp; Girls Club in Pennsylvania, USA. http://cheeso.members.winisp.net/DotNetZipDonate.aspx + Ionic.Zlib namespace includes classes for doing ZLIB, DEFLATE, and GZIP compression and decompression, according to RFC 1950, RFC 1951, and RFC 1952. It includes stream classes that can directly replace the DeflateStream and GZipStream classes that are included in the Base Class Library of the .NET Framework. + + Copyright 2009-2011, Dino Chiesa + True + Reference + MSHelp2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Help/Zip Tools/BZip2GZip.htm b/old/src/Help/Tools and Utilities/BZip2GZip.htm similarity index 96% rename from src/Help/Zip Tools/BZip2GZip.htm rename to old/src/Help/Tools and Utilities/BZip2GZip.htm index 54c3665..0c31ccd 100644 --- a/src/Help/Zip Tools/BZip2GZip.htm +++ b/old/src/Help/Tools and Utilities/BZip2GZip.htm @@ -1,188 +1,188 @@ - - -GZip.exe and BZip2.exe - - - - - - -

Compression Command-Line Tools

- -

The Tools/Utilities downloads for DotNetZip includes a pair of - command-line tools that perform raw compression and decompression: - GZip.exe and BZip2.exe . These tools can be used from the command - line to compress or decompress .gz and .bz2 files, respectively, from - within batch scripts, or CMD.exe windows. -

- - - -

GZip.exe

- -

This tool can be used to compress a regular file into a .gz file, or - to decompress a .gz files into its original, uncompressed form. It - handles files in the .gz format created by other GZIP tools, such as - the gzip tool that is included with Linux and other operating systems, - and the .gz files it produces on Windows can be read by the gzip tool - on other platforms. -

- -

Of interest, the GZip format handled by this tool is specified - in IETF RFC - 1952. While the GZIP format can handle multiple entries within a - single archive, in general that feature is rarely used. Instead, most - uses of GZip compress a single file to a single .gz file.

- - - -

Usage

- -
-  GZip.exe <FileToProcess> [arguments]
-
- arguments:
-   -v         - verbose output.
-   -f         - force overwrite of any existing files.
-   -keep      - don't delete the original file after compressing or
-                decompressing it.
-
- - - - -

BZip2.exe

- -

This tool can be used to create .bz2 files, that conform to the BZIP2 - format. Bzip2 was created in 1996 as a compression method and format - that can be applied to single files. Unlike ZIP, it is not a - multi-entry archive format - you use bzip2 to compress a single file - into a single compressed image. By convention, for a given filename, a - bzip2 compressor creates a new file called filename.bz2 . - -

Using the BZip2.exe command line tool included with DotNetZip, you - can compress regular files into .bz2 files, and you can decompress - .bz2 files into the corresponding original file.

- -

This tool such is compatible with other bzip2 tools, such as the one - that is included with Linux and other operating systems. The .bz2 - files that this tool produces on Windows can be read by the bzip2 tool - on other platforms.

- -

Most Bzip2 utilities delete the original file after producing the - compressed version, and delete the compressed version after - decompressing. This utility follows that convention.

- -

BZip2 is a compression format, similar to ZLIB, GZIP, or DEFLATE. - BZIP2 tends to compress better than these other algorithms, - but BZIP2 compressors tend to require more time to compress. -

- - - -

Usage

-
-
-BZip2.exe <FileToProcess> [arguments]
-
-  arguments:
-    -v         - verbose output.
-    -f         - force overwrite of any existing files.
-    -keep      - don't delete the original file after compressing
-                 or decompressing it.
-
- - - - -

Command Examples

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Use this Command...to do this...
gzip.exe LargeFile.txt
  - compress the LargeFile.txt to produce LargeFile.txt.gz . -
gzip.exe LargeFile.txt.gz
  - decompress the LargeFile.txt.gz to produce LargeFile.txt , and - delete LargeFile.txt.gz . -
gzip.exe LargeFile.txt.gz -keep
  - decompress the LargeFile.txt.gz to produce LargeFile.txt ; the original - LargeFile.txt.gz will not be deleted. -
bzip2.exe LargeFile.txt
  - compress the LargeFile.txt to produce LargeFile.txt.bz2 , and delete - the LargeFile.txt when finished. -
bzip2.exe LargeFile.txt -keep
  - compress the LargeFile.txt to produce LargeFile.txt.bz2 , and keep - the LargeFile.txt when finished. -
bzip2.exe LargeFile.txt.bz2
  - decompress the LargeFile.txt.bz2 to produce LargeFile.txt , and - delete the original compressed file when finished. -
- - - - - - + + +GZip.exe and BZip2.exe + + + + + + +

Compression Command-Line Tools

+ +

The Tools/Utilities downloads for DotNetZip includes a pair of + command-line tools that perform raw compression and decompression: + GZip.exe and BZip2.exe . These tools can be used from the command + line to compress or decompress .gz and .bz2 files, respectively, from + within batch scripts, or CMD.exe windows. +

+ + + +

GZip.exe

+ +

This tool can be used to compress a regular file into a .gz file, or + to decompress a .gz files into its original, uncompressed form. It + handles files in the .gz format created by other GZIP tools, such as + the gzip tool that is included with Linux and other operating systems, + and the .gz files it produces on Windows can be read by the gzip tool + on other platforms. +

+ +

Of interest, the GZip format handled by this tool is specified + in IETF RFC + 1952. While the GZIP format can handle multiple entries within a + single archive, in general that feature is rarely used. Instead, most + uses of GZip compress a single file to a single .gz file.

+ + + +

Usage

+ +
+  GZip.exe <FileToProcess> [arguments]
+
+ arguments:
+   -v         - verbose output.
+   -f         - force overwrite of any existing files.
+   -keep      - don't delete the original file after compressing or
+                decompressing it.
+
+ + + + +

BZip2.exe

+ +

This tool can be used to create .bz2 files, that conform to the BZIP2 + format. Bzip2 was created in 1996 as a compression method and format + that can be applied to single files. Unlike ZIP, it is not a + multi-entry archive format - you use bzip2 to compress a single file + into a single compressed image. By convention, for a given filename, a + bzip2 compressor creates a new file called filename.bz2 . + +

Using the BZip2.exe command line tool included with DotNetZip, you + can compress regular files into .bz2 files, and you can decompress + .bz2 files into the corresponding original file.

+ +

This tool such is compatible with other bzip2 tools, such as the one + that is included with Linux and other operating systems. The .bz2 + files that this tool produces on Windows can be read by the bzip2 tool + on other platforms.

+ +

Most Bzip2 utilities delete the original file after producing the + compressed version, and delete the compressed version after + decompressing. This utility follows that convention.

+ +

BZip2 is a compression format, similar to ZLIB, GZIP, or DEFLATE. + BZIP2 tends to compress better than these other algorithms, + but BZIP2 compressors tend to require more time to compress. +

+ + + +

Usage

+
+
+BZip2.exe <FileToProcess> [arguments]
+
+  arguments:
+    -v         - verbose output.
+    -f         - force overwrite of any existing files.
+    -keep      - don't delete the original file after compressing
+                 or decompressing it.
+
+ + + + +

Command Examples

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Use this Command...to do this...
gzip.exe LargeFile.txt
  + compress the LargeFile.txt to produce LargeFile.txt.gz . +
gzip.exe LargeFile.txt.gz
  + decompress the LargeFile.txt.gz to produce LargeFile.txt , and + delete LargeFile.txt.gz . +
gzip.exe LargeFile.txt.gz -keep
  + decompress the LargeFile.txt.gz to produce LargeFile.txt ; the original + LargeFile.txt.gz will not be deleted. +
bzip2.exe LargeFile.txt
  + compress the LargeFile.txt to produce LargeFile.txt.bz2 , and delete + the LargeFile.txt when finished. +
bzip2.exe LargeFile.txt -keep
  + compress the LargeFile.txt to produce LargeFile.txt.bz2 , and keep + the LargeFile.txt when finished. +
bzip2.exe LargeFile.txt.bz2
  + decompress the LargeFile.txt.bz2 to produce LargeFile.txt , and + delete the original compressed file when finished. +
+ + + + + + diff --git a/src/Help/Tools and Utilities/CmdLine.htm b/old/src/Help/Tools and Utilities/CmdLine.htm similarity index 96% rename from src/Help/Tools and Utilities/CmdLine.htm rename to old/src/Help/Tools and Utilities/CmdLine.htm index f83bd75..3645ee1 100644 --- a/src/Help/Tools and Utilities/CmdLine.htm +++ b/old/src/Help/Tools and Utilities/CmdLine.htm @@ -1,529 +1,529 @@ - - -ZipIt.exe and UnZip.exe - - - - - - -

DotNetZip Command-Line Tools

- -

The Tools/Utilities downloads for DotNetZip include a pair of tools - -Zipit.exe and Unzip.exe - that can be used from the command line to -manipulate zip files from within batch scripts, or CMD.exe windows. -

- - -

ZipIt.exe

- -

This tool can be used to create ZIP files, or update existing ZIP -files, from the command line or from a batch file.

- -

Using the command line tools, you can do virtually everything you can -do by using the library directly from a custom application. You can -create self-extracting archives or archives that use ZIP64 extensions. -You can create archives that use encryption or passwords. You can -create split or spanned archives. And there are many other options.

- - - - -

Usage

-
-
-ZipIt.exe <ZipFileToCreate> [arguments]
-
-arguments:
-  <directory> | <file> - a directory or file to add to the archive.
-  <selector>           - a file selection expression.  Examples:
-                           *.txt
-                           (name = *.txt) OR (name = *.xml)
-                           (attrs = H) OR (name != *.xml)
-                           (ctime < 2009/02/28-10:20:00)
-                           (size > 1g) AND (mtime < 2009-06-29)
-                           (ctime > 2009-04-29) AND (size < 10kb)
-                         Filenames can include full paths. You must surround a filename
-                         that includes spaces with single quotes.
-  -64                  - use ZIP64 extensions, for large files or large numbers of files.
-  -aes                 - use WinZip-compatible AES 256-bit encryption for entries
-                         subsequently added to the archive. Requires a password.
-  -cp <codepage>       - use the specified numeric codepage for entries with comments
-                         or filenames that cannot be encoded with the default IBM437
-                         code page.
-  -d <path>            - use the given directory path in the archive for
-                         succeeding items added to the archive.
-  -D <path>            - find files in the given directory on disk.
-  -e<s,r,q,a>          - when there is an error reading a file to be zipped, either skip
-                         the file, retry, quit, or ask the user what to do.
-  -j-                  - do not traverse NTFS junctions
-  -j+                  - traverse NTFS junctions (default)
-  -L <level>           - compression level, 0..9 (Default is 6).
-  -p <password>        - apply the specified password for all succeeding files added.
-                         use "" to reset the password to nil.
-  -progress            - emit progress reports (good when creating large zips)
-  -r-                  - don't recurse directories (default).
-  -r+                  - recurse directories.
-  -s <entry> 'string'  - insert an entry of the given name into the
-                         archive, with the given string as its content.
-  -sfx [w|c]           - create a self-extracting archive, either a Windows or console app.
-  -split <maxsize>     - produce a split zip, with the specified maximum size.  You can
-                         optionally use kb or mb as a suffix to the size.
-                         -split is not compatible with -sfx.
-                         This is not compatible with -sfx.
-  -Tw+                 - store Windows-format extended times (default).
-  -Tw-                 - don't store Windows-format extended times.
-  -Tu+                 - store Unix-format extended times (default).
-  -Tu-                 - don't store Unix-format extended times (default).
-  -UTnow               - use uniform date/time, NOW, for all entries.
-  -UTnewest            - use uniform date/time, newest entry, for all entries.
-  -UToldest            - use uniform date/time, oldest entry, for all entries.
-  -UT <datetime>       - use uniform date/time, specified, for all entries.
-  -utf8                - use UTF-8 encoding for entries with comments or
-                         filenames that cannot be encoded with the default IBM437
-                         code page.
-  -zc <comment>        - use the given comment for the archive.
-
-
- - - - -

Command Examples

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Use this Command...to do this...
zipit.exe NewZip.zip -64 *.doc
  - create a new zip file called NewZip.zip, adding all .doc files from - the current directory - into the zip. Use ZIP64 extensions. -
zipit.exe NewZip.zip -r+ *.doc
  - create a new zip file called NewZip.zip, adding all .doc files, in the - current directory and any child directories, - into the zip. -
zipit.exe Backup.zip -d c:\MyDocuments -r+ -j- *.*
  - create a new zip file called Backup.zip, adding all files within the c:\MyDocuments - directory. Do not traverse NTFS Junction points (like My Videos). -
zipit.exe Package.exe -sfx -d c:\files -r+ *.*
  - create a new self-extracting archive file called Package.exe, adding - all files within the c:\files directory hierarchy. -
zipit.exe Package.zip -split 1mb -d c:\files -r+ *.*
  - create a new "spanned" or multi-segment zip file called Package.zip, adding - all files within the c:\files directory hierarchy. Each segment of the zipfile should be - limited to 1mb in size, and the segments will be named Package.z01, Package.z02, etc. -
zipit.exe ImageLibrary.zip -split 1mb -d c:\images -r+ "name = *.jpg AND size > 100kb"
  - create a new "spanned" or multi-segment zip file called ImageLibrary.zip, adding - all .jpg files within the c:\images directory hierarchy that have a size larger than 100kb. Each segment of the zipfile should be - limited to 1mb in size, and the segments will be named Package.z01, Package.z02, etc. -
zipit.exe Portfolio.zip -p Secret! -aes -d c:\portfolio -r+ "name != *.tfs"
  - create a new aip file called Portfolio.zip, adding - all files within the c:\portfolio directory hierarchy that do not have the .tfs extension. - Encrypt all entries using AES 256-bit encryption. -
zipit.exe Portfolio.zip -p Secret! -aes -L 9 -d c:\portfolio -r+ "name != *.tfs"
  - create a new aip file called Portfolio.zip, adding - all files within the c:\portfolio directory hierarchy that do not have the .tfs extension. - Encrypt all entries using AES 256-bit encryption, and use level 9 (Best) compression. -
- - - - -

Syntax for the Selection Criteria

- -

Using the a selector string, you can specify a set of criteria for -the files to be added to the zip file. Specify the criteria in -statements of 3 elements: a noun, an operator, and a value. Consider -the string "name != *.doc" . The noun is "name". The operator is "!=", -implying "Not Equal". The value is "*.doc". That criterion, in -English, says "all files with a name that does not end in the .doc -extension."

- -

Supported nouns include name for the filename; atime, -mtime, and ctime for last access time, last modfied time, -and created time of the file, respectively; attributes for the -file attributes; and size for the file length (uncompressed). -The attributes and name nouns both support = and != as -operators. The size, atime, mtime, and -ctime nouns support = and !=, and >, >=, <, <= as -well. The times are taken to be expressed in local time.

- -

Specify values for the file attributes as a string with one or more -of the characters H,R,S,A in any order, implying Hidden, ReadOnly, -System, and Archive, respectively. To specify a time, use -YYYY-MM-DD-HH:mm:ss or YYYY/MM/DD-HH:mm:ss as the format. If you omit the HH:mm:ss portion, it -is assumed to be 00:00:00 (midnight). The value for a size criterion is -expressed in integer quantities of bytes, kilobytes (use k or kb after -the number), megabytes (m or mb), or gigabytes (g or gb). The value for -a name is a pattern to match against the filename, potentially including -wildcards. The pattern follows CMD.exe glob rules: * implies one or -more of any character (not including dot), while ? implies one character -(not including dot). If the name pattern contains any slashes, it is -matched to the entire filename, including the path; otherwise, it is -matched against only the filename without the path. This means a -pattern of "*\*.*" matches all files one directory level deep, while a -pattern of "*.*" matches all files in all directories.

- - -

To specify a name pattern that includes spaces, use single quotes -around the pattern. A pattern of "'* *.*'" will match all files that -have spaces in the filename. The full criteria string for that would be -"name = '* *.*'" .

- - - - - -

Examples of Selection Criteria

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Use this Command...to do this...
name = *.jpg
 any .jpg file -
mtime > 2009-07-14
 any file with a last modified time after midnight on 14 July - 2009. There is also ctime and atime for created time and accessed - time. -
ctime > 2009-07-14-07:53:00
 any file with a created time after 7:53am (local time) on 14 July 2009. -
size > 320mb
  -any file with a size over 320mb. You can use kb or gb, too. Or -omit the characters to specify a filesize in bytes. And you can use <, >, or = as -operations. -
attr != H
  -any file that does not have the Hidden attribute set. Other attributes -include S=system, R=Readonly, A=Archive. Of course you can test that -the attribute is ON as well, using = instead of !=. -
attr != H and size > 320mb
  -include the files that satisfy both conditions. You can also use OR as a conjuction. Use parens to group complex expressions. - -
name = *.jpg or name = *.gif
  -include the files that satisfy one or the other condition. -
(name = *.jpg) or (name = *.gif)
  -same as above. -
(mtime >= 2009-07-01) and (mtime < 2009-07-02)
  -any file modified on July 1st. From midnight to midnight. -
(name = *.jpg) AND (mtime >= 2009/07/01) and (mtime < 2009/07/02)
  -any .jpg file modified on July 1st. -
(name = *.jpg) and (size >= 100kb) and (mtime >= 2009/07/01) and (mtime < 2009/07/02)
  -any .jpg file, 100kb or more in size, modified on July 1st. -
- - - - -

UnZip.exe

- -

This tool can be used to view, extract, or test and verify ZIP files, -from the command line or from a batch file.

- - - - -

Usage

- -
-  UnZip.exe [options] <zipfile> [<entryname>...]
-     unzips all files in the archive.
-     options:
-       -o                overwrite existing files if necessary.
-       -f                flatten directory structure when extracting.
-       -p <password>     specify password for extraction.
-       -t                test the file for consistency.
-       -q                operate quietly (no verbose messages).
-       -cp <codepage>    extract with the specified numeric codepage.  Only do this if you
-                         know the codepage, and it is neither IBM437 nor UTF-8. If the
-                         codepage you specify here is different than the codepage of
-                         the cmd.exe, then the verbose messages will look odd, but the
-                         files will be extracted properly.
-       -d <directory>    unpack to the specified directory. If none provided, it will
-                         unzip to the current directory.
-       <entryname>       unzip only the specified filename.
-
-  unzip -l <zipfile>
-     lists the entries in the zip archive.
-  unzip -i <zipfile>
-     displays full information about all the entries in the zip archive.
-  unzip -t <zipfile> [-p <password>] [-cp <codepage>]
-     tests the zip archive.
-  unzip -?
-     displays this message.
-
-
- - - - -

Command Examples

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Use this Command...to do this...
UnZip.exe -l Package.zip
  - list the entries in the zipfile, along with basic information about each entry. -
UnZip.exe Package.zip
  - extract the entries in the zipfile, into the current directory. -
UnZip.exe Package.zip -d ex1
  - extract the entries in the zipfile, into the directory 'ex1'. The directory will - be created if it does not exist. -
UnZip.exe Package.zip -f -d ex1
  - extract the entries in the zipfile, into the directory 'ex1'. The directory will - be created if it does not exist. Any directory hierarchy within the zip file - will be ignored or "flattened" upon extraction. -
UnZip.exe Package.zip -o -d ex1
  - extract the entries in the zipfile, into the directory 'ex1'. The directory will - be created if it does not exist. During extraction, any existing files in the - directory hierarchy will be overwritten if necessary. -
- - - - - + + +ZipIt.exe and UnZip.exe + + + + + + +

DotNetZip Command-Line Tools

+ +

The Tools/Utilities downloads for DotNetZip include a pair of tools - +Zipit.exe and Unzip.exe - that can be used from the command line to +manipulate zip files from within batch scripts, or CMD.exe windows. +

+ + +

ZipIt.exe

+ +

This tool can be used to create ZIP files, or update existing ZIP +files, from the command line or from a batch file.

+ +

Using the command line tools, you can do virtually everything you can +do by using the library directly from a custom application. You can +create self-extracting archives or archives that use ZIP64 extensions. +You can create archives that use encryption or passwords. You can +create split or spanned archives. And there are many other options.

+ + + + +

Usage

+
+
+ZipIt.exe <ZipFileToCreate> [arguments]
+
+arguments:
+  <directory> | <file> - a directory or file to add to the archive.
+  <selector>           - a file selection expression.  Examples:
+                           *.txt
+                           (name = *.txt) OR (name = *.xml)
+                           (attrs = H) OR (name != *.xml)
+                           (ctime < 2009/02/28-10:20:00)
+                           (size > 1g) AND (mtime < 2009-06-29)
+                           (ctime > 2009-04-29) AND (size < 10kb)
+                         Filenames can include full paths. You must surround a filename
+                         that includes spaces with single quotes.
+  -64                  - use ZIP64 extensions, for large files or large numbers of files.
+  -aes                 - use WinZip-compatible AES 256-bit encryption for entries
+                         subsequently added to the archive. Requires a password.
+  -cp <codepage>       - use the specified numeric codepage for entries with comments
+                         or filenames that cannot be encoded with the default IBM437
+                         code page.
+  -d <path>            - use the given directory path in the archive for
+                         succeeding items added to the archive.
+  -D <path>            - find files in the given directory on disk.
+  -e<s,r,q,a>          - when there is an error reading a file to be zipped, either skip
+                         the file, retry, quit, or ask the user what to do.
+  -j-                  - do not traverse NTFS junctions
+  -j+                  - traverse NTFS junctions (default)
+  -L <level>           - compression level, 0..9 (Default is 6).
+  -p <password>        - apply the specified password for all succeeding files added.
+                         use "" to reset the password to nil.
+  -progress            - emit progress reports (good when creating large zips)
+  -r-                  - don't recurse directories (default).
+  -r+                  - recurse directories.
+  -s <entry> 'string'  - insert an entry of the given name into the
+                         archive, with the given string as its content.
+  -sfx [w|c]           - create a self-extracting archive, either a Windows or console app.
+  -split <maxsize>     - produce a split zip, with the specified maximum size.  You can
+                         optionally use kb or mb as a suffix to the size.
+                         -split is not compatible with -sfx.
+                         This is not compatible with -sfx.
+  -Tw+                 - store Windows-format extended times (default).
+  -Tw-                 - don't store Windows-format extended times.
+  -Tu+                 - store Unix-format extended times (default).
+  -Tu-                 - don't store Unix-format extended times (default).
+  -UTnow               - use uniform date/time, NOW, for all entries.
+  -UTnewest            - use uniform date/time, newest entry, for all entries.
+  -UToldest            - use uniform date/time, oldest entry, for all entries.
+  -UT <datetime>       - use uniform date/time, specified, for all entries.
+  -utf8                - use UTF-8 encoding for entries with comments or
+                         filenames that cannot be encoded with the default IBM437
+                         code page.
+  -zc <comment>        - use the given comment for the archive.
+
+
+ + + + +

Command Examples

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Use this Command...to do this...
zipit.exe NewZip.zip -64 *.doc
  + create a new zip file called NewZip.zip, adding all .doc files from + the current directory + into the zip. Use ZIP64 extensions. +
zipit.exe NewZip.zip -r+ *.doc
  + create a new zip file called NewZip.zip, adding all .doc files, in the + current directory and any child directories, + into the zip. +
zipit.exe Backup.zip -d c:\MyDocuments -r+ -j- *.*
  + create a new zip file called Backup.zip, adding all files within the c:\MyDocuments + directory. Do not traverse NTFS Junction points (like My Videos). +
zipit.exe Package.exe -sfx -d c:\files -r+ *.*
  + create a new self-extracting archive file called Package.exe, adding + all files within the c:\files directory hierarchy. +
zipit.exe Package.zip -split 1mb -d c:\files -r+ *.*
  + create a new "spanned" or multi-segment zip file called Package.zip, adding + all files within the c:\files directory hierarchy. Each segment of the zipfile should be + limited to 1mb in size, and the segments will be named Package.z01, Package.z02, etc. +
zipit.exe ImageLibrary.zip -split 1mb -d c:\images -r+ "name = *.jpg AND size > 100kb"
  + create a new "spanned" or multi-segment zip file called ImageLibrary.zip, adding + all .jpg files within the c:\images directory hierarchy that have a size larger than 100kb. Each segment of the zipfile should be + limited to 1mb in size, and the segments will be named Package.z01, Package.z02, etc. +
zipit.exe Portfolio.zip -p Secret! -aes -d c:\portfolio -r+ "name != *.tfs"
  + create a new aip file called Portfolio.zip, adding + all files within the c:\portfolio directory hierarchy that do not have the .tfs extension. + Encrypt all entries using AES 256-bit encryption. +
zipit.exe Portfolio.zip -p Secret! -aes -L 9 -d c:\portfolio -r+ "name != *.tfs"
  + create a new aip file called Portfolio.zip, adding + all files within the c:\portfolio directory hierarchy that do not have the .tfs extension. + Encrypt all entries using AES 256-bit encryption, and use level 9 (Best) compression. +
+ + + + +

Syntax for the Selection Criteria

+ +

Using the a selector string, you can specify a set of criteria for +the files to be added to the zip file. Specify the criteria in +statements of 3 elements: a noun, an operator, and a value. Consider +the string "name != *.doc" . The noun is "name". The operator is "!=", +implying "Not Equal". The value is "*.doc". That criterion, in +English, says "all files with a name that does not end in the .doc +extension."

+ +

Supported nouns include name for the filename; atime, +mtime, and ctime for last access time, last modfied time, +and created time of the file, respectively; attributes for the +file attributes; and size for the file length (uncompressed). +The attributes and name nouns both support = and != as +operators. The size, atime, mtime, and +ctime nouns support = and !=, and >, >=, <, <= as +well. The times are taken to be expressed in local time.

+ +

Specify values for the file attributes as a string with one or more +of the characters H,R,S,A in any order, implying Hidden, ReadOnly, +System, and Archive, respectively. To specify a time, use +YYYY-MM-DD-HH:mm:ss or YYYY/MM/DD-HH:mm:ss as the format. If you omit the HH:mm:ss portion, it +is assumed to be 00:00:00 (midnight). The value for a size criterion is +expressed in integer quantities of bytes, kilobytes (use k or kb after +the number), megabytes (m or mb), or gigabytes (g or gb). The value for +a name is a pattern to match against the filename, potentially including +wildcards. The pattern follows CMD.exe glob rules: * implies one or +more of any character (not including dot), while ? implies one character +(not including dot). If the name pattern contains any slashes, it is +matched to the entire filename, including the path; otherwise, it is +matched against only the filename without the path. This means a +pattern of "*\*.*" matches all files one directory level deep, while a +pattern of "*.*" matches all files in all directories.

+ + +

To specify a name pattern that includes spaces, use single quotes +around the pattern. A pattern of "'* *.*'" will match all files that +have spaces in the filename. The full criteria string for that would be +"name = '* *.*'" .

+ + + + + +

Examples of Selection Criteria

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Use this Command...to do this...
name = *.jpg
 any .jpg file +
mtime > 2009-07-14
 any file with a last modified time after midnight on 14 July + 2009. There is also ctime and atime for created time and accessed + time. +
ctime > 2009-07-14-07:53:00
 any file with a created time after 7:53am (local time) on 14 July 2009. +
size > 320mb
  +any file with a size over 320mb. You can use kb or gb, too. Or +omit the characters to specify a filesize in bytes. And you can use <, >, or = as +operations. +
attr != H
  +any file that does not have the Hidden attribute set. Other attributes +include S=system, R=Readonly, A=Archive. Of course you can test that +the attribute is ON as well, using = instead of !=. +
attr != H and size > 320mb
  +include the files that satisfy both conditions. You can also use OR as a conjuction. Use parens to group complex expressions. + +
name = *.jpg or name = *.gif
  +include the files that satisfy one or the other condition. +
(name = *.jpg) or (name = *.gif)
  +same as above. +
(mtime >= 2009-07-01) and (mtime < 2009-07-02)
  +any file modified on July 1st. From midnight to midnight. +
(name = *.jpg) AND (mtime >= 2009/07/01) and (mtime < 2009/07/02)
  +any .jpg file modified on July 1st. +
(name = *.jpg) and (size >= 100kb) and (mtime >= 2009/07/01) and (mtime < 2009/07/02)
  +any .jpg file, 100kb or more in size, modified on July 1st. +
+ + + + +

UnZip.exe

+ +

This tool can be used to view, extract, or test and verify ZIP files, +from the command line or from a batch file.

+ + + + +

Usage

+ +
+  UnZip.exe [options] <zipfile> [<entryname>...]
+     unzips all files in the archive.
+     options:
+       -o                overwrite existing files if necessary.
+       -f                flatten directory structure when extracting.
+       -p <password>     specify password for extraction.
+       -t                test the file for consistency.
+       -q                operate quietly (no verbose messages).
+       -cp <codepage>    extract with the specified numeric codepage.  Only do this if you
+                         know the codepage, and it is neither IBM437 nor UTF-8. If the
+                         codepage you specify here is different than the codepage of
+                         the cmd.exe, then the verbose messages will look odd, but the
+                         files will be extracted properly.
+       -d <directory>    unpack to the specified directory. If none provided, it will
+                         unzip to the current directory.
+       <entryname>       unzip only the specified filename.
+
+  unzip -l <zipfile>
+     lists the entries in the zip archive.
+  unzip -i <zipfile>
+     displays full information about all the entries in the zip archive.
+  unzip -t <zipfile> [-p <password>] [-cp <codepage>]
+     tests the zip archive.
+  unzip -?
+     displays this message.
+
+
+ + + + +

Command Examples

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Use this Command...to do this...
UnZip.exe -l Package.zip
  + list the entries in the zipfile, along with basic information about each entry. +
UnZip.exe Package.zip
  + extract the entries in the zipfile, into the current directory. +
UnZip.exe Package.zip -d ex1
  + extract the entries in the zipfile, into the directory 'ex1'. The directory will + be created if it does not exist. +
UnZip.exe Package.zip -f -d ex1
  + extract the entries in the zipfile, into the directory 'ex1'. The directory will + be created if it does not exist. Any directory hierarchy within the zip file + will be ignored or "flattened" upon extraction. +
UnZip.exe Package.zip -o -d ex1
  + extract the entries in the zipfile, into the directory 'ex1'. The directory will + be created if it does not exist. During extraction, any existing files in the + directory hierarchy will be overwritten if necessary. +
+ + + + + diff --git a/src/Help/Zip Tools/GUI.htm b/old/src/Help/Tools and Utilities/GUI.htm similarity index 96% rename from src/Help/Zip Tools/GUI.htm rename to old/src/Help/Tools and Utilities/GUI.htm index d4ce281..93b205c 100644 --- a/src/Help/Zip Tools/GUI.htm +++ b/old/src/Help/Tools and Utilities/GUI.htm @@ -1,339 +1,339 @@ - - -The Graphical Tool - - - - - - - - -

The DotNetZip Graphical Tool

- -

The Tools/Utilities downloads for DotNetZip include a graphical tool -for creating and extracting zip files.

- -

If you use the MSI installer, you will have the chance to associate -.zip files to this tool. If you associate .zip files to this tool, -double-clicking on a zip file from within Windows Explorer will open the -zip file in the tool. If you don't associate .zip files to this tool, -you can open the tool using the Start menu.

- - - - -

The tool uses a tabbed-pane interface. One tab is used for reading -or extracting zip files, another is used for creating zip files. -

- - - - -

Creating a Zip Archive

- -

Create a zip file in two steps: first, select which files to add into -the zip, then add creating the zip with those files.

- - - - -

An overview of the UI elements:

-
    - -
  1. the directory to add. Specify where in the filesystem to find the -files to be added into the zip file.
  2. - -
  3. check this box to traverse Windows NTFS Junctions; leave it unchecked to not traverse junctions
  4. - -
  5. the directory to be used within the zip archive for the files that get added. -
  6. - -
  7. The selection criteria for the files to be added to the zip.
  8. - -
  9. Click this button to add the files that match the selection criteria, to the listbox below (label #18) -To select additional files, you can then repeat steps 1-5 as many times as is necessary. -
    -
    -When you've selected the files you want to include in the archive, -
  10. - -
  11. Specify the name of the zip file to create.
  12. - -
  13. Specify whether to save a regular zip file, or a self-extracting archive.
  14. - -
  15. Specify the compression level to use. Higher compression levels requires more compression time.
  16. - -
  17. The text encoding to use for the filenames.
  18. - -
  19. Whether to use ZIP64 extensions
  20. - -
  21. whether to encrypt the file data, and if so, whether to use AES encryption.
  22. - -
  23. the password to use. The adjacent checkbox allows you to show or -obscure the password characters. This box is enabled only if encryption is in use.
  24. - -
  25. Use these checkboxes to specify whether to include extended timestamps in the generated zip file, in Windows or Unix formats.
  26. - -
  27. Whether to create a split archive, and if so, the size of the segment.
  28. - -
  29. The comment attached to the zip file
  30. - -
  31. The default extraction directory. This feature is enabled only for self-extracting archives.
  32. - -
  33. The command to run after extraction. This feature is enabled only for self-extracting archives.
  34. - -
  35. The list of files to be added to the zip archive. Each file has a checkbox associated to it.
  36. - -
  37. Click this button to remove any checked files from the list.
  38. - -
  39. Finally, click this button to actually create the zip archive.
  40. - -
- - -

Extracting files from a Zip Archive

- -

Extract files from a zip archive by opening the DotNetZip-WinformsTool.exe, and selecting the Read/Extract tab in the UI. -

- - - - - - - - -

An overview of the UI elements:

-
    - -
  1. the zip file to read or extract. -
  2. - -
  3. click here to open and read the specified zip file. The list of -entries in the zip will be displayed in the listbox below (label #7). -
  4. - -
  5. The directory to extract entries into
  6. - -
  7. The selection criteria for entries to extract.
  8. - -
  9. Check this to overwrite existing files during extraction.
  10. - -
  11. Check this box to open Windows Explorer after extraction.
  12. - -
  13. The list of entries in the zip file.
  14. - -
  15. Click this button to extract the specified entries in the zip file. -
  16. -
- - - - - -

Syntax for the Selection Criteria

- -

Using the a selector string, you can specify a set of criteria for -the files to be added to the zip file. Specify the criteria in -statements of 3 elements: a noun, an operator, and a value. Consider -the string "name != *.doc" . The noun is "name". The operator is "!=", -implying "Not Equal". The value is "*.doc". That criterion, in -English, says "all files with a name that does not end in the .doc -extension."

- -

Supported nouns include name for the filename; atime, -mtime, and ctime for last access time, last modfied time, -and created time of the file, respectively; attributes for the -file attributes; and size for the file length (uncompressed). -The attributes and name nouns both support = and != as -operators. The size, atime, mtime, and -ctime nouns support = and !=, and >, >=, <, <= as -well. The times are taken to be expressed in local time.

- -

Specify values for the file attributes as a string with one or more -of the characters H,R,S,A in any order, implying Hidden, ReadOnly, -System, and Archive, respectively. To specify a time, use -YYYY-MM-DD-HH:mm:ss as the format. If you omit the HH:mm:ss portion, it -is assumed to be 00:00:00 (midnight). The value for a size criterion is -expressed in integer quantities of bytes, kilobytes (use k or kb after -the number), megabytes (m or mb), or gigabytes (g or gb). The value for -a name is a pattern to match against the filename, potentially including -wildcards. The pattern follows CMD.exe glob rules: * implies one or -more of any character (not including dot), while ? implies one character -(not including dot). If the name pattern contains any slashes, it is -matched to the entire filename, including the path; otherwise, it is -matched against only the filename without the path. This means a -pattern of "*\*.*" matches all files one directory level deep, while a -pattern of "*.*" matches all files in all directories.

- - -

To specify a name pattern that includes spaces, use single quotes -around the pattern. A pattern of "'* *.*'" will match all files that -have spaces in the filename. The full criteria string for that would be -"name = '* *.*'" .

- - - - - -

Examples of Selection Criteria

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Use this Command...to do this...
name = *.jpg
 any .jpg file -
mtime > 07/01/2009
 any file with a last modified time after midnight on 1 July - 2009. There is also ctime and atime for created time and accessed - time. -
ctime > 07/01/2009-07:53:00
 any file with a created time after 7:53am on 1 July 2009. -
size > 320mb
  -any file with a size over 320mb. You can use kb or gb, too. Or -omit the characters for a size in bytes. And you can use <, >, or = as -operations. -
attr != H
  -any file that does not have the Hidden attribute set. Other attributes -include S=system, R=Readonly, A=Archive. Of course you can test that -the attribute is ON as well, using = instead of !=. -
attr != H and size > 320mb
  -include the files that satisfy both conditions. You can also use OR as a conjuction. Use parens to group complex expressions. - -
name = *.jpg or name = *.gif
  -include the files that satisfy one or the other condition. -
(name = *.jpg) or (name = *.gif)
  -same as above. -
(mtime >= 07/01/2009) and (mtime < 07/02/2009)
  -any file modified on July 1st. From midnight to midnight. -
(name = *.jpg) AND (mtime >= 07/01/2009) and (mtime < 07/02/2009)
  -any .jpg file modified on July 1st. -
(name = *.jpg) and (size >= 100kb) and (mtime >= 07/01/2009) and (mtime < 07/02/2009)
  -any .jpg file, 100kb or more in size, modified on July 1st. -
- - - - - - + + +The Graphical Tool + + + + + + + + +

The DotNetZip Graphical Tool

+ +

The Tools/Utilities downloads for DotNetZip include a graphical tool +for creating and extracting zip files.

+ +

If you use the MSI installer, you will have the chance to associate +.zip files to this tool. If you associate .zip files to this tool, +double-clicking on a zip file from within Windows Explorer will open the +zip file in the tool. If you don't associate .zip files to this tool, +you can open the tool using the Start menu.

+ + + + +

The tool uses a tabbed-pane interface. One tab is used for reading +or extracting zip files, another is used for creating zip files. +

+ + + + +

Creating a Zip Archive

+ +

Create a zip file in two steps: first, select which files to add into +the zip, then add creating the zip with those files.

+ + + + +

An overview of the UI elements:

+
    + +
  1. the directory to add. Specify where in the filesystem to find the +files to be added into the zip file.
  2. + +
  3. check this box to traverse Windows NTFS Junctions; leave it unchecked to not traverse junctions
  4. + +
  5. the directory to be used within the zip archive for the files that get added. +
  6. + +
  7. The selection criteria for the files to be added to the zip.
  8. + +
  9. Click this button to add the files that match the selection criteria, to the listbox below (label #18) +To select additional files, you can then repeat steps 1-5 as many times as is necessary. +
    +
    +When you've selected the files you want to include in the archive, +
  10. + +
  11. Specify the name of the zip file to create.
  12. + +
  13. Specify whether to save a regular zip file, or a self-extracting archive.
  14. + +
  15. Specify the compression level to use. Higher compression levels requires more compression time.
  16. + +
  17. The text encoding to use for the filenames.
  18. + +
  19. Whether to use ZIP64 extensions
  20. + +
  21. whether to encrypt the file data, and if so, whether to use AES encryption.
  22. + +
  23. the password to use. The adjacent checkbox allows you to show or +obscure the password characters. This box is enabled only if encryption is in use.
  24. + +
  25. Use these checkboxes to specify whether to include extended timestamps in the generated zip file, in Windows or Unix formats.
  26. + +
  27. Whether to create a split archive, and if so, the size of the segment.
  28. + +
  29. The comment attached to the zip file
  30. + +
  31. The default extraction directory. This feature is enabled only for self-extracting archives.
  32. + +
  33. The command to run after extraction. This feature is enabled only for self-extracting archives.
  34. + +
  35. The list of files to be added to the zip archive. Each file has a checkbox associated to it.
  36. + +
  37. Click this button to remove any checked files from the list.
  38. + +
  39. Finally, click this button to actually create the zip archive.
  40. + +
+ + +

Extracting files from a Zip Archive

+ +

Extract files from a zip archive by opening the DotNetZip-WinformsTool.exe, and selecting the Read/Extract tab in the UI. +

+ + + + + + + + +

An overview of the UI elements:

+
    + +
  1. the zip file to read or extract. +
  2. + +
  3. click here to open and read the specified zip file. The list of +entries in the zip will be displayed in the listbox below (label #7). +
  4. + +
  5. The directory to extract entries into
  6. + +
  7. The selection criteria for entries to extract.
  8. + +
  9. Check this to overwrite existing files during extraction.
  10. + +
  11. Check this box to open Windows Explorer after extraction.
  12. + +
  13. The list of entries in the zip file.
  14. + +
  15. Click this button to extract the specified entries in the zip file. +
  16. +
+ + + + + +

Syntax for the Selection Criteria

+ +

Using the a selector string, you can specify a set of criteria for +the files to be added to the zip file. Specify the criteria in +statements of 3 elements: a noun, an operator, and a value. Consider +the string "name != *.doc" . The noun is "name". The operator is "!=", +implying "Not Equal". The value is "*.doc". That criterion, in +English, says "all files with a name that does not end in the .doc +extension."

+ +

Supported nouns include name for the filename; atime, +mtime, and ctime for last access time, last modfied time, +and created time of the file, respectively; attributes for the +file attributes; and size for the file length (uncompressed). +The attributes and name nouns both support = and != as +operators. The size, atime, mtime, and +ctime nouns support = and !=, and >, >=, <, <= as +well. The times are taken to be expressed in local time.

+ +

Specify values for the file attributes as a string with one or more +of the characters H,R,S,A in any order, implying Hidden, ReadOnly, +System, and Archive, respectively. To specify a time, use +YYYY-MM-DD-HH:mm:ss as the format. If you omit the HH:mm:ss portion, it +is assumed to be 00:00:00 (midnight). The value for a size criterion is +expressed in integer quantities of bytes, kilobytes (use k or kb after +the number), megabytes (m or mb), or gigabytes (g or gb). The value for +a name is a pattern to match against the filename, potentially including +wildcards. The pattern follows CMD.exe glob rules: * implies one or +more of any character (not including dot), while ? implies one character +(not including dot). If the name pattern contains any slashes, it is +matched to the entire filename, including the path; otherwise, it is +matched against only the filename without the path. This means a +pattern of "*\*.*" matches all files one directory level deep, while a +pattern of "*.*" matches all files in all directories.

+ + +

To specify a name pattern that includes spaces, use single quotes +around the pattern. A pattern of "'* *.*'" will match all files that +have spaces in the filename. The full criteria string for that would be +"name = '* *.*'" .

+ + + + + +

Examples of Selection Criteria

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Use this Command...to do this...
name = *.jpg
 any .jpg file +
mtime > 07/01/2009
 any file with a last modified time after midnight on 1 July + 2009. There is also ctime and atime for created time and accessed + time. +
ctime > 07/01/2009-07:53:00
 any file with a created time after 7:53am on 1 July 2009. +
size > 320mb
  +any file with a size over 320mb. You can use kb or gb, too. Or +omit the characters for a size in bytes. And you can use <, >, or = as +operations. +
attr != H
  +any file that does not have the Hidden attribute set. Other attributes +include S=system, R=Readonly, A=Archive. Of course you can test that +the attribute is ON as well, using = instead of !=. +
attr != H and size > 320mb
  +include the files that satisfy both conditions. You can also use OR as a conjuction. Use parens to group complex expressions. + +
name = *.jpg or name = *.gif
  +include the files that satisfy one or the other condition. +
(name = *.jpg) or (name = *.gif)
  +same as above. +
(mtime >= 07/01/2009) and (mtime < 07/02/2009)
  +any file modified on July 1st. From midnight to midnight. +
(name = *.jpg) AND (mtime >= 07/01/2009) and (mtime < 07/02/2009)
  +any .jpg file modified on July 1st. +
(name = *.jpg) and (size >= 100kb) and (mtime >= 07/01/2009) and (mtime < 07/02/2009)
  +any .jpg file, 100kb or more in size, modified on July 1st. +
+ + + + + + diff --git a/src/Help/Tools and Utilities/Tools and Utilities.htm b/old/src/Help/Tools and Utilities/Tools and Utilities.htm similarity index 96% rename from src/Help/Tools and Utilities/Tools and Utilities.htm rename to old/src/Help/Tools and Utilities/Tools and Utilities.htm index 8ce0ac4..4fdd6c9 100644 --- a/src/Help/Tools and Utilities/Tools and Utilities.htm +++ b/old/src/Help/Tools and Utilities/Tools and Utilities.htm @@ -1,3 +1,3 @@ - - -Tools and Utilities + + +Tools and Utilities diff --git a/src/Help/Tools and Utilities/ZipTool1.png b/old/src/Help/Tools and Utilities/ZipTool1.png similarity index 100% rename from src/Help/Tools and Utilities/ZipTool1.png rename to old/src/Help/Tools and Utilities/ZipTool1.png diff --git a/src/Help/Tools and Utilities/ZipTool2.png b/old/src/Help/Tools and Utilities/ZipTool2.png similarity index 100% rename from src/Help/Tools and Utilities/ZipTool2.png rename to old/src/Help/Tools and Utilities/ZipTool2.png diff --git a/src/Help/Tools and Utilities/ZipTool3.png b/old/src/Help/Tools and Utilities/ZipTool3.png similarity index 100% rename from src/Help/Tools and Utilities/ZipTool3.png rename to old/src/Help/Tools and Utilities/ZipTool3.png diff --git a/src/Help/Tools and Utilities/BZip2GZip.htm b/old/src/Help/Zip Tools/BZip2GZip.htm similarity index 96% rename from src/Help/Tools and Utilities/BZip2GZip.htm rename to old/src/Help/Zip Tools/BZip2GZip.htm index 54c3665..0c31ccd 100644 --- a/src/Help/Tools and Utilities/BZip2GZip.htm +++ b/old/src/Help/Zip Tools/BZip2GZip.htm @@ -1,188 +1,188 @@ - - -GZip.exe and BZip2.exe - - - - - - -

Compression Command-Line Tools

- -

The Tools/Utilities downloads for DotNetZip includes a pair of - command-line tools that perform raw compression and decompression: - GZip.exe and BZip2.exe . These tools can be used from the command - line to compress or decompress .gz and .bz2 files, respectively, from - within batch scripts, or CMD.exe windows. -

- - - -

GZip.exe

- -

This tool can be used to compress a regular file into a .gz file, or - to decompress a .gz files into its original, uncompressed form. It - handles files in the .gz format created by other GZIP tools, such as - the gzip tool that is included with Linux and other operating systems, - and the .gz files it produces on Windows can be read by the gzip tool - on other platforms. -

- -

Of interest, the GZip format handled by this tool is specified - in IETF RFC - 1952. While the GZIP format can handle multiple entries within a - single archive, in general that feature is rarely used. Instead, most - uses of GZip compress a single file to a single .gz file.

- - - -

Usage

- -
-  GZip.exe <FileToProcess> [arguments]
-
- arguments:
-   -v         - verbose output.
-   -f         - force overwrite of any existing files.
-   -keep      - don't delete the original file after compressing or
-                decompressing it.
-
- - - - -

BZip2.exe

- -

This tool can be used to create .bz2 files, that conform to the BZIP2 - format. Bzip2 was created in 1996 as a compression method and format - that can be applied to single files. Unlike ZIP, it is not a - multi-entry archive format - you use bzip2 to compress a single file - into a single compressed image. By convention, for a given filename, a - bzip2 compressor creates a new file called filename.bz2 . - -

Using the BZip2.exe command line tool included with DotNetZip, you - can compress regular files into .bz2 files, and you can decompress - .bz2 files into the corresponding original file.

- -

This tool such is compatible with other bzip2 tools, such as the one - that is included with Linux and other operating systems. The .bz2 - files that this tool produces on Windows can be read by the bzip2 tool - on other platforms.

- -

Most Bzip2 utilities delete the original file after producing the - compressed version, and delete the compressed version after - decompressing. This utility follows that convention.

- -

BZip2 is a compression format, similar to ZLIB, GZIP, or DEFLATE. - BZIP2 tends to compress better than these other algorithms, - but BZIP2 compressors tend to require more time to compress. -

- - - -

Usage

-
-
-BZip2.exe <FileToProcess> [arguments]
-
-  arguments:
-    -v         - verbose output.
-    -f         - force overwrite of any existing files.
-    -keep      - don't delete the original file after compressing
-                 or decompressing it.
-
- - - - -

Command Examples

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Use this Command...to do this...
gzip.exe LargeFile.txt
  - compress the LargeFile.txt to produce LargeFile.txt.gz . -
gzip.exe LargeFile.txt.gz
  - decompress the LargeFile.txt.gz to produce LargeFile.txt , and - delete LargeFile.txt.gz . -
gzip.exe LargeFile.txt.gz -keep
  - decompress the LargeFile.txt.gz to produce LargeFile.txt ; the original - LargeFile.txt.gz will not be deleted. -
bzip2.exe LargeFile.txt
  - compress the LargeFile.txt to produce LargeFile.txt.bz2 , and delete - the LargeFile.txt when finished. -
bzip2.exe LargeFile.txt -keep
  - compress the LargeFile.txt to produce LargeFile.txt.bz2 , and keep - the LargeFile.txt when finished. -
bzip2.exe LargeFile.txt.bz2
  - decompress the LargeFile.txt.bz2 to produce LargeFile.txt , and - delete the original compressed file when finished. -
- - - - - - + + +GZip.exe and BZip2.exe + + + + + + +

Compression Command-Line Tools

+ +

The Tools/Utilities downloads for DotNetZip includes a pair of + command-line tools that perform raw compression and decompression: + GZip.exe and BZip2.exe . These tools can be used from the command + line to compress or decompress .gz and .bz2 files, respectively, from + within batch scripts, or CMD.exe windows. +

+ + + +

GZip.exe

+ +

This tool can be used to compress a regular file into a .gz file, or + to decompress a .gz files into its original, uncompressed form. It + handles files in the .gz format created by other GZIP tools, such as + the gzip tool that is included with Linux and other operating systems, + and the .gz files it produces on Windows can be read by the gzip tool + on other platforms. +

+ +

Of interest, the GZip format handled by this tool is specified + in IETF RFC + 1952. While the GZIP format can handle multiple entries within a + single archive, in general that feature is rarely used. Instead, most + uses of GZip compress a single file to a single .gz file.

+ + + +

Usage

+ +
+  GZip.exe <FileToProcess> [arguments]
+
+ arguments:
+   -v         - verbose output.
+   -f         - force overwrite of any existing files.
+   -keep      - don't delete the original file after compressing or
+                decompressing it.
+
+ + + + +

BZip2.exe

+ +

This tool can be used to create .bz2 files, that conform to the BZIP2 + format. Bzip2 was created in 1996 as a compression method and format + that can be applied to single files. Unlike ZIP, it is not a + multi-entry archive format - you use bzip2 to compress a single file + into a single compressed image. By convention, for a given filename, a + bzip2 compressor creates a new file called filename.bz2 . + +

Using the BZip2.exe command line tool included with DotNetZip, you + can compress regular files into .bz2 files, and you can decompress + .bz2 files into the corresponding original file.

+ +

This tool such is compatible with other bzip2 tools, such as the one + that is included with Linux and other operating systems. The .bz2 + files that this tool produces on Windows can be read by the bzip2 tool + on other platforms.

+ +

Most Bzip2 utilities delete the original file after producing the + compressed version, and delete the compressed version after + decompressing. This utility follows that convention.

+ +

BZip2 is a compression format, similar to ZLIB, GZIP, or DEFLATE. + BZIP2 tends to compress better than these other algorithms, + but BZIP2 compressors tend to require more time to compress. +

+ + + +

Usage

+
+
+BZip2.exe <FileToProcess> [arguments]
+
+  arguments:
+    -v         - verbose output.
+    -f         - force overwrite of any existing files.
+    -keep      - don't delete the original file after compressing
+                 or decompressing it.
+
+ + + + +

Command Examples

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Use this Command...to do this...
gzip.exe LargeFile.txt
  + compress the LargeFile.txt to produce LargeFile.txt.gz . +
gzip.exe LargeFile.txt.gz
  + decompress the LargeFile.txt.gz to produce LargeFile.txt , and + delete LargeFile.txt.gz . +
gzip.exe LargeFile.txt.gz -keep
  + decompress the LargeFile.txt.gz to produce LargeFile.txt ; the original + LargeFile.txt.gz will not be deleted. +
bzip2.exe LargeFile.txt
  + compress the LargeFile.txt to produce LargeFile.txt.bz2 , and delete + the LargeFile.txt when finished. +
bzip2.exe LargeFile.txt -keep
  + compress the LargeFile.txt to produce LargeFile.txt.bz2 , and keep + the LargeFile.txt when finished. +
bzip2.exe LargeFile.txt.bz2
  + decompress the LargeFile.txt.bz2 to produce LargeFile.txt , and + delete the original compressed file when finished. +
+ + + + + + diff --git a/src/Help/Zip Tools/CmdLine.htm b/old/src/Help/Zip Tools/CmdLine.htm similarity index 96% rename from src/Help/Zip Tools/CmdLine.htm rename to old/src/Help/Zip Tools/CmdLine.htm index f83bd75..3645ee1 100644 --- a/src/Help/Zip Tools/CmdLine.htm +++ b/old/src/Help/Zip Tools/CmdLine.htm @@ -1,529 +1,529 @@ - - -ZipIt.exe and UnZip.exe - - - - - - -

DotNetZip Command-Line Tools

- -

The Tools/Utilities downloads for DotNetZip include a pair of tools - -Zipit.exe and Unzip.exe - that can be used from the command line to -manipulate zip files from within batch scripts, or CMD.exe windows. -

- - -

ZipIt.exe

- -

This tool can be used to create ZIP files, or update existing ZIP -files, from the command line or from a batch file.

- -

Using the command line tools, you can do virtually everything you can -do by using the library directly from a custom application. You can -create self-extracting archives or archives that use ZIP64 extensions. -You can create archives that use encryption or passwords. You can -create split or spanned archives. And there are many other options.

- - - - -

Usage

-
-
-ZipIt.exe <ZipFileToCreate> [arguments]
-
-arguments:
-  <directory> | <file> - a directory or file to add to the archive.
-  <selector>           - a file selection expression.  Examples:
-                           *.txt
-                           (name = *.txt) OR (name = *.xml)
-                           (attrs = H) OR (name != *.xml)
-                           (ctime < 2009/02/28-10:20:00)
-                           (size > 1g) AND (mtime < 2009-06-29)
-                           (ctime > 2009-04-29) AND (size < 10kb)
-                         Filenames can include full paths. You must surround a filename
-                         that includes spaces with single quotes.
-  -64                  - use ZIP64 extensions, for large files or large numbers of files.
-  -aes                 - use WinZip-compatible AES 256-bit encryption for entries
-                         subsequently added to the archive. Requires a password.
-  -cp <codepage>       - use the specified numeric codepage for entries with comments
-                         or filenames that cannot be encoded with the default IBM437
-                         code page.
-  -d <path>            - use the given directory path in the archive for
-                         succeeding items added to the archive.
-  -D <path>            - find files in the given directory on disk.
-  -e<s,r,q,a>          - when there is an error reading a file to be zipped, either skip
-                         the file, retry, quit, or ask the user what to do.
-  -j-                  - do not traverse NTFS junctions
-  -j+                  - traverse NTFS junctions (default)
-  -L <level>           - compression level, 0..9 (Default is 6).
-  -p <password>        - apply the specified password for all succeeding files added.
-                         use "" to reset the password to nil.
-  -progress            - emit progress reports (good when creating large zips)
-  -r-                  - don't recurse directories (default).
-  -r+                  - recurse directories.
-  -s <entry> 'string'  - insert an entry of the given name into the
-                         archive, with the given string as its content.
-  -sfx [w|c]           - create a self-extracting archive, either a Windows or console app.
-  -split <maxsize>     - produce a split zip, with the specified maximum size.  You can
-                         optionally use kb or mb as a suffix to the size.
-                         -split is not compatible with -sfx.
-                         This is not compatible with -sfx.
-  -Tw+                 - store Windows-format extended times (default).
-  -Tw-                 - don't store Windows-format extended times.
-  -Tu+                 - store Unix-format extended times (default).
-  -Tu-                 - don't store Unix-format extended times (default).
-  -UTnow               - use uniform date/time, NOW, for all entries.
-  -UTnewest            - use uniform date/time, newest entry, for all entries.
-  -UToldest            - use uniform date/time, oldest entry, for all entries.
-  -UT <datetime>       - use uniform date/time, specified, for all entries.
-  -utf8                - use UTF-8 encoding for entries with comments or
-                         filenames that cannot be encoded with the default IBM437
-                         code page.
-  -zc <comment>        - use the given comment for the archive.
-
-
- - - - -

Command Examples

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Use this Command...to do this...
zipit.exe NewZip.zip -64 *.doc
  - create a new zip file called NewZip.zip, adding all .doc files from - the current directory - into the zip. Use ZIP64 extensions. -
zipit.exe NewZip.zip -r+ *.doc
  - create a new zip file called NewZip.zip, adding all .doc files, in the - current directory and any child directories, - into the zip. -
zipit.exe Backup.zip -d c:\MyDocuments -r+ -j- *.*
  - create a new zip file called Backup.zip, adding all files within the c:\MyDocuments - directory. Do not traverse NTFS Junction points (like My Videos). -
zipit.exe Package.exe -sfx -d c:\files -r+ *.*
  - create a new self-extracting archive file called Package.exe, adding - all files within the c:\files directory hierarchy. -
zipit.exe Package.zip -split 1mb -d c:\files -r+ *.*
  - create a new "spanned" or multi-segment zip file called Package.zip, adding - all files within the c:\files directory hierarchy. Each segment of the zipfile should be - limited to 1mb in size, and the segments will be named Package.z01, Package.z02, etc. -
zipit.exe ImageLibrary.zip -split 1mb -d c:\images -r+ "name = *.jpg AND size > 100kb"
  - create a new "spanned" or multi-segment zip file called ImageLibrary.zip, adding - all .jpg files within the c:\images directory hierarchy that have a size larger than 100kb. Each segment of the zipfile should be - limited to 1mb in size, and the segments will be named Package.z01, Package.z02, etc. -
zipit.exe Portfolio.zip -p Secret! -aes -d c:\portfolio -r+ "name != *.tfs"
  - create a new aip file called Portfolio.zip, adding - all files within the c:\portfolio directory hierarchy that do not have the .tfs extension. - Encrypt all entries using AES 256-bit encryption. -
zipit.exe Portfolio.zip -p Secret! -aes -L 9 -d c:\portfolio -r+ "name != *.tfs"
  - create a new aip file called Portfolio.zip, adding - all files within the c:\portfolio directory hierarchy that do not have the .tfs extension. - Encrypt all entries using AES 256-bit encryption, and use level 9 (Best) compression. -
- - - - -

Syntax for the Selection Criteria

- -

Using the a selector string, you can specify a set of criteria for -the files to be added to the zip file. Specify the criteria in -statements of 3 elements: a noun, an operator, and a value. Consider -the string "name != *.doc" . The noun is "name". The operator is "!=", -implying "Not Equal". The value is "*.doc". That criterion, in -English, says "all files with a name that does not end in the .doc -extension."

- -

Supported nouns include name for the filename; atime, -mtime, and ctime for last access time, last modfied time, -and created time of the file, respectively; attributes for the -file attributes; and size for the file length (uncompressed). -The attributes and name nouns both support = and != as -operators. The size, atime, mtime, and -ctime nouns support = and !=, and >, >=, <, <= as -well. The times are taken to be expressed in local time.

- -

Specify values for the file attributes as a string with one or more -of the characters H,R,S,A in any order, implying Hidden, ReadOnly, -System, and Archive, respectively. To specify a time, use -YYYY-MM-DD-HH:mm:ss or YYYY/MM/DD-HH:mm:ss as the format. If you omit the HH:mm:ss portion, it -is assumed to be 00:00:00 (midnight). The value for a size criterion is -expressed in integer quantities of bytes, kilobytes (use k or kb after -the number), megabytes (m or mb), or gigabytes (g or gb). The value for -a name is a pattern to match against the filename, potentially including -wildcards. The pattern follows CMD.exe glob rules: * implies one or -more of any character (not including dot), while ? implies one character -(not including dot). If the name pattern contains any slashes, it is -matched to the entire filename, including the path; otherwise, it is -matched against only the filename without the path. This means a -pattern of "*\*.*" matches all files one directory level deep, while a -pattern of "*.*" matches all files in all directories.

- - -

To specify a name pattern that includes spaces, use single quotes -around the pattern. A pattern of "'* *.*'" will match all files that -have spaces in the filename. The full criteria string for that would be -"name = '* *.*'" .

- - - - - -

Examples of Selection Criteria

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Use this Command...to do this...
name = *.jpg
 any .jpg file -
mtime > 2009-07-14
 any file with a last modified time after midnight on 14 July - 2009. There is also ctime and atime for created time and accessed - time. -
ctime > 2009-07-14-07:53:00
 any file with a created time after 7:53am (local time) on 14 July 2009. -
size > 320mb
  -any file with a size over 320mb. You can use kb or gb, too. Or -omit the characters to specify a filesize in bytes. And you can use <, >, or = as -operations. -
attr != H
  -any file that does not have the Hidden attribute set. Other attributes -include S=system, R=Readonly, A=Archive. Of course you can test that -the attribute is ON as well, using = instead of !=. -
attr != H and size > 320mb
  -include the files that satisfy both conditions. You can also use OR as a conjuction. Use parens to group complex expressions. - -
name = *.jpg or name = *.gif
  -include the files that satisfy one or the other condition. -
(name = *.jpg) or (name = *.gif)
  -same as above. -
(mtime >= 2009-07-01) and (mtime < 2009-07-02)
  -any file modified on July 1st. From midnight to midnight. -
(name = *.jpg) AND (mtime >= 2009/07/01) and (mtime < 2009/07/02)
  -any .jpg file modified on July 1st. -
(name = *.jpg) and (size >= 100kb) and (mtime >= 2009/07/01) and (mtime < 2009/07/02)
  -any .jpg file, 100kb or more in size, modified on July 1st. -
- - - - -

UnZip.exe

- -

This tool can be used to view, extract, or test and verify ZIP files, -from the command line or from a batch file.

- - - - -

Usage

- -
-  UnZip.exe [options] <zipfile> [<entryname>...]
-     unzips all files in the archive.
-     options:
-       -o                overwrite existing files if necessary.
-       -f                flatten directory structure when extracting.
-       -p <password>     specify password for extraction.
-       -t                test the file for consistency.
-       -q                operate quietly (no verbose messages).
-       -cp <codepage>    extract with the specified numeric codepage.  Only do this if you
-                         know the codepage, and it is neither IBM437 nor UTF-8. If the
-                         codepage you specify here is different than the codepage of
-                         the cmd.exe, then the verbose messages will look odd, but the
-                         files will be extracted properly.
-       -d <directory>    unpack to the specified directory. If none provided, it will
-                         unzip to the current directory.
-       <entryname>       unzip only the specified filename.
-
-  unzip -l <zipfile>
-     lists the entries in the zip archive.
-  unzip -i <zipfile>
-     displays full information about all the entries in the zip archive.
-  unzip -t <zipfile> [-p <password>] [-cp <codepage>]
-     tests the zip archive.
-  unzip -?
-     displays this message.
-
-
- - - - -

Command Examples

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Use this Command...to do this...
UnZip.exe -l Package.zip
  - list the entries in the zipfile, along with basic information about each entry. -
UnZip.exe Package.zip
  - extract the entries in the zipfile, into the current directory. -
UnZip.exe Package.zip -d ex1
  - extract the entries in the zipfile, into the directory 'ex1'. The directory will - be created if it does not exist. -
UnZip.exe Package.zip -f -d ex1
  - extract the entries in the zipfile, into the directory 'ex1'. The directory will - be created if it does not exist. Any directory hierarchy within the zip file - will be ignored or "flattened" upon extraction. -
UnZip.exe Package.zip -o -d ex1
  - extract the entries in the zipfile, into the directory 'ex1'. The directory will - be created if it does not exist. During extraction, any existing files in the - directory hierarchy will be overwritten if necessary. -
- - - - - + + +ZipIt.exe and UnZip.exe + + + + + + +

DotNetZip Command-Line Tools

+ +

The Tools/Utilities downloads for DotNetZip include a pair of tools - +Zipit.exe and Unzip.exe - that can be used from the command line to +manipulate zip files from within batch scripts, or CMD.exe windows. +

+ + +

ZipIt.exe

+ +

This tool can be used to create ZIP files, or update existing ZIP +files, from the command line or from a batch file.

+ +

Using the command line tools, you can do virtually everything you can +do by using the library directly from a custom application. You can +create self-extracting archives or archives that use ZIP64 extensions. +You can create archives that use encryption or passwords. You can +create split or spanned archives. And there are many other options.

+ + + + +

Usage

+
+
+ZipIt.exe <ZipFileToCreate> [arguments]
+
+arguments:
+  <directory> | <file> - a directory or file to add to the archive.
+  <selector>           - a file selection expression.  Examples:
+                           *.txt
+                           (name = *.txt) OR (name = *.xml)
+                           (attrs = H) OR (name != *.xml)
+                           (ctime < 2009/02/28-10:20:00)
+                           (size > 1g) AND (mtime < 2009-06-29)
+                           (ctime > 2009-04-29) AND (size < 10kb)
+                         Filenames can include full paths. You must surround a filename
+                         that includes spaces with single quotes.
+  -64                  - use ZIP64 extensions, for large files or large numbers of files.
+  -aes                 - use WinZip-compatible AES 256-bit encryption for entries
+                         subsequently added to the archive. Requires a password.
+  -cp <codepage>       - use the specified numeric codepage for entries with comments
+                         or filenames that cannot be encoded with the default IBM437
+                         code page.
+  -d <path>            - use the given directory path in the archive for
+                         succeeding items added to the archive.
+  -D <path>            - find files in the given directory on disk.
+  -e<s,r,q,a>          - when there is an error reading a file to be zipped, either skip
+                         the file, retry, quit, or ask the user what to do.
+  -j-                  - do not traverse NTFS junctions
+  -j+                  - traverse NTFS junctions (default)
+  -L <level>           - compression level, 0..9 (Default is 6).
+  -p <password>        - apply the specified password for all succeeding files added.
+                         use "" to reset the password to nil.
+  -progress            - emit progress reports (good when creating large zips)
+  -r-                  - don't recurse directories (default).
+  -r+                  - recurse directories.
+  -s <entry> 'string'  - insert an entry of the given name into the
+                         archive, with the given string as its content.
+  -sfx [w|c]           - create a self-extracting archive, either a Windows or console app.
+  -split <maxsize>     - produce a split zip, with the specified maximum size.  You can
+                         optionally use kb or mb as a suffix to the size.
+                         -split is not compatible with -sfx.
+                         This is not compatible with -sfx.
+  -Tw+                 - store Windows-format extended times (default).
+  -Tw-                 - don't store Windows-format extended times.
+  -Tu+                 - store Unix-format extended times (default).
+  -Tu-                 - don't store Unix-format extended times (default).
+  -UTnow               - use uniform date/time, NOW, for all entries.
+  -UTnewest            - use uniform date/time, newest entry, for all entries.
+  -UToldest            - use uniform date/time, oldest entry, for all entries.
+  -UT <datetime>       - use uniform date/time, specified, for all entries.
+  -utf8                - use UTF-8 encoding for entries with comments or
+                         filenames that cannot be encoded with the default IBM437
+                         code page.
+  -zc <comment>        - use the given comment for the archive.
+
+
+ + + + +

Command Examples

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Use this Command...to do this...
zipit.exe NewZip.zip -64 *.doc
  + create a new zip file called NewZip.zip, adding all .doc files from + the current directory + into the zip. Use ZIP64 extensions. +
zipit.exe NewZip.zip -r+ *.doc
  + create a new zip file called NewZip.zip, adding all .doc files, in the + current directory and any child directories, + into the zip. +
zipit.exe Backup.zip -d c:\MyDocuments -r+ -j- *.*
  + create a new zip file called Backup.zip, adding all files within the c:\MyDocuments + directory. Do not traverse NTFS Junction points (like My Videos). +
zipit.exe Package.exe -sfx -d c:\files -r+ *.*
  + create a new self-extracting archive file called Package.exe, adding + all files within the c:\files directory hierarchy. +
zipit.exe Package.zip -split 1mb -d c:\files -r+ *.*
  + create a new "spanned" or multi-segment zip file called Package.zip, adding + all files within the c:\files directory hierarchy. Each segment of the zipfile should be + limited to 1mb in size, and the segments will be named Package.z01, Package.z02, etc. +
zipit.exe ImageLibrary.zip -split 1mb -d c:\images -r+ "name = *.jpg AND size > 100kb"
  + create a new "spanned" or multi-segment zip file called ImageLibrary.zip, adding + all .jpg files within the c:\images directory hierarchy that have a size larger than 100kb. Each segment of the zipfile should be + limited to 1mb in size, and the segments will be named Package.z01, Package.z02, etc. +
zipit.exe Portfolio.zip -p Secret! -aes -d c:\portfolio -r+ "name != *.tfs"
  + create a new aip file called Portfolio.zip, adding + all files within the c:\portfolio directory hierarchy that do not have the .tfs extension. + Encrypt all entries using AES 256-bit encryption. +
zipit.exe Portfolio.zip -p Secret! -aes -L 9 -d c:\portfolio -r+ "name != *.tfs"
  + create a new aip file called Portfolio.zip, adding + all files within the c:\portfolio directory hierarchy that do not have the .tfs extension. + Encrypt all entries using AES 256-bit encryption, and use level 9 (Best) compression. +
+ + + + +

Syntax for the Selection Criteria

+ +

Using the a selector string, you can specify a set of criteria for +the files to be added to the zip file. Specify the criteria in +statements of 3 elements: a noun, an operator, and a value. Consider +the string "name != *.doc" . The noun is "name". The operator is "!=", +implying "Not Equal". The value is "*.doc". That criterion, in +English, says "all files with a name that does not end in the .doc +extension."

+ +

Supported nouns include name for the filename; atime, +mtime, and ctime for last access time, last modfied time, +and created time of the file, respectively; attributes for the +file attributes; and size for the file length (uncompressed). +The attributes and name nouns both support = and != as +operators. The size, atime, mtime, and +ctime nouns support = and !=, and >, >=, <, <= as +well. The times are taken to be expressed in local time.

+ +

Specify values for the file attributes as a string with one or more +of the characters H,R,S,A in any order, implying Hidden, ReadOnly, +System, and Archive, respectively. To specify a time, use +YYYY-MM-DD-HH:mm:ss or YYYY/MM/DD-HH:mm:ss as the format. If you omit the HH:mm:ss portion, it +is assumed to be 00:00:00 (midnight). The value for a size criterion is +expressed in integer quantities of bytes, kilobytes (use k or kb after +the number), megabytes (m or mb), or gigabytes (g or gb). The value for +a name is a pattern to match against the filename, potentially including +wildcards. The pattern follows CMD.exe glob rules: * implies one or +more of any character (not including dot), while ? implies one character +(not including dot). If the name pattern contains any slashes, it is +matched to the entire filename, including the path; otherwise, it is +matched against only the filename without the path. This means a +pattern of "*\*.*" matches all files one directory level deep, while a +pattern of "*.*" matches all files in all directories.

+ + +

To specify a name pattern that includes spaces, use single quotes +around the pattern. A pattern of "'* *.*'" will match all files that +have spaces in the filename. The full criteria string for that would be +"name = '* *.*'" .

+ + + + + +

Examples of Selection Criteria

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Use this Command...to do this...
name = *.jpg
 any .jpg file +
mtime > 2009-07-14
 any file with a last modified time after midnight on 14 July + 2009. There is also ctime and atime for created time and accessed + time. +
ctime > 2009-07-14-07:53:00
 any file with a created time after 7:53am (local time) on 14 July 2009. +
size > 320mb
  +any file with a size over 320mb. You can use kb or gb, too. Or +omit the characters to specify a filesize in bytes. And you can use <, >, or = as +operations. +
attr != H
  +any file that does not have the Hidden attribute set. Other attributes +include S=system, R=Readonly, A=Archive. Of course you can test that +the attribute is ON as well, using = instead of !=. +
attr != H and size > 320mb
  +include the files that satisfy both conditions. You can also use OR as a conjuction. Use parens to group complex expressions. + +
name = *.jpg or name = *.gif
  +include the files that satisfy one or the other condition. +
(name = *.jpg) or (name = *.gif)
  +same as above. +
(mtime >= 2009-07-01) and (mtime < 2009-07-02)
  +any file modified on July 1st. From midnight to midnight. +
(name = *.jpg) AND (mtime >= 2009/07/01) and (mtime < 2009/07/02)
  +any .jpg file modified on July 1st. +
(name = *.jpg) and (size >= 100kb) and (mtime >= 2009/07/01) and (mtime < 2009/07/02)
  +any .jpg file, 100kb or more in size, modified on July 1st. +
+ + + + +

UnZip.exe

+ +

This tool can be used to view, extract, or test and verify ZIP files, +from the command line or from a batch file.

+ + + + +

Usage

+ +
+  UnZip.exe [options] <zipfile> [<entryname>...]
+     unzips all files in the archive.
+     options:
+       -o                overwrite existing files if necessary.
+       -f                flatten directory structure when extracting.
+       -p <password>     specify password for extraction.
+       -t                test the file for consistency.
+       -q                operate quietly (no verbose messages).
+       -cp <codepage>    extract with the specified numeric codepage.  Only do this if you
+                         know the codepage, and it is neither IBM437 nor UTF-8. If the
+                         codepage you specify here is different than the codepage of
+                         the cmd.exe, then the verbose messages will look odd, but the
+                         files will be extracted properly.
+       -d <directory>    unpack to the specified directory. If none provided, it will
+                         unzip to the current directory.
+       <entryname>       unzip only the specified filename.
+
+  unzip -l <zipfile>
+     lists the entries in the zip archive.
+  unzip -i <zipfile>
+     displays full information about all the entries in the zip archive.
+  unzip -t <zipfile> [-p <password>] [-cp <codepage>]
+     tests the zip archive.
+  unzip -?
+     displays this message.
+
+
+ + + + +

Command Examples

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Use this Command...to do this...
UnZip.exe -l Package.zip
  + list the entries in the zipfile, along with basic information about each entry. +
UnZip.exe Package.zip
  + extract the entries in the zipfile, into the current directory. +
UnZip.exe Package.zip -d ex1
  + extract the entries in the zipfile, into the directory 'ex1'. The directory will + be created if it does not exist. +
UnZip.exe Package.zip -f -d ex1
  + extract the entries in the zipfile, into the directory 'ex1'. The directory will + be created if it does not exist. Any directory hierarchy within the zip file + will be ignored or "flattened" upon extraction. +
UnZip.exe Package.zip -o -d ex1
  + extract the entries in the zipfile, into the directory 'ex1'. The directory will + be created if it does not exist. During extraction, any existing files in the + directory hierarchy will be overwritten if necessary. +
+ + + + + diff --git a/src/Help/Tools and Utilities/GUI.htm b/old/src/Help/Zip Tools/GUI.htm similarity index 96% rename from src/Help/Tools and Utilities/GUI.htm rename to old/src/Help/Zip Tools/GUI.htm index d4ce281..93b205c 100644 --- a/src/Help/Tools and Utilities/GUI.htm +++ b/old/src/Help/Zip Tools/GUI.htm @@ -1,339 +1,339 @@ - - -The Graphical Tool - - - - - - - - -

The DotNetZip Graphical Tool

- -

The Tools/Utilities downloads for DotNetZip include a graphical tool -for creating and extracting zip files.

- -

If you use the MSI installer, you will have the chance to associate -.zip files to this tool. If you associate .zip files to this tool, -double-clicking on a zip file from within Windows Explorer will open the -zip file in the tool. If you don't associate .zip files to this tool, -you can open the tool using the Start menu.

- - - - -

The tool uses a tabbed-pane interface. One tab is used for reading -or extracting zip files, another is used for creating zip files. -

- - - - -

Creating a Zip Archive

- -

Create a zip file in two steps: first, select which files to add into -the zip, then add creating the zip with those files.

- - - - -

An overview of the UI elements:

-
    - -
  1. the directory to add. Specify where in the filesystem to find the -files to be added into the zip file.
  2. - -
  3. check this box to traverse Windows NTFS Junctions; leave it unchecked to not traverse junctions
  4. - -
  5. the directory to be used within the zip archive for the files that get added. -
  6. - -
  7. The selection criteria for the files to be added to the zip.
  8. - -
  9. Click this button to add the files that match the selection criteria, to the listbox below (label #18) -To select additional files, you can then repeat steps 1-5 as many times as is necessary. -
    -
    -When you've selected the files you want to include in the archive, -
  10. - -
  11. Specify the name of the zip file to create.
  12. - -
  13. Specify whether to save a regular zip file, or a self-extracting archive.
  14. - -
  15. Specify the compression level to use. Higher compression levels requires more compression time.
  16. - -
  17. The text encoding to use for the filenames.
  18. - -
  19. Whether to use ZIP64 extensions
  20. - -
  21. whether to encrypt the file data, and if so, whether to use AES encryption.
  22. - -
  23. the password to use. The adjacent checkbox allows you to show or -obscure the password characters. This box is enabled only if encryption is in use.
  24. - -
  25. Use these checkboxes to specify whether to include extended timestamps in the generated zip file, in Windows or Unix formats.
  26. - -
  27. Whether to create a split archive, and if so, the size of the segment.
  28. - -
  29. The comment attached to the zip file
  30. - -
  31. The default extraction directory. This feature is enabled only for self-extracting archives.
  32. - -
  33. The command to run after extraction. This feature is enabled only for self-extracting archives.
  34. - -
  35. The list of files to be added to the zip archive. Each file has a checkbox associated to it.
  36. - -
  37. Click this button to remove any checked files from the list.
  38. - -
  39. Finally, click this button to actually create the zip archive.
  40. - -
- - -

Extracting files from a Zip Archive

- -

Extract files from a zip archive by opening the DotNetZip-WinformsTool.exe, and selecting the Read/Extract tab in the UI. -

- - - - - - - - -

An overview of the UI elements:

-
    - -
  1. the zip file to read or extract. -
  2. - -
  3. click here to open and read the specified zip file. The list of -entries in the zip will be displayed in the listbox below (label #7). -
  4. - -
  5. The directory to extract entries into
  6. - -
  7. The selection criteria for entries to extract.
  8. - -
  9. Check this to overwrite existing files during extraction.
  10. - -
  11. Check this box to open Windows Explorer after extraction.
  12. - -
  13. The list of entries in the zip file.
  14. - -
  15. Click this button to extract the specified entries in the zip file. -
  16. -
- - - - - -

Syntax for the Selection Criteria

- -

Using the a selector string, you can specify a set of criteria for -the files to be added to the zip file. Specify the criteria in -statements of 3 elements: a noun, an operator, and a value. Consider -the string "name != *.doc" . The noun is "name". The operator is "!=", -implying "Not Equal". The value is "*.doc". That criterion, in -English, says "all files with a name that does not end in the .doc -extension."

- -

Supported nouns include name for the filename; atime, -mtime, and ctime for last access time, last modfied time, -and created time of the file, respectively; attributes for the -file attributes; and size for the file length (uncompressed). -The attributes and name nouns both support = and != as -operators. The size, atime, mtime, and -ctime nouns support = and !=, and >, >=, <, <= as -well. The times are taken to be expressed in local time.

- -

Specify values for the file attributes as a string with one or more -of the characters H,R,S,A in any order, implying Hidden, ReadOnly, -System, and Archive, respectively. To specify a time, use -YYYY-MM-DD-HH:mm:ss as the format. If you omit the HH:mm:ss portion, it -is assumed to be 00:00:00 (midnight). The value for a size criterion is -expressed in integer quantities of bytes, kilobytes (use k or kb after -the number), megabytes (m or mb), or gigabytes (g or gb). The value for -a name is a pattern to match against the filename, potentially including -wildcards. The pattern follows CMD.exe glob rules: * implies one or -more of any character (not including dot), while ? implies one character -(not including dot). If the name pattern contains any slashes, it is -matched to the entire filename, including the path; otherwise, it is -matched against only the filename without the path. This means a -pattern of "*\*.*" matches all files one directory level deep, while a -pattern of "*.*" matches all files in all directories.

- - -

To specify a name pattern that includes spaces, use single quotes -around the pattern. A pattern of "'* *.*'" will match all files that -have spaces in the filename. The full criteria string for that would be -"name = '* *.*'" .

- - - - - -

Examples of Selection Criteria

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Use this Command...to do this...
name = *.jpg
 any .jpg file -
mtime > 07/01/2009
 any file with a last modified time after midnight on 1 July - 2009. There is also ctime and atime for created time and accessed - time. -
ctime > 07/01/2009-07:53:00
 any file with a created time after 7:53am on 1 July 2009. -
size > 320mb
  -any file with a size over 320mb. You can use kb or gb, too. Or -omit the characters for a size in bytes. And you can use <, >, or = as -operations. -
attr != H
  -any file that does not have the Hidden attribute set. Other attributes -include S=system, R=Readonly, A=Archive. Of course you can test that -the attribute is ON as well, using = instead of !=. -
attr != H and size > 320mb
  -include the files that satisfy both conditions. You can also use OR as a conjuction. Use parens to group complex expressions. - -
name = *.jpg or name = *.gif
  -include the files that satisfy one or the other condition. -
(name = *.jpg) or (name = *.gif)
  -same as above. -
(mtime >= 07/01/2009) and (mtime < 07/02/2009)
  -any file modified on July 1st. From midnight to midnight. -
(name = *.jpg) AND (mtime >= 07/01/2009) and (mtime < 07/02/2009)
  -any .jpg file modified on July 1st. -
(name = *.jpg) and (size >= 100kb) and (mtime >= 07/01/2009) and (mtime < 07/02/2009)
  -any .jpg file, 100kb or more in size, modified on July 1st. -
- - - - - - + + +The Graphical Tool + + + + + + + + +

The DotNetZip Graphical Tool

+ +

The Tools/Utilities downloads for DotNetZip include a graphical tool +for creating and extracting zip files.

+ +

If you use the MSI installer, you will have the chance to associate +.zip files to this tool. If you associate .zip files to this tool, +double-clicking on a zip file from within Windows Explorer will open the +zip file in the tool. If you don't associate .zip files to this tool, +you can open the tool using the Start menu.

+ + + + +

The tool uses a tabbed-pane interface. One tab is used for reading +or extracting zip files, another is used for creating zip files. +

+ + + + +

Creating a Zip Archive

+ +

Create a zip file in two steps: first, select which files to add into +the zip, then add creating the zip with those files.

+ + + + +

An overview of the UI elements:

+
    + +
  1. the directory to add. Specify where in the filesystem to find the +files to be added into the zip file.
  2. + +
  3. check this box to traverse Windows NTFS Junctions; leave it unchecked to not traverse junctions
  4. + +
  5. the directory to be used within the zip archive for the files that get added. +
  6. + +
  7. The selection criteria for the files to be added to the zip.
  8. + +
  9. Click this button to add the files that match the selection criteria, to the listbox below (label #18) +To select additional files, you can then repeat steps 1-5 as many times as is necessary. +
    +
    +When you've selected the files you want to include in the archive, +
  10. + +
  11. Specify the name of the zip file to create.
  12. + +
  13. Specify whether to save a regular zip file, or a self-extracting archive.
  14. + +
  15. Specify the compression level to use. Higher compression levels requires more compression time.
  16. + +
  17. The text encoding to use for the filenames.
  18. + +
  19. Whether to use ZIP64 extensions
  20. + +
  21. whether to encrypt the file data, and if so, whether to use AES encryption.
  22. + +
  23. the password to use. The adjacent checkbox allows you to show or +obscure the password characters. This box is enabled only if encryption is in use.
  24. + +
  25. Use these checkboxes to specify whether to include extended timestamps in the generated zip file, in Windows or Unix formats.
  26. + +
  27. Whether to create a split archive, and if so, the size of the segment.
  28. + +
  29. The comment attached to the zip file
  30. + +
  31. The default extraction directory. This feature is enabled only for self-extracting archives.
  32. + +
  33. The command to run after extraction. This feature is enabled only for self-extracting archives.
  34. + +
  35. The list of files to be added to the zip archive. Each file has a checkbox associated to it.
  36. + +
  37. Click this button to remove any checked files from the list.
  38. + +
  39. Finally, click this button to actually create the zip archive.
  40. + +
+ + +

Extracting files from a Zip Archive

+ +

Extract files from a zip archive by opening the DotNetZip-WinformsTool.exe, and selecting the Read/Extract tab in the UI. +

+ + + + + + + + +

An overview of the UI elements:

+
    + +
  1. the zip file to read or extract. +
  2. + +
  3. click here to open and read the specified zip file. The list of +entries in the zip will be displayed in the listbox below (label #7). +
  4. + +
  5. The directory to extract entries into
  6. + +
  7. The selection criteria for entries to extract.
  8. + +
  9. Check this to overwrite existing files during extraction.
  10. + +
  11. Check this box to open Windows Explorer after extraction.
  12. + +
  13. The list of entries in the zip file.
  14. + +
  15. Click this button to extract the specified entries in the zip file. +
  16. +
+ + + + + +

Syntax for the Selection Criteria

+ +

Using the a selector string, you can specify a set of criteria for +the files to be added to the zip file. Specify the criteria in +statements of 3 elements: a noun, an operator, and a value. Consider +the string "name != *.doc" . The noun is "name". The operator is "!=", +implying "Not Equal". The value is "*.doc". That criterion, in +English, says "all files with a name that does not end in the .doc +extension."

+ +

Supported nouns include name for the filename; atime, +mtime, and ctime for last access time, last modfied time, +and created time of the file, respectively; attributes for the +file attributes; and size for the file length (uncompressed). +The attributes and name nouns both support = and != as +operators. The size, atime, mtime, and +ctime nouns support = and !=, and >, >=, <, <= as +well. The times are taken to be expressed in local time.

+ +

Specify values for the file attributes as a string with one or more +of the characters H,R,S,A in any order, implying Hidden, ReadOnly, +System, and Archive, respectively. To specify a time, use +YYYY-MM-DD-HH:mm:ss as the format. If you omit the HH:mm:ss portion, it +is assumed to be 00:00:00 (midnight). The value for a size criterion is +expressed in integer quantities of bytes, kilobytes (use k or kb after +the number), megabytes (m or mb), or gigabytes (g or gb). The value for +a name is a pattern to match against the filename, potentially including +wildcards. The pattern follows CMD.exe glob rules: * implies one or +more of any character (not including dot), while ? implies one character +(not including dot). If the name pattern contains any slashes, it is +matched to the entire filename, including the path; otherwise, it is +matched against only the filename without the path. This means a +pattern of "*\*.*" matches all files one directory level deep, while a +pattern of "*.*" matches all files in all directories.

+ + +

To specify a name pattern that includes spaces, use single quotes +around the pattern. A pattern of "'* *.*'" will match all files that +have spaces in the filename. The full criteria string for that would be +"name = '* *.*'" .

+ + + + + +

Examples of Selection Criteria

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Use this Command...to do this...
name = *.jpg
 any .jpg file +
mtime > 07/01/2009
 any file with a last modified time after midnight on 1 July + 2009. There is also ctime and atime for created time and accessed + time. +
ctime > 07/01/2009-07:53:00
 any file with a created time after 7:53am on 1 July 2009. +
size > 320mb
  +any file with a size over 320mb. You can use kb or gb, too. Or +omit the characters for a size in bytes. And you can use <, >, or = as +operations. +
attr != H
  +any file that does not have the Hidden attribute set. Other attributes +include S=system, R=Readonly, A=Archive. Of course you can test that +the attribute is ON as well, using = instead of !=. +
attr != H and size > 320mb
  +include the files that satisfy both conditions. You can also use OR as a conjuction. Use parens to group complex expressions. + +
name = *.jpg or name = *.gif
  +include the files that satisfy one or the other condition. +
(name = *.jpg) or (name = *.gif)
  +same as above. +
(mtime >= 07/01/2009) and (mtime < 07/02/2009)
  +any file modified on July 1st. From midnight to midnight. +
(name = *.jpg) AND (mtime >= 07/01/2009) and (mtime < 07/02/2009)
  +any .jpg file modified on July 1st. +
(name = *.jpg) and (size >= 100kb) and (mtime >= 07/01/2009) and (mtime < 07/02/2009)
  +any .jpg file, 100kb or more in size, modified on July 1st. +
+ + + + + + diff --git a/src/Help/Zip Tools/Zip Tools.htm b/old/src/Help/Zip Tools/Zip Tools.htm similarity index 95% rename from src/Help/Zip Tools/Zip Tools.htm rename to old/src/Help/Zip Tools/Zip Tools.htm index c546b14..3dea2a1 100644 --- a/src/Help/Zip Tools/Zip Tools.htm +++ b/old/src/Help/Zip Tools/Zip Tools.htm @@ -1,3 +1,3 @@ - - -Zip Tools + + +Zip Tools diff --git a/src/Help/Zip Tools/ZipTool1.png b/old/src/Help/Zip Tools/ZipTool1.png similarity index 100% rename from src/Help/Zip Tools/ZipTool1.png rename to old/src/Help/Zip Tools/ZipTool1.png diff --git a/src/Help/Zip Tools/ZipTool2.png b/old/src/Help/Zip Tools/ZipTool2.png similarity index 100% rename from src/Help/Zip Tools/ZipTool2.png rename to old/src/Help/Zip Tools/ZipTool2.png diff --git a/src/Help/Zip Tools/ZipTool3.png b/old/src/Help/Zip Tools/ZipTool3.png similarity index 100% rename from src/Help/Zip Tools/ZipTool3.png rename to old/src/Help/Zip Tools/ZipTool3.png diff --git a/src/ListContents/ListContents.csproj b/old/src/ListContents/ListContents.csproj similarity index 100% rename from src/ListContents/ListContents.csproj rename to old/src/ListContents/ListContents.csproj diff --git a/src/ListContents/Program.cs b/old/src/ListContents/Program.cs similarity index 100% rename from src/ListContents/Program.cs rename to old/src/ListContents/Program.cs diff --git a/src/LocalTestRun.testrunconfig b/old/src/LocalTestRun.testrunconfig similarity index 98% rename from src/LocalTestRun.testrunconfig rename to old/src/LocalTestRun.testrunconfig index 11bcd22..2951f54 100644 --- a/src/LocalTestRun.testrunconfig +++ b/old/src/LocalTestRun.testrunconfig @@ -1,19 +1,19 @@ - - - This is a default test run configuration for a local test run. - - - - - - -
-
-
-
- - - - - + + + This is a default test run configuration for a local test run. + + + + + + +
+
+
+
+ + + + + \ No newline at end of file diff --git a/src/MakeReleaseZips.bat b/old/src/MakeReleaseZips.bat similarity index 97% rename from src/MakeReleaseZips.bat rename to old/src/MakeReleaseZips.bat index c298c90..17830be 100644 --- a/src/MakeReleaseZips.bat +++ b/old/src/MakeReleaseZips.bat @@ -1,460 +1,460 @@ -@echo off -goto START - -------------------------------------------------------- - MakeReleaseZips.bat - - Makes the zips, msi's, and chm for the DotNetZip release content. - - created: Thu, 19 Jun 2008 22:17 - - This batch file is part of DotNetZip. - DotNetZip is Copyright 2008-2011 Dino Chiesa. - - DotNetZip is licensed under the MS-PL. See the accompanying - License.txt file. - - Last Updated: <2011-August-06 01:37:07> - -------------------------------------------------------- - - -:START - -setlocal -set baseDir=%~dps0 -set SNEXE=c:\winsdk\bin\sn.exe -set MSBUILD=c:\.net4.0\msbuild.exe -set POWERSHELL=c:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -@REM set zipit=c:\users\dino\bin\zipit.exe -set zipit=%baseDir%tools\Zipit\bin\Debug\zipit.exe -set ExpectedSignedDlls=32 -set stamp=%DATE% %TIME% -set stamp=%stamp:/=-% -set stamp=%stamp: =-% -set stamp=%stamp::=% - - -@REM get the version: -for /f "delims==" %%I in ('type SolutionInfo.cs ^| c:\bin\grep.exe AssemblyVersion ^| c:\bin\sed.exe -e "s/^.*(.\(.*\).).*/\1 /"') do set longversion=%%I - -set version=%longversion:~0,3% -echo version is %version% - -%MSBUILD% DotNetZip.sln /p:Configuration=Debug -%MSBUILD% DotNetZip.sln /p:Configuration=Release - -call :CheckSignatures -if ERRORLEVEL 1 ( - echo exiting. - exit /b 1 -) - - set releaseDir=releases\v%version%-%stamp% - echo making release dir %releaseDir% - mkdir %releaseDir% - - call :MakeDocumentation - - ::REM call :MakeIntegratedHelpMsi - - call :MakeDevelopersRedist - - call :MakeRuntimeRedist - - call :MakeZipUtils - - call :MakeUtilsMsi - - call :MakeRuntimeMsi - - %POWERSHELL% .\clean.ps1 - - call :MakeSrcZip - - -goto :END - - - --------------------------------------------- -:CheckSignatures - - @REM check the digital signatures on the various DLLs - - SETLOCAL EnableExtensions EnableDelayedExpansion - echo. - echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ - echo. - echo Checking signatures... - echo. - - set verbose=1 - set rcode=0 - set ccount=0 - set okcount=0 - set notsigned=0 - - for /R %%D in (*.dll) do ( - @REM don't check DLLs from some directories - set thisfile=%%D - - echo !thisfile! | findstr TestResults >nul: - if ERRORLEVEL 1 ( - echo !thisfile! | findstr Examples >nul: - if ERRORLEVEL 1 ( - echo !thisfile! | findstr Tests >nul: - if ERRORLEVEL 1 ( - echo !thisfile! | findstr \obj\ >nul: - if ERRORLEVEL 1 ( - call :BACKTICK pubkey %SNEXE% -q -T "!thisfile!" - set /a ccount=!ccount!+1 - If "!pubkey:~-44!"=="does not represent a strongly named assembly" ( - set /a notsigned=!notsigned!+1 - if %verbose% GTR 0 (echo !pubkey!) - ) else ( - if %verbose% GTR 0 (echo %%D !pubkey!) - If /i "!pubkey:~-16!"=="edbe51ad942a3f5c" ( - set /a okcount=!okcount!+1 - ) else ( - set /a rcode=!rcode!+1 - ) - ) - ) - ) - ) - ) - ) - - if %verbose% GTR 0 ( - echo Checked !ccount! DLLs - echo !notsigned! were not signed - echo !okcount! were signed, with the correct key - echo !rcode! were signed, with the wrong key - ) - - if !rcode! GTR 0 ( - echo. - echo Found !rcode! assemblies signed with an unexpected key. - exit /b 1 - ) - if !okcount! NEQ %ExpectedSignedDlls% ( - echo. - echo There are !okcount! correctly signed assemblies. - echo That does not agree with the configured expected value of %ExpectedSignedDlls%. - exit /b 1 - ) - - echo. - echo. - - endlocal - -goto :EOF -------------------------------------------------------- - - - --------------------------------------------- -:MakeDocumentation - - @REM This batch subroutine invokes MSBUILD using the shfbproj files - @REM for Documentation. Example output htmlhelp1 file name: - @REM DotNetZipLib-v1.9.chm - - echo. - echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ - echo. - echo Building Documentation Files - echo. - - echo build Help\HtmlHelp1.shfbproj - %MSBUILD% /nologo /p:Configuration=Release Help\HtmlHelp1.shfbproj - - echo build Help\HelpViewer.shfbproj - %MSBUILD% /nologo /p:Configuration=Release Help\HelpViewer.shfbproj - - set zipfile=DotNetZip-Documentation-v%version%.zip - set rzipfile=%releaseDir%\%zipfile% - echo zipfile is %rzipfile% - - %zipit% %rzipfile% -s Readme.txt "This zip contains the documentation for DotNetZip in various help formats. This is for DotNetZip v%version%. This package was packed %stamp%. " -s You-can-Donate.txt "FYI: DotNetZip is donationware. Consider donating. It's for a good cause. http://cheeso.members.winisp.net/DotNetZipDonate.aspx" - - %zipit% %rzipfile% -d . -D Help\bin\HtmlHelp1 -E *.chm -d "Help Viewer 1.0" -D Help\bin\HelpViewer -r+ -E "(name != *.chm) AND (name != *.log)" - -goto :EOF --------------------------------------------- - - - - --------------------------------------------- -:MakeDevelopersRedist - - @REM example output zipfile name: DotNetZipLib-DevKit-v1.5.zip - - echo. - echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ - echo. - echo Making the Developer's redistributable zip... - echo. - - set zipfile=DotNetZipLib-DevKit-v%version%.zip - @REM for %%f in (%releaseDir%\%zipfile%) do set rzipfile=%%~ff - set rzipfile=%releaseDir%\%zipfile% - echo zipfile is %rzipfile% - - %zipit% %rzipfile% -s Contents.txt "This is the Developer's Kit package for DotNetZip v%version%. This package was packed %stamp%. In this zip you will find Debug and Release DLLs for the various versions of the assemblies: Ionic.Zip, Ionic.Zlib, and Ionic.BZip2. There is a separate top-level folder for each distinct version of the DLL, and within those top-level folders there are Debug and Release folders. In the Debug folders you will find a DLL, a PDB, and an XML file for the given library, while the Release folder will have just a DLL. The DLL is the actual library (either Debug or Release flavor), the PDB is the debug information, and the XML file is the intellisense doc for use within Visual Studio. There are also files containing the documentation. If you have any questions, please check the forums on http://www.codeplex.com/DotNetZip" -s PleaseDonate.txt "DotNetZip is donationware. Consider donating. You'll feel good about it, and it's for a good cause. http://cheeso.members.winisp.net/DotNetZipDonate.aspx" Readme.txt License.txt License.zlib.txt License.bzip2.txt - - %zipit% %rzipfile% -d zip-v%version% -s Readme.txt "DotNetZip Library Developer's Kit package, v%version% packed %stamp%. This is the DotNetZip library. It includes the classes in the Ionic.Zip namespace as well as the classes in the Ionic.Zlib namespace. Use this library if you want to manipulate ZIP files within .NET applications." - - %zipit% %rzipfile% -d zip-v%version%\Debug -D Zip\bin\Debug Ionic.Zip.dll Ionic.Zip.xml Ionic.Zip.pdb - %zipit% %rzipfile% -d zip-v%version%\Release Zip\bin\Release\Ionic.Zip.dll - - @REM -------------------------------------------- - - %zipit% %rzipfile% -d zip-v%version%-Reduced -s Readme.txt "DotNetZip Reduced Library, Developer's Kit package, v%version% packed %stamp%. This is the reduced version of the DotNetZip library. It includes the classes in the Ionic.Zip namespace as well as the classes in the Ionic.Zlib namespace. The reduced library differs from the full library in that it lacks the ability to save self-Extracting archives (aka SFX files), and is much smaller than the full library." - - %zipit% %rzipfile% -d zip-v%version%-Reduced\Debug -D "Zip Reduced\bin\Debug" Ionic.Zip.Reduced.dll Ionic.Zip.Reduced.pdb Ionic.Zip.Reduced.XML - %zipit% %rzipfile% -d zip-v%version%-Reduced\Release -D "Zip Reduced\bin\Release" Ionic.Zip.Reduced.dll - - @REM -------------------------------------------- - - %zipit% %rzipfile% -d zlib-v%version% -s Readme.txt "Ionic.Zlib v%version% packed %stamp%. This is the Ionic.Zlib assembly; it includes only the classes in the Ionic.Zlib namespace. Use this library if you want to take advantage of ZLIB compression directly, or if you want to use the compressing stream classes like GZipStream, DeflateStream, or ZlibStream." - %zipit% %rzipfile% -d zlib-v%version%\Debug -D Zlib\bin\Debug Ionic.Zlib.dll Ionic.Zlib.pdb Ionic.Zlib.XML - %zipit% %rzipfile% -d zlib-v%version%\Release -D Zlib\bin\Release Ionic.Zlib.dll - - @REM -------------------------------------------- - - %zipit% %rzipfile% -d bzip2-v%version% -s Readme.txt "Ionic.BZip2 v%version% packed %stamp%. This is the Ionic.BZip2 assembly; it includes only the classes in the Ionic.BZip2 namespace. Use this library if you want to take advantage of BZip2 compression directly, via the compressing stream classes like BZip2OutputStream, or BZip2InputStream." - %zipit% %rzipfile% -d bzip2-v%version%\Debug -D "BZip2\bin\Debug" Ionic.BZip2.dll Ionic.BZip2.pdb Ionic.BZip2.XML - %zipit% %rzipfile% -d bzip2-v%version%\Release -D "BZip2\bin\Release" Ionic.BZip2.dll - - @REM -------------------------------------------- - - %zipit% %rzipfile% -d Tools ^ - -s Readme.txt "These are tools that may be useful as you develop applications that manipulate zip files." ^ - -D Tools\ZipIt\bin\Release Zipit.exe Ionic.Zip.dll ^ - -D Tools\Unzip\bin\Release Unzip.exe ^ - -D Tools\ConvertZipToSfx\bin\Release ConvertZipToSfx.exe ^ - -D Tools\WinFormsApp\bin\Release DotNetZip-WinFormsTool.exe ^ - -D Tools\BZip2\bin\Release BZip2.exe Ionic.BZip2.dll ^ - -D Tools\GZip\bin\Release GZip.exe Ionic.Zlib.dll - - @REM -------------------------------------------- - - %zipit% %rzipfile% -d VS2008-IntegratedHelp -s Readme.txt "This MSI installs the DotNetZip help content into the VisualStudio Integrated help system. After installing this MSI, pressing F1 within Visual Studio, with your cursor on a type defined within the DotNetZip assembly, will open the appropriate help within Visual Studio." -D Help-VS-Integrated\HelpIntegration\Debug DotNetZip-HelpIntegration.msi - - %zipit% %rzipfile% -d Examples\WScript -D "Zip Tests\resources" VbsCreateZip-DotNetZip.vbs VbsUnZip-DotNetZip.vbs TestCheckZip.js - - %zipit% %rzipfile% -d Examples -D Examples -r+ -E "name != *.cache and name != *.*~ and name != *.suo and name != *.user and name != #*.*# and name != *.vspscc and name != Examples\*\*\bin\*.* and name != Examples\*\*\obj\*.* and name != Examples\*\bin\*.* and name != Examples\*\obj\*.*" - - %zipit% %rzipfile% -D %releaseDir% -E "name = DotNetZip-Documentation-*.zip" - - cd %baseDir% - -goto :EOF --------------------------------------------- - - - --------------------------------------------- -:MakeRuntimeRedist - - @REM example output zipfile name: DotNetZipLib-Runtime-v1.5.zip - - echo. - echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ - echo. - echo Making the user's redistributable zip... - echo. - - set zipfile=DotNetZipLib-Runtime-v%version%.zip - set rzipfile=%releaseDir%\%zipfile% - - echo zipfile is %rzipfile% - - %zipit% %rzipfile% -s Contents.txt "This is the redistributable package for DotNetZip v%version%. Packed %stamp%. In this zip you will find a separate folder for each separate version of the DLL. In each folder there is a RELEASE build DLL, suitable for redistribution with your app. If you have any questions, please check the forums on http://www.codeplex.com/DotNetZip " -s DotNetZip-is-DonationWare.txt "DotNetZip is donationware. Consider donating. It's for a good cause. http://cheeso.members.winisp.net/DotNetZipDonate.aspx" Readme.txt License.txt License.zlib.txt License.bzip2.txt - - %zipit% %rzipfile% -d zip-v%version% -s Readme.txt "DotNetZip Redistributable Library v%version% packed %stamp%" Zip\bin\Release\Ionic.Zip.dll - - %zipit% %rzipfile% -d zip-v%version%-Reduced -s Readme.txt "DotNetZip Reduced Redistributable Library v%version% packed %stamp%" "Zip Reduced\bin\Release\Ionic.Zip.Reduced.dll" - - %zipit% %rzipfile% -d zlib-v%version% -s Readme.txt "Ionic.Zlib Redistributable Library v%version% packed %stamp%" Zlib\bin\Release\Ionic.Zlib.dll - - %zipit% %rzipfile% -d bzip2-v%version% -s Readme.txt "Ionic.BZip2 Redistributable Library v%version% packed %stamp%" BZip2\bin\Release\Ionic.BZip2.dll - -goto :EOF --------------------------------------------- - - - --------------------------------------------- -:MakeZipUtils - - echo. - echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ - echo. - echo Making the Zip Utils zip... - echo. - - set zipfile=DotNetZipUtils-v%version%.zip - - @REM for %%f in (%releaseDir%\%zipfile%) do set rzipfile=%%~ff - - set rzipfile=%releaseDir%\%zipfile% - echo zipfile is %rzipfile% - - %zipit% %rzipfile% -zc "Zip utilities v%version% packed %stamp%" -s Contents.txt "These are the DotNetZip utilities and tools, for DotNetZip v%version%. Packed %stamp%." -s I-Welcome-Donations.txt "DotNetZip is donationware. I welcome donations. It's for a good cause. http://cheeso.members.winisp.net/DotNetZipDonate.aspx" License.txt License.zlib.txt License.bzip2.txt - - %zipit% %rzipfile% ^ - -D Tools\ZipIt\bin\Release Zipit.exe Ionic.Zip.dll ^ - -D Tools\Unzip\bin\Release Unzip.exe ^ - -D Tools\ConvertZipToSfx\bin\Release ConvertZipToSfx.exe ^ - -D Tools\WinFormsApp\bin\Release DotNetZip-WinFormsTool.exe ^ - -D Tools\BZip2\bin\Release BZip2.exe Ionic.BZip2.dll ^ - -D Tools\GZip\bin\Release GZip.exe Ionic.Zlib.dll - -goto :EOF --------------------------------------------- - - - --------------------------------------------- -:MakeIntegratedHelpMsi - - @REM example output zipfile name: DotNetZip-HelpIntegration.msi - - echo. - echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ - echo. - echo Making the Integrated help MSI... - echo. - - c:\vs2008\Common7\ide\devenv.exe Help-VS-Integrated\HelpIntegration.sln /build Debug /project HelpIntegration - echo waiting for Help-VS-Integrated\HelpIntegration\Debug\DotNetZip-HelpIntegration.msi - c:\dinoch\dev\dotnet\AwaitFile Help-VS-Integrated\HelpIntegration\Debug\DotNetZip-HelpIntegration.msi - @REM move Help-VS-Integrated\HelpIntegration\Debug\DotNetZip-HelpIntegration.msi %releaseDir%\DotNetZip-HelpIntegration.msi - -goto :EOF --------------------------------------------- - - - - --------------------------------------------- -:MakeUtilsMsi - - @REM example output zipfile name: DotNetZipUtils-v1.8.msi - - echo. - echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ - echo. - echo Making the Utils MSI... - echo. - - cd "Setup Utils" - %MSBUILD% /p:Configuration=Release - cd .. - move "Setup Utils\bin\Release\en-us\DotNetZipUtils.msi" %releaseDir%\DotNetZipUtils-v%version%.msi - -goto :EOF --------------------------------------------- - - - - --------------------------------------------- -:MakeRuntimeMsi - - @REM example output zipfile name: DotNetZip-Runtime-v1.8.msi - - echo. - echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ - echo. - echo Making the Runtime MSI... - echo. - - cd "Setup Runtime" - %MSBUILD% /p:Configuration=Release - cd .. - move "Setup Runtime\bin\Release\en-us\DotNetZip-Runtime.msi" %releaseDir%\DotNetZip-Runtime-v%version%.msi - -goto :EOF --------------------------------------------- - - - - --------------------------------------------- -:MakeSrcZip - - echo. - echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ - echo. - echo Making the Source Zip... - echo. - - @REM set zipfile=DotNetZip-src-v%version%.zip - - cd.. - @REM Delete any existing src zips - for %%f in (DotNetZip-src-v*.zip) do del %%f - - %POWERSHELL% DotNetZip\ZipSrc.ps1 - - @REM edit in place to remove Ionic.pfx and Ionic.snk from the csproj files - - @REM glob the filename: - for %%f in (DotNetZip-src-v*.zip) do set actualFilename=%%f - - DotNetZip\EditCsproj.exe -z %actualFileName% - - cd %baseDir% - move ..\%actualFileName% %releaseDir% - -goto :EOF --------------------------------------------- - - --------------------------------------------- -:BACKTICK - call :GET_CMDLINE %* - set varspec=%1 - setlocal EnableDelayedExpansion - for /f "usebackq delims==" %%I in (`%CMDLINE%`) do set output=%%I - endlocal & set %varspec%=%output% - goto :EOF --------------------------------------------- - - --------------------------------------------- -:GET_CMDLINE - @REM given a set of params [0..n], sets CMDLINE to - @REM the join of params[1..n] - setlocal enableextensions EnableDelayedExpansion - set PRIOR= - set PARAMS= - shift - :GET_PARAMs_LOOP - if [%1]==[] goto GET_PARAMS_DONE - set PARAMS=%PARAMS% %1 - shift - goto GET_PARAMS_LOOP - :GET_PARAMS_DONE - REM strip the first space - set PARAMS=%PARAMS:~1% - endlocal & set CMDLINE=%PARAMS% - goto :EOF --------------------------------------------- - - - -:END -@if exist c:\users\dino\dev\dotnet\pronounceword.exe (c:\users\dino\dev\dotnet\pronounceword.exe All Done > nul:) -echo. -echo release zips are in %releaseDir% -echo. - -endlocal - +@echo off +goto START + +------------------------------------------------------- + MakeReleaseZips.bat + + Makes the zips, msi's, and chm for the DotNetZip release content. + + created: Thu, 19 Jun 2008 22:17 + + This batch file is part of DotNetZip. + DotNetZip is Copyright 2008-2011 Dino Chiesa. + + DotNetZip is licensed under the MS-PL. See the accompanying + License.txt file. + + Last Updated: <2011-August-06 01:37:07> + +------------------------------------------------------- + + +:START + +setlocal +set baseDir=%~dps0 +set SNEXE=c:\winsdk\bin\sn.exe +set MSBUILD=c:\.net4.0\msbuild.exe +set POWERSHELL=c:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe +@REM set zipit=c:\users\dino\bin\zipit.exe +set zipit=%baseDir%tools\Zipit\bin\Debug\zipit.exe +set ExpectedSignedDlls=32 +set stamp=%DATE% %TIME% +set stamp=%stamp:/=-% +set stamp=%stamp: =-% +set stamp=%stamp::=% + + +@REM get the version: +for /f "delims==" %%I in ('type SolutionInfo.cs ^| c:\bin\grep.exe AssemblyVersion ^| c:\bin\sed.exe -e "s/^.*(.\(.*\).).*/\1 /"') do set longversion=%%I + +set version=%longversion:~0,3% +echo version is %version% + +%MSBUILD% DotNetZip.sln /p:Configuration=Debug +%MSBUILD% DotNetZip.sln /p:Configuration=Release + +call :CheckSignatures +if ERRORLEVEL 1 ( + echo exiting. + exit /b 1 +) + + set releaseDir=releases\v%version%-%stamp% + echo making release dir %releaseDir% + mkdir %releaseDir% + + call :MakeDocumentation + + ::REM call :MakeIntegratedHelpMsi + + call :MakeDevelopersRedist + + call :MakeRuntimeRedist + + call :MakeZipUtils + + call :MakeUtilsMsi + + call :MakeRuntimeMsi + + %POWERSHELL% .\clean.ps1 + + call :MakeSrcZip + + +goto :END + + + +-------------------------------------------- +:CheckSignatures + + @REM check the digital signatures on the various DLLs + + SETLOCAL EnableExtensions EnableDelayedExpansion + echo. + echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ + echo. + echo Checking signatures... + echo. + + set verbose=1 + set rcode=0 + set ccount=0 + set okcount=0 + set notsigned=0 + + for /R %%D in (*.dll) do ( + @REM don't check DLLs from some directories + set thisfile=%%D + + echo !thisfile! | findstr TestResults >nul: + if ERRORLEVEL 1 ( + echo !thisfile! | findstr Examples >nul: + if ERRORLEVEL 1 ( + echo !thisfile! | findstr Tests >nul: + if ERRORLEVEL 1 ( + echo !thisfile! | findstr \obj\ >nul: + if ERRORLEVEL 1 ( + call :BACKTICK pubkey %SNEXE% -q -T "!thisfile!" + set /a ccount=!ccount!+1 + If "!pubkey:~-44!"=="does not represent a strongly named assembly" ( + set /a notsigned=!notsigned!+1 + if %verbose% GTR 0 (echo !pubkey!) + ) else ( + if %verbose% GTR 0 (echo %%D !pubkey!) + If /i "!pubkey:~-16!"=="edbe51ad942a3f5c" ( + set /a okcount=!okcount!+1 + ) else ( + set /a rcode=!rcode!+1 + ) + ) + ) + ) + ) + ) + ) + + if %verbose% GTR 0 ( + echo Checked !ccount! DLLs + echo !notsigned! were not signed + echo !okcount! were signed, with the correct key + echo !rcode! were signed, with the wrong key + ) + + if !rcode! GTR 0 ( + echo. + echo Found !rcode! assemblies signed with an unexpected key. + exit /b 1 + ) + if !okcount! NEQ %ExpectedSignedDlls% ( + echo. + echo There are !okcount! correctly signed assemblies. + echo That does not agree with the configured expected value of %ExpectedSignedDlls%. + exit /b 1 + ) + + echo. + echo. + + endlocal + +goto :EOF +------------------------------------------------------- + + + +-------------------------------------------- +:MakeDocumentation + + @REM This batch subroutine invokes MSBUILD using the shfbproj files + @REM for Documentation. Example output htmlhelp1 file name: + @REM DotNetZipLib-v1.9.chm + + echo. + echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ + echo. + echo Building Documentation Files + echo. + + echo build Help\HtmlHelp1.shfbproj + %MSBUILD% /nologo /p:Configuration=Release Help\HtmlHelp1.shfbproj + + echo build Help\HelpViewer.shfbproj + %MSBUILD% /nologo /p:Configuration=Release Help\HelpViewer.shfbproj + + set zipfile=DotNetZip-Documentation-v%version%.zip + set rzipfile=%releaseDir%\%zipfile% + echo zipfile is %rzipfile% + + %zipit% %rzipfile% -s Readme.txt "This zip contains the documentation for DotNetZip in various help formats. This is for DotNetZip v%version%. This package was packed %stamp%. " -s You-can-Donate.txt "FYI: DotNetZip is donationware. Consider donating. It's for a good cause. http://cheeso.members.winisp.net/DotNetZipDonate.aspx" + + %zipit% %rzipfile% -d . -D Help\bin\HtmlHelp1 -E *.chm -d "Help Viewer 1.0" -D Help\bin\HelpViewer -r+ -E "(name != *.chm) AND (name != *.log)" + +goto :EOF +-------------------------------------------- + + + + +-------------------------------------------- +:MakeDevelopersRedist + + @REM example output zipfile name: DotNetZipLib-DevKit-v1.5.zip + + echo. + echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ + echo. + echo Making the Developer's redistributable zip... + echo. + + set zipfile=DotNetZipLib-DevKit-v%version%.zip + @REM for %%f in (%releaseDir%\%zipfile%) do set rzipfile=%%~ff + set rzipfile=%releaseDir%\%zipfile% + echo zipfile is %rzipfile% + + %zipit% %rzipfile% -s Contents.txt "This is the Developer's Kit package for DotNetZip v%version%. This package was packed %stamp%. In this zip you will find Debug and Release DLLs for the various versions of the assemblies: Ionic.Zip, Ionic.Zlib, and Ionic.BZip2. There is a separate top-level folder for each distinct version of the DLL, and within those top-level folders there are Debug and Release folders. In the Debug folders you will find a DLL, a PDB, and an XML file for the given library, while the Release folder will have just a DLL. The DLL is the actual library (either Debug or Release flavor), the PDB is the debug information, and the XML file is the intellisense doc for use within Visual Studio. There are also files containing the documentation. If you have any questions, please check the forums on http://www.codeplex.com/DotNetZip" -s PleaseDonate.txt "DotNetZip is donationware. Consider donating. You'll feel good about it, and it's for a good cause. http://cheeso.members.winisp.net/DotNetZipDonate.aspx" Readme.txt License.txt License.zlib.txt License.bzip2.txt + + %zipit% %rzipfile% -d zip-v%version% -s Readme.txt "DotNetZip Library Developer's Kit package, v%version% packed %stamp%. This is the DotNetZip library. It includes the classes in the Ionic.Zip namespace as well as the classes in the Ionic.Zlib namespace. Use this library if you want to manipulate ZIP files within .NET applications." + + %zipit% %rzipfile% -d zip-v%version%\Debug -D Zip\bin\Debug Ionic.Zip.dll Ionic.Zip.xml Ionic.Zip.pdb + %zipit% %rzipfile% -d zip-v%version%\Release Zip\bin\Release\Ionic.Zip.dll + + @REM -------------------------------------------- + + %zipit% %rzipfile% -d zip-v%version%-Reduced -s Readme.txt "DotNetZip Reduced Library, Developer's Kit package, v%version% packed %stamp%. This is the reduced version of the DotNetZip library. It includes the classes in the Ionic.Zip namespace as well as the classes in the Ionic.Zlib namespace. The reduced library differs from the full library in that it lacks the ability to save self-Extracting archives (aka SFX files), and is much smaller than the full library." + + %zipit% %rzipfile% -d zip-v%version%-Reduced\Debug -D "Zip Reduced\bin\Debug" Ionic.Zip.Reduced.dll Ionic.Zip.Reduced.pdb Ionic.Zip.Reduced.XML + %zipit% %rzipfile% -d zip-v%version%-Reduced\Release -D "Zip Reduced\bin\Release" Ionic.Zip.Reduced.dll + + @REM -------------------------------------------- + + %zipit% %rzipfile% -d zlib-v%version% -s Readme.txt "Ionic.Zlib v%version% packed %stamp%. This is the Ionic.Zlib assembly; it includes only the classes in the Ionic.Zlib namespace. Use this library if you want to take advantage of ZLIB compression directly, or if you want to use the compressing stream classes like GZipStream, DeflateStream, or ZlibStream." + %zipit% %rzipfile% -d zlib-v%version%\Debug -D Zlib\bin\Debug Ionic.Zlib.dll Ionic.Zlib.pdb Ionic.Zlib.XML + %zipit% %rzipfile% -d zlib-v%version%\Release -D Zlib\bin\Release Ionic.Zlib.dll + + @REM -------------------------------------------- + + %zipit% %rzipfile% -d bzip2-v%version% -s Readme.txt "Ionic.BZip2 v%version% packed %stamp%. This is the Ionic.BZip2 assembly; it includes only the classes in the Ionic.BZip2 namespace. Use this library if you want to take advantage of BZip2 compression directly, via the compressing stream classes like BZip2OutputStream, or BZip2InputStream." + %zipit% %rzipfile% -d bzip2-v%version%\Debug -D "BZip2\bin\Debug" Ionic.BZip2.dll Ionic.BZip2.pdb Ionic.BZip2.XML + %zipit% %rzipfile% -d bzip2-v%version%\Release -D "BZip2\bin\Release" Ionic.BZip2.dll + + @REM -------------------------------------------- + + %zipit% %rzipfile% -d Tools ^ + -s Readme.txt "These are tools that may be useful as you develop applications that manipulate zip files." ^ + -D Tools\ZipIt\bin\Release Zipit.exe Ionic.Zip.dll ^ + -D Tools\Unzip\bin\Release Unzip.exe ^ + -D Tools\ConvertZipToSfx\bin\Release ConvertZipToSfx.exe ^ + -D Tools\WinFormsApp\bin\Release DotNetZip-WinFormsTool.exe ^ + -D Tools\BZip2\bin\Release BZip2.exe Ionic.BZip2.dll ^ + -D Tools\GZip\bin\Release GZip.exe Ionic.Zlib.dll + + @REM -------------------------------------------- + + %zipit% %rzipfile% -d VS2008-IntegratedHelp -s Readme.txt "This MSI installs the DotNetZip help content into the VisualStudio Integrated help system. After installing this MSI, pressing F1 within Visual Studio, with your cursor on a type defined within the DotNetZip assembly, will open the appropriate help within Visual Studio." -D Help-VS-Integrated\HelpIntegration\Debug DotNetZip-HelpIntegration.msi + + %zipit% %rzipfile% -d Examples\WScript -D "Zip Tests\resources" VbsCreateZip-DotNetZip.vbs VbsUnZip-DotNetZip.vbs TestCheckZip.js + + %zipit% %rzipfile% -d Examples -D Examples -r+ -E "name != *.cache and name != *.*~ and name != *.suo and name != *.user and name != #*.*# and name != *.vspscc and name != Examples\*\*\bin\*.* and name != Examples\*\*\obj\*.* and name != Examples\*\bin\*.* and name != Examples\*\obj\*.*" + + %zipit% %rzipfile% -D %releaseDir% -E "name = DotNetZip-Documentation-*.zip" + + cd %baseDir% + +goto :EOF +-------------------------------------------- + + + +-------------------------------------------- +:MakeRuntimeRedist + + @REM example output zipfile name: DotNetZipLib-Runtime-v1.5.zip + + echo. + echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ + echo. + echo Making the user's redistributable zip... + echo. + + set zipfile=DotNetZipLib-Runtime-v%version%.zip + set rzipfile=%releaseDir%\%zipfile% + + echo zipfile is %rzipfile% + + %zipit% %rzipfile% -s Contents.txt "This is the redistributable package for DotNetZip v%version%. Packed %stamp%. In this zip you will find a separate folder for each separate version of the DLL. In each folder there is a RELEASE build DLL, suitable for redistribution with your app. If you have any questions, please check the forums on http://www.codeplex.com/DotNetZip " -s DotNetZip-is-DonationWare.txt "DotNetZip is donationware. Consider donating. It's for a good cause. http://cheeso.members.winisp.net/DotNetZipDonate.aspx" Readme.txt License.txt License.zlib.txt License.bzip2.txt + + %zipit% %rzipfile% -d zip-v%version% -s Readme.txt "DotNetZip Redistributable Library v%version% packed %stamp%" Zip\bin\Release\Ionic.Zip.dll + + %zipit% %rzipfile% -d zip-v%version%-Reduced -s Readme.txt "DotNetZip Reduced Redistributable Library v%version% packed %stamp%" "Zip Reduced\bin\Release\Ionic.Zip.Reduced.dll" + + %zipit% %rzipfile% -d zlib-v%version% -s Readme.txt "Ionic.Zlib Redistributable Library v%version% packed %stamp%" Zlib\bin\Release\Ionic.Zlib.dll + + %zipit% %rzipfile% -d bzip2-v%version% -s Readme.txt "Ionic.BZip2 Redistributable Library v%version% packed %stamp%" BZip2\bin\Release\Ionic.BZip2.dll + +goto :EOF +-------------------------------------------- + + + +-------------------------------------------- +:MakeZipUtils + + echo. + echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ + echo. + echo Making the Zip Utils zip... + echo. + + set zipfile=DotNetZipUtils-v%version%.zip + + @REM for %%f in (%releaseDir%\%zipfile%) do set rzipfile=%%~ff + + set rzipfile=%releaseDir%\%zipfile% + echo zipfile is %rzipfile% + + %zipit% %rzipfile% -zc "Zip utilities v%version% packed %stamp%" -s Contents.txt "These are the DotNetZip utilities and tools, for DotNetZip v%version%. Packed %stamp%." -s I-Welcome-Donations.txt "DotNetZip is donationware. I welcome donations. It's for a good cause. http://cheeso.members.winisp.net/DotNetZipDonate.aspx" License.txt License.zlib.txt License.bzip2.txt + + %zipit% %rzipfile% ^ + -D Tools\ZipIt\bin\Release Zipit.exe Ionic.Zip.dll ^ + -D Tools\Unzip\bin\Release Unzip.exe ^ + -D Tools\ConvertZipToSfx\bin\Release ConvertZipToSfx.exe ^ + -D Tools\WinFormsApp\bin\Release DotNetZip-WinFormsTool.exe ^ + -D Tools\BZip2\bin\Release BZip2.exe Ionic.BZip2.dll ^ + -D Tools\GZip\bin\Release GZip.exe Ionic.Zlib.dll + +goto :EOF +-------------------------------------------- + + + +-------------------------------------------- +:MakeIntegratedHelpMsi + + @REM example output zipfile name: DotNetZip-HelpIntegration.msi + + echo. + echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ + echo. + echo Making the Integrated help MSI... + echo. + + c:\vs2008\Common7\ide\devenv.exe Help-VS-Integrated\HelpIntegration.sln /build Debug /project HelpIntegration + echo waiting for Help-VS-Integrated\HelpIntegration\Debug\DotNetZip-HelpIntegration.msi + c:\dinoch\dev\dotnet\AwaitFile Help-VS-Integrated\HelpIntegration\Debug\DotNetZip-HelpIntegration.msi + @REM move Help-VS-Integrated\HelpIntegration\Debug\DotNetZip-HelpIntegration.msi %releaseDir%\DotNetZip-HelpIntegration.msi + +goto :EOF +-------------------------------------------- + + + + +-------------------------------------------- +:MakeUtilsMsi + + @REM example output zipfile name: DotNetZipUtils-v1.8.msi + + echo. + echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ + echo. + echo Making the Utils MSI... + echo. + + cd "Setup Utils" + %MSBUILD% /p:Configuration=Release + cd .. + move "Setup Utils\bin\Release\en-us\DotNetZipUtils.msi" %releaseDir%\DotNetZipUtils-v%version%.msi + +goto :EOF +-------------------------------------------- + + + + +-------------------------------------------- +:MakeRuntimeMsi + + @REM example output zipfile name: DotNetZip-Runtime-v1.8.msi + + echo. + echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ + echo. + echo Making the Runtime MSI... + echo. + + cd "Setup Runtime" + %MSBUILD% /p:Configuration=Release + cd .. + move "Setup Runtime\bin\Release\en-us\DotNetZip-Runtime.msi" %releaseDir%\DotNetZip-Runtime-v%version%.msi + +goto :EOF +-------------------------------------------- + + + + +-------------------------------------------- +:MakeSrcZip + + echo. + echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++ + echo. + echo Making the Source Zip... + echo. + + @REM set zipfile=DotNetZip-src-v%version%.zip + + cd.. + @REM Delete any existing src zips + for %%f in (DotNetZip-src-v*.zip) do del %%f + + %POWERSHELL% DotNetZip\ZipSrc.ps1 + + @REM edit in place to remove Ionic.pfx and Ionic.snk from the csproj files + + @REM glob the filename: + for %%f in (DotNetZip-src-v*.zip) do set actualFilename=%%f + + DotNetZip\EditCsproj.exe -z %actualFileName% + + cd %baseDir% + move ..\%actualFileName% %releaseDir% + +goto :EOF +-------------------------------------------- + + +-------------------------------------------- +:BACKTICK + call :GET_CMDLINE %* + set varspec=%1 + setlocal EnableDelayedExpansion + for /f "usebackq delims==" %%I in (`%CMDLINE%`) do set output=%%I + endlocal & set %varspec%=%output% + goto :EOF +-------------------------------------------- + + +-------------------------------------------- +:GET_CMDLINE + @REM given a set of params [0..n], sets CMDLINE to + @REM the join of params[1..n] + setlocal enableextensions EnableDelayedExpansion + set PRIOR= + set PARAMS= + shift + :GET_PARAMs_LOOP + if [%1]==[] goto GET_PARAMS_DONE + set PARAMS=%PARAMS% %1 + shift + goto GET_PARAMS_LOOP + :GET_PARAMS_DONE + REM strip the first space + set PARAMS=%PARAMS:~1% + endlocal & set CMDLINE=%PARAMS% + goto :EOF +-------------------------------------------- + + + +:END +@if exist c:\users\dino\dev\dotnet\pronounceword.exe (c:\users\dino\dev\dotnet\pronounceword.exe All Done > nul:) +echo. +echo release zips are in %releaseDir% +echo. + +endlocal + diff --git a/src/SetVersion.ps1 b/old/src/SetVersion.ps1 similarity index 96% rename from src/SetVersion.ps1 rename to old/src/SetVersion.ps1 index 8860774..1841166 100644 --- a/src/SetVersion.ps1 +++ b/old/src/SetVersion.ps1 @@ -1,151 +1,151 @@ -# ------------------------------------------------------- -# SetVersion.ps1 -# -# Set the version in all the AssemblyInfo.cs or AssemblyInfo.vb files in -# any subdirectory. Also set the version in the Product.wxs file, in -# any subdirectory. -# -# usage: -# from cmd.exe: -# powershell.exe SetVersion.ps1 2.8.3.0 -# -# from powershell.exe prompt: -# .\SetVersion.ps1 2.8.3.0 -# -# -# This script is part of DotNetZip. -# DotNetZip is Copyright 2008-2011 Dino Chiesa. -# -# DotNetZip is licensed under the MS-PL. See the accompanying -# License.txt file. -# -# Last Updated: <2011-August-02 19:51:41> -# -# ------------------------------------------------------- - - -function Usage -{ - echo "Usage: "; - echo " from cmd.exe: "; - echo " powershell.exe SetVersion.ps1 2.8.3.0"; - echo " "; - echo " from powershell.exe prompt: "; - echo " .\SetVersion.ps1 2.8.3.0"; - echo " "; -} - - -function Update-SourceVersion -{ - Param ([string]$Version) - - $NewVersion = 'AssemblyVersion("' + $Version + '")'; - $NewFileVersion = 'AssemblyFileVersion("' + $Version + '")'; - - foreach ($o in $input) - { - $av = select-string AssemblyVersion $o - $fv = select-string AssemblyVersion $o - - if ($av -ne $null -or $fv -ne $null) - { - Write-output $o.FullName - if ($o.Attributes -band [System.IO.FileAttributes]::ReadOnly) - { - # checkout the file for edit, using the tf.exe tool, and - # passing the CodePlex authn info on cmd line. - c:\vs2010\common7\IDE\tf.exe edit $o.FullName $env:cplogin - if (-not $?) - { - Write-output " --> The TF checkout failed. " - # See exit code in $LASTEXITCODE - exit - } - } - $TmpFile = $o.FullName + ".tmp" - - get-content $o.FullName | - %{$_ -replace 'AssemblyVersion\("[0-9]+(\.([0-9]+|\*)){1,3}"\)', $NewVersion } | - %{$_ -replace 'AssemblyFileVersion\("[0-9]+(\.([0-9]+|\*)){1,3}"\)', $NewFileVersion } > $TmpFile - - move-item $TmpFile $o.FullName -force - } - } -} - - - - -function Update-SourceWxsVersion -{ - Param ([string]$Version) - - $NewVersion = 'productVersion = "' + $Version + '"'; - - foreach ($o in $input) - { - $pv = select-string productVersion $o - - if ($pv -ne $null) - { - Write-output $o.FullName - if ($o.Attributes -band [System.IO.FileAttributes]::ReadOnly) - { - # checkout the file for edit, using the tf.exe tool, and - # passing the CodePlex authn info on cmd line - c:\vs2010\common7\IDE\tf edit $o.FullName $env:cplogin - if (-not $?) - { - Write-output " --> The TF checkout failed. " - # See exit code in $LASTEXITCODE - exit - } - } - $TmpFile = $o.FullName + ".tmp" - $newGuid = 'productId = "'+ [System.Guid]::NewGuid().ToString() + '"' - - get-content $o.FullName | - %{$_ -replace 'productVersion *= *"[1-9]+(\.([0-9]+|\*)){1,3}"', $NewVersion } | - %{$_ -replace 'productId *= *"([0-9A-Fa-f]){8}-([0-9A-Fa-f]){4}-([0-9A-Fa-f]){4}-([0-9A-Fa-f]){4}-([0-9A-Fa-f]){12}"', $newGuid } > $TmpFile - - move-item $TmpFile $o.FullName -force - } - } -} - - - -function Update-AllAssemblyInfoFiles ( $version ) -{ - foreach ($file in "SolutionInfo.cs", "AssemblyInfo.cs", "AssemblyInfo.vb" ) - { - get-childitem -recurse |? {$_.Name -eq $file} | Update-SourceVersion $version ; - } -} - - -function Update-AllProductWxsFiles ( $version ) -{ - foreach ($file in "Product.wxs", "ComRegistration.wxs" ) - { - get-childitem -recurse |? {$_.Name -eq $file} | Update-SourceWxsVersion $version ; - } -} - - -# validate arguments -$r= [System.Text.RegularExpressions.Regex]::Match($args[0], "^[0-9]+(\.[0-9]+){1,3}$"); - -if ($r.Success) -{ - Update-AllAssemblyInfoFiles $args[0]; - Update-AllProductWxsFiles $args[0]; -} -else -{ - echo " "; - echo "Bad Input!" - echo " "; - Usage ; -} +# ------------------------------------------------------- +# SetVersion.ps1 +# +# Set the version in all the AssemblyInfo.cs or AssemblyInfo.vb files in +# any subdirectory. Also set the version in the Product.wxs file, in +# any subdirectory. +# +# usage: +# from cmd.exe: +# powershell.exe SetVersion.ps1 2.8.3.0 +# +# from powershell.exe prompt: +# .\SetVersion.ps1 2.8.3.0 +# +# +# This script is part of DotNetZip. +# DotNetZip is Copyright 2008-2011 Dino Chiesa. +# +# DotNetZip is licensed under the MS-PL. See the accompanying +# License.txt file. +# +# Last Updated: <2011-August-02 19:51:41> +# +# ------------------------------------------------------- + + +function Usage +{ + echo "Usage: "; + echo " from cmd.exe: "; + echo " powershell.exe SetVersion.ps1 2.8.3.0"; + echo " "; + echo " from powershell.exe prompt: "; + echo " .\SetVersion.ps1 2.8.3.0"; + echo " "; +} + + +function Update-SourceVersion +{ + Param ([string]$Version) + + $NewVersion = 'AssemblyVersion("' + $Version + '")'; + $NewFileVersion = 'AssemblyFileVersion("' + $Version + '")'; + + foreach ($o in $input) + { + $av = select-string AssemblyVersion $o + $fv = select-string AssemblyVersion $o + + if ($av -ne $null -or $fv -ne $null) + { + Write-output $o.FullName + if ($o.Attributes -band [System.IO.FileAttributes]::ReadOnly) + { + # checkout the file for edit, using the tf.exe tool, and + # passing the CodePlex authn info on cmd line. + c:\vs2010\common7\IDE\tf.exe edit $o.FullName $env:cplogin + if (-not $?) + { + Write-output " --> The TF checkout failed. " + # See exit code in $LASTEXITCODE + exit + } + } + $TmpFile = $o.FullName + ".tmp" + + get-content $o.FullName | + %{$_ -replace 'AssemblyVersion\("[0-9]+(\.([0-9]+|\*)){1,3}"\)', $NewVersion } | + %{$_ -replace 'AssemblyFileVersion\("[0-9]+(\.([0-9]+|\*)){1,3}"\)', $NewFileVersion } > $TmpFile + + move-item $TmpFile $o.FullName -force + } + } +} + + + + +function Update-SourceWxsVersion +{ + Param ([string]$Version) + + $NewVersion = 'productVersion = "' + $Version + '"'; + + foreach ($o in $input) + { + $pv = select-string productVersion $o + + if ($pv -ne $null) + { + Write-output $o.FullName + if ($o.Attributes -band [System.IO.FileAttributes]::ReadOnly) + { + # checkout the file for edit, using the tf.exe tool, and + # passing the CodePlex authn info on cmd line + c:\vs2010\common7\IDE\tf edit $o.FullName $env:cplogin + if (-not $?) + { + Write-output " --> The TF checkout failed. " + # See exit code in $LASTEXITCODE + exit + } + } + $TmpFile = $o.FullName + ".tmp" + $newGuid = 'productId = "'+ [System.Guid]::NewGuid().ToString() + '"' + + get-content $o.FullName | + %{$_ -replace 'productVersion *= *"[1-9]+(\.([0-9]+|\*)){1,3}"', $NewVersion } | + %{$_ -replace 'productId *= *"([0-9A-Fa-f]){8}-([0-9A-Fa-f]){4}-([0-9A-Fa-f]){4}-([0-9A-Fa-f]){4}-([0-9A-Fa-f]){12}"', $newGuid } > $TmpFile + + move-item $TmpFile $o.FullName -force + } + } +} + + + +function Update-AllAssemblyInfoFiles ( $version ) +{ + foreach ($file in "SolutionInfo.cs", "AssemblyInfo.cs", "AssemblyInfo.vb" ) + { + get-childitem -recurse |? {$_.Name -eq $file} | Update-SourceVersion $version ; + } +} + + +function Update-AllProductWxsFiles ( $version ) +{ + foreach ($file in "Product.wxs", "ComRegistration.wxs" ) + { + get-childitem -recurse |? {$_.Name -eq $file} | Update-SourceWxsVersion $version ; + } +} + + +# validate arguments +$r= [System.Text.RegularExpressions.Regex]::Match($args[0], "^[0-9]+(\.[0-9]+){1,3}$"); + +if ($r.Success) +{ + Update-AllAssemblyInfoFiles $args[0]; + Update-AllProductWxsFiles $args[0]; +} +else +{ + echo " "; + echo "Bad Input!" + echo " "; + Usage ; +} diff --git a/src/Setup Runtime/ComRegistration.wxs b/old/src/Setup Runtime/ComRegistration.wxs similarity index 98% rename from src/Setup Runtime/ComRegistration.wxs rename to old/src/Setup Runtime/ComRegistration.wxs index 13fd0b2..a0b4539 100644 --- a/src/Setup Runtime/ComRegistration.wxs +++ b/old/src/Setup Runtime/ComRegistration.wxs @@ -1,457 +1,457 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Setup Runtime/CustomText.wxl b/old/src/Setup Runtime/CustomText.wxl similarity index 98% rename from src/Setup Runtime/CustomText.wxl rename to old/src/Setup Runtime/CustomText.wxl index 9a3a3cd..a3ac32d 100644 --- a/src/Setup Runtime/CustomText.wxl +++ b/old/src/Setup Runtime/CustomText.wxl @@ -1,46 +1,46 @@ - - - - - {\WixUI_Font_Bigger}Welcome to the Setup Wizard for [ProductName] - {\WixUI_Font_Bigger}Welcome to the Setup Wizard for [ProductName] - {\WixUI_Font_Bigger}Welcome to the Setup Wizard for [ProductName] - - - The Setup Wizard will install the [ProductName], the assemblies required for running applications that manipulate ZIP archive files, on your computer. The version to be installed is [ProductVersion]. Click Next to continue or Cancel to exit the Setup Wizard. - - {\WixUI_Font_Bigger}The Setup Wizard for DotNetZip was interrupted - - {\WixUI_Font_Title}You are now installing DotNetZip... - - - {\WixUI_Font_Bigger}You've Completed the Setup Wizard for [ProductName] - - - {\WixUI_Font_Title}Ready to install DotNetZip Tools 1.9 - - - Are you ready to install the runtime? Click Next to proceed. - - Check here to accept the required licenses - - {\WixUI_Font_Title}What would you like to Install? - - {\WixUI_Font_Title}Install options - Specify the options you prefer, then click Next. - - {\WixUI_Font_Bigger}Setup for [ProductName] ended prematurely - The Setup Wizard for the DotNetZip runtime ended prematurely because of an error. Your system has not been modified. To install the DotNetZip runtime at a later time, run the Setup again. - - - - - - + + + + + {\WixUI_Font_Bigger}Welcome to the Setup Wizard for [ProductName] + {\WixUI_Font_Bigger}Welcome to the Setup Wizard for [ProductName] + {\WixUI_Font_Bigger}Welcome to the Setup Wizard for [ProductName] + + + The Setup Wizard will install the [ProductName], the assemblies required for running applications that manipulate ZIP archive files, on your computer. The version to be installed is [ProductVersion]. Click Next to continue or Cancel to exit the Setup Wizard. + + {\WixUI_Font_Bigger}The Setup Wizard for DotNetZip was interrupted + + {\WixUI_Font_Title}You are now installing DotNetZip... + + + {\WixUI_Font_Bigger}You've Completed the Setup Wizard for [ProductName] + + + {\WixUI_Font_Title}Ready to install DotNetZip Tools 1.9 + + + Are you ready to install the runtime? Click Next to proceed. + + Check here to accept the required licenses + + {\WixUI_Font_Title}What would you like to Install? + + {\WixUI_Font_Title}Install options + Specify the options you prefer, then click Next. + + {\WixUI_Font_Bigger}Setup for [ProductName] ended prematurely + The Setup Wizard for the DotNetZip runtime ended prematurely because of an error. Your system has not been modified. To install the DotNetZip runtime at a later time, run the Setup again. + + + + + + diff --git a/src/Setup Runtime/DotNetZip Runtime.wixproj b/old/src/Setup Runtime/DotNetZip Runtime.wixproj similarity index 97% rename from src/Setup Runtime/DotNetZip Runtime.wixproj rename to old/src/Setup Runtime/DotNetZip Runtime.wixproj index ccec0e2..a4676a2 100644 --- a/src/Setup Runtime/DotNetZip Runtime.wixproj +++ b/old/src/Setup Runtime/DotNetZip Runtime.wixproj @@ -1,87 +1,87 @@ - - - - Debug - AnyCPU - 3.0 - {cc0b949c-4f52-4dc1-9925-64daa1cdd79f} - 2.0 - DotNetZip-Runtime - Package - $(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets - false - DotNetZip Runtime Setup - - - - bin\$(Configuration)\ - obj\$(Configuration)\ - Debug - - - bin\$(Configuration)\ - obj\$(Configuration)\ - - - False - True - ICE69; - 1076 - - - - - - - - - - - - - WixUIExtension - $(ProgramFileS)\Windows Installer XML v3.5\bin\WixUIExtension.dll - - - WixUtilExtension - $(ProgramFileS)\Windows Installer XML v3.5\bin\WixUtilExtension.dll - - - WixNetFxExtension - $(ProgramFileS)\Windows Installer XML v3.5\bin\WixNetFxExtension.dll - - - - - - - - - - - - Zip DLL - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} - True - True - Binaries;Content;Satellites - INSTALLLOCATION - - - + + + + Debug + AnyCPU + 3.0 + {cc0b949c-4f52-4dc1-9925-64daa1cdd79f} + 2.0 + DotNetZip-Runtime + Package + $(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets + false + DotNetZip Runtime Setup + + + + bin\$(Configuration)\ + obj\$(Configuration)\ + Debug + + + bin\$(Configuration)\ + obj\$(Configuration)\ + + + False + True + ICE69; + 1076 + + + + + + + + + + + + + WixUIExtension + $(ProgramFileS)\Windows Installer XML v3.5\bin\WixUIExtension.dll + + + WixUtilExtension + $(ProgramFileS)\Windows Installer XML v3.5\bin\WixUtilExtension.dll + + + WixNetFxExtension + $(ProgramFileS)\Windows Installer XML v3.5\bin\WixNetFxExtension.dll + + + + + + + + + + + + Zip DLL + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} + True + True + Binaries;Content;Satellites + INSTALLLOCATION + + + diff --git a/src/Setup Runtime/PostProcessMsi.js b/old/src/Setup Runtime/PostProcessMsi.js similarity index 97% rename from src/Setup Runtime/PostProcessMsi.js rename to old/src/Setup Runtime/PostProcessMsi.js index c2f192c..e82d157 100644 --- a/src/Setup Runtime/PostProcessMsi.js +++ b/old/src/Setup Runtime/PostProcessMsi.js @@ -1,176 +1,176 @@ -// PostProcessMSi.js -// -// Post-process the generated MSI : -// -// - move things around on the installdir dialog, and on the progress -// dialog, to make the UI look better. -// -// -// Copyright (c) 2011 Dino Chiesa. -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code, like all of DotNetZip, is licensed under the Microsoft -// Public License. See the file License.txt accompanying this source -// modeule for the license details. More info on: -// http://dotnetzip.codeplex.com -// -// Created: Thu, 14 Jul 2011 17:31 -// Last saved: <2011-July-28 12:36:05> -// - -// Constant values from Windows Installer -var msiOpenDatabaseMode = { - Transact : 1 -}; -var msiViewModify = { - Insert : 1, - Update : 2, - Assign : 3, - Replace : 4, - Delete : 6 -}; - - -if (WScript.Arguments.Length != 1){ - WScript.StdErr.WriteLine(WScript.ScriptName + " file"); - WScript.Quit(1); -} - - -var filespec = WScript.Arguments(0); -WScript.Echo(WScript.ScriptName + " " + filespec); -var installer = WScript.CreateObject("WindowsInstaller.Installer"); -var database = installer.OpenDatabase(filespec, msiOpenDatabaseMode.Transact); - -var sql; -var view; -var record; - -try { - // var fileId = FindFileIdentifier(database, filename); - // if (!fileId){ - // throw new Error ("Unable to find '" + filename + "' in File table"); - // } - - WScript.Echo("Updating the Control table..."); - - // // Move the checkbox on the exit dialog, so that it appears in the row of buttons. - // // We do this because the background on the checkbox is gray, unchangeably so. - // // but the bg for the row of buttons is gray, so it looks ok if moved there. - // sql = "SELECT `Dialog_`, `Control`, `Type`, `X`, `Y`, `Width`, `Height` FROM `Control` WHERE `Dialog_`='ExitDialog' AND `Control`='OptionalCheckBox'"; - // view = database.OpenView(sql); - // view.Execute(); - // record = view.Fetch(); - // // index starts at 1 - // record.IntegerData(4) = 14; // X - // record.IntegerData(5) = 243; // Y - // record.IntegerData(6) = 120; // Width - // record.IntegerData(7) = 16; // Height - // view.Modify(msiViewModify.Replace, record); - // view.Close(); - - - - // Insert a new checkbox into the InstallDirDlg. - // This one controls whether to associate zip files to DotNetZip. - - // sql = "SELECT `Control` FROM `Control` WHERE `Control`='CheckboxAssoc'"; - // view = database.OpenView(sql); - // view.Execute(); - // record = view.Fetch(); - // var controlExists = null; - // if (record != null) controlExists = record.StringData(1); - // if (record == null || controlExists != "CheckboxAssoc") { - // - // sql = "INSERT INTO `Control` (`Dialog_`, `Control`, `Type`, `X`, `Y`, " + - // "`Width`, `Height`, `Attributes`, `Property`, `Text`, `Control_Next`, `Help`) " + - // "VALUES ('InstallDirDlg', 'CheckboxAssoc', 'CheckBox', '20', '124', '184', '14', '3', "+ - // "'WANT_ZIP_ASSOCIATIONS', 'Associate .zip files to DotNetZip', 'Next', '|')"; - // view = database.OpenView(sql); - // view.Execute(); - // view.Close(); - // - // sql = "UPDATE `Control` SET `Control`.`Control_Next` = 'CheckboxAssoc' " + - // "WHERE `Control`.`Dialog_`='InstallDirDlg' AND `Control`.`Control`='ChangeFolder'"; - // view = database.OpenView(sql); - // view.Execute(); - // view.Close(); - // } - - // Tweak the existing controls on the InstallDirDlg: move them up a bit, shrink the label - sql = "UPDATE `Control` SET `Control`.`Y` = 76 " + - "WHERE `Control`.`Dialog_`='InstallDirDlg' AND `Control`.`Control`='Folder'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - sql = "UPDATE `Control` SET `Control`.`Y` = 96 " + - "WHERE `Control`.`Dialog_`='InstallDirDlg' AND `Control`.`Control`='ChangeFolder'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - sql = "UPDATE `Control` SET `Control`.`Height` = 16 " + - "WHERE `Control`.`Dialog_`='InstallDirDlg' AND `Control`.`Control`='FolderLabel'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - - - // Tweak the existing controls on the ProgressDlg: move the status - // text up a bit, and make it taller, because it was being clipped - // by its own height, and also by the proximity of the progress bar. - // These seem like basic fit-and-finish problems that Wix shouldn't have. - // WIX is an idiot. - sql = "UPDATE `Control` SET `Control`.`Y` = 96, `Control`.`Height` = 14 " + - "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='StatusLabel'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - sql = "UPDATE `Control` SET `Control`.`Y` = 96, `Control`.`Height` = 14 " + - "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='ActionText'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - sql = "UPDATE `Control` SET `Control`.`Y` = 58 " + - "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='TextInstalling'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - sql = "UPDATE `Control` SET `Control`.`Y` = 58 " + - "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='TextChanging'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - sql = "UPDATE `Control` SET `Control`.`Y` = 58 " + - "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='TextRepairing'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - sql = "UPDATE `Control` SET `Control`.`Y` = 58 " + - "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='TextRemoving'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - - // if (checkboxChecked) { - // WScript.Echo("Updating the Property table..."); - // // Set the default value of the CheckBox - // sql = "INSERT INTO `Property` (`Property`, `Value`) VALUES ('LAUNCHAPP', '1')"; - // view = database.OpenView(sql); - // view.Execute(); - // view.Close(); - // } - // WScript.Echo("G"); - - database.Commit(); -} -catch(e) { - WScript.StdErr.WriteLine(e); - WScript.Quit(1); -} - - - +// PostProcessMSi.js +// +// Post-process the generated MSI : +// +// - move things around on the installdir dialog, and on the progress +// dialog, to make the UI look better. +// +// +// Copyright (c) 2011 Dino Chiesa. +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code, like all of DotNetZip, is licensed under the Microsoft +// Public License. See the file License.txt accompanying this source +// modeule for the license details. More info on: +// http://dotnetzip.codeplex.com +// +// Created: Thu, 14 Jul 2011 17:31 +// Last saved: <2011-July-28 12:36:05> +// + +// Constant values from Windows Installer +var msiOpenDatabaseMode = { + Transact : 1 +}; +var msiViewModify = { + Insert : 1, + Update : 2, + Assign : 3, + Replace : 4, + Delete : 6 +}; + + +if (WScript.Arguments.Length != 1){ + WScript.StdErr.WriteLine(WScript.ScriptName + " file"); + WScript.Quit(1); +} + + +var filespec = WScript.Arguments(0); +WScript.Echo(WScript.ScriptName + " " + filespec); +var installer = WScript.CreateObject("WindowsInstaller.Installer"); +var database = installer.OpenDatabase(filespec, msiOpenDatabaseMode.Transact); + +var sql; +var view; +var record; + +try { + // var fileId = FindFileIdentifier(database, filename); + // if (!fileId){ + // throw new Error ("Unable to find '" + filename + "' in File table"); + // } + + WScript.Echo("Updating the Control table..."); + + // // Move the checkbox on the exit dialog, so that it appears in the row of buttons. + // // We do this because the background on the checkbox is gray, unchangeably so. + // // but the bg for the row of buttons is gray, so it looks ok if moved there. + // sql = "SELECT `Dialog_`, `Control`, `Type`, `X`, `Y`, `Width`, `Height` FROM `Control` WHERE `Dialog_`='ExitDialog' AND `Control`='OptionalCheckBox'"; + // view = database.OpenView(sql); + // view.Execute(); + // record = view.Fetch(); + // // index starts at 1 + // record.IntegerData(4) = 14; // X + // record.IntegerData(5) = 243; // Y + // record.IntegerData(6) = 120; // Width + // record.IntegerData(7) = 16; // Height + // view.Modify(msiViewModify.Replace, record); + // view.Close(); + + + + // Insert a new checkbox into the InstallDirDlg. + // This one controls whether to associate zip files to DotNetZip. + + // sql = "SELECT `Control` FROM `Control` WHERE `Control`='CheckboxAssoc'"; + // view = database.OpenView(sql); + // view.Execute(); + // record = view.Fetch(); + // var controlExists = null; + // if (record != null) controlExists = record.StringData(1); + // if (record == null || controlExists != "CheckboxAssoc") { + // + // sql = "INSERT INTO `Control` (`Dialog_`, `Control`, `Type`, `X`, `Y`, " + + // "`Width`, `Height`, `Attributes`, `Property`, `Text`, `Control_Next`, `Help`) " + + // "VALUES ('InstallDirDlg', 'CheckboxAssoc', 'CheckBox', '20', '124', '184', '14', '3', "+ + // "'WANT_ZIP_ASSOCIATIONS', 'Associate .zip files to DotNetZip', 'Next', '|')"; + // view = database.OpenView(sql); + // view.Execute(); + // view.Close(); + // + // sql = "UPDATE `Control` SET `Control`.`Control_Next` = 'CheckboxAssoc' " + + // "WHERE `Control`.`Dialog_`='InstallDirDlg' AND `Control`.`Control`='ChangeFolder'"; + // view = database.OpenView(sql); + // view.Execute(); + // view.Close(); + // } + + // Tweak the existing controls on the InstallDirDlg: move them up a bit, shrink the label + sql = "UPDATE `Control` SET `Control`.`Y` = 76 " + + "WHERE `Control`.`Dialog_`='InstallDirDlg' AND `Control`.`Control`='Folder'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + sql = "UPDATE `Control` SET `Control`.`Y` = 96 " + + "WHERE `Control`.`Dialog_`='InstallDirDlg' AND `Control`.`Control`='ChangeFolder'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + sql = "UPDATE `Control` SET `Control`.`Height` = 16 " + + "WHERE `Control`.`Dialog_`='InstallDirDlg' AND `Control`.`Control`='FolderLabel'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + + + // Tweak the existing controls on the ProgressDlg: move the status + // text up a bit, and make it taller, because it was being clipped + // by its own height, and also by the proximity of the progress bar. + // These seem like basic fit-and-finish problems that Wix shouldn't have. + // WIX is an idiot. + sql = "UPDATE `Control` SET `Control`.`Y` = 96, `Control`.`Height` = 14 " + + "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='StatusLabel'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + sql = "UPDATE `Control` SET `Control`.`Y` = 96, `Control`.`Height` = 14 " + + "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='ActionText'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + sql = "UPDATE `Control` SET `Control`.`Y` = 58 " + + "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='TextInstalling'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + sql = "UPDATE `Control` SET `Control`.`Y` = 58 " + + "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='TextChanging'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + sql = "UPDATE `Control` SET `Control`.`Y` = 58 " + + "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='TextRepairing'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + sql = "UPDATE `Control` SET `Control`.`Y` = 58 " + + "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='TextRemoving'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + + // if (checkboxChecked) { + // WScript.Echo("Updating the Property table..."); + // // Set the default value of the CheckBox + // sql = "INSERT INTO `Property` (`Property`, `Value`) VALUES ('LAUNCHAPP', '1')"; + // view = database.OpenView(sql); + // view.Execute(); + // view.Close(); + // } + // WScript.Echo("G"); + + database.Commit(); +} +catch(e) { + WScript.StdErr.WriteLine(e); + WScript.Quit(1); +} + + + diff --git a/src/Setup Runtime/Product.wxs b/old/src/Setup Runtime/Product.wxs similarity index 100% rename from src/Setup Runtime/Product.wxs rename to old/src/Setup Runtime/Product.wxs diff --git a/src/Setup Runtime/SideBanner.bmp b/old/src/Setup Runtime/SideBanner.bmp similarity index 100% rename from src/Setup Runtime/SideBanner.bmp rename to old/src/Setup Runtime/SideBanner.bmp diff --git a/src/Setup Runtime/TopBanner.bmp b/old/src/Setup Runtime/TopBanner.bmp similarity index 100% rename from src/Setup Runtime/TopBanner.bmp rename to old/src/Setup Runtime/TopBanner.bmp diff --git a/src/Setup Runtime/UI.wxs b/old/src/Setup Runtime/UI.wxs similarity index 97% rename from src/Setup Runtime/UI.wxs rename to old/src/Setup Runtime/UI.wxs index 3a00407..156ac42 100644 --- a/src/Setup Runtime/UI.wxs +++ b/old/src/Setup Runtime/UI.wxs @@ -1,102 +1,102 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - "1"]]> - - - 1 - - - - 1 - - 1 - LicenseAccepted = "1" - - - - - Installed - NOT Installed - - - 1 - - 1 - 1 - 1 - 1 - 1 - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + "1"]]> + + + 1 + + + + 1 + + 1 + LicenseAccepted = "1" + + + + + Installed + NOT Installed + + + 1 + + 1 + 1 + 1 + 1 + 1 + + + + + + + + + + + + diff --git a/src/Setup Utils/CA.ZipAssociation.js b/old/src/Setup Utils/CA.ZipAssociation.js similarity index 97% rename from src/Setup Utils/CA.ZipAssociation.js rename to old/src/Setup Utils/CA.ZipAssociation.js index 9d56a03..46c04f7 100644 --- a/src/Setup Utils/CA.ZipAssociation.js +++ b/old/src/Setup Utils/CA.ZipAssociation.js @@ -1,270 +1,270 @@ -// CA.ZipAssociation.js -// -// Store and Reset file associations for .zip files, as necessary, when -// DotNetZip is being installed and uninstalled, respectively. This -// script defines custom actions that are invoked as part of the MSI. -// -// Copyright (c) 2011 Dino Chiesa. -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code, like all of DotNetZip, is licensed under the Microsoft -// Public License. See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// Created: Thu, 14 Jul 2011 17:31 -// Last saved: <2011-July-16 18:01:37> -// - - -/************************************************/ -/* Message level */ -/************************************************/ -var msiMessageLevel = { - FatalExit : 0x00000000, - Error : 0x01000000, - Warning : 0x02000000, - User : 0x03000000, - Info : 0x04000000, - ActionStart : 0x08000000, - Progress : 0x0A000000, - ActionData : 0x09000000 -}; - - -/************************************************/ -/* Button styles */ -/************************************************/ -var msiButtonType = { - Ok : 0, - OkCancel : 1, - AbortRetryIgnore : 2, - YesNoCancel : 3, - YesNo : 4, - RetryCancel : 5 -}; - - -/************************************************/ -/* Default button */ -/************************************************/ -var msiDefaultButton = { - First : 0x000, - Second : 0x100, - Third : 0x200 -}; - -/************************************************/ -/* Return values */ -/************************************************/ -var msiMessageStatus = { - Error : -1, - None : 0, - Ok : 1, - Cancel : 2, - Abort : 3, - Retry : 4, - Ignore : 5, - Yes : 6, - No : 7 -}; - - -var DotNetZipAssocId = "DotNetZip.zip.1"; -var regPathZipAssoc = "HKEY_LOCAL_MACHINE\\SOFTWARE\\CLASSES\\.zip\\"; -var regPathDnzPrior = "HKEY_CURRENT_USER\\SOFTWARE\\Dino Chiesa\\DotNetZip Tools v1.9\\PriorZipAssociation"; -var verbose = true; - -function DisplayMessageBox(message, options) { - if (options === null) { - options = msiMessageLevel.User + msiButtonType.Ok + msiDefaultButton.First; - } - - if (typeof(Session) === undefined) { - WScript.Echo(message); - if ((options & 0xF) == 1) { - // ask: cancel? - } - return 0; - } - - var record = Session.Installer.CreateRecord(1); - record.StringData(0) = "[1]"; - record.StringData(1) = message; - - return Session.Message(options, record); -} - - -function DisplayUserDiagnostic(message){ - if (!verbose) return 0; - - if (typeof(Session) === undefined) { - WScript.Echo(message); - return 0; - } - - var options = msiMessageLevel.User + msiButtonType.Ok + msiDefaultButton.First; - var record = Session.Installer.CreateRecord(1); - record.StringData(0) = "[1]"; - record.StringData(1) = message; - - return Session.Message(options, record); -} - -function LogMessage(msg) { - var record = Session.Installer.CreateRecord(0); - record.StringData(0) = "CustomAction: " + msg; - Session.Message(msiMessageLevel.Info, record); -} - - -function mytrace(arg){ - if (verbose == false) return; - // This just causes a regRead to be logged. - // Then in PerfMon or RegMon, you can use it as a "trace" - try { - var junkTest = WSHShell.RegRead(regValue2 + arg); - } - catch (e2b) { - } -} - - - - -function RestoreZipAssocInRegistry_CA() { - // restore the app association for zip files, if possible. - var WSHShell = new ActiveXObject("WScript.Shell"); - var priorAssociation = null; - var phase = ""; - var currentAssociation; - var stillInstalled; - var parkingLot = "__DeleteThis"; - - try { - currentAssociation = WSHShell.RegRead(regPathZipAssoc); - LogMessage("Current assoc for .zip: " + currentAssociation); - - if (currentAssociation == DotNetZipAssocId) - phase = "1"; - else if (currentAssociation == "") - phase = "2"; - - LogMessage("phase " + phase); - - if (phase == "1" || phase=="2") { - if (phase=="1") - priorAssociation= WSHShell.RegRead(regPathDnzPrior); - else - priorAssociation= WSHShell.RegRead(regPathZipAssoc + parkingLot); - - LogMessage("prior assoc for .zip: " + priorAssociation); - if (priorAssociation != "") { - mytrace("A"+phase); - try { - mytrace("B"+phase); - stillInstalled = WSHShell.RegRead(regPathZipAssoc + "OpenWithProgIds\\" + priorAssociation); - // the value will be the empty string - LogMessage("the prior app is still installed."); - mytrace("C"); - if (phase=="1") - WSHShell.RegWrite(regPathZipAssoc + parkingLot, priorAssociation ); - else { - WSHShell.RegWrite(regPathZipAssoc, priorAssociation ); - WSHShell.RegDelete(regPathZipAssoc + parkingLot); - } - } - catch (e2a) { - mytrace("F"); - LogMessage("the prior app is NOT still installed."); - WSHShell.RegWrite(regPathZipAssoc, "CompressedFolder"); - } - } - else { - mytrace("G"); - LogMessage("the prior assoc is empty?"); - WSHShell.RegWrite(regPathZipAssoc, "CompressedFolder"); - } - } - else { - LogMessage("the associated app has changed."); - // The association has been changed since install of DotNetZip. - // We won't try to reset it. - } - } - catch (e1) { - LogMessage("there is no associated app."); - WSHShell.RegWrite(regPathZipAssoc, "CompressedFolder"); - } -} - - - - -function PreserveZipAssocInRegistry_CA() { - // get and store the existing association for zip files, if any - LogMessage("Hello from PreserveZipAssocInRegistry_CA()"); - var WSHShell = new ActiveXObject("WScript.Shell"); - var wantZipAssociation = Session.Property("WANT_ZIP_ASSOCIATIONS"); - LogMessage("wantZipAssociation = " + wantZipAssociation); - - if (wantZipAssociation == "1") { - try { - var association = WSHShell.RegRead(regPathZipAssoc); - if (association != "") { - LogMessage("PreserveFileAssoc: Current assoc for .zip: " + association); - if (association != DotNetZipAssocId) { - LogMessage("PreserveFileAssoc: it is NOT DotNetZip."); - // there is an association, and it is not DotNetZip - WSHShell.RegWrite(regPathDnzPrior, association); - } - else { - LogMessage("PreserveFileAssoc: it is DotNetZip."); - // the existing association is for DotNetZip - try { - var priorAssoc = WSHShell.RegRead(regPathDnzPrior); - if (priorAssoc == "" || priorAssoc == DotNetZipAssocId) { - LogMessage("PreserveFileAssoc: defaulting (0)"); - WSHShell.RegWrite(regPathDnzPrior, "CompressedFolder"); - } - else { - // there already is a stored prior association. - // don't change it. - } - } - catch (e1a) { - LogMessage("PreserveFileAssoc: exception: " + e1a.message); - LogMessage("PreserveFileAssoc: defaulting (1)"); - WSHShell.RegWrite(regPathDnzPrior, "CompressedFolder"); - } - } - } - else { - // there is no default association for .zip files - WSHShell.RegWrite(regPathDnzPrior, "CompressedFolder"); - } - } - catch (e1) { - // the key doesn't exist (no app for .zip files at all) - WSHShell.RegWrite(regPathDnzPrior, "CompressedFolder"); - } - } -} - - - -// var parameters = Session.Property("CustomActionData").split("|"); -// var targetDir = parameters[0]; -// var checkBoxState = parameters[1]; - -// DisplayDiagnostic("Checkbox state; " + checkBoxState); -// -// PreserveFileAssociation(); -// DeleteSelf(); -// -// -// RestoreRegistry(); +// CA.ZipAssociation.js +// +// Store and Reset file associations for .zip files, as necessary, when +// DotNetZip is being installed and uninstalled, respectively. This +// script defines custom actions that are invoked as part of the MSI. +// +// Copyright (c) 2011 Dino Chiesa. +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code, like all of DotNetZip, is licensed under the Microsoft +// Public License. See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// Created: Thu, 14 Jul 2011 17:31 +// Last saved: <2011-July-16 18:01:37> +// + + +/************************************************/ +/* Message level */ +/************************************************/ +var msiMessageLevel = { + FatalExit : 0x00000000, + Error : 0x01000000, + Warning : 0x02000000, + User : 0x03000000, + Info : 0x04000000, + ActionStart : 0x08000000, + Progress : 0x0A000000, + ActionData : 0x09000000 +}; + + +/************************************************/ +/* Button styles */ +/************************************************/ +var msiButtonType = { + Ok : 0, + OkCancel : 1, + AbortRetryIgnore : 2, + YesNoCancel : 3, + YesNo : 4, + RetryCancel : 5 +}; + + +/************************************************/ +/* Default button */ +/************************************************/ +var msiDefaultButton = { + First : 0x000, + Second : 0x100, + Third : 0x200 +}; + +/************************************************/ +/* Return values */ +/************************************************/ +var msiMessageStatus = { + Error : -1, + None : 0, + Ok : 1, + Cancel : 2, + Abort : 3, + Retry : 4, + Ignore : 5, + Yes : 6, + No : 7 +}; + + +var DotNetZipAssocId = "DotNetZip.zip.1"; +var regPathZipAssoc = "HKEY_LOCAL_MACHINE\\SOFTWARE\\CLASSES\\.zip\\"; +var regPathDnzPrior = "HKEY_CURRENT_USER\\SOFTWARE\\Dino Chiesa\\DotNetZip Tools v1.9\\PriorZipAssociation"; +var verbose = true; + +function DisplayMessageBox(message, options) { + if (options === null) { + options = msiMessageLevel.User + msiButtonType.Ok + msiDefaultButton.First; + } + + if (typeof(Session) === undefined) { + WScript.Echo(message); + if ((options & 0xF) == 1) { + // ask: cancel? + } + return 0; + } + + var record = Session.Installer.CreateRecord(1); + record.StringData(0) = "[1]"; + record.StringData(1) = message; + + return Session.Message(options, record); +} + + +function DisplayUserDiagnostic(message){ + if (!verbose) return 0; + + if (typeof(Session) === undefined) { + WScript.Echo(message); + return 0; + } + + var options = msiMessageLevel.User + msiButtonType.Ok + msiDefaultButton.First; + var record = Session.Installer.CreateRecord(1); + record.StringData(0) = "[1]"; + record.StringData(1) = message; + + return Session.Message(options, record); +} + +function LogMessage(msg) { + var record = Session.Installer.CreateRecord(0); + record.StringData(0) = "CustomAction: " + msg; + Session.Message(msiMessageLevel.Info, record); +} + + +function mytrace(arg){ + if (verbose == false) return; + // This just causes a regRead to be logged. + // Then in PerfMon or RegMon, you can use it as a "trace" + try { + var junkTest = WSHShell.RegRead(regValue2 + arg); + } + catch (e2b) { + } +} + + + + +function RestoreZipAssocInRegistry_CA() { + // restore the app association for zip files, if possible. + var WSHShell = new ActiveXObject("WScript.Shell"); + var priorAssociation = null; + var phase = ""; + var currentAssociation; + var stillInstalled; + var parkingLot = "__DeleteThis"; + + try { + currentAssociation = WSHShell.RegRead(regPathZipAssoc); + LogMessage("Current assoc for .zip: " + currentAssociation); + + if (currentAssociation == DotNetZipAssocId) + phase = "1"; + else if (currentAssociation == "") + phase = "2"; + + LogMessage("phase " + phase); + + if (phase == "1" || phase=="2") { + if (phase=="1") + priorAssociation= WSHShell.RegRead(regPathDnzPrior); + else + priorAssociation= WSHShell.RegRead(regPathZipAssoc + parkingLot); + + LogMessage("prior assoc for .zip: " + priorAssociation); + if (priorAssociation != "") { + mytrace("A"+phase); + try { + mytrace("B"+phase); + stillInstalled = WSHShell.RegRead(regPathZipAssoc + "OpenWithProgIds\\" + priorAssociation); + // the value will be the empty string + LogMessage("the prior app is still installed."); + mytrace("C"); + if (phase=="1") + WSHShell.RegWrite(regPathZipAssoc + parkingLot, priorAssociation ); + else { + WSHShell.RegWrite(regPathZipAssoc, priorAssociation ); + WSHShell.RegDelete(regPathZipAssoc + parkingLot); + } + } + catch (e2a) { + mytrace("F"); + LogMessage("the prior app is NOT still installed."); + WSHShell.RegWrite(regPathZipAssoc, "CompressedFolder"); + } + } + else { + mytrace("G"); + LogMessage("the prior assoc is empty?"); + WSHShell.RegWrite(regPathZipAssoc, "CompressedFolder"); + } + } + else { + LogMessage("the associated app has changed."); + // The association has been changed since install of DotNetZip. + // We won't try to reset it. + } + } + catch (e1) { + LogMessage("there is no associated app."); + WSHShell.RegWrite(regPathZipAssoc, "CompressedFolder"); + } +} + + + + +function PreserveZipAssocInRegistry_CA() { + // get and store the existing association for zip files, if any + LogMessage("Hello from PreserveZipAssocInRegistry_CA()"); + var WSHShell = new ActiveXObject("WScript.Shell"); + var wantZipAssociation = Session.Property("WANT_ZIP_ASSOCIATIONS"); + LogMessage("wantZipAssociation = " + wantZipAssociation); + + if (wantZipAssociation == "1") { + try { + var association = WSHShell.RegRead(regPathZipAssoc); + if (association != "") { + LogMessage("PreserveFileAssoc: Current assoc for .zip: " + association); + if (association != DotNetZipAssocId) { + LogMessage("PreserveFileAssoc: it is NOT DotNetZip."); + // there is an association, and it is not DotNetZip + WSHShell.RegWrite(regPathDnzPrior, association); + } + else { + LogMessage("PreserveFileAssoc: it is DotNetZip."); + // the existing association is for DotNetZip + try { + var priorAssoc = WSHShell.RegRead(regPathDnzPrior); + if (priorAssoc == "" || priorAssoc == DotNetZipAssocId) { + LogMessage("PreserveFileAssoc: defaulting (0)"); + WSHShell.RegWrite(regPathDnzPrior, "CompressedFolder"); + } + else { + // there already is a stored prior association. + // don't change it. + } + } + catch (e1a) { + LogMessage("PreserveFileAssoc: exception: " + e1a.message); + LogMessage("PreserveFileAssoc: defaulting (1)"); + WSHShell.RegWrite(regPathDnzPrior, "CompressedFolder"); + } + } + } + else { + // there is no default association for .zip files + WSHShell.RegWrite(regPathDnzPrior, "CompressedFolder"); + } + } + catch (e1) { + // the key doesn't exist (no app for .zip files at all) + WSHShell.RegWrite(regPathDnzPrior, "CompressedFolder"); + } + } +} + + + +// var parameters = Session.Property("CustomActionData").split("|"); +// var targetDir = parameters[0]; +// var checkBoxState = parameters[1]; + +// DisplayDiagnostic("Checkbox state; " + checkBoxState); +// +// PreserveFileAssociation(); +// DeleteSelf(); +// +// +// RestoreRegistry(); diff --git a/src/Setup Utils/CustomActions.wxs b/old/src/Setup Utils/CustomActions.wxs similarity index 97% rename from src/Setup Utils/CustomActions.wxs rename to old/src/Setup Utils/CustomActions.wxs index 42b40fa..3ec0259 100644 --- a/src/Setup Utils/CustomActions.wxs +++ b/old/src/Setup Utils/CustomActions.wxs @@ -1,42 +1,42 @@ - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Setup Utils/CustomText.wxl b/old/src/Setup Utils/CustomText.wxl similarity index 98% rename from src/Setup Utils/CustomText.wxl rename to old/src/Setup Utils/CustomText.wxl index 7dc92e3..f7fc883 100644 --- a/src/Setup Utils/CustomText.wxl +++ b/old/src/Setup Utils/CustomText.wxl @@ -1,47 +1,47 @@ - - - - - {\WixUI_Font_Bigger}Welcome to the Setup Wizard for [ProductName] - {\WixUI_Font_Bigger}Welcome to the Setup Wizard for [ProductName] - {\WixUI_Font_Bigger}Welcome to the Setup Wizard for [ProductName] - - - The Setup Wizard will install the [ProductName], graphical and command-line tools for manipulating ZIP archive files, on your computer. The version to be installed is [ProductVersion]. Click Next to continue or Cancel to exit the Setup Wizard. - - {\WixUI_Font_Bigger}The Setup Wizard for DotNetZip was interrupted - - {\WixUI_Font_Title}You are now installing DotNetZip... - - - {\WixUI_Font_Bigger}You've Completed the Setup Wizard for [ProductName] - - - {\WixUI_Font_Title}Ready to install DotNetZip Tools 1.9 - - - Are you ready? Are you ready to transport yourself to a world in which free zip tools are at your fingertips? Where you can create and extract zip archives using the full power of the ZIP specification? Where you have absolute control over ZIP64, Self-extracting archives, AES encryption, Unicode filenames, extended timestamps, and archive splitting? Well? Are you?? - - Check here to accept the required licenses - - {\WixUI_Font_Title}What would you like to Install? - - {\WixUI_Font_Title}Install options - Specify the options you prefer, then click Next. - - {\WixUI_Font_Bigger}Setup for [ProductName] ended prematurely - The Setup Wizard for DotNetZip ended prematurely because of an error. Your system has not been modified. To install DotNetZip at a later time, run the Setup again. - - - - - - + + + + + {\WixUI_Font_Bigger}Welcome to the Setup Wizard for [ProductName] + {\WixUI_Font_Bigger}Welcome to the Setup Wizard for [ProductName] + {\WixUI_Font_Bigger}Welcome to the Setup Wizard for [ProductName] + + + The Setup Wizard will install the [ProductName], graphical and command-line tools for manipulating ZIP archive files, on your computer. The version to be installed is [ProductVersion]. Click Next to continue or Cancel to exit the Setup Wizard. + + {\WixUI_Font_Bigger}The Setup Wizard for DotNetZip was interrupted + + {\WixUI_Font_Title}You are now installing DotNetZip... + + + {\WixUI_Font_Bigger}You've Completed the Setup Wizard for [ProductName] + + + {\WixUI_Font_Title}Ready to install DotNetZip Tools 1.9 + + + Are you ready? Are you ready to transport yourself to a world in which free zip tools are at your fingertips? Where you can create and extract zip archives using the full power of the ZIP specification? Where you have absolute control over ZIP64, Self-extracting archives, AES encryption, Unicode filenames, extended timestamps, and archive splitting? Well? Are you?? + + Check here to accept the required licenses + + {\WixUI_Font_Title}What would you like to Install? + + {\WixUI_Font_Title}Install options + Specify the options you prefer, then click Next. + + {\WixUI_Font_Bigger}Setup for [ProductName] ended prematurely + The Setup Wizard for DotNetZip ended prematurely because of an error. Your system has not been modified. To install DotNetZip at a later time, run the Setup again. + + + + + + diff --git a/src/Setup Utils/DotNetZipUtils.wixproj b/old/src/Setup Utils/DotNetZipUtils.wixproj similarity index 97% rename from src/Setup Utils/DotNetZipUtils.wixproj rename to old/src/Setup Utils/DotNetZipUtils.wixproj index b5deeb0..6eaffb1 100644 --- a/src/Setup Utils/DotNetZipUtils.wixproj +++ b/old/src/Setup Utils/DotNetZipUtils.wixproj @@ -1,117 +1,117 @@ - - - - Debug - AnyCPU - 3.0 - {18b1cdb1-709d-46d4-a894-9fe0bf929686} - 2.0 - DotNetZipUtils - Package - $(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets - false - DotNetZipUtils Setup - - - - bin\$(Configuration)\ - obj\$(Configuration)\ - Debug - - - bin\$(Configuration)\ - obj\$(Configuration)\ - - - - - - - - - - - - - WixUIExtension - $(ProgramFileS)\Windows Installer XML v3.5\bin\WixUIExtension.dll - - - WixUtilExtension - $(ProgramFileS)\Windows Installer XML v3.5\bin\WixUtilExtension.dll - - - WixNetFxExtension - $(ProgramFileS)\Windows Installer XML v3.5\bin\WixNetFxExtension.dll - - - - - - - - - - - - ConvertZipToSfx - {276b8174-a24e-4257-9969-42d692f8cac2} - True - True - Binaries;Content;Satellites - INSTALLLOCATION - - - UnZip - {a22c89e0-b5d4-4881-a61f-4b1fd82f2453} - True - True - Binaries;Content;Satellites - INSTALLLOCATION - - - {6BCCF138-2EFB-464C-B872-E3079F0A4708} - Win Forms App - - - ZipIt - {98008721-c4dd-4f34-b3ae-a3453e29bb65} - True - True - Binaries;Content;Satellites - INSTALLLOCATION - - - BZip2 - {c2241050-f23c-420b-aa67-60e94b34c2b2} - True - True - Binaries;Content;Satellites - INSTALLLOCATION - - - GZip - {52542d59-25ec-4ee4-8af2-85de50c70ea6} - True - True - Binaries;Content;Satellites - INSTALLLOCATION - - + + + + Debug + AnyCPU + 3.0 + {18b1cdb1-709d-46d4-a894-9fe0bf929686} + 2.0 + DotNetZipUtils + Package + $(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets + false + DotNetZipUtils Setup + + + + bin\$(Configuration)\ + obj\$(Configuration)\ + Debug + + + bin\$(Configuration)\ + obj\$(Configuration)\ + + + + + + + + + + + + + WixUIExtension + $(ProgramFileS)\Windows Installer XML v3.5\bin\WixUIExtension.dll + + + WixUtilExtension + $(ProgramFileS)\Windows Installer XML v3.5\bin\WixUtilExtension.dll + + + WixNetFxExtension + $(ProgramFileS)\Windows Installer XML v3.5\bin\WixNetFxExtension.dll + + + + + + + + + + + + ConvertZipToSfx + {276b8174-a24e-4257-9969-42d692f8cac2} + True + True + Binaries;Content;Satellites + INSTALLLOCATION + + + UnZip + {a22c89e0-b5d4-4881-a61f-4b1fd82f2453} + True + True + Binaries;Content;Satellites + INSTALLLOCATION + + + {6BCCF138-2EFB-464C-B872-E3079F0A4708} + Win Forms App + + + ZipIt + {98008721-c4dd-4f34-b3ae-a3453e29bb65} + True + True + Binaries;Content;Satellites + INSTALLLOCATION + + + BZip2 + {c2241050-f23c-420b-aa67-60e94b34c2b2} + True + True + Binaries;Content;Satellites + INSTALLLOCATION + + + GZip + {52542d59-25ec-4ee4-8af2-85de50c70ea6} + True + True + Binaries;Content;Satellites + INSTALLLOCATION + + \ No newline at end of file diff --git a/src/Setup Utils/PostProcessMsi.js b/old/src/Setup Utils/PostProcessMsi.js similarity index 97% rename from src/Setup Utils/PostProcessMsi.js rename to old/src/Setup Utils/PostProcessMsi.js index 90aa25a..59ce1d4 100644 --- a/src/Setup Utils/PostProcessMsi.js +++ b/old/src/Setup Utils/PostProcessMsi.js @@ -1,197 +1,197 @@ -// PostProcessMSi.js -// -// Post-process the generated MSI to do these things: -// -// - move the (optional) checkbox control that is presented on the exit -// dialog. WIX produces a checkbox control with a greay background; I -// don't know why, and that seems like the wrong color to choose as a -// default. I also don't know how to reset the color in a .wxs -// file. But, I do know how to move the checkbox and resize it, by -// updating the MSI database from a script. Moving it to the lower -// part of the form - where the Finish button is presented, allows the -// grey to match the existing background. -// -// - Add a second checkbox to allow users to optionally associate the -// .zip extension to the GUI Zip tool. I think this also could be -// done in the UI.wxs, but once again, I don't know how to do that -// simply. I find WIX to be very hard to use. It's easier for me, to -// just uypdate the MSI table, so that's what I will do right here. -// -// - Move things around on the progress and the installdir dialog. For -// the progress dialog, the default settings emitted by WIX are not -// correct - the progress text is too close to the actual progress -// bar, and the default height of the progress text is too small so -// that the text gets clipped. For the installdir dialog, similar -// concerns: the default layout doesn't look very nice. Slight tweaks -// make a nice improvement. I'm pretty sure that there's a way to do -// this in the .wxs file, but once again, I don't know how to do it, -// and I think it will be hard to find out. Wix is a pain in the -// ass. So I'll just do it here. -// -// -// Copyright (c) 2011 Dino Chiesa. -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code, like all of DotNetZip, is licensed under the Microsoft -// Public License. See the file License.txt accompanying this source -// modeule for the license details. More info on: -// http://dotnetzip.codeplex.com -// -// Created: Thu, 14 Jul 2011 17:31 -// Last saved: <2011-July-28 12:28:42> -// - -// Constant values from Windows Installer -var msiOpenDatabaseMode = { - Transact : 1 -}; -var msiViewModify = { - Insert : 1, - Update : 2, - Assign : 3, - Replace : 4, - Delete : 6 -}; - - -if (WScript.Arguments.Length != 1){ - WScript.StdErr.WriteLine(WScript.ScriptName + " file"); - WScript.Quit(1); -} - - -var filespec = WScript.Arguments(0); -WScript.Echo(WScript.ScriptName + " " + filespec); -var installer = WScript.CreateObject("WindowsInstaller.Installer"); -var database = installer.OpenDatabase(filespec, msiOpenDatabaseMode.Transact); - -var sql; -var view; -var record; - -try { - // var fileId = FindFileIdentifier(database, filename); - // if (!fileId){ - // throw new Error ("Unable to find '" + filename + "' in File table"); - // } - - WScript.Echo("Updating the Control table..."); - - // Move the checkbox on the exit dialog, so that it appears in the row of buttons. - // We do this because the background on the checkbox is gray, unchangeably so. - // but the bg for the row of buttons is gray, so it looks ok if moved there. - sql = "SELECT `Dialog_`, `Control`, `Type`, `X`, `Y`, `Width`, `Height` FROM `Control` WHERE `Dialog_`='ExitDialog' AND `Control`='OptionalCheckBox'"; - view = database.OpenView(sql); - view.Execute(); - record = view.Fetch(); - // index starts at 1 - record.IntegerData(4) = 14; // X - record.IntegerData(5) = 243; // Y - record.IntegerData(6) = 120; // Width - record.IntegerData(7) = 16; // Height - view.Modify(msiViewModify.Replace, record); - view.Close(); - - // Insert a new checkbox into the InstallDirDlg. - // This one controls whether to associate zip files to DotNetZip. - - sql = "SELECT `Control` FROM `Control` WHERE `Control`='CheckboxAssoc'"; - view = database.OpenView(sql); - view.Execute(); - record = view.Fetch(); - var controlExists = null; - if (record != null) controlExists = record.StringData(1); - if (record == null || controlExists != "CheckboxAssoc") { - - sql = "INSERT INTO `Control` (`Dialog_`, `Control`, `Type`, `X`, `Y`, " + - "`Width`, `Height`, `Attributes`, `Property`, `Text`, `Control_Next`, `Help`) " + - "VALUES ('InstallDirDlg', 'CheckboxAssoc', 'CheckBox', '20', '124', '184', '14', '3', "+ - "'WANT_ZIP_ASSOCIATIONS', 'Associate .zip files to DotNetZip', 'Next', '|')"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - - sql = "UPDATE `Control` SET `Control`.`Control_Next` = 'CheckboxAssoc' " + - "WHERE `Control`.`Dialog_`='InstallDirDlg' AND `Control`.`Control`='ChangeFolder'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - } - - // Tweak the existing controls on the InstallDirDlg: move them up a bit, shrink the label - sql = "UPDATE `Control` SET `Control`.`Y` = 76 " + - "WHERE `Control`.`Dialog_`='InstallDirDlg' AND `Control`.`Control`='Folder'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - sql = "UPDATE `Control` SET `Control`.`Y` = 96 " + - "WHERE `Control`.`Dialog_`='InstallDirDlg' AND `Control`.`Control`='ChangeFolder'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - sql = "UPDATE `Control` SET `Control`.`Height` = 16 " + - "WHERE `Control`.`Dialog_`='InstallDirDlg' AND `Control`.`Control`='FolderLabel'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - - - // Tweak the existing controls on the ProgressDlg: move the status - // text up a bit, and make it taller, because it was being clipped - // by its own height, and also by the proximity of the progress bar. - // These seem like basic fit-and-finish problems that Wix shouldn't have. - // WIX is an idiot. - sql = "UPDATE `Control` SET `Control`.`Y` = 96, `Control`.`Height` = 14 " + - "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='StatusLabel'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - sql = "UPDATE `Control` SET `Control`.`Y` = 96, `Control`.`Height` = 14 " + - "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='ActionText'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - sql = "UPDATE `Control` SET `Control`.`Y` = 58 " + - "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='TextInstalling'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - sql = "UPDATE `Control` SET `Control`.`Y` = 58 " + - "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='TextChanging'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - sql = "UPDATE `Control` SET `Control`.`Y` = 58 " + - "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='TextRepairing'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - sql = "UPDATE `Control` SET `Control`.`Y` = 58 " + - "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='TextRemoving'"; - view = database.OpenView(sql); - view.Execute(); - view.Close(); - - // if (checkboxChecked) { - // WScript.Echo("Updating the Property table..."); - // // Set the default value of the CheckBox - // sql = "INSERT INTO `Property` (`Property`, `Value`) VALUES ('LAUNCHAPP', '1')"; - // view = database.OpenView(sql); - // view.Execute(); - // view.Close(); - // } - // WScript.Echo("G"); - - database.Commit(); -} -catch(e) { - WScript.StdErr.WriteLine(e); - WScript.Quit(1); -} - - - +// PostProcessMSi.js +// +// Post-process the generated MSI to do these things: +// +// - move the (optional) checkbox control that is presented on the exit +// dialog. WIX produces a checkbox control with a greay background; I +// don't know why, and that seems like the wrong color to choose as a +// default. I also don't know how to reset the color in a .wxs +// file. But, I do know how to move the checkbox and resize it, by +// updating the MSI database from a script. Moving it to the lower +// part of the form - where the Finish button is presented, allows the +// grey to match the existing background. +// +// - Add a second checkbox to allow users to optionally associate the +// .zip extension to the GUI Zip tool. I think this also could be +// done in the UI.wxs, but once again, I don't know how to do that +// simply. I find WIX to be very hard to use. It's easier for me, to +// just uypdate the MSI table, so that's what I will do right here. +// +// - Move things around on the progress and the installdir dialog. For +// the progress dialog, the default settings emitted by WIX are not +// correct - the progress text is too close to the actual progress +// bar, and the default height of the progress text is too small so +// that the text gets clipped. For the installdir dialog, similar +// concerns: the default layout doesn't look very nice. Slight tweaks +// make a nice improvement. I'm pretty sure that there's a way to do +// this in the .wxs file, but once again, I don't know how to do it, +// and I think it will be hard to find out. Wix is a pain in the +// ass. So I'll just do it here. +// +// +// Copyright (c) 2011 Dino Chiesa. +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code, like all of DotNetZip, is licensed under the Microsoft +// Public License. See the file License.txt accompanying this source +// modeule for the license details. More info on: +// http://dotnetzip.codeplex.com +// +// Created: Thu, 14 Jul 2011 17:31 +// Last saved: <2011-July-28 12:28:42> +// + +// Constant values from Windows Installer +var msiOpenDatabaseMode = { + Transact : 1 +}; +var msiViewModify = { + Insert : 1, + Update : 2, + Assign : 3, + Replace : 4, + Delete : 6 +}; + + +if (WScript.Arguments.Length != 1){ + WScript.StdErr.WriteLine(WScript.ScriptName + " file"); + WScript.Quit(1); +} + + +var filespec = WScript.Arguments(0); +WScript.Echo(WScript.ScriptName + " " + filespec); +var installer = WScript.CreateObject("WindowsInstaller.Installer"); +var database = installer.OpenDatabase(filespec, msiOpenDatabaseMode.Transact); + +var sql; +var view; +var record; + +try { + // var fileId = FindFileIdentifier(database, filename); + // if (!fileId){ + // throw new Error ("Unable to find '" + filename + "' in File table"); + // } + + WScript.Echo("Updating the Control table..."); + + // Move the checkbox on the exit dialog, so that it appears in the row of buttons. + // We do this because the background on the checkbox is gray, unchangeably so. + // but the bg for the row of buttons is gray, so it looks ok if moved there. + sql = "SELECT `Dialog_`, `Control`, `Type`, `X`, `Y`, `Width`, `Height` FROM `Control` WHERE `Dialog_`='ExitDialog' AND `Control`='OptionalCheckBox'"; + view = database.OpenView(sql); + view.Execute(); + record = view.Fetch(); + // index starts at 1 + record.IntegerData(4) = 14; // X + record.IntegerData(5) = 243; // Y + record.IntegerData(6) = 120; // Width + record.IntegerData(7) = 16; // Height + view.Modify(msiViewModify.Replace, record); + view.Close(); + + // Insert a new checkbox into the InstallDirDlg. + // This one controls whether to associate zip files to DotNetZip. + + sql = "SELECT `Control` FROM `Control` WHERE `Control`='CheckboxAssoc'"; + view = database.OpenView(sql); + view.Execute(); + record = view.Fetch(); + var controlExists = null; + if (record != null) controlExists = record.StringData(1); + if (record == null || controlExists != "CheckboxAssoc") { + + sql = "INSERT INTO `Control` (`Dialog_`, `Control`, `Type`, `X`, `Y`, " + + "`Width`, `Height`, `Attributes`, `Property`, `Text`, `Control_Next`, `Help`) " + + "VALUES ('InstallDirDlg', 'CheckboxAssoc', 'CheckBox', '20', '124', '184', '14', '3', "+ + "'WANT_ZIP_ASSOCIATIONS', 'Associate .zip files to DotNetZip', 'Next', '|')"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + + sql = "UPDATE `Control` SET `Control`.`Control_Next` = 'CheckboxAssoc' " + + "WHERE `Control`.`Dialog_`='InstallDirDlg' AND `Control`.`Control`='ChangeFolder'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + } + + // Tweak the existing controls on the InstallDirDlg: move them up a bit, shrink the label + sql = "UPDATE `Control` SET `Control`.`Y` = 76 " + + "WHERE `Control`.`Dialog_`='InstallDirDlg' AND `Control`.`Control`='Folder'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + sql = "UPDATE `Control` SET `Control`.`Y` = 96 " + + "WHERE `Control`.`Dialog_`='InstallDirDlg' AND `Control`.`Control`='ChangeFolder'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + sql = "UPDATE `Control` SET `Control`.`Height` = 16 " + + "WHERE `Control`.`Dialog_`='InstallDirDlg' AND `Control`.`Control`='FolderLabel'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + + + // Tweak the existing controls on the ProgressDlg: move the status + // text up a bit, and make it taller, because it was being clipped + // by its own height, and also by the proximity of the progress bar. + // These seem like basic fit-and-finish problems that Wix shouldn't have. + // WIX is an idiot. + sql = "UPDATE `Control` SET `Control`.`Y` = 96, `Control`.`Height` = 14 " + + "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='StatusLabel'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + sql = "UPDATE `Control` SET `Control`.`Y` = 96, `Control`.`Height` = 14 " + + "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='ActionText'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + sql = "UPDATE `Control` SET `Control`.`Y` = 58 " + + "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='TextInstalling'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + sql = "UPDATE `Control` SET `Control`.`Y` = 58 " + + "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='TextChanging'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + sql = "UPDATE `Control` SET `Control`.`Y` = 58 " + + "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='TextRepairing'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + sql = "UPDATE `Control` SET `Control`.`Y` = 58 " + + "WHERE `Control`.`Dialog_`='ProgressDlg' AND `Control`.`Control`='TextRemoving'"; + view = database.OpenView(sql); + view.Execute(); + view.Close(); + + // if (checkboxChecked) { + // WScript.Echo("Updating the Property table..."); + // // Set the default value of the CheckBox + // sql = "INSERT INTO `Property` (`Property`, `Value`) VALUES ('LAUNCHAPP', '1')"; + // view = database.OpenView(sql); + // view.Execute(); + // view.Close(); + // } + // WScript.Echo("G"); + + database.Commit(); +} +catch(e) { + WScript.StdErr.WriteLine(e); + WScript.Quit(1); +} + + + diff --git a/src/Setup Utils/Product.wxs b/old/src/Setup Utils/Product.wxs similarity index 97% rename from src/Setup Utils/Product.wxs rename to old/src/Setup Utils/Product.wxs index d233008..281b809 100644 --- a/src/Setup Utils/Product.wxs +++ b/old/src/Setup Utils/Product.wxs @@ -1,393 +1,393 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - = 502)]]> - - - - - - - - - - = "3.1"]]> - - - - - - - - - - - - - - - (&F.Complete=3) AND WANT_ZIP_ASSOCIATIONS - - - (&F.Complete=2) AND (!F.Complete=3) - - (&F.Complete=2) AND (!F.Complete=3) - - - (&F.Complete=2) AND (!F.Complete=3) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - WANT_ZIP_ASSOCIATIONS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + = 502)]]> + + + + + + + + + + = "3.1"]]> + + + + + + + + + + + + + + + (&F.Complete=3) AND WANT_ZIP_ASSOCIATIONS + + + (&F.Complete=2) AND (!F.Complete=3) + + (&F.Complete=2) AND (!F.Complete=3) + + + (&F.Complete=2) AND (!F.Complete=3) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WANT_ZIP_ASSOCIATIONS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Setup Utils/SideBanner.bmp b/old/src/Setup Utils/SideBanner.bmp similarity index 100% rename from src/Setup Utils/SideBanner.bmp rename to old/src/Setup Utils/SideBanner.bmp diff --git a/src/Setup Utils/TopBanner.bmp b/old/src/Setup Utils/TopBanner.bmp similarity index 100% rename from src/Setup Utils/TopBanner.bmp rename to old/src/Setup Utils/TopBanner.bmp diff --git a/src/Setup Utils/UI.wxs b/old/src/Setup Utils/UI.wxs similarity index 97% rename from src/Setup Utils/UI.wxs rename to old/src/Setup Utils/UI.wxs index 25a17a7..816a0f7 100644 --- a/src/Setup Utils/UI.wxs +++ b/old/src/Setup Utils/UI.wxs @@ -1,107 +1,107 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - "1"]]> - - - 1 - - - - 1 - - 1 - LicenseAccepted = "1" - - - - - Installed - NOT Installed - - - 1 - - 1 - 1 - 1 - 1 - 1 - - WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + "1"]]> + + + 1 + + + + 1 + + 1 + LicenseAccepted = "1" + + + + + Installed + NOT Installed + + + 1 + + 1 + 1 + 1 + 1 + 1 + + WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed + + + + + + + + + + + diff --git a/src/SolutionInfo.cs b/old/src/SolutionInfo.cs similarity index 100% rename from src/SolutionInfo.cs rename to old/src/SolutionInfo.cs diff --git a/src/Tools/BZip2/AssemblyInfo.cs b/old/src/Tools/BZip2/AssemblyInfo.cs similarity index 100% rename from src/Tools/BZip2/AssemblyInfo.cs rename to old/src/Tools/BZip2/AssemblyInfo.cs diff --git a/src/Tools/BZip2/BZip2.cs b/old/src/Tools/BZip2/BZip2.cs similarity index 97% rename from src/Tools/BZip2/BZip2.cs rename to old/src/Tools/BZip2/BZip2.cs index f56364b..a42aff2 100644 --- a/src/Tools/BZip2/BZip2.cs +++ b/old/src/Tools/BZip2/BZip2.cs @@ -1,191 +1,191 @@ -// BZip2.cs -// -// ---------------------------------------------------------------------- -// Copyright (c) 2011 Dino Chiesa. All rights reserved. -// -// This example is released under the Microsoft Permissive License of -// October 2006. See the license.txt file accompanying this release for -// full details. -// -// ---------------------------------------------------------------------- -// -// This utility creates a compresses the file specified on the command line, -// using BZip2, creating a new file, with the .bz2 suffix. Or, if the -// file specified on the command-line has a .bz2 suffix, this utility -// decompresses it, restoring the original file. -// -// compile with: -// csc /debug+ /target:exe /r:Ionic.Zip.dll /out:BZip2.exe BZip2.cs -// -// Sat, 23 Jul 2011 22:32 -// - -using System; -using System.IO; -using Ionic.BZip2; - -namespace Ionic.Zip.Examples -{ - public class BZip2 - { - private static void Usage() - { - string UsageMessage = - "BZip2.exe: compress a file using BZip2, or decompress a BZip2-compressed file. \n"+ - " The original file is deleted after processing.\n" + - " This tool depends on Ionic's DotNetZip library. This is version {0} \n" + - " of the utility. See http://dotnetzip.codeplex.com for info.\n"+ - " usage:\n BZip2.exe [arguments]\n" + - "\n arguments: \n" + - " -v - verbose output.\n" + - " -f - force overwrite of any existing files.\n" + - " -keep - don't delete the original file after compressing or \n"+ - " decompressing it.\n"; - - Console.WriteLine(UsageMessage, - System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()); - Environment.Exit(1); - } - - - - static void CtrlC_Handler(object sender, ConsoleCancelEventArgs args) - { - Console.WriteLine("\nCtrl-C"); - //cleanupCompleted.WaitOne(); - // prevent the process from exiting until cleanup is done: - args.Cancel = true; - } - - private static void Pump(Stream src, Stream dest) - { - byte[] buffer = new byte[2048]; - int n; - while ((n = src.Read(buffer, 0, buffer.Length)) > 0) - dest.Write(buffer, 0, n); - - } - - - static string Compress(string fname, bool forceOverwrite) - { - var outFname = fname + ".bz2"; - if (File.Exists(outFname)) - { - if (forceOverwrite) - File.Delete(outFname); - else - return null; - } - - using (Stream fs = File.OpenRead(fname), - output = File.Create(outFname), - compressor = new Ionic.BZip2.ParallelBZip2OutputStream(output)) - Pump(fs, compressor); - - return outFname; - } - - - public static string Decompress(string fname, bool forceOverwrite) - { - var outFname = Path.GetFileNameWithoutExtension(fname); - if (File.Exists(outFname)) - { - if (forceOverwrite) - File.Delete(outFname); - else - return null; - } - - using (Stream fs = File.OpenRead(fname), - output = File.Create(outFname), - decompressor = new Ionic.BZip2.BZip2InputStream(fs)) - Pump(decompressor, output); - - return outFname; - } - - - public static void Main(String[] args) - { - bool keepOriginal = false; - bool force = false; - bool verbose = false; - if (args.Length < 1) Usage(); - - if (!File.Exists(args[0])) - { - System.Console.WriteLine("That file ({0}) does not exist.", args[0]); - return; - } - - Console.CancelKeyPress += CtrlC_Handler; - - try - { - for (int i = 1; i < args.Length; i++) - { - switch (args[i]) - { - case "-keep": - keepOriginal = true; - break; - - case "-f": - force = true; - break; - - case "-v": - verbose = true; - break; - - default: - throw new ArgumentException(args[i]); - } - } - - string fname = args[0]; - bool decompress = (fname.ToLower().EndsWith(".bz") || fname.ToLower().EndsWith(".bz2")); - string result = decompress - ? Decompress(fname, force) - : Compress(fname, force); - - if (result==null) - { - Console.WriteLine("No action taken. The file already exists."); - } - else - { - if (verbose) - { - var fi1 = new FileInfo(fname); - var fi2 = new FileInfo(result); - if (decompress) - { - Console.WriteLine(" Original : {0} bytes", fi1.Length); - Console.WriteLine(" Decompressed: {0} bytes", fi2.Length); - Console.WriteLine(" Comp Ratio : {0:N1}%", 100.0 - (fi1.Length/(0.01 * fi2.Length))); - } - else - { - Console.WriteLine(" Original : {0} bytes", fi1.Length); - Console.WriteLine(" Compressed: {0} bytes", fi2.Length); - Console.WriteLine(" Comp Ratio: {0:N1}%", 100.0 - (fi2.Length/(0.01 * fi1.Length))); - } - } - - if (!keepOriginal) - { - File.Delete(fname); - } - } - - } - catch (System.Exception ex1) - { - System.Console.WriteLine("Exception: " + ex1); - } - } - } -} +// BZip2.cs +// +// ---------------------------------------------------------------------- +// Copyright (c) 2011 Dino Chiesa. All rights reserved. +// +// This example is released under the Microsoft Permissive License of +// October 2006. See the license.txt file accompanying this release for +// full details. +// +// ---------------------------------------------------------------------- +// +// This utility creates a compresses the file specified on the command line, +// using BZip2, creating a new file, with the .bz2 suffix. Or, if the +// file specified on the command-line has a .bz2 suffix, this utility +// decompresses it, restoring the original file. +// +// compile with: +// csc /debug+ /target:exe /r:Ionic.Zip.dll /out:BZip2.exe BZip2.cs +// +// Sat, 23 Jul 2011 22:32 +// + +using System; +using System.IO; +using Ionic.BZip2; + +namespace Ionic.Zip.Examples +{ + public class BZip2 + { + private static void Usage() + { + string UsageMessage = + "BZip2.exe: compress a file using BZip2, or decompress a BZip2-compressed file. \n"+ + " The original file is deleted after processing.\n" + + " This tool depends on Ionic's DotNetZip library. This is version {0} \n" + + " of the utility. See http://dotnetzip.codeplex.com for info.\n"+ + " usage:\n BZip2.exe [arguments]\n" + + "\n arguments: \n" + + " -v - verbose output.\n" + + " -f - force overwrite of any existing files.\n" + + " -keep - don't delete the original file after compressing or \n"+ + " decompressing it.\n"; + + Console.WriteLine(UsageMessage, + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()); + Environment.Exit(1); + } + + + + static void CtrlC_Handler(object sender, ConsoleCancelEventArgs args) + { + Console.WriteLine("\nCtrl-C"); + //cleanupCompleted.WaitOne(); + // prevent the process from exiting until cleanup is done: + args.Cancel = true; + } + + private static void Pump(Stream src, Stream dest) + { + byte[] buffer = new byte[2048]; + int n; + while ((n = src.Read(buffer, 0, buffer.Length)) > 0) + dest.Write(buffer, 0, n); + + } + + + static string Compress(string fname, bool forceOverwrite) + { + var outFname = fname + ".bz2"; + if (File.Exists(outFname)) + { + if (forceOverwrite) + File.Delete(outFname); + else + return null; + } + + using (Stream fs = File.OpenRead(fname), + output = File.Create(outFname), + compressor = new Ionic.BZip2.ParallelBZip2OutputStream(output)) + Pump(fs, compressor); + + return outFname; + } + + + public static string Decompress(string fname, bool forceOverwrite) + { + var outFname = Path.GetFileNameWithoutExtension(fname); + if (File.Exists(outFname)) + { + if (forceOverwrite) + File.Delete(outFname); + else + return null; + } + + using (Stream fs = File.OpenRead(fname), + output = File.Create(outFname), + decompressor = new Ionic.BZip2.BZip2InputStream(fs)) + Pump(decompressor, output); + + return outFname; + } + + + public static void Main(String[] args) + { + bool keepOriginal = false; + bool force = false; + bool verbose = false; + if (args.Length < 1) Usage(); + + if (!File.Exists(args[0])) + { + System.Console.WriteLine("That file ({0}) does not exist.", args[0]); + return; + } + + Console.CancelKeyPress += CtrlC_Handler; + + try + { + for (int i = 1; i < args.Length; i++) + { + switch (args[i]) + { + case "-keep": + keepOriginal = true; + break; + + case "-f": + force = true; + break; + + case "-v": + verbose = true; + break; + + default: + throw new ArgumentException(args[i]); + } + } + + string fname = args[0]; + bool decompress = (fname.ToLower().EndsWith(".bz") || fname.ToLower().EndsWith(".bz2")); + string result = decompress + ? Decompress(fname, force) + : Compress(fname, force); + + if (result==null) + { + Console.WriteLine("No action taken. The file already exists."); + } + else + { + if (verbose) + { + var fi1 = new FileInfo(fname); + var fi2 = new FileInfo(result); + if (decompress) + { + Console.WriteLine(" Original : {0} bytes", fi1.Length); + Console.WriteLine(" Decompressed: {0} bytes", fi2.Length); + Console.WriteLine(" Comp Ratio : {0:N1}%", 100.0 - (fi1.Length/(0.01 * fi2.Length))); + } + else + { + Console.WriteLine(" Original : {0} bytes", fi1.Length); + Console.WriteLine(" Compressed: {0} bytes", fi2.Length); + Console.WriteLine(" Comp Ratio: {0:N1}%", 100.0 - (fi2.Length/(0.01 * fi1.Length))); + } + } + + if (!keepOriginal) + { + File.Delete(fname); + } + } + + } + catch (System.Exception ex1) + { + System.Console.WriteLine("Exception: " + ex1); + } + } + } +} diff --git a/src/Tools/BZip2/BZip2.csproj b/old/src/Tools/BZip2/BZip2.csproj similarity index 97% rename from src/Tools/BZip2/BZip2.csproj rename to old/src/Tools/BZip2/BZip2.csproj index 2ece228..c946835 100644 --- a/src/Tools/BZip2/BZip2.csproj +++ b/old/src/Tools/BZip2/BZip2.csproj @@ -1,87 +1,87 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {C2241050-F23C-420B-AA67-60E94B34C2B2} - Exe - Properties - BZip2 - BZip2 - - - - - 3.5 - - - - - - - - - false - ..\..\Ionic.snk - v4.0 - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - AllRules.ruleset - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - AllRules.ruleset - - - - - - - - - - SolutionInfo.cs - - - - - {e2ce0d56-7af8-4404-bd0c-bc562cbd74d4} - BZip2 DLL - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {C2241050-F23C-420B-AA67-60E94B34C2B2} + Exe + Properties + BZip2 + BZip2 + + + + + 3.5 + + + + + + + + + false + ..\..\Ionic.snk + v4.0 + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + AllRules.ruleset + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + AllRules.ruleset + + + + + + + + + + SolutionInfo.cs + + + + + {e2ce0d56-7af8-4404-bd0c-bc562cbd74d4} + BZip2 DLL + + + + \ No newline at end of file diff --git a/src/Tools/ConvertZipToSfx/ConvertZipToSfx.cs b/old/src/Tools/ConvertZipToSfx/ConvertZipToSfx.cs similarity index 97% rename from src/Tools/ConvertZipToSfx/ConvertZipToSfx.cs rename to old/src/Tools/ConvertZipToSfx/ConvertZipToSfx.cs index b346dae..9fca3c5 100644 --- a/src/Tools/ConvertZipToSfx/ConvertZipToSfx.cs +++ b/old/src/Tools/ConvertZipToSfx/ConvertZipToSfx.cs @@ -1,187 +1,187 @@ -// ConvertZipToSfx.cs -// ------------------------------------------------------------------ -// -// This is a command-line tool that creates a self-extracting Zip archive, given a -// standard zip archive. -// It requires the .NET Framework 4.0 on the target machine in order to run. -// -// -// The Visual Studio Project is a little weird. There are code files that ARE NOT compiled -// during a normal build of the VS Solution. They are marked as embedded resources. These -// are the various "boilerplate" modules that are used in the self-extractor. These modules are: -// WinFormsSelfExtractorStub.cs -// WinFormsSelfExtractorStub.Designer.cs -// CommandLineSelfExtractorStub.cs -// PasswordDialog.cs -// PasswordDialog.Designer.cs -// ZipContentsDialog.cs -// ZipContentsDialog.Designer.cs -// FolderBrowserDialogEx.cs -// -// At design time, if you want to modify the way the GUI looks, you have to mark those modules -// to have a "compile" build action. Then tweak em, test, etc. Then again mark them as -// "Embedded resource". -// -// -// Author: Dinoch -// built on host: DINOCH-2 -// -// ------------------------------------------------------------------ -// -// Copyright (c) 2008 by Dino Chiesa -// All rights reserved! -// -// -// ------------------------------------------------------------------ - -using System; -using System.Reflection; -using System.IO; -using System.Collections.Generic; - -using Ionic.Zip; - -namespace Ionic.Zip.Examples -{ - - public class ConvertZipToSfx - { - private ConvertZipToSfx() { } - - public ConvertZipToSfx(string[] args) - { - for (int i = 0; i < args.Length; i++) - { - switch (args[i]) - { - case "-extractdir": - if (i >= args.Length - 1 || ExtractDir != null) - { - Usage(); - return; - } - ExtractDir = args[++i]; - break; - - case "-cmdline": - flavor = Ionic.Zip.SelfExtractorFlavor.ConsoleApplication; - break; - - case "-comment": - if (i >= args.Length-1 || ZipComment != null) - { - Usage(); - return; - } - ZipComment = args[++i]; - break; - - case "-exeonunpack": - if (i >= args.Length-1 || ExeOnUnpack != null) - { - Usage(); - return; - } - ExeOnUnpack = args[++i]; - break; - - case "-?": - case "-help": - Usage(); - return; - - default: - // positional args - if (ZipFileToConvert == null) - ZipFileToConvert = args[i]; - else - { - Usage(); - return; - } - break; - } - } - } - - string ExeOnUnpack; - string ZipComment; - string ZipFileToConvert = null; - string ExtractDir = null; - bool _gaveUsage; - SelfExtractorFlavor flavor = Ionic.Zip.SelfExtractorFlavor.WinFormsApplication; - - public void Run() - { - if (_gaveUsage) return; - if (ZipFileToConvert == null) - { - Console.WriteLine("No zipfile specified.\n"); - Usage(); - return; - } - - if (!System.IO.File.Exists(ZipFileToConvert)) - { - Console.WriteLine("That zip file does not exist!\n"); - Usage(); - return; - } - - Convert(); - } - - - - private void Convert() - { - string TargetName = ZipFileToConvert.Replace(".zip", ".exe"); - - Console.WriteLine("Converting file {0} to SFX {1}", ZipFileToConvert, TargetName); - - var options = new ReadOptions { StatusMessageWriter = System.Console.Out }; - using (ZipFile zip = ZipFile.Read(ZipFileToConvert, options)) - { - zip.Comment = ZipComment; - SelfExtractorSaveOptions sfxOptions = new SelfExtractorSaveOptions(); - sfxOptions.Flavor = flavor; - sfxOptions.DefaultExtractDirectory = ExtractDir; - sfxOptions.PostExtractCommandLine = ExeOnUnpack; - zip.SaveSelfExtractor(TargetName, sfxOptions ); - } - } - - - private void Usage() - { - Console.WriteLine("usage:"); - Console.WriteLine(" CreateSelfExtractor [-cmdline] [-extractdir ] [-comment ]"); - Console.WriteLine(" [-exec ] "); - Console.WriteLine(" Creates a self-extracting archive (SFX) from an existing zip file.\n"); - Console.WriteLine(" options:"); - Console.WriteLine(" -cmdline - the generated SFX will be a console/command-line exe."); - Console.WriteLine(" The default is that the SFX is a Windows (GUI) app."); - Console.WriteLine(" -exec - The command line to execute after the SFX runs."); - Console.WriteLine(" -comment - embed a comment into the self-extracting archive."); - Console.WriteLine(" It is displayed when the SFX is extracted."); - Console.WriteLine(); - _gaveUsage = true; - } - - - - public static void Main(string[] args) - { - try - { - new ConvertZipToSfx(args).Run(); - } - catch (System.Exception exc1) - { - Console.WriteLine("Exception while creating the self extracting archive: {0}", exc1.ToString()); - } - } - - - } -} +// ConvertZipToSfx.cs +// ------------------------------------------------------------------ +// +// This is a command-line tool that creates a self-extracting Zip archive, given a +// standard zip archive. +// It requires the .NET Framework 4.0 on the target machine in order to run. +// +// +// The Visual Studio Project is a little weird. There are code files that ARE NOT compiled +// during a normal build of the VS Solution. They are marked as embedded resources. These +// are the various "boilerplate" modules that are used in the self-extractor. These modules are: +// WinFormsSelfExtractorStub.cs +// WinFormsSelfExtractorStub.Designer.cs +// CommandLineSelfExtractorStub.cs +// PasswordDialog.cs +// PasswordDialog.Designer.cs +// ZipContentsDialog.cs +// ZipContentsDialog.Designer.cs +// FolderBrowserDialogEx.cs +// +// At design time, if you want to modify the way the GUI looks, you have to mark those modules +// to have a "compile" build action. Then tweak em, test, etc. Then again mark them as +// "Embedded resource". +// +// +// Author: Dinoch +// built on host: DINOCH-2 +// +// ------------------------------------------------------------------ +// +// Copyright (c) 2008 by Dino Chiesa +// All rights reserved! +// +// +// ------------------------------------------------------------------ + +using System; +using System.Reflection; +using System.IO; +using System.Collections.Generic; + +using Ionic.Zip; + +namespace Ionic.Zip.Examples +{ + + public class ConvertZipToSfx + { + private ConvertZipToSfx() { } + + public ConvertZipToSfx(string[] args) + { + for (int i = 0; i < args.Length; i++) + { + switch (args[i]) + { + case "-extractdir": + if (i >= args.Length - 1 || ExtractDir != null) + { + Usage(); + return; + } + ExtractDir = args[++i]; + break; + + case "-cmdline": + flavor = Ionic.Zip.SelfExtractorFlavor.ConsoleApplication; + break; + + case "-comment": + if (i >= args.Length-1 || ZipComment != null) + { + Usage(); + return; + } + ZipComment = args[++i]; + break; + + case "-exeonunpack": + if (i >= args.Length-1 || ExeOnUnpack != null) + { + Usage(); + return; + } + ExeOnUnpack = args[++i]; + break; + + case "-?": + case "-help": + Usage(); + return; + + default: + // positional args + if (ZipFileToConvert == null) + ZipFileToConvert = args[i]; + else + { + Usage(); + return; + } + break; + } + } + } + + string ExeOnUnpack; + string ZipComment; + string ZipFileToConvert = null; + string ExtractDir = null; + bool _gaveUsage; + SelfExtractorFlavor flavor = Ionic.Zip.SelfExtractorFlavor.WinFormsApplication; + + public void Run() + { + if (_gaveUsage) return; + if (ZipFileToConvert == null) + { + Console.WriteLine("No zipfile specified.\n"); + Usage(); + return; + } + + if (!System.IO.File.Exists(ZipFileToConvert)) + { + Console.WriteLine("That zip file does not exist!\n"); + Usage(); + return; + } + + Convert(); + } + + + + private void Convert() + { + string TargetName = ZipFileToConvert.Replace(".zip", ".exe"); + + Console.WriteLine("Converting file {0} to SFX {1}", ZipFileToConvert, TargetName); + + var options = new ReadOptions { StatusMessageWriter = System.Console.Out }; + using (ZipFile zip = ZipFile.Read(ZipFileToConvert, options)) + { + zip.Comment = ZipComment; + SelfExtractorSaveOptions sfxOptions = new SelfExtractorSaveOptions(); + sfxOptions.Flavor = flavor; + sfxOptions.DefaultExtractDirectory = ExtractDir; + sfxOptions.PostExtractCommandLine = ExeOnUnpack; + zip.SaveSelfExtractor(TargetName, sfxOptions ); + } + } + + + private void Usage() + { + Console.WriteLine("usage:"); + Console.WriteLine(" CreateSelfExtractor [-cmdline] [-extractdir ] [-comment ]"); + Console.WriteLine(" [-exec ] "); + Console.WriteLine(" Creates a self-extracting archive (SFX) from an existing zip file.\n"); + Console.WriteLine(" options:"); + Console.WriteLine(" -cmdline - the generated SFX will be a console/command-line exe."); + Console.WriteLine(" The default is that the SFX is a Windows (GUI) app."); + Console.WriteLine(" -exec - The command line to execute after the SFX runs."); + Console.WriteLine(" -comment - embed a comment into the self-extracting archive."); + Console.WriteLine(" It is displayed when the SFX is extracted."); + Console.WriteLine(); + _gaveUsage = true; + } + + + + public static void Main(string[] args) + { + try + { + new ConvertZipToSfx(args).Run(); + } + catch (System.Exception exc1) + { + Console.WriteLine("Exception while creating the self extracting archive: {0}", exc1.ToString()); + } + } + + + } +} diff --git a/src/Tools/ConvertZipToSfx/ConvertZipToSfx.csproj b/old/src/Tools/ConvertZipToSfx/ConvertZipToSfx.csproj similarity index 97% rename from src/Tools/ConvertZipToSfx/ConvertZipToSfx.csproj rename to old/src/Tools/ConvertZipToSfx/ConvertZipToSfx.csproj index c6852bc..c26bb04 100644 --- a/src/Tools/ConvertZipToSfx/ConvertZipToSfx.csproj +++ b/old/src/Tools/ConvertZipToSfx/ConvertZipToSfx.csproj @@ -1,88 +1,88 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {276B8174-A24E-4257-9969-42D692F8CAC2} - Exe - Properties - Ionic.Utils.Zip - ConvertZipToSfx - v4.0 - 512 - - - - - - - - - - - - - 3.5 - - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - AllRules.ruleset - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - AllRules.ruleset - - - - - - - - - - - Properties\SolutionInfo.cs - - - - - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} - Zip DLL - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {276B8174-A24E-4257-9969-42D692F8CAC2} + Exe + Properties + Ionic.Utils.Zip + ConvertZipToSfx + v4.0 + 512 + + + + + + + + + + + + + 3.5 + + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + AllRules.ruleset + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + AllRules.ruleset + + + + + + + + + + + Properties\SolutionInfo.cs + + + + + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} + Zip DLL + + + + \ No newline at end of file diff --git a/src/Tools/ConvertZipToSfx/Properties/AssemblyInfo.cs b/old/src/Tools/ConvertZipToSfx/Properties/AssemblyInfo.cs similarity index 100% rename from src/Tools/ConvertZipToSfx/Properties/AssemblyInfo.cs rename to old/src/Tools/ConvertZipToSfx/Properties/AssemblyInfo.cs diff --git a/src/Tools/GZip/AssemblyInfo.cs b/old/src/Tools/GZip/AssemblyInfo.cs similarity index 100% rename from src/Tools/GZip/AssemblyInfo.cs rename to old/src/Tools/GZip/AssemblyInfo.cs diff --git a/src/Tools/GZip/GZip.cs b/old/src/Tools/GZip/GZip.cs similarity index 97% rename from src/Tools/GZip/GZip.cs rename to old/src/Tools/GZip/GZip.cs index 633fc07..73a62d9 100644 --- a/src/Tools/GZip/GZip.cs +++ b/old/src/Tools/GZip/GZip.cs @@ -1,205 +1,205 @@ -// GZip.cs -// -// ---------------------------------------------------------------------- -// Copyright (c) 2011 Dino Chiesa. All rights reserved. -// -// This example is released under the Microsoft Permissive License of -// October 2006. See the license.txt file accompanying this release for -// full details. -// -// ---------------------------------------------------------------------- -// -// This utility creates a compresses the file specified on the command line, -// using GZip, creating a new file, with the .gz suffix. Or, if the -// file specified on the command-line has a .gz suffix, this utility -// decompresses it, restoring the original file. -// -// compile with: -// csc /debug+ /target:exe /r:Ionic.Zip.dll /out:GZip.exe GZip.cs -// -// Sat, 23 Jul 2011 22:32 -// - -using System; -using System.IO; -using Ionic.Zlib; - -namespace Ionic.Zip.Examples -{ - public class GZip - { - private static void Usage() - { - string UsageMessage = - "GZip.exe: compress a file using GZip, or decompress a GZip-compressed file. \n"+ - " The original file is deleted after processing.\n" + - " This tool depends on Ionic's DotNetZip library. This is version {0} \n" + - " of the utility. See http://dotnetzip.codeplex.com for info.\n"+ - " usage:\n GZip.exe [arguments]\n" + - "\n arguments: \n" + - " -v - verbose output.\n" + - " -f - force overwrite of any existing files.\n" + - " -keep - don't delete the original file after compressing or \n"+ - " decompressing it.\n"; - - Console.WriteLine(UsageMessage, - System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()); - Environment.Exit(1); - } - - - - static void CtrlC_Handler(object sender, ConsoleCancelEventArgs args) - { - Console.WriteLine("\nCtrl-C"); - //cleanupCompleted.WaitOne(); - // prevent the process from exiting until cleanup is done: - args.Cancel = true; - } - - private static void Pump(Stream src, Stream dest) - { - byte[] buffer = new byte[2048]; - int n; - while ((n = src.Read(buffer, 0, buffer.Length)) > 0) - { - dest.Write(buffer, 0, n); - } - } - - - static string Compress(string fname, bool forceOverwrite) - { - var outFname = fname + ".gz"; - if (File.Exists(outFname)) - { - if (forceOverwrite) - File.Delete(outFname); - else - return null; - } - - using (var fs = File.OpenRead(fname)) - { - using (var output = File.Create(outFname)) - { - using (var compressor = new Ionic.Zlib.GZipStream(output, Ionic.Zlib.CompressionMode.Compress)) - { - compressor.FileName = fname; - var fi = new FileInfo(fname); - compressor.LastModified = fi.LastWriteTime; - Pump(fs, compressor); - } - } - } - return outFname; - } - - - public static string Decompress(string fname, bool forceOverwrite) - { - var outFname = Path.GetFileNameWithoutExtension(fname); - if (File.Exists(outFname)) - { - if (forceOverwrite) - File.Delete(outFname); - else - return null; - } - - using (var fs = File.OpenRead(fname)) - { - using (var decompressor = new Ionic.Zlib.GZipStream(fs, Ionic.Zlib.CompressionMode.Decompress)) - { - using (var output = File.Create(outFname)) - { - Pump(decompressor, output); - } - } - } - return outFname; - } - - - public static void Main(String[] args) - { - bool keepOriginal = false; - bool force = false; - bool verbose = false; - if (args.Length < 1) Usage(); - - if (!File.Exists(args[0])) - { - System.Console.WriteLine("That file ({0}) does not exist.", args[0]); - return; - } - - Console.CancelKeyPress += CtrlC_Handler; - - try - { - for (int i = 1; i < args.Length; i++) - { - switch (args[i]) - { - case "-keep": - keepOriginal = true; - break; - - case "-f": - force = true; - break; - - case "-v": - verbose = true; - break; - - default: - throw new ArgumentException(args[i]); - } - } - - string fname = args[0]; - bool decompress = fname.ToLower().EndsWith(".gz"); - string result = decompress - ? Decompress(fname, force) - : Compress(fname, force); - - if (result==null) - { - Console.WriteLine("No action taken. The file already exists."); - } - else - { - if (verbose) - { - var fi1 = new FileInfo(fname); - var fi2 = new FileInfo(result); - if (decompress) - { - Console.WriteLine(" Original : {0} bytes", fi1.Length); - Console.WriteLine(" Decompressed: {0} bytes", fi2.Length); - Console.WriteLine(" Comp Ratio : {0:N1}%", 100.0 - (fi1.Length/(0.01 * fi2.Length))); - } - else - { - Console.WriteLine(" Original : {0} bytes", fi1.Length); - Console.WriteLine(" Compressed: {0} bytes", fi2.Length); - Console.WriteLine(" Comp Ratio: {0:N1}%", 100.0 - (fi2.Length/(0.01 * fi1.Length))); - } - } - - if (!keepOriginal) - { - File.Delete(fname); - } - } - - } - catch (System.Exception ex1) - { - System.Console.WriteLine("Exception: " + ex1); - } - } - } -} +// GZip.cs +// +// ---------------------------------------------------------------------- +// Copyright (c) 2011 Dino Chiesa. All rights reserved. +// +// This example is released under the Microsoft Permissive License of +// October 2006. See the license.txt file accompanying this release for +// full details. +// +// ---------------------------------------------------------------------- +// +// This utility creates a compresses the file specified on the command line, +// using GZip, creating a new file, with the .gz suffix. Or, if the +// file specified on the command-line has a .gz suffix, this utility +// decompresses it, restoring the original file. +// +// compile with: +// csc /debug+ /target:exe /r:Ionic.Zip.dll /out:GZip.exe GZip.cs +// +// Sat, 23 Jul 2011 22:32 +// + +using System; +using System.IO; +using Ionic.Zlib; + +namespace Ionic.Zip.Examples +{ + public class GZip + { + private static void Usage() + { + string UsageMessage = + "GZip.exe: compress a file using GZip, or decompress a GZip-compressed file. \n"+ + " The original file is deleted after processing.\n" + + " This tool depends on Ionic's DotNetZip library. This is version {0} \n" + + " of the utility. See http://dotnetzip.codeplex.com for info.\n"+ + " usage:\n GZip.exe [arguments]\n" + + "\n arguments: \n" + + " -v - verbose output.\n" + + " -f - force overwrite of any existing files.\n" + + " -keep - don't delete the original file after compressing or \n"+ + " decompressing it.\n"; + + Console.WriteLine(UsageMessage, + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()); + Environment.Exit(1); + } + + + + static void CtrlC_Handler(object sender, ConsoleCancelEventArgs args) + { + Console.WriteLine("\nCtrl-C"); + //cleanupCompleted.WaitOne(); + // prevent the process from exiting until cleanup is done: + args.Cancel = true; + } + + private static void Pump(Stream src, Stream dest) + { + byte[] buffer = new byte[2048]; + int n; + while ((n = src.Read(buffer, 0, buffer.Length)) > 0) + { + dest.Write(buffer, 0, n); + } + } + + + static string Compress(string fname, bool forceOverwrite) + { + var outFname = fname + ".gz"; + if (File.Exists(outFname)) + { + if (forceOverwrite) + File.Delete(outFname); + else + return null; + } + + using (var fs = File.OpenRead(fname)) + { + using (var output = File.Create(outFname)) + { + using (var compressor = new Ionic.Zlib.GZipStream(output, Ionic.Zlib.CompressionMode.Compress)) + { + compressor.FileName = fname; + var fi = new FileInfo(fname); + compressor.LastModified = fi.LastWriteTime; + Pump(fs, compressor); + } + } + } + return outFname; + } + + + public static string Decompress(string fname, bool forceOverwrite) + { + var outFname = Path.GetFileNameWithoutExtension(fname); + if (File.Exists(outFname)) + { + if (forceOverwrite) + File.Delete(outFname); + else + return null; + } + + using (var fs = File.OpenRead(fname)) + { + using (var decompressor = new Ionic.Zlib.GZipStream(fs, Ionic.Zlib.CompressionMode.Decompress)) + { + using (var output = File.Create(outFname)) + { + Pump(decompressor, output); + } + } + } + return outFname; + } + + + public static void Main(String[] args) + { + bool keepOriginal = false; + bool force = false; + bool verbose = false; + if (args.Length < 1) Usage(); + + if (!File.Exists(args[0])) + { + System.Console.WriteLine("That file ({0}) does not exist.", args[0]); + return; + } + + Console.CancelKeyPress += CtrlC_Handler; + + try + { + for (int i = 1; i < args.Length; i++) + { + switch (args[i]) + { + case "-keep": + keepOriginal = true; + break; + + case "-f": + force = true; + break; + + case "-v": + verbose = true; + break; + + default: + throw new ArgumentException(args[i]); + } + } + + string fname = args[0]; + bool decompress = fname.ToLower().EndsWith(".gz"); + string result = decompress + ? Decompress(fname, force) + : Compress(fname, force); + + if (result==null) + { + Console.WriteLine("No action taken. The file already exists."); + } + else + { + if (verbose) + { + var fi1 = new FileInfo(fname); + var fi2 = new FileInfo(result); + if (decompress) + { + Console.WriteLine(" Original : {0} bytes", fi1.Length); + Console.WriteLine(" Decompressed: {0} bytes", fi2.Length); + Console.WriteLine(" Comp Ratio : {0:N1}%", 100.0 - (fi1.Length/(0.01 * fi2.Length))); + } + else + { + Console.WriteLine(" Original : {0} bytes", fi1.Length); + Console.WriteLine(" Compressed: {0} bytes", fi2.Length); + Console.WriteLine(" Comp Ratio: {0:N1}%", 100.0 - (fi2.Length/(0.01 * fi1.Length))); + } + } + + if (!keepOriginal) + { + File.Delete(fname); + } + } + + } + catch (System.Exception ex1) + { + System.Console.WriteLine("Exception: " + ex1); + } + } + } +} diff --git a/src/Tools/GZip/GZip.csproj b/old/src/Tools/GZip/GZip.csproj similarity index 97% rename from src/Tools/GZip/GZip.csproj rename to old/src/Tools/GZip/GZip.csproj index 0c87ee2..dc1fd46 100644 --- a/src/Tools/GZip/GZip.csproj +++ b/old/src/Tools/GZip/GZip.csproj @@ -1,87 +1,87 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {52542D59-25EC-4EE4-8AF2-85DE50C70EA6} - Exe - Properties - GZip - GZip - - - - - 3.5 - - - - - - - - - false - ..\..\Ionic.snk - v4.0 - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - AllRules.ruleset - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - AllRules.ruleset - - - - - - - - - - SolutionInfo.cs - - - - - {9816BA86-9250-4C00-A912-25F07F8677D1} - Zlib DLL - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {52542D59-25EC-4EE4-8AF2-85DE50C70EA6} + Exe + Properties + GZip + GZip + + + + + 3.5 + + + + + + + + + false + ..\..\Ionic.snk + v4.0 + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + AllRules.ruleset + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + AllRules.ruleset + + + + + + + + + + SolutionInfo.cs + + + + + {9816BA86-9250-4C00-A912-25F07F8677D1} + Zlib DLL + + + + \ No newline at end of file diff --git a/src/Tools/UnZip/Properties/AssemblyInfo.cs b/old/src/Tools/UnZip/Properties/AssemblyInfo.cs similarity index 100% rename from src/Tools/UnZip/Properties/AssemblyInfo.cs rename to old/src/Tools/UnZip/Properties/AssemblyInfo.cs diff --git a/src/Tools/UnZip/UnZip.cs b/old/src/Tools/UnZip/UnZip.cs similarity index 97% rename from src/Tools/UnZip/UnZip.cs rename to old/src/Tools/UnZip/UnZip.cs index 296820e..54523e2 100644 --- a/src/Tools/UnZip/UnZip.cs +++ b/old/src/Tools/UnZip/UnZip.cs @@ -1,353 +1,353 @@ -// UnZip.cs -// -// ---------------------------------------------------------------------- -// Copyright (c) 2006, 2007, 2008 Microsoft Corporation. All rights reserved. -// -// This example is released under the Microsoft Public License . -// See the license.txt file accompanying this release for -// full details. -// -// ---------------------------------------------------------------------- -// -// This command-line utility unzips a zipfile into the specified directory, -// or lists the entries in a zipfile without unzipping. -// -// compile with: -// csc /target:exe /r:Ionic.Zip.dll /out:UnZip.exe UnZip.cs -// -// created -// Wed, 29 Mar 2006 14:36 -// - - -using System; -using System.Collections.Generic; -using Ionic.Zip; - -namespace Ionic.Zip.Examples -{ - public class UnZip - { - - private static void Usage() - { - Console.WriteLine("UnZip.exe: extract or list or test the entries in a zip file."); - Console.WriteLine(" Depends on Ionic's DotNetZip library. This is version {0} of the utility.", - System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()); - Console.WriteLine("usage:\n" + - " unzip [options] [...] \n" + - " unzips all files in the archive.\n" + - " options:\n" + - " - emit extracted content to stdout.\n" + - " -o overwrite existing files if necessary.\n" + - " -f flatten directory structure when extracting.\n" + - " -p specify password for extraction.\n" + - " -t test the file for consistency. \n" + - " -q operate quietly (no verbose messages). \n" + - " -cp extract with the specified numeric codepage. Only do this if you\n" + - " know the codepage, and it is neither IBM437 nor UTF-8. If the \n" + - " codepage you specify here is different than the codepage of \n" + - " the cmd.exe, then the verbose messages will look odd, but the \n" + - " files will be extracted properly.\n" + - " -d unpack to the specified directory. If none provided, it will\n" + - " unzip to the current directory.\n" + - " unzip only the specified filename.\n\n" + - " unzip -l \n" + - " lists the entries in the zip archive.\n" + - " unzip -i \n" + - " displays full information about all the entries in the zip archive.\n" + - " unzip -t [-p ] [-cp ]\n" + - " tests the zip archive.\n" + - " unzip -r \n" + - " repairs the zip archive - rewriting the directory.\n" + - " unzip -?\n" + - " displays this message.\n" - ); - Environment.Exit(1); - } - - enum ActionDesired - { - Extract, - List, - Info, - Test, - Repair - } - - public static void Main(String[] args) - { - int startArgs = 0; - int i; - int codePage = 0; - string zipfile = null; - string targdir = null; - string password = null; - List entriesToExtract = new List(); - bool extractToConsole = false; - ActionDesired action = ActionDesired.Extract; - ExtractExistingFileAction behaviorForExistingFile = ExtractExistingFileAction.DoNotOverwrite; - bool wantQuiet = false; - bool wantFlatten = false; - System.IO.Stream bitbucket = System.IO.Stream.Null; - System.IO.Stream outstream = null; - - // because the comments and filenames on zip entries may be UTF-8 - //System.Console.OutputEncoding = new System.Text.UTF8Encoding(); - - if (args.Length == 0) Usage(); - if (args[0] == "-") - { - extractToConsole = true; - outstream = Console.OpenStandardOutput(); - startArgs = 1; - } - - for (i = startArgs; i < args.Length; i++) - { - switch (args[i]) - { - case "-cp": - i++; - if (args.Length <= i) Usage(); - if (codePage != 0) Usage(); - System.Int32.TryParse(args[i], out codePage); - break; - - case "-d": - i++; - if (args.Length <= i) Usage(); - if (targdir != null) Usage(); - if (extractToConsole) Usage(); - if (action != ActionDesired.Extract) Usage(); - targdir = args[i]; - break; - - case "-f": - wantFlatten = true; - if (action != ActionDesired.Extract) Usage(); - break; - - case "-i": - if (password != null) Usage(); - if (targdir != null) Usage(); - if (wantQuiet) Usage(); - if (entriesToExtract.Count > 0) Usage(); - action = ActionDesired.Info; - break; - - case "-l": - if (password != null) Usage(); - if (targdir != null) Usage(); - if (wantQuiet) Usage(); - if (entriesToExtract.Count > 0) Usage(); - if (behaviorForExistingFile == ExtractExistingFileAction.OverwriteSilently) Usage(); - action = ActionDesired.List; - break; - - case "-o": - behaviorForExistingFile = ExtractExistingFileAction.OverwriteSilently; - if (action != ActionDesired.Extract) Usage(); - break; - - case "-r": - if (wantFlatten == true) Usage(); - if (targdir != null) Usage(); - if (action == ActionDesired.Test) Usage(); - action = ActionDesired.Repair; - break; - - case "-p": - i++; - if (args.Length <= i) Usage(); - if (password != null) Usage(); - password = args[i]; - break; - - case "-q": - if (action == ActionDesired.List) Usage(); - wantQuiet = true; - break; - - case "-t": - action = ActionDesired.Test; - if (targdir != null) Usage(); - //if (wantQuiet) Usage(); - if (entriesToExtract.Count > 0) Usage(); - break; - - case "-?": - Usage(); - break; - - default: - // positional args - if (zipfile == null) - zipfile = args[i]; - else if (action != ActionDesired.Extract) Usage(); - else entriesToExtract.Add(args[i]); - break; - } - - } - if (zipfile == null) - { - Console.WriteLine("unzip: No zipfile specified.\n"); - Usage(); - } - - if (!System.IO.File.Exists(zipfile)) - { - Console.WriteLine("unzip: That zip file does not exist!\n"); - Usage(); - } - - if (targdir == null) targdir = "."; - - try - { - if (action == ActionDesired.Repair) - { - ZipFile.FixZipDirectory(zipfile); - } - else - { - var options = new ReadOptions { - Encoding = (codePage != 0) - ? System.Text.Encoding.GetEncoding(codePage) - : null - }; - using (ZipFile zip = ZipFile.Read(zipfile, options)) - { - - if (entriesToExtract.Count > 0) - { - // extract specified entries - foreach (var entryToExtract in entriesToExtract) - { - // find the entry - ZipEntry e= zip[entryToExtract]; - if (e == null) - { - System.Console.WriteLine(" entry ({0}) does not exist in the zip archive.", entryToExtract); - } - else - { - if (wantFlatten) e.FileName = System.IO.Path.GetFileName(e.FileName); - - if (password == null) - { - if (e.UsesEncryption) - System.Console.WriteLine(" That entry ({0}) requires a password to extract.", entryToExtract); - else if (extractToConsole) - e.Extract(outstream); - else - e.Extract(targdir, behaviorForExistingFile); - } - else - { - if (extractToConsole) - e.ExtractWithPassword(outstream, password); - else - e.ExtractWithPassword(targdir, behaviorForExistingFile, password); - } - } - } - } - else if (action == ActionDesired.Info) - { - System.Console.WriteLine("{0}", zip.Info); - } - else - { - // extract all, or list, or test - - // The logic here does almost the same thing as the ExtractAll() method - // on the ZipFile class. But in this case we *could* have control over - // it, for example only extract files of a certain type, or whose names - // matched a certain pattern, or whose lastmodified times fit a certain - // condition, or use a different password for each entry, etc. We can - // also display status for each entry, as here. - - Int64 totalUncompressedSize = 0; - bool header = true; - foreach (ZipEntry e in zip.EntriesSorted) - { - if (!wantQuiet) - { - if (header) - { - System.Console.WriteLine("Zipfile: {0}", zip.Name); - if ((zip.Comment != null) && (zip.Comment != "")) - System.Console.WriteLine("Comment: {0}", zip.Comment); - - System.Console.WriteLine("\n{1,-22} {2,10} {3,5} {4,10} {5,3} {6,8} {0}", - "Filename", "Modified", "Size", "Ratio", "Packed", "pw?", "CRC"); - System.Console.WriteLine(new System.String('-', 80)); - header = false; - } - totalUncompressedSize += e.UncompressedSize; - System.Console.WriteLine("{1,-22} {2,10} {3,5:F0}% {4,10} {5,3} {6:X8} {0}", - e.FileName, - e.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), - e.UncompressedSize, - e.CompressionRatio, - e.CompressedSize, - (e.UsesEncryption) ? "Y" : "N", - e.Crc); - - if ((e.Comment != null) && (e.Comment != "")) - System.Console.WriteLine(" Comment: {0}", e.Comment); - } - - if (action == ActionDesired.Extract) - { - if (e.UsesEncryption) - { - if (password == null) - System.Console.WriteLine("unzip: {0}: Cannot extract this entry without a password.", e.FileName); - else - { - if (wantFlatten) e.FileName = System.IO.Path.GetFileName(e.FileName); - if (extractToConsole) - e.ExtractWithPassword(outstream, password); - else - e.ExtractWithPassword(targdir, behaviorForExistingFile, password); - } - } - else - { - if (wantFlatten) e.FileName = System.IO.Path.GetFileName(e.FileName); - if (extractToConsole) - e.Extract(outstream); - else - e.Extract(targdir, behaviorForExistingFile); - - } - } - else if (action == ActionDesired.Test) - { - e.ExtractWithPassword(bitbucket, password); - } - - } // foreach - - if (!wantQuiet) - { - System.Console.WriteLine(new System.String('-', 80)); - System.Console.WriteLine("{1,-22} {2,10} {3,5} {4,10} {5,3} {6,8} {0}", - zip.Entries.Count.ToString() + " files", "", totalUncompressedSize, "", "", "", ""); - } - } // else (extract all) - } // end using(), the underlying file is closed. - } - } - catch (System.Exception ex1) - { - System.Console.Error.WriteLine("exception: " + ex1); - } - - Console.WriteLine(); - } - } -} +// UnZip.cs +// +// ---------------------------------------------------------------------- +// Copyright (c) 2006, 2007, 2008 Microsoft Corporation. All rights reserved. +// +// This example is released under the Microsoft Public License . +// See the license.txt file accompanying this release for +// full details. +// +// ---------------------------------------------------------------------- +// +// This command-line utility unzips a zipfile into the specified directory, +// or lists the entries in a zipfile without unzipping. +// +// compile with: +// csc /target:exe /r:Ionic.Zip.dll /out:UnZip.exe UnZip.cs +// +// created +// Wed, 29 Mar 2006 14:36 +// + + +using System; +using System.Collections.Generic; +using Ionic.Zip; + +namespace Ionic.Zip.Examples +{ + public class UnZip + { + + private static void Usage() + { + Console.WriteLine("UnZip.exe: extract or list or test the entries in a zip file."); + Console.WriteLine(" Depends on Ionic's DotNetZip library. This is version {0} of the utility.", + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()); + Console.WriteLine("usage:\n" + + " unzip [options] [...] \n" + + " unzips all files in the archive.\n" + + " options:\n" + + " - emit extracted content to stdout.\n" + + " -o overwrite existing files if necessary.\n" + + " -f flatten directory structure when extracting.\n" + + " -p specify password for extraction.\n" + + " -t test the file for consistency. \n" + + " -q operate quietly (no verbose messages). \n" + + " -cp extract with the specified numeric codepage. Only do this if you\n" + + " know the codepage, and it is neither IBM437 nor UTF-8. If the \n" + + " codepage you specify here is different than the codepage of \n" + + " the cmd.exe, then the verbose messages will look odd, but the \n" + + " files will be extracted properly.\n" + + " -d unpack to the specified directory. If none provided, it will\n" + + " unzip to the current directory.\n" + + " unzip only the specified filename.\n\n" + + " unzip -l \n" + + " lists the entries in the zip archive.\n" + + " unzip -i \n" + + " displays full information about all the entries in the zip archive.\n" + + " unzip -t [-p ] [-cp ]\n" + + " tests the zip archive.\n" + + " unzip -r \n" + + " repairs the zip archive - rewriting the directory.\n" + + " unzip -?\n" + + " displays this message.\n" + ); + Environment.Exit(1); + } + + enum ActionDesired + { + Extract, + List, + Info, + Test, + Repair + } + + public static void Main(String[] args) + { + int startArgs = 0; + int i; + int codePage = 0; + string zipfile = null; + string targdir = null; + string password = null; + List entriesToExtract = new List(); + bool extractToConsole = false; + ActionDesired action = ActionDesired.Extract; + ExtractExistingFileAction behaviorForExistingFile = ExtractExistingFileAction.DoNotOverwrite; + bool wantQuiet = false; + bool wantFlatten = false; + System.IO.Stream bitbucket = System.IO.Stream.Null; + System.IO.Stream outstream = null; + + // because the comments and filenames on zip entries may be UTF-8 + //System.Console.OutputEncoding = new System.Text.UTF8Encoding(); + + if (args.Length == 0) Usage(); + if (args[0] == "-") + { + extractToConsole = true; + outstream = Console.OpenStandardOutput(); + startArgs = 1; + } + + for (i = startArgs; i < args.Length; i++) + { + switch (args[i]) + { + case "-cp": + i++; + if (args.Length <= i) Usage(); + if (codePage != 0) Usage(); + System.Int32.TryParse(args[i], out codePage); + break; + + case "-d": + i++; + if (args.Length <= i) Usage(); + if (targdir != null) Usage(); + if (extractToConsole) Usage(); + if (action != ActionDesired.Extract) Usage(); + targdir = args[i]; + break; + + case "-f": + wantFlatten = true; + if (action != ActionDesired.Extract) Usage(); + break; + + case "-i": + if (password != null) Usage(); + if (targdir != null) Usage(); + if (wantQuiet) Usage(); + if (entriesToExtract.Count > 0) Usage(); + action = ActionDesired.Info; + break; + + case "-l": + if (password != null) Usage(); + if (targdir != null) Usage(); + if (wantQuiet) Usage(); + if (entriesToExtract.Count > 0) Usage(); + if (behaviorForExistingFile == ExtractExistingFileAction.OverwriteSilently) Usage(); + action = ActionDesired.List; + break; + + case "-o": + behaviorForExistingFile = ExtractExistingFileAction.OverwriteSilently; + if (action != ActionDesired.Extract) Usage(); + break; + + case "-r": + if (wantFlatten == true) Usage(); + if (targdir != null) Usage(); + if (action == ActionDesired.Test) Usage(); + action = ActionDesired.Repair; + break; + + case "-p": + i++; + if (args.Length <= i) Usage(); + if (password != null) Usage(); + password = args[i]; + break; + + case "-q": + if (action == ActionDesired.List) Usage(); + wantQuiet = true; + break; + + case "-t": + action = ActionDesired.Test; + if (targdir != null) Usage(); + //if (wantQuiet) Usage(); + if (entriesToExtract.Count > 0) Usage(); + break; + + case "-?": + Usage(); + break; + + default: + // positional args + if (zipfile == null) + zipfile = args[i]; + else if (action != ActionDesired.Extract) Usage(); + else entriesToExtract.Add(args[i]); + break; + } + + } + if (zipfile == null) + { + Console.WriteLine("unzip: No zipfile specified.\n"); + Usage(); + } + + if (!System.IO.File.Exists(zipfile)) + { + Console.WriteLine("unzip: That zip file does not exist!\n"); + Usage(); + } + + if (targdir == null) targdir = "."; + + try + { + if (action == ActionDesired.Repair) + { + ZipFile.FixZipDirectory(zipfile); + } + else + { + var options = new ReadOptions { + Encoding = (codePage != 0) + ? System.Text.Encoding.GetEncoding(codePage) + : null + }; + using (ZipFile zip = ZipFile.Read(zipfile, options)) + { + + if (entriesToExtract.Count > 0) + { + // extract specified entries + foreach (var entryToExtract in entriesToExtract) + { + // find the entry + ZipEntry e= zip[entryToExtract]; + if (e == null) + { + System.Console.WriteLine(" entry ({0}) does not exist in the zip archive.", entryToExtract); + } + else + { + if (wantFlatten) e.FileName = System.IO.Path.GetFileName(e.FileName); + + if (password == null) + { + if (e.UsesEncryption) + System.Console.WriteLine(" That entry ({0}) requires a password to extract.", entryToExtract); + else if (extractToConsole) + e.Extract(outstream); + else + e.Extract(targdir, behaviorForExistingFile); + } + else + { + if (extractToConsole) + e.ExtractWithPassword(outstream, password); + else + e.ExtractWithPassword(targdir, behaviorForExistingFile, password); + } + } + } + } + else if (action == ActionDesired.Info) + { + System.Console.WriteLine("{0}", zip.Info); + } + else + { + // extract all, or list, or test + + // The logic here does almost the same thing as the ExtractAll() method + // on the ZipFile class. But in this case we *could* have control over + // it, for example only extract files of a certain type, or whose names + // matched a certain pattern, or whose lastmodified times fit a certain + // condition, or use a different password for each entry, etc. We can + // also display status for each entry, as here. + + Int64 totalUncompressedSize = 0; + bool header = true; + foreach (ZipEntry e in zip.EntriesSorted) + { + if (!wantQuiet) + { + if (header) + { + System.Console.WriteLine("Zipfile: {0}", zip.Name); + if ((zip.Comment != null) && (zip.Comment != "")) + System.Console.WriteLine("Comment: {0}", zip.Comment); + + System.Console.WriteLine("\n{1,-22} {2,10} {3,5} {4,10} {5,3} {6,8} {0}", + "Filename", "Modified", "Size", "Ratio", "Packed", "pw?", "CRC"); + System.Console.WriteLine(new System.String('-', 80)); + header = false; + } + totalUncompressedSize += e.UncompressedSize; + System.Console.WriteLine("{1,-22} {2,10} {3,5:F0}% {4,10} {5,3} {6:X8} {0}", + e.FileName, + e.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), + e.UncompressedSize, + e.CompressionRatio, + e.CompressedSize, + (e.UsesEncryption) ? "Y" : "N", + e.Crc); + + if ((e.Comment != null) && (e.Comment != "")) + System.Console.WriteLine(" Comment: {0}", e.Comment); + } + + if (action == ActionDesired.Extract) + { + if (e.UsesEncryption) + { + if (password == null) + System.Console.WriteLine("unzip: {0}: Cannot extract this entry without a password.", e.FileName); + else + { + if (wantFlatten) e.FileName = System.IO.Path.GetFileName(e.FileName); + if (extractToConsole) + e.ExtractWithPassword(outstream, password); + else + e.ExtractWithPassword(targdir, behaviorForExistingFile, password); + } + } + else + { + if (wantFlatten) e.FileName = System.IO.Path.GetFileName(e.FileName); + if (extractToConsole) + e.Extract(outstream); + else + e.Extract(targdir, behaviorForExistingFile); + + } + } + else if (action == ActionDesired.Test) + { + e.ExtractWithPassword(bitbucket, password); + } + + } // foreach + + if (!wantQuiet) + { + System.Console.WriteLine(new System.String('-', 80)); + System.Console.WriteLine("{1,-22} {2,10} {3,5} {4,10} {5,3} {6,8} {0}", + zip.Entries.Count.ToString() + " files", "", totalUncompressedSize, "", "", "", ""); + } + } // else (extract all) + } // end using(), the underlying file is closed. + } + } + catch (System.Exception ex1) + { + System.Console.Error.WriteLine("exception: " + ex1); + } + + Console.WriteLine(); + } + } +} diff --git a/src/Tools/UnZip/UnZip.csproj b/old/src/Tools/UnZip/UnZip.csproj similarity index 97% rename from src/Tools/UnZip/UnZip.csproj rename to old/src/Tools/UnZip/UnZip.csproj index ad4af55..042b7d2 100644 --- a/src/Tools/UnZip/UnZip.csproj +++ b/old/src/Tools/UnZip/UnZip.csproj @@ -1,88 +1,88 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453} - Exe - Properties - UnZip - UnZip - - - - - 3.5 - - - - - - - - - false - ..\..\Ionic.snk - v4.0 - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - AllRules.ruleset - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - AllRules.ruleset - - - - - - - - - - - Properties\SolutionInfo.cs - - - - - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} - Zip DLL - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453} + Exe + Properties + UnZip + UnZip + + + + + 3.5 + + + + + + + + + false + ..\..\Ionic.snk + v4.0 + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + AllRules.ruleset + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + AllRules.ruleset + + + + + + + + + + + Properties\SolutionInfo.cs + + + + + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} + Zip DLL + + + + \ No newline at end of file diff --git a/src/Tools/WinFormsApp/About.rtf b/old/src/Tools/WinFormsApp/About.rtf similarity index 99% rename from src/Tools/WinFormsApp/About.rtf rename to old/src/Tools/WinFormsApp/About.rtf index 7ec293c..5f99b68 100644 --- a/src/Tools/WinFormsApp/About.rtf +++ b/old/src/Tools/WinFormsApp/About.rtf @@ -1,7099 +1,7099 @@ -{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff0\deff0\stshfdbch0\stshfloch31506\stshfhich31506\stshfbi31506\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;} -{\f36\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria;}{\f37\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}{\f38\fbidi \fswiss\fcharset0\fprq2{\*\panose 020b0604030504040204}Tahoma;} -{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\fhimajor\f31502\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria;}{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f39\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} -{\f40\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\f42\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f43\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f44\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\f45\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f46\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f47\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f379\fbidi \froman\fcharset238\fprq2 Cambria Math CE;} -{\f380\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;}{\f382\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f383\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f386\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;} -{\f387\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese);}{\f399\fbidi \froman\fcharset238\fprq2 Cambria CE;}{\f400\fbidi \froman\fcharset204\fprq2 Cambria Cyr;}{\f402\fbidi \froman\fcharset161\fprq2 Cambria Greek;} -{\f403\fbidi \froman\fcharset162\fprq2 Cambria Tur;}{\f406\fbidi \froman\fcharset186\fprq2 Cambria Baltic;}{\f407\fbidi \froman\fcharset163\fprq2 Cambria (Vietnamese);}{\f409\fbidi \fswiss\fcharset238\fprq2 Calibri CE;} -{\f410\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\f412\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\f413\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;}{\f416\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;} -{\f417\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}{\f419\fbidi \fswiss\fcharset238\fprq2 Tahoma CE;}{\f420\fbidi \fswiss\fcharset204\fprq2 Tahoma Cyr;}{\f422\fbidi \fswiss\fcharset161\fprq2 Tahoma Greek;} -{\f423\fbidi \fswiss\fcharset162\fprq2 Tahoma Tur;}{\f424\fbidi \fswiss\fcharset177\fprq2 Tahoma (Hebrew);}{\f425\fbidi \fswiss\fcharset178\fprq2 Tahoma (Arabic);}{\f426\fbidi \fswiss\fcharset186\fprq2 Tahoma Baltic;} -{\f427\fbidi \fswiss\fcharset163\fprq2 Tahoma (Vietnamese);}{\f428\fbidi \fswiss\fcharset222\fprq2 Tahoma (Thai);}{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} -{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} -{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} -{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} -{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhimajor\f31528\fbidi \froman\fcharset238\fprq2 Cambria CE;} -{\fhimajor\f31529\fbidi \froman\fcharset204\fprq2 Cambria Cyr;}{\fhimajor\f31531\fbidi \froman\fcharset161\fprq2 Cambria Greek;}{\fhimajor\f31532\fbidi \froman\fcharset162\fprq2 Cambria Tur;} -{\fhimajor\f31535\fbidi \froman\fcharset186\fprq2 Cambria Baltic;}{\fhimajor\f31536\fbidi \froman\fcharset163\fprq2 Cambria (Vietnamese);}{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} -{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} -{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} -{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} -{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} -{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} -{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} -{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE;} -{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;} -{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} -{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} -{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} -{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0; -\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192; -\caccentone\ctint255\cshade191\red54\green95\blue145;\caccentone\ctint255\cshade255\red79\green129\blue189;\ctexttwo\ctint255\cshade191\red23\green54\blue93;\chyperlink\ctint255\cshade255\red0\green0\blue255;}{\*\defchp \f31506\fs22 }{\*\defpap -\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 -\af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext0 \sqformat \spriority0 Normal;}{\s1\ql \li0\ri0\sb480\sl276\slmult1 -\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af0\afs28\alang1025 \ltrch\fcs0 \b\fs28\cf17\lang1033\langfe1033\loch\f31502\hich\af31502\dbch\af31501\cgrid\langnp1033\langfenp1033 -\sbasedon0 \snext0 \slink15 \sqformat \spriority9 \styrsid11291379 heading 1;}{\s2\ql \li0\ri0\sb200\sl276\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af0\afs26\alang1025 -\ltrch\fcs0 \b\fs26\cf18\lang1033\langfe1033\loch\f31502\hich\af31502\dbch\af31501\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \slink16 \sunhideused \sqformat \spriority9 \styrsid7287596 heading 2;}{\s3\ql \li0\ri0\sb200\sl276\slmult1 -\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel2\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af0\afs22\alang1025 \ltrch\fcs0 \b\fs22\cf18\lang1033\langfe1033\loch\f31502\hich\af31502\dbch\af31501\cgrid\langnp1033\langfenp1033 -\sbasedon0 \snext0 \slink17 \sunhideused \sqformat \spriority9 \styrsid12153459 heading 3;}{\*\cs10 \additive \ssemihidden \sunhideused \spriority1 Default Paragraph Font;}{\* -\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa200\sl276\slmult1 -\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31506\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext11 \ssemihidden \sunhideused Normal Table;}{\*\cs15 \additive -\rtlch\fcs1 \ab\af0\afs28 \ltrch\fcs0 \b\fs28\cf17\loch\f31502\hich\af31502\dbch\af31501 \sbasedon10 \slink1 \slocked \spriority9 \styrsid11291379 Heading 1 Char;}{\*\cs16 \additive \rtlch\fcs1 \ab\af0\afs26 \ltrch\fcs0 -\b\fs26\cf18\loch\f31502\hich\af31502\dbch\af31501 \sbasedon10 \slink2 \slocked \spriority9 \styrsid7287596 Heading 2 Char;}{\*\cs17 \additive \rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\cf18\loch\f31502\hich\af31502\dbch\af31501 -\sbasedon10 \slink3 \slocked \spriority9 \styrsid12153459 Heading 3 Char;}{\s18\ql \li0\ri0\sa300\widctlpar\brdrb\brdrs\brdrw20\brsp80\brdrcf18 \wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\contextualspace \rtlch\fcs1 -\af0\afs52\alang1025 \ltrch\fcs0 \fs52\expnd1\expndtw5\cf19\lang1033\langfe1033\kerning28\loch\f31502\hich\af31502\dbch\af31501\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \slink19 \sqformat \spriority10 \styrsid7287596 Title;}{\*\cs19 \additive -\rtlch\fcs1 \af0\afs52 \ltrch\fcs0 \fs52\expnd1\expndtw5\cf19\kerning28\loch\f31502\hich\af31502\dbch\af31501 \sbasedon10 \slink18 \slocked \spriority10 \styrsid7287596 Title Char;}{ -\s20\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af38\afs16\alang1025 \ltrch\fcs0 \f38\fs16\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 -\sbasedon0 \snext20 \slink21 \ssemihidden \sunhideused \styrsid2837595 Balloon Text;}{\*\cs21 \additive \rtlch\fcs1 \af38\afs16 \ltrch\fcs0 \f38\fs16 \sbasedon10 \slink20 \slocked \ssemihidden \styrsid2837595 Balloon Text Char;}{\*\cs22 \additive -\rtlch\fcs1 \af0 \ltrch\fcs0 \ul\cf20 \sbasedon10 \sunhideused \styrsid10709506 Hyperlink;}}{\*\pgptbl {\pgp\ipgp2\itap2\li0\ri0\sb0\sa0}{\pgp\ipgp4\itap1\li0\ri0\sb0\sa0}{\pgp\ipgp6\itap0\li0\ri0\sb0\sa0}{\pgp\ipgp8\itap1\li0\ri0\sb0\sa0}{\pgp\ipgp0 -\itap0\li0\ri0\sb0\sa0}{\pgp\ipgp10\itap0\li0\ri0\sb0\sa0}{\pgp\ipgp9\itap0\li0\ri0\sb0\sa0}{\pgp\ipgp5\itap1\li0\ri0\sb0\sa0}{\pgp\ipgp1\itap2\li0\ri0\sb0\sa0}{\pgp\ipgp7\itap0\li240\ri240\sb0\sa0}}{\*\rsidtbl \rsid1053480\rsid1774901\rsid2168267 -\rsid2837595\rsid4327730\rsid6647841\rsid6830883\rsid6895449\rsid6951347\rsid7287596\rsid7564013\rsid8347551\rsid10098615\rsid10709506\rsid11291379\rsid11567049\rsid12153459\rsid12654957\rsid13461213\rsid13582222\rsid13845429\rsid14751135\rsid14842421 -\rsid15034817\rsid16526446}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\author Dino}{\operator Dino}{\creatim\yr2011\mo5\dy16\min48} -{\revtim\yr2011\mo6\dy15\hr7\min39}{\version17}{\edmins79}{\nofpages4}{\nofwords1352}{\nofchars7713}{\nofcharsws9047}{\vern49255}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}} -\paperw12240\paperh15840\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect -\widowctrl\ftnbj\aenddoc\trackmoves0\trackformatting1\donotembedsysfont1\relyonvml0\donotembedlingdata0\grfdocevents0\validatexml1\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors1\noxlattoyen -\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1440\dgvorigin1440\dghshow1\dgvshow1 -\jexpand\viewkind1\viewscale125\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\allowfieldendsel\wrppunct -\asianbrkrule\rsidroot7287596\newtblstyruls\nogrowautofit\usenormstyforlist\noindnmbrts\felnbrelev\nocxsptable\indrlsweleven\noafcnsttbl\afelev\utinl\hwelev\spltpgpar\notcvasp\notbrkcnstfrctbl\notvatxbx\krnprsnet\cachedcolbal \nouicompat \fet0 -{\*\wgrffmtfilter 2450}\nofeaturethrottle1\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\endnhere\sectlinegrid360\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang -{\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang -{\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}} -\pard\plain \ltrpar\s1\ql \li0\ri0\sb480\sl276\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0\pararsid11291379 \rtlch\fcs1 \ab\af0\afs28\alang1025 \ltrch\fcs0 -\b\fs28\cf17\lang1033\langfe1033\loch\af31502\hich\af31502\dbch\af31501\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049 \hich\af31502\dbch\af31501\loch\f31502 About DotNetZip }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid7287596 - -\par }\pard\plain \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11567049 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { -\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049 This is DotNetZip, a free zip tool. It reads or creates zip files. The tool is built on the DotNetZip library. -\par This zip tool and the library that it uses are part of the DotNetZip project, an open-source effort to build a zip library and tools for .NET. In addition to the library and the tool, the DotNetZip project delivers various command-line tools for creating - and unpacking zip files. -\par The DotNetZip library enables any .NET application to read and write ZIP files, simply and easily. This graphical tool is just one example of the things you can build with the library. -\par The DotNetZip library supports many advanced -ZIP features like ZIP64, WinZip-compatible AES encryption, Unicode or arbitrary code pages, self-extracting archives, archive and entry comments, split archives, and more. DotNetZip has a simple and clean programming interface, which takes advantage of n -ice .NET features like eventing and generic collections. There is a full helpfile with plenty of code examples to get you started. -\par DotNetZip is really nice to use with .NET apps, but it can also be used from Powershell scripts, as well as any COM-compliant - language or environment. For example, you can write VBScript code that uses DotNetZip, to script the creation of AES-encrypted ZIP files. -\par DotNetZip is CLS-compliant, FxCop-approved, fair-trade, color-blind, family-friendly, low-fat, and totally free of co -st. The library can be used from any .NET programming language. This library runs on the .NET Framework. In particular, this tool runs only on the desktop Framework. DotNetZip requires .NET 4.0 at - a minimum. -\par The library and this tool are produced in an open source project hosted at CodePlex: http://}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049\charrsid11567049 }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049 DotNetZip.codeplex.com/. -\par DotNetZip is donationware. This tool and the library that supports it are free to use, but if you like the tool or library an -d find it them useful, you are encouraged to donate. Proceeds benefit a charity. (which may be me, if I am unemployed). To learn more: http://cheeso.members.winisp.net/DotNetZipDonate.aspx -\par }\pard\plain \ltrpar\s2\ql \li0\ri0\sb200\sl276\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid11567049 \rtlch\fcs1 \ab\af0\afs26\alang1025 \ltrch\fcs0 -\b\fs26\cf18\lang1033\langfe1033\loch\af31502\hich\af31502\dbch\af31501\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049 \hich\af31502\dbch\af31501\loch\f31502 Licensing. -\par }\pard\plain \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11567049 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { -\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049 DotNetZip is licensed under the MS-PL. -\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid11567049 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid11567049\charrsid11567049 Microsoft Public License (Ms-PL) -\par This license governs use of the accompanying software, DotNetZip ("the software"). If you use the software, you accept this license. If you do not accept the license, do not use the software. -\par 1. Definitions -\par The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. -\par A "contribution" is the original software, or any additions or changes to the software. -\par A "contributor" is any person that distributes its contribution under this license. -\par "Licensed patents" are a contributor's patent claims that read directly on its contribution. -\par 2. Grant of Rights -\par (A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, e -ach contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. -\par (B) Patent Grant- Su -bject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, impor -t, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. -\par 3. Conditions and Limitations -\par (A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. -\par (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. -\par (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. -\par (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this lic -ense with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. -\par (E) The software is licensed "as-is." You bear the risk of using it. The contrib -utors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of m -erchantability, fitness for a particular purpose and non-infringement. -\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11567049 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049 -DotNetZip is based in part on code derived from jzlib, which itself is derived from ZLIB, which are both licensed separately. -\par The following applies to ZLIB: -\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid11567049 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid11567049\charrsid11567049 -Copyright (C) 1995-2004 Jean-loup Gailly and Mark Adler -\par The ZLIB software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. -\par Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: -\par 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. -\par 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. -\par 3. This notice may not be removed or altered from any source distribution. -\par -\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid10709506 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid11567049\charrsid11567049 }{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 -\fs18\insrsid10709506 Jean-loup Gailly }{\field{\*\fldinst {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid10709506 HYPERLINK "mailto:jloup@gzip.org" }{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid14842421 {\*\datafield -00d0c9ea79f9bace118c8200aa004ba90b0200000003000000e0c9ea79f9bace118c8200aa004ba90b440000006d00610069006c0074006f003a006a006c006f0075007000400067007a00690070002e006f00720067000000795881f43b1d7f48af2c825dc485276300000000a5ab000000}}}{\fldrslt {\rtlch\fcs1 -\af0\afs18 \ltrch\fcs0 \cs22\fs18\ul\cf20\insrsid10709506\charrsid12654957 jloup@gzip.org}}}\sectd \ltrsect\linex0\endnhere\sectlinegrid360\sectdefaultcl\sftnbj {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid10709506 \line }{\rtlch\fcs1 \af0\afs18 -\ltrch\fcs0 \fs18\insrsid11567049\charrsid11567049 Mark Adler madler@alumni.caltech.edu -\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11567049 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049 -\par The following applies to jzlib: -\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid11567049 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid11567049\charrsid11567049 -JZlib 0.0.* were released under the GNU LGPL license. Later, we have switched over to a BSD-style license. -\par ------------------------------------------------------------------------------ -\par Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. -\par Redistribution and use in source and binary forms, with or without modification, are permitted provided that th}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid11567049 e following conditions are met:}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 -\fs18\insrsid11567049\charrsid11567049 -\par 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -\par 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -\par 3. The names of the authors may not be used to endorse or promote products derived from this software without specific prior written permission. -\par THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY E -XPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, IND -I -RECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -\par }\pard\plain \ltrpar\s2\ql \li0\ri0\sb200\sl276\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid14842421 \rtlch\fcs1 \ab\af0\afs26\alang1025 \ltrch\fcs0 -\b\fs26\cf18\lang1033\langfe1033\loch\af31502\hich\af31502\dbch\af31501\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid14842421 \hich\af31502\dbch\af31501\loch\f31502 Tool Usage}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049 -\par }\pard\plain \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid14842421 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { -\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid14842421 The tool is pretty self-explanatory. You should be able to figure it out. -\par There are 3 tabs \endash one is used for creating zip files; one is used for reading zip files, and this tab provides this text. -\par In the create tab, the top groupbox lets you specify which files to add into a zip. -\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \lang1024\langfe1024\noproof\insrsid7564013\charrsid16080314 {\*\shppict{\pict{\*\picprop\shplid1026{\sp{\sn shapeType}{\sv 75}}{\sp{\sn fFlipH}{\sv 0}} -{\sp{\sn fFlipV}{\sv 0}}{\sp{\sn fLockAspectRatio}{\sv 1}}{\sp{\sn fLockPosition}{\sv 0}}{\sp{\sn fLockAgainstSelect}{\sv 0}}{\sp{\sn fLockAgainstGrouping}{\sv 0}}{\sp{\sn pictureGray}{\sv 0}}{\sp{\sn pictureBiLevel}{\sv 0}}{\sp{\sn fFilled}{\sv 0}} -{\sp{\sn fNoFillHitTest}{\sv 0}}{\sp{\sn fLine}{\sv 0}}{\sp{\sn wzName}{\sv Picture 1}}{\sp{\sn dhgt}{\sv 251658240}}{\sp{\sn fHidden}{\sv 0}}{\sp{\sn fLayoutInCell}{\sv 1}}}\picscalex74\picscaley74\piccropl0\piccropr0\piccropt0\piccropb0 -\picw15348\pich2275\picwgoal8701\pichgoal1290\pngblip\bliptag-1350385587{\*\blipuid af82c04d624ccb83612fe808581f0552}89504e470d0a1a0a0000000d49484452000002440000005608060000002e6189e3000000017352474200aece1ce90000000467414d410000b18f0bfc61050000 -00097048597300000ec300000ec301c76fa8640000136d49444154785eed9ddf8fdc5615c7e74f2a0f7d19410b1294e5c71b4545fcae0483d40754444a5079e0 -05a112109dd0d252297d40a580a85a409506d2b44a690b22b461b35136844cdadd6edab49b6ce86eb24df34b3af8786ccff51d7bec595fcf7aee7c2c5d653363 -9f7befe79ef1f9eeb967bc2de180000420000108400002734ea035e7f367fa10800004200001084040104438010420000108400002734f2057102dafbc2d3418 -e003f8003e800fe003f8804f3e90a7fc3205914e9c03021080000420000108f846204fe38c0822c4906f4bcf7c2000010840000210300964691d04113e020108 -4000021080c05c114010cdd57233590840000210800004b2082088f00b0840000210800004e69e008268ee5d0000108000042000010820883cf08195d53539f4 -c24bf2d4d3cfd260800fe00353f301bdefe8fd8703023e10401079b08a6b67cfcbfac6a60733610a1080c02c11d0fb4e7fe55ce1901f7ae821d9bb77afdc7bef -bd959ada505b1c10a8830082a80eaa53b6a9828803021080c06e102812443fd9b74ff6efdf2fefbefbaedcbc79b352531b6a4b6d7240c0350104916ba2bb600f -41b40bd0e912021008091409a2fbeebb4fce9f3f2fd7af5f974b972e556a6a436da9cd9d1c3f7ff04199b4eda41fae994d0208a2d95cb7d4a811441e2c225380 -c08c12281244ba4da699a1aa6228be5e6da9cd9d1c2a86b6b7b773dbd5ab57e5dab56b72e5ca95f01c3d7f1e8e4945a2af5c10441e78fb6482a8279d7657fa53 -9f77897efb5d69571a5b461f956d4e1d141d4260a608941144376edc90adad2d274d6d551544cf3c7b50ec76e4b563f2f8ef5e94bd3f7e4aceacbc25efbffffe -5c09a2ca42f1f01e692d1c90d5babcb76efbc1b8eb1144f31884f2e63c05169309a220c5dd6d4ba75797d7e6db2dec37665581d9481fbbb82ed3274c8f10983e -81b282687373535c345782e8d5c56589db6bc74ecac5ff6dc95df73c2e1fffe22fe4e0e1636196c8d74c88ed2571e6ac714271f5802cd429b22c10f50aa20a81 -2d19a70b1be6a45ddb8b6def62e09d54108994c8d6d4725f2de8d7c9da587d38b1590b0c8c42c00b02650491d6fe5cbc78d149535b2e3244b1183aba745256d7 -cec91fffba289f08c4d037f73e29efbcf3eedc6d996986480551a384a25782c8c5c7dd7540736daf7182281004ad96b4a236cc04e9eb9d400a0d8e5426c56662 -fc5fcf8b6db5bbd1469bbe9ff4d196f0e5f09a4eb01da77d77a49b759dddef602086ade05add32b33245dd4ec67c52d70de7953db7785c83b1850ccaf4e1c27f -b10101cf099415441b1b1be2a2b91244cbff7d5d56d6de96e55367e4d2e56df9ea777e2d9ffcf2c3f2fccb27a57fe6cc784164ddef7a59f7c470dd33eec779f7 -db32f7d0dc7eaa39999921dab15034b7b4f4e73d8793411dded392f0bfe1397b64cf42744f37b23fab0716925833b876550e98e7595b66a3e78fb37f58f61871 -d1185a0a9cbb0c5161601b06cbf2ced3976e1860a340391240cde066043d633fa81704d32490079533a5ec59bea5366251a0ff26e6b3e69c17e4930f473a7857 -73e3c1d5668648e7971641916019e9c8c8a4e40a2243448573d5b12b43c3a6292c5af1eb59d7c50330333883f548c6dbeb8c0a229b77586394be2e146da93d40 -6b6e868de4dcd4b8ad35ad54c7e46245b10181d9215056105db870415c341782e8ef478eca91c5d7e58967fe196c95fd4f9efbdbb27ceaab8fc837bef7a46861 -f5f2f2c9624194dcef72ee89d67d6a208e827b64cfaa952c7d0fcdeba7baaf988268c742b1ac206a2dc881a8d0282d9486f547fafa829e6466886cfb86984ace -d77332ecab780aede93126ebe4481095096c71b0ace23c3981300cd646a622c984a4b322218c54f02f0aac198e965c9f3367fb431007f9ea3e9b6bc114449314 -252759a25c41341490d9d9a15828da1ff28ceb8cd117f66b656f9202f0a2d7cbf6a1fe3181ad1a970ed310987902650491d6e3f4fbc1af320e9adaaaba65f6c6 -ea9bf2ed1ffe21cc082d9e58936f7dff77f299af3f2a7f39bc1cd60e9d79fd8d624114ffe264ff621c662232844fbcd2633344f1175e26b8f73af8864c2c882a -09c5b282c812329aad49048dfd69c8114423e7c719292b8b94125c5186282f3ba45dbb1144450b6cbe5fc5798afa89606a46274c18a818b1ab87edb198d900db -bee9c046ba2db5ad633b79aeb8a8efbeb7534194d4129518f3204b16090963eb2d99550ebbe4bad4f4a30c4ed17a16bd9f7783095fafd8477dcb8565087845a0 -ac203a7dfab4b8682e04d1d1c52579e3cd7559f8ca2fe5535f7b241443777ff73772f5daf55008bdb9b636a120cac8fc8f8b275971a7e81e9a64e9ddbb4f2c88 -2a09c5260ba20459bc0db747021d3672ec9220daa1f3940d909110ea7532b68b261644519a3356e145998512e2c2b53bef6ccb6c308a41b6c6caa4995b572369 -612b33167f4847446f4e46309afca0df8c0c5d460dd14886a870cbcc985b37deea1bbe168ae4a27574bd48d88380a704ca0822fd0afba953a79c34b5553543f4 -8f7ffe4bce077f76e4a78f1d924f7fed51f9ecddbf923f1d5c4a9e4174eedcb9f282c8de1548848b75af8cb7ccfa63eeb7a9ac937d0fcdb9f73af0ab58105512 -8aa6204a6d4b0dea77863544e9adb1bcd777bc65569881d2f1d42988b202546e60cb5bd41ce749edb78ed9324bd57d44856c59b520136f99e5386fde9c735f77 -e0b53926d2df322b57543d3435989f5904dd0a6a84e2adb7cca2ea54a1a059543d7cbe51f675e60422ae66c630eeb78c58495d97f75ca5348b915a34d347c766 -9bea5b3b2c4360d6099411449a753971e28493a6b6aa0aa27fbdfa5a90adea0745d5ebf2b3c79e93eee32f0485d5576423f826dc850b1bb2be7e7e0241a42b68 -de6bcc5fc4b3efc7e6fd31b9df5abf4c97bef73a70a0581055128aa9ed2aa3203a101f7b5245d5198228984366917490c71914430702a674517596fd74517552 -4f64b17393211aa41a86df162a0a6c13394fec50460175bc7d65aa694bfca48ba9ed406c7ddbc8b667414a396f5e81b7212232598436336a9a1c38f3e45fbb77 -d0292620000108e8adbfe08fbbaa78511173fcf871ab3d2277b6ee9447c2d7f37eb6af391edaaa2a88e287106ab6499f4cad85d4fab3fd70c2797b0e5125a168 -7db36c163f1cee0451a3665f8ff068d4148dc120889aba328c0b02fe132823882e5fbe2c4b4b4b4e9adaaa228826fd3315feafa0840fa034c5e0c44231fc7657 -f4cdb01906e69f20d2fa976061865fb59fe1d5293974045149509c0601083827502488f40fb1ae0545cafa0ca2c5c5c54a4d6da8ad9dfe7157e793f7c4e0a422 -d1d7cc997f82c813079d641a08a24968712e0420e092409120dab76f9f3c186420de7aeb2dd1ec4e95a636d496dae480806b020822d74477c19e0aa2f5e01b13 -1c10800004a64940ef3b458248c7f3c0030f84591dddeaaad2d486dae280401d04104475509db2cdeded0fe4ecfa7b3418e003f8c0d47d40ef3f1c10f0810082 -c88755640e108000042000010854228020aa848f8b2100010840000210f0810082c88755640e108000042000010854228020aa848f8b2100010840000210f081 -0082c88755640e108000042000010854228020aa84af1917afacaec9a1175e92a79e7e9606037c001fc007f081c6fb80c62c8d5d4d3a10444d5a8d1d8e85e710 -ed101c974100021080c0ae1028fb0cab690e0e41344dda35f5c593aa6b028b590840000210a88d4099877ad6d679866104d13469d7d41782a826b09885000420 -0081da0820886a433bbf861144f3bbf6cc1c021080c0ac124010cdeaca3578dca6206ab7bbd26ff058191a0420000108404009cc8720ea7765ee03f31419140a -a2298e858f39042000010840a00c81f912442e02b10b1be6cab8b697b7ea79fdd4d07fa1202ae3999c03010840000210982281f912442ec0d620205c0cabd0c6 -14c79d16441de9b45bd26a69eb482fcc4b4619bbe8df6e277ebf259df0040e084000021080c07409f82b8834d88641386a5acb920ac471a00e8274eadcb67493 -a2979e740c1b9d5e5fba71708f6b6352d79a01df10024694ef05c1bf3dec606271a0d727730ac6169a0ee765cc27901de9710f45c888f83099b48cb987f38afe -3f964f3467c36f5382281e633884b6b474c0a93e0d113445d136dd8f19bd410002108040d309782a8806c225d121bd8eb46c4194047f3dd71202a1d8b16c8422 -2338af67d623a5cf4905fc9498884583dab004441571902966c68cdb102776964635a029d692b9841cb2f8e4bb76ee965928ac22016aae476c0a41d4f4fb05e3 -83000420e02d013f05911d58ad2d9a2453a4cb6a6792c28c902d7c8cf5376d17f5135da6422314672accec3d217b6c45e2605ce62b9e4fd637bbca8c3539c710 -41797cc67c756cac201ac9d419df424310797ba36162108000049a4e004114672dec952a53845c4664a8dd4808f53ae6765cd4e1448228ca52c56224ebda32e3 -368553eafc48089959b03c3e633c3bbd6536cc88656e9999e20d41d4f4fb05e383000420e02d013f0591b5dd1506e2dccc84b5c59408808a5b66a92c4d54d333 -2e739327ae52ae676db9d95b81e1b965c61d65c632b6ad425641966c58e794c727ff3361d710a5eab872c59831266f3f6e4c0c02108000049a4ac053411405d7 -a4a0ba3d780e515e362655843caea83a4cf74405cb4601b559b86d067c63d5478aa9e3f726ca104585c979c5e2497ff945d5c94ed7b87ecde2ead0a669cfe633 -bea8baa98ecfb82000010840000226017f0551a3d639a398ba51e3733b18fe74875b9e58830004200081fa092088ea66acdb5aa92da8ba3bdc7dfb08a2dd5f03 -46000108400002931140104dc68bb34b1040109580c4291080000420d0280208a2462d871f835141b4beb1e9c76498050420000108784f40631682c8fb659efe -04b7b73f90b3ebefd160800fe003f8003e30333ea0b1ab49c7f2cadb23c369d9af649dd4a449301608400002108000042050850082a80a3dae85000420000108 -40c00b0208222f969149400002108000042050850082a80a3dae8500042000010840c00b0208222f969149400002108000042050850082a80abd865cbbb2ba26 -875e78499e7afa591a0cf0017c001fc0071aef031ab3347635e940103569357638169e43b443705c060108400002bb42a0ec73887eff8f33f285fdcfcb877ff8 -e74a4d6da8ad71078268575cc16da73ca9da2d4fac410002108040fd048a1eccf8db57fa72fbc32fc91daf6ec9c2a91b959ada505b6a33ef4010d5bfe6b5f780 -20aa1d311d40000210808063024582e8f3dd4372c76b5b72cfebd7e4d2a54b959ada505b6a1341e478219b640e41d4a4d5602c10800004205086409120d26db2 -85ffdca824844c21a5b6d42682a8cceacce8392382a8d79176d74a0bf6bbd26e77253f5938a39367d81080000420309304ca0aa2adad2d71d19a278808ccce1d -d71444dd764b5aada899026852ee939eef7c56188400042000019f099415449b9b9be2a2f92388cc004db04e7d465219a2203bd4eaf4a4d76949f0cff09894d9 -a4e7fbfca9656e1080000420e09c401941f4c993d7e5e2c58b4e9ada6ad696d94e03ed4eaf73be84cd3358aa8628e4d7914e9241ea48ac97543c2559a520bbd4 -e9f525c934b1cdd6bc056744108000043c20504610dd71f29a6c6c6c38696a6b2a82a8df6d274135a95fd1201c6fdfb4da1296b5d8991efbfd70917bd2495ecf -08d0b936a2201fbddf3502fd305ba2b68762c0039f92d28228143b831987eb954a21452462b608501f5c833940000210682c81528268f99a5cb87021b71df9d1 -ad72eb8f8e8c3d27befe8ec0d614049121324211a48243b30c91081a44e041516f126873de0faf33b77bd47660a7671405a76c6404f9488825f1def3e05e5a10 -d93545b1304c09d7205b945aa7c67e9618180420000108cc30813282e863c7b603ddd0cf6dcfffe043f2a11f3c3ff69cf87ab535054134dc62c9ce0ec55b3286 -b0b183709811b2848fb9d0593544b6d0c9cb6e2088d2993953a086d9b871c275863f6d0c1d02108000041a4ba0ac203a7dfab4d8edc05de9528fb0ece3ae0323 -e799d74d49100d790fea51820c519229b2d6c2142d595b5779e2054194ebd4a5334406efe19699b585a845d964881a7b036160108000047c215046107df4d865 -3975ea546e3b787f9021baffe0d873e2ebd556fd19a250fcc45986782bccdafa8a0552ce7657b8a5966cb539d832abf295f319f3b6f18228123c59db62d13ccd -faaf506587ece23a2ebfeaad666c69192e042000016f09941144b7fffb929c387122b7f5f6de22b7eced8d3d27be5e6dd52f8882e5ca2caa4e154767145567bd -1f2ebd5d546dbe16659f62c163067af3b55c4134a745d5de7ea498180420000108cc2281b282e8f8f1e3e2a24d4d10cde262f832e6525b66be4c967940000210 -80801704ca08a2db8e6ec9d2d29293a6b6a69221f2627566741208a2195d38860d010840608e09140922fd43acb7bdbc2e5f3a7a5e1617172b35b5a1b6f8e3ae -9e3b1c82c8f305667a108000043c245024887efb4a5f3ebcff45f9c82bebf291a39bd55a60436da9cdbc6379e5ed91b75af62b592779b836333b251544eb1b9b -333b7e060e0108400002f345406356912052224fbc7c5a3ef7f3e7c2adae2a4d6da8ad710782c8031fdcdefe40ceaebf4783013e800fe003f8c0ccf880c6ae26 -1d08a226ad06638100042000010840605708941244376fde14b6cd76657de81402108000042000819a09a8c651ad631f2335447a422c8af4221a0cf0017c001f -c007f0017cc0171fc81243aa7d320551cde20cf3108000042000010840a0510410448d5a0e060301084000021080c06e104010ed0675fa8400042000010840a05104fe0f9c108489c1f680bd0000000049454e44ae426082}}{\nonshppict -{\pict\picscalex74\picscaley74\piccropl0\piccropr0\piccropt0\piccropb0\picw15348\pich2275\picwgoal8701\pichgoal1290\wmetafile8\bliptag-1350385587\blipupi95{\*\blipuid af82c04d624ccb83612fe808581f0552} -010009000003b663000000008d63000000000400000003010800050000000b0200000000050000000c0257004502030000001e00040000000701040004000000 -070104008d630000410b2000cc005600440200000000560044020000000028000000440200005600000001000800000000000000000000000000000000000000 -00000000000000000000ffffff00e5dfd500e2e0df00c2bdbb00b3adab00eae3e200f0ece900e6dfdb009393930077777700707070008a8a890091919100e8e8 -e800fcfcfc0075757500eaeaea00fafafa00f2f2f2008f8f8e00f4f4f400f8f8f800f9f9f900f6f6f600b6ffff00903a6600ffffdb0090dbff00903a3a00fbfb -fb00f1f1f100b9b3ae00d0ccc900c0a79d00ab867700e4dfdc00f5f5f50074bfff009c480000ffffe0003a90db00ffb6660090dbdb00f0f0f000d5cfcb00d6d0 -cc00f1eeed009d6a5700925a4400d0bfb9009ce0ff009c484800ededed00d6d1cd00e6e2e000cfb8af00925a4500a5776500e8e7e7000000660066006600ffff -b600db903a0000003a003a000000ffdb9000663a3a00003a6600660000003a909000903a000000669000ececec00ddd9d500e5e2df00dcd8d500f4f3f200a171 -5e00945c4700d6c3bc00dcdcdb0090dbb600bf7400000074bf00ffbf74007448000000487400489ce000e0ffff0000489c0074bfe000bfffff0000007400dbb6 -6600003a9000b66600000066b600dbffff003a006600b6ffdb0066003a00dbffb6003a3a90003a003a0066b6ff00dbffdb00ebebeb00cdc9c500ddcfc900c8ae -a300eeeeed00d5c1ba00965e4900a5766400d6d5d50090b6900048000000ffe09c00e09c4800dbdbdb00e1e0de00aa7f6e00e2d4cf00a778670097604b00d5bf -b700dedddc00dadada00d1cfcd00e9e1de00955d4800965f4900a4736100faf9f800e2e2e10074000000ffffbf003a66b600b6b66600dbdb900090906600d8d8 -d800cac8c600f0ecea00bb998b00975f4a0098614c00d1b9b000e6e6e600b6db9000740074003a3a0000d4d4d400cccbca00dbdada00e9e2df00ba998c00bd9d -9000f6f3f200ededec00ecebeb00eae9e9000074740074bfbf00d2d2d20096d2d20054005400d2d29600f3f3f300d1d1d100e2e2e200cfcfcf008a8a8a008f8f -8f00e4e4e40088888800f7f4f400efe9e300b6ffb600dcc6a800bc915800b17f3c00dbc4a600c2943f00f1cb4600fbd84800bb905500f1cc4600f9dd6a00fbd7 -4800fad64700f9d64600f9d546003584c900c9843500f4d04100317bbc00bc7b310000579c009c570000f3d04000317ab900b97a3100f2ce3f003077b600b677 -3000f1cd3e00e9c33e00eacd5b00c0913c00e9c43d00f0cd3d00dac3a300ba8e5300000000000000000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 -00000000000001010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010f02020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -020202020202020202020202020202020f0101010101010101010f02010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -0101010101010101010101010101010101010101020f010101010101010102010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101020101010101010101020101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101b1b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b1010101010101 -01010101010101010101010101010101010101010101010101010101010201010101010101010201010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010607010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010107080101 -010101010101d5d6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6d6d50101010101010102010101010101010102010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010106010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -010801010101010101b7d2d3d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d3d2b7010101010101020101010101010101020101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101060101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010801010101010101bbd0d1acacacacacacacacacacacacacacacacd1d0bb0101010101010201010101010101010201010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010601010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -0101010101010101010801010101010101b6cfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfb601010101010102010101010101010102010101010101010129 -00003f01193c0041421c1d1b193c00414201193c00002a193c45521d1b1c4000471b1c1d1b011c1d1b193d3e0101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010106010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -010101010101010101010101010801010101010101b6cca5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5ccb6010101010101020101010101010101020101010101 -01011c684262678c5f2a011c65521d6a5f2a011c65665f2a011963741d1b1c1d6a5f2a0129601c1d1b011c1d1b01010101010101010101010101010101010101 -0101010101010101010101010101010101010101010101010101010101010101010106010101010101193d52400000471b012900000047643c453e0101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010801010101010101b6cc99999999999999cdce999999999999999999ccb60101010101010201010101010101010201 -010101010101010101614552653e0101011c1d2b653e0101011c1d1b0101011c1d1b1c1d2b1d1b011c1d2b1d1b011c1d1b010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010601010101010101011c653e012960193d3e0169472b1d1b0101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -0101010101010101010101010101010101010101010801010101010101b6c98e8e8e8e8e8e8ecacb8e8e8e8e8e8e8e8e8ec9b601010101010102010101010101 -01010201010101010101625f003f011c4000000041741d2b4000000041741d1b0101011c1d1b1c1d2b1d1b011c1d2b1d1b011c1d1b0101010101010101010101 -0101010101010101010101010101010101010101010101010101010101010101010101010101010101010601010101010101011c1d1b011c1d646342011c1d2b -1d1b0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -010101010101010101010101010101010101010101010101010801010101010101b6c48080808080c700000000c880808080808080c4b6010101010101020101 -0101010101010201010101010101193d3e1c65666742011c1d2b1d6a6742011c1d6a5f2a011963741d1b1c1d6a5f2a0129601c402a011c1d1b01010101010101 -010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010601010101010101011c1d1b011c653e1c40 -0000472b1d1b01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010801010101010101b6c478787878787878c5c6787878787878787878c4b60101010101 -010201010101010101010201010101010101012900003f011c400041421c1d1b1c4000414201193c00005e5f00472b1d1b1c4000453e1c1d4800002a01193d3e -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010601010101010101011c402a0129 -60010101011c1d2b1d1b010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -0101010101010101010101010101010101010101010101010101010101010101010801010101010101b6c16b6b6b6b6b6b6bc2c36b6b6b6b6b6b6b6b6bc1b601 -0101010101020101010101010101020101010101010101010101010101010101011c1d1b01010101010101010101011c1d1b0101010101010101010101010101 -0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010601010101010101011c -434400453e01610000005e5f00471b01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -010101010101010101010101010101010101010101010101010101010101010101010101010801010101010101b6c04949494949494949494949494949494949 -49c0b6010101010101020101010101010101020101010101010101010101010101010101011c1d1b01010101010101010101011c1d1b1c1d1b01010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101060101696061 -2a01011c1d1b0101010101010101011c1d1b01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010801010101010101b6bf35353535353535353535353535 -3535353535bfb6010101010101020101010101010101020101010101010101010101010101010101011c1d1b0101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010601 -015f0000471b011c1d1b0101010101010101011c1d1b010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010801010101010101b6be2c2c2c2c2c2c2c2c2c -2c2c2c2c2c2c2c2c2cbeb60101010101010201010101010101010201010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -010106010101693f0101011c1d1b0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010801010101010101b6be1f1f1f1f1f -1f1f1f1f1f1f1f1f1f1f1f1f1fbeb601010101010102010101010101010102010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010106010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010801010101010101b6be13 -1313131313131313131313131313131313beb6010101010101020101010101010101020101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101060101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010108010101010101 -01bbbcbd13131313131313131313131313131313bdbcbb0101010101010201010101010101010201010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010601010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101080101 -0101010101b7b8b9babababababababababababababababab9b8b701010101010102010101010101010102010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010106070101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -07080101010101010101b4b5b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b5b401010101010101020101010101010101020101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101030405050505050505050505050505050505050505050505050505050505050505050505050505050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 -05050505040301010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010102010101010101010102010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101020101010101010101020101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010102010101010101 -01010201010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101020101 -01010101010102010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101b1b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b101010101010101010101010101010101010101010101010101010101010101010101 -01020101010101010101020101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010607010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010708010101010101010101010101010101010101010101010101010101010101 -01010101010201010101010101010201010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010106010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101080101010101010101010101010101010101010101010101010101 -0101010101010101010201010101010101010201010101010101010101010101010101010101010101010101010101010101010101010101010101010169003f -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101060101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010801010101010101010101010101010101010101010101 -01010101010101010101010101020101010101010101020101010101010101010101010101010101010101010101010101010101010101010101010101010101 -0101193d3e0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010601 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010108010101010101010101010101010101010101 -01010101010101010101010101010101010201010101010101010201010101010101011c4000981d2b1d2b1d1b01193c00414201193c00002a193c453e1c4000 -471b1c1d1b0101613f010101011c1d2b1d1b011c1d1b01010129000000472b1d1b01193c00002a1c1d1b011c1d2b1d1b011c68420101193c00414201193d3e01 -01010601010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101080101010101010101010101010101 -0101010101010101010101010101010101010101010201010101010101010201010101010101625f2a0129472b1d2b1d1b625f2a011c65665f2a011963741d1b -625f2a0129601c1d1b01193c471b0101011c1d2b1d1b011c1d1b0101193d3e0169472b1d1b625f2a011963741d1b011c1d2b1d1b0129003f01625f2a011c653e -010101010101060101400000471b1c1d2b1d1b011c1d1b0101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010801010101010101010101 -0101010101010101010101010101010101010101010101010102010101010101010102010101010101011c1d1b011c1d2b1d2b1d1b1c653e0101011c1d1b0101 -011c1d1b1c1d1b011c1d2b1d1b0169608a420101011c1d2b1d1b011c1d1b0101196342011c1d2b1d1b1c1d1b0101011c1d1b011c1d2b1d1b6267741d1b1c653e -01010101010101010101060101653e0129601c1d2b1d1b011c1d1b01010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010108010101010101 -010101010101010101010101010101010101010101010101010101010102010101010101010102010101010101011c1d1b011c1d2b1d2b1d1b1c400000004174 -1d1b0101011c1d1b1c1d1b011c1d2b1d1b01612a69600101011c1d2b1d1b011c1d1b0101011c400000472b1d1b1c1d1b0101011c1d1b011c1d2b1d1b1c1d6a67 -421c4000000041420101010101010601011d1b011c1d2b1d2b1d1b011c1d1b010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101080101 -0101010101010101010101010101010101010101010101010101010101010101010201010101010101010201010101010101625f2a0169472b1d2b6842626742 -011c1d6a5f2a011963741d1b625f2a0129601c68421c653e193d3e01011c1d2b402a011c1d1b0101010101011c1d2b6842625f2a01196374402a011c1d2b1d1b -613f012960626742011c1d1b0101010101010601011d1b011c65521d2b1d1b011c1d1b0101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -010801010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201010101010101011c400000472b1d2b43 -4445524000414201193c00005e5f00471b1c4000453e1c434400600101613f01011c1d2b1d4800002a01010101610000002a1c434445b33c00002a1c1d480000 -2a1c1d2b6842011c68421c4000414201193d3e010101060101402a0129601c1d2b402a011c1d1b01010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010801010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201010101010101010101011c1d -1b010101010101010101010101010101011c1d1b010101010101010101010101010101010101010101010101010101010101010101010101010101010101011c -1d1b010101010101010101010101010101010101010101010101060101434400453e1c1d2b1d4800002a01010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010108010101010101010101010101010101010101010101010101010101010101010101010102010101010101010102010101010101010101 -01011c1d2b1d1b01010101010101010101010101011c1d1b01010101010101010101010101010101011c1d1b0101010101010101010101010101010101010101 -0101011c1d1b0101011c1d1b0101010101010101010101010101010101010601011d1b0101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101080101010101010101010101010101010101010101010101010101010101010101010101020101010101010101020101010101 -0101010101011c1d1b01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -010101010101011c1d1b0101010101010101010101010101010101010101010101010601011d1b0101011c1d1b01010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010801010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010601011d1b010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010108010101010101010101010101010101010101010101010101010101010101010101010102010101010101 -01010201010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010106010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101080101010101010101010101010101010101010101010101010101010101010101010101020101 -01010101010102010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101060101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010801010101010101010101010101010101010101010101010101010101010101010101 -01020101010101010101020101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010601010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010108010101010101010101010101010101010101010101010101010101010101 -01010101010201010101010101010201010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010106070101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010107080101010101010101010101010101010101010101010101010101 -01010101010101010102010101010101010102010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101030405050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505040301010101010101010101010101010101010101010101 -01010101010101010101010101020101010101010101020101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010201010101010101010201010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010102010101010101010102010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101020101010101010101020101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010201010101010101010201010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010102010101010101010102010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -010101010101010101010101010101010101b1b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 -b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101020101010101010101020101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101060701010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010107080101010101010101b0 -100b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b10b0010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010601010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101080101010101 -0101adaeafa9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9afaead01010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010102010101010101010102010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010169003f01010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010106010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010801 -01010101010110ab49acacacacacacacacacacacacacacacac49ab10010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101011414141414141414141414141401010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101020101010101010101020101010101 -0101010101010101010101010101010101010101010101010101010101010101010101010101193d3e0101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101060101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -010108010101010101010ba9aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa90b0101010101010101010101010114141414141414141414141414010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010114151515251716251515151514 -01010126007701010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201 -010101010101011c4000981d2b1d2b1d1b01193c00414201193c00002a193c453e1c4000471b1c1d1b0101613f01010101193c453e1c4000471b010101012900 -0000471b1c4000981d1b1c4000981d1b193d3e010101010101010101010101010101010101010601010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010108010101010101010b15a5a5a5a5a6a7a8a6a7a8a6a7a8a5a5a5a5a5150b01010101010101010101010101141515152517162515151515140101 -0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010114159a9b9c9d9e9fa0 -a1a21514010101012653010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010102010101010101 -01010201010101010101625f2a0129472b1d2b1d1b625f2a011c65665f2a011963741d1b625f2a0129601c1d1b01193c471b0101011c1d1b625f2a0129600101 -01193d3e0169476a5f2a0129476a5f2a0129471b01010101010101010101010101010101010101010101060101193c00002a01193d3e010101193d460000981d -1b2900003f01193c0041421c1d1b012900003f01010101193d524000981d2b1d2b1d1b011c1d1b1c4000471b01010101193c000000471b1c1d2b1d1b011c1d1b -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -0101010101010101010108010101010101010b15999999999999999999999999999999999999150b0101010101010101010101010114159a9b9c9d9e9fa0a1a2 -151401010101011c1d1b01193c00414201193c00002a01290000981d2b1d1b012900003f01193c004142010101010101010101010101010101010114158f9091 -929394171895151401010101262728595a0088a3552627280154550158000053015c5d88a427280158000053012627280154555c5d0000770101010101020101 -01010101010102010101010101011c1d1b011c1d2b1d2b1d1b1c653e0101011c1d1b0101011c1d1b1c1d1b011c1d2b1d1b0169608a420101011c1d1b1c1d1b01 -1c1d1b0101196342011c1d2b1d1b011c1d2b1d1b011c1d1b010101010101010101010101010101010101010101010601015f2a01196342010101010101298b3d -3e0169472b684262678c5f2a011c65521d1b1c6842626742010101295e5f2a0129472b1d2b1d1b011c1d6a5f2a01296001010101298d653e0129601c1d2b1d1b -011c1d1b010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -010101010101010101010101010108010101010101010b258e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e250b0101010101010101010101010114158f90919293 -94171895151401010101011c1d1b625f2a011c65665f2a011963963d3e0169472b1d1b1c684262678c5f2a011c653e0101010101010101010101010101010114 -15818283847d858615871514010101012627283334285c5d552627280154552627280154773334282627282627280154772627280154555477015c9789010101 -0102010101010101010102010101010101011c1d1b011c1d2b1d2b1d1b1c4000000041741d1b0101011c1d1b1c1d1b011c1d2b1d1b01612a69600101011c1d1b -1c1d1b011c1d1b0101011c400000472b1d1b011c1d2b1d1b011c1d1b010101010101010101010101010101010101010101010601011d1b010101010101010101 -191a2b1d1b011c1d1b0101614552653e0101011c1d1b01010161453e0101191a2b1d1b011c1d2b1d2b1d1b011c1d2b1d1b011c1d1b0101191a2b1d1b011c1d2b -1d2b1d1b011c1d1b0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010108010101010101010b18808080808080808080808080808080808080180b01010101010101010101010101141581 -8283847d85861587151401010101011c1d1b1c653e0101011c1d1b0101011c1d1b011c1d2b1d1b010101614552653e0101010101010101010101010101010101 -0101011415797a4f7b7c7d7e187f1514010101012627282653010154552627280154555477010101013334282627285477010126532627280154550101595a88 -89010101010201010101010101010201010101010101625f2a0169472b1d2b6842626742011c1d6a5f2a011963741d1b625f2a0129601c68421c653e193d3e01 -011c1d1b625f2a012960010101010101011c1d6a5f2a0169476a5f2a0169471b010101010101010101010101010101010101010101010601011d1b0101010101 -01010101292a1c1d1b011c1d6a5f003f011c4000000041741d1b625f003f01010101292a1c1d1b011c1d2b1d2b1d1b011c1d2b1d1b011c1d1b0101292a1c1d1b -011c65521d2b1d1b011c1d1b01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -0101010101010101010101010101010101010101010108010101010101010b18787878787878787878787878787878787878180b010101010101010101010101 -011415797a4f7b7c7d7e187f151401010101011c1d1b1c4000000041741d1b0101011c1d1b011c1d2b1d1b625f003f011c400000004142010101010101010101 -0101010101010114156c6d6e6f707172167315140101010126272826530101545526272801545554770101010133342826272854770101265326272801545526 -0000550101010101010201010101010101010201010101010101011c400000472b1d2b434445524000414201193c00005e5f00471b1c4000453e1c4344006001 -01613f01625f00471b1c4000453e01010101610000002a011c400000471b1c400000471b193d3e010101010101010101010101010101010101010601015f2a01 -19634201010101191a1b1c1d1b011c1d643d3e1c65666742011c1d2b6842193d3e1c653e01191a1b625f2a0169472b1d2b402a011c1d6a5f2a0129600101191a -1b1c402a0129601c1d2b402a011c1d1b010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -010101010101010101010101010101010101010101010101010108010101010101010b126b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b120b0101010101010101 -010101010114156c6d6e6f7071721673151401010101011c6842626742011c1d6a5f2a011963741d1b011c1d2b6842193d3e1c65666742011c1d1b0101010101 -01010101010101010101011415204a4b4c4d4e4f5051151401010101262728265301015455267576015455262728015477333428262728262728015477267576 -015455587701333428010101010201010101010101010201010101010101010101011c1d1b010101010101010101010101010101011c1d1b0101010101010101 -0101010101010101011c1d1b010101010101010101010101010101010101011c1d1b0101011c1d1b010101010101010101010101010101010101010101010601 -01193c00002a01193d3e01292a011c1d1b011c1d1b2900003f011c400041421c4344454600003f0101292a01011c400000472b1d2b1d4800002a011c4000453e -0101292a011c434400453e1c1d2b1d4800002a010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010108010101010101010b12494949494949494949494949494949494949120b01010101 -0101010101010101011415204a4b4c4d4e4f5051151401010101011c434445524000414201193c00002a1c1d1b011c1d2b4344454600003f011c400041420101 -0101010101010101010101010101011415202d2d363738393a3b1514010101012627282653010154552656570027280158000053595a00275b27280158000053 -012656570027285c5d00005501010101010201010101010101010201010101010101010101011c1d2b1d1b01010101010101010101010101011c1d1b01010101 -010101010101010101010101011c1d1b010101010101010101010101010101010101011c1d1b0101011c1d1b0101010101010101010101010101010101010101 -0101060101010101010101010101191a1b010101010101010101010101010101010101010101010101010101191a1b01010101011c1d1b010101010101010101 -0101010101191a1b011c1d1b01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -0101010101010101010101010101010101010101010101010101010101010101010108010101010101010b12353535353535353535353535353535353535120b -010101010101010101010101011415202d2d363738393a3b15140101010101010101010101010101010101010101010101010101010101010101010101010101 -010101010101010101010101010101010101011415202d2d2d2e2f30313218140101010101010101010101010101010101010101010101010133342801010101 -0101010101010101010101010101010101010101010201010101010101010201010101010101010101011c1d1b01010101010101010101010101010101010101 -0101010101010101010101010101010101010101010101010101010101010101010101010101011c1d1b0101011c1d1b01010101010101010101010101010101 -010101010101060101010101010101010101292a01010101010101010101010101010101010101010101010101010101292a0101010101011c1d2b1d1b010101 -010101010101010101292a01011c1d1b0101011c1d1b010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -010101010101010101010101010101010101010101010101010101010101010101010101010108010101010101010b1e2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c -2c2c1e0b010101010101010101010101011415202d2d2d2e2f303132181401010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101011415202020202021222324251401010101010101010101010101010101010101010101010101333428 -01010101010101010101010101010101010101010101010101020101010101010101020101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -010101010101010101010601010101010101010101191a1b010101010101010101010101010101010101010101010101010101191a1b0101010101011c1d1b01 -010101010101010101010101191a1b01011c1d1b0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010108010101010101010b1e1f1f1f1f1f1f1f1f1f1f1f1f -1f1f1f1f1f1f1e0b0101010101010101010101010114152020202020212223242514010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010114151515151515151617181514010101012627280101010101010101010101010101010101 -01010101262728010101010101010101010101010101010101010101010201010101010101010201010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010601010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010108010101010101010b0f1313131313131313 -131313131313131313130f0b01010101010101010101010101141515151515151516171815140101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101141414141414141414141414140101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010102010101010101010102010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010106010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010801010101010101101112131313 -13131313131313131313131313121110010101010101010101010101011414141414141414141414141401010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101020101010101010101020101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101060101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010108010101010101010c0d -0e0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0e0d0c0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010607010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010107080101010101 -010101090a0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0a090101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010102010101010101010102010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010103040505050505050505050505050505050505050505050505050505050505050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 -05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505040301 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101020101010101010101020101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010102010101010101 -01010201010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101020101 -01010101010102010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01020101010101010101020101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010201010101010101010102010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010201010101010101010101010202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 -02020202020202020202020201010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101040000002701ffff030000000000}}}{\rtlch\fcs1 \af0 \ltrch\fcs0 -\insrsid14842421 -\par Specify directories and file name patterns, then click the + button to add those files. You can also tell the tool whether to recurse a directory (select files from subdirectories) and whether to traverse junctions in the filesystem. Also specify the \'93 -directory in zip\'94 for those files. -\par The middle group box of settings lets you specify how to add those files into the zip file you are creating. Here you specify encryption, encoding, compression level, whether to create a self-extracting archive, split zips -, and so on. You can also specify zipfile comments and other zip settings. -\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \lang1024\langfe1024\noproof\insrsid7564013\charrsid16080314 {\*\shppict{\pict{\*\picprop\shplid1025{\sp{\sn shapeType}{\sv 75}}{\sp{\sn fFlipH}{\sv 0}} -{\sp{\sn fFlipV}{\sv 0}}{\sp{\sn fLockAspectRatio}{\sv 1}}{\sp{\sn fLockPosition}{\sv 0}}{\sp{\sn fLockAgainstSelect}{\sv 0}}{\sp{\sn fLockAgainstGrouping}{\sv 0}}{\sp{\sn pictureGray}{\sv 0}}{\sp{\sn pictureBiLevel}{\sv 0}}{\sp{\sn fFilled}{\sv 0}} -{\sp{\sn fNoFillHitTest}{\sv 0}}{\sp{\sn fLine}{\sv 0}}{\sp{\sn wzName}{\sv Picture 2}}{\sp{\sn dhgt}{\sv 251658240}}{\sp{\sn fHidden}{\sv 0}}{\sp{\sn fLayoutInCell}{\sv 1}}}\picscalex100\picscaley100\piccropl0\piccropr0\piccropt0\piccropb0 -\picw15401\pich5530\picwgoal8731\pichgoal3135\pngblip\bliptag-1110965009{\*\blipuid bdc804ef0a5456ddb70cd6ce02bece53}89504e470d0a1a0a0000000d4948445200000246000000d1080600000029217dbe000000017352474200aece1ce90000000467414d410000b18f0bfc61050000 -00097048597300000ec300000ec301c76fa8640000393e49444154785eed7d6d8f25479656fdaefa0c825df8b81212825d56828b84d468101acc37beb4d06010 -7387815956ad910ac16a252c8fb97855bb9e76bb29afd765bbddb2cb74d95e5f97ababaa5fdcefd5ddd5dd6edb526c9ec88cc8139111999179236fbe3d574ad5 -adcc7839f1c489134f9e7332ef86c0070800012000048000100002404022b0011c800010000240000800012000045204408ca0094000080001200004800010c8 -100031822a0001200004800010000240a08a18ed1fde1438800174003a001d800e4007a00363d2812a06e8f4181100f80001200004800010000240606c085471 -9c0231aaaa303680301e200004800010000240605a0894711d10a369e902460b0480001000024060f20880184d5e050000100002400008000120a01000311a91 -2e1c5e3f16172fbd2b5e7bfd4d1cc0003a001d800e40077aaf03b467d1de55f5f9e52f7f295e79e515f1939ffc64a583daa0b6ca3e204655b331a0ebc72777c5 -9dfba7039218a2020120000480c09411a03d6b7978ab1482fff0eaabe217bff885f8f6db6fc58f3ffeb8d2416d505bd4a6ef036234228d2462840f1000024000 -080081212150458c7efad39f8abb77ef8aefbfff5e3c79f264a583daa0b6a84d10a32169494359418c1a02876a400008000120d0190255c488c267e4295a9514 -a9fad416b50962d4d994afaf6310a3f5618d9e800010000240200e0221c4e8871f7e108f1f3f8e72505b204671e6aef7add42346db62b63917cbb58f2aa0dfe5 -5c6cae24db3afa583b7056870163ec5a44f40f0480001008402094189d9e9e8a18c7da89d1f66c436c6c6c88d97686c6ca9b5c00aa282211a8478c8458ce37f3 -795a238695fd2a9d59417782fb58e3b86b751530f6c21803ea3865a8aa5775bd6a60abd6af6a1fd781001018340221c48872831e3c7810e5a0b6d6e8314aee62 -37664272a2269b5b5f0d685fe5b296425d62249299eaa5d7280ade15638bd2478bb628483e6b8c41751c3237add7e2f0d134100002d341209418ddbf7f5fc438 -d64b8c5c06b68ed1ad53769d3ad357b94a891191d4d47b6778f0880c29f22af92bf31ad9e364ff5339d5d6e63c0bc0d175ddc7a690a7659d5942b8a8df9998bb -ead9fd2a22cde4dda0509a45aee79937b2e091d4f53252ae9d959647cc9037914f85eb8cf3bc0d07863e8c8c716f88cdf9b6984b0ce87b155e73618e6da9eb2a -199df81b3816ebc8b9b0e727ab93cf652ea7ea4b797dd332091ec63ca8b9cdae39d6e1aaf5d7b9b4d117100002dd23104a8ceeddbb27621c6b24467c13b18d69 -96cbe231d4e9b454197673d35353e9da304cc39c85f564dfd9e6ad3762b6993b3690fa7299a463ddeac63d46b429eb70a624436cec8660ccebe0254696275012 -2b9a2f0b4f4566745fae7aaa73eeed48e75ecbbb3d4b490bdf909de159b39ed4857cd04947017d647aa7aae56d5832290cb7adfc274346ae4f9c2892fe97e1e5 -083d1b731188a351c7d31f27c6724db0b56a29acc6c2354645b00cbccd0656adbfeef583fe800010e806811062f4fcf9f3644f482c698483da5a5f288d1b66eb -6edfbb31f0792818f67cc3286e7a54b16cc3d06e039dc84b8449ddbd9b1ba063835f49ae6e948b13a33ac9cbda6be425463969757b3f94672ac1d1200e8e7a0c -9aca7e0b3a64cd6989878b1367b977977a7a5812baafcfbc413331dc55deb70eb8474c7eb7f162723ad682e17daac2d1f68ea9fe12a3e2f464d9c9ee8a34a99b -084e543916ccfb6868fdaaf5bb5942e8150800810e100825465f7df5958871f48718790db561e1f34d2760d3e35e26bd612b436e8765b881e777efadc8d58166 -255d362546dab3128079ea8dcbbc0cae4dd16e238342d733a0c93c3a55a4a5eaba8fb4c8f3817dd86d78c61144b0bcc4c8e1f50c1d5b5d1c3931f1a8a3319706 -31b2bc655504b5d0feaaf5bb593fe8150800816e10082146cf9e3d135f7ef9659483daea87c728c0501b9b4ec026cda730df78adb0912bbcc0bd1a2dcbb54e35 -6b164a4b254cbd3756289087b474784c85681c9b9f1d9691d82a6f9c15dac98049fb7584c41c3946fad5027a4eab42697c6c9e3eea86d2962518f19ca5c2f700 -bc3879b7c955088e731ee62be9cf6ecb0a0f16bcb39c1859f96966e832c7db385fb3fe3ad70cfa020240a07b044288d1d9d999b876ed5a9483daea0731b236a0 -3431d4ba8376840f8ab91f6c129d1baf67e3621bb11992f06c205c57eacad5919e994fa585255fe7a2a6b8f164e98d24874885e4dcc9bfbc0f3ba7866d9299f7 -cef0eae98eb3f9e29e3bd56f88a7c2a8e77b2f53491f8a8c280fa3e1397163c8b1d018b9bc449ce8c8f156e395df1ca8b2e91af1255f9bf3a7429a6a5d39fa73 -b6c5fb62b97e76b84f8e31d1092f562af72c4ffa37c285a5f53b5a34e816080081ce110825469f7df699308f5f89dfdbf83df12b79def7ddaef399e81131f26c -0cc694989b81f1548de7857fae0dc3d8b8c888f3ba0699529dbb3790e2a6c35e4550ba3974a367f51fd7ef464ef43a50047ce1c5d0e1ac5a3fb41f9403024060 -50088410a3a74f9f8abdbdbd2807b5b53e8fd1a0a6627cc282188d6f4e7b35a25589cdaaf57b05068401024020160255c4887ef0f5f8f858bec3e8934f3e59e9 -a036a82dfc886cacd9eb793b20463d9f2088070480001000020504aa88d1abafbe2a7efef39f8b1b376e08f2f6ac72501bd416b5e9fbec1fdef45edbb0af9415 -c65c778f008851f7730009800010000240a01e0255c4885afbd9cf7e26bd3c14025be5a036a8adb20f8851bdf9eb7569224677ee9ff65a460807048000100002 -404021407b5608315a27622046eb44bbe5becece5e88933b8f700003e80074003a001d188c0ed0ded5a70f88519f6603b2000120000480001000029d220062d4 -29fce81c080001200004800010e8130220467d9a0dc802048000100002400008748a008851a7f0a373200004800010000240a04f088018f569365694e5f0fab1 -b878e95df1daeb6fe298100634e734f7f8344300eb66dcf602eba3d9ba98722d10a311cd3e1ed71fd164d6184a1f1f77ad217ee745b16e3a9f825605c0fa6815 -de51360e6234a269c50b1e4734993587d2b7f780d414bfd3e258379dc2bf96ceb13ed602f3683a01311acd540a01033fa2c9ac391418fe9a80b1e25837cdb11b -4a4dac8fa1cc543fe40431eac73c449102063e0a8c836c0486bff9b461dd34c76e2835b13e863253fd9013c4a81ff310458a68067e9dbf82eeeb6b7b26363636 -8ac76c3b0a56636b0486bff98c3ad78dd4bf4d315f66edae734d341f0a6a7a1088b93efe73f203a4750f4cccb010884e8cb667e966369bcfc5e6e65c28bb322c -5886292d37f02b61af3601fb2fc1127b83086e6f5bcca0575ec58c69f88d4eca082a9f3bfa6e115983c3f2761ce496ecc6a6662142283b22c971cb64d8458ca8 -ffd96c96cb14aca7c3b41d63973ae6fa2052747676e63dbefbee3bf1f2e54bf1fcf9735986cae3332c04221323dabc6642ded3c390ac5d13a21323358236e732 -b06d7be35c3bb83def30a6e12f1f6a46506991dbc488df0819f3caea24d50a7399912a458c96f34d46869662be999094161d854562447d921d4be456630ad4d3 -9eabc964c58bb93e1431facd9b6f09fbf8f0e34fc5affff4ff8957fefd6be2ebc31be2d9b3673d2446c53525d79cdabba596986b36587146b24ee212a3324319 -8c2c0a3645801b7879a74d465dcec92c31f0e4c94bfe661e3d15a6d21b8e7dc75fa8cbdbcb3c81461d9310cf593faa0fc30b40de1f7b73f50c5c2e5a7b8332c6 -958eadc5bdb3e994acad5e4cc35f26b4416a4ad73bbb49226f91d77b4c467a33d1cb4dc363c465a0f9e7dea4d8a01688118d2b554e299b7464a9b14acf97d235 -3646b991a4655d7a2ecf3176a7704c37a4d4cbdee618636336b4f662ae0f4e8cae7cb22fd4f1f1a79f8b070f1f8b7ff02f7e2dfed63ffc2fe2adcb9f4aaf91d7 -63d4e17e69aea954cf3795ae2bc706e9795da253b77c4f152922314a1966bac84d40bd1ba21dc357ff7b37dc7c8397777313df0c6d9d727a8c24962c57c2dc71 -b270a77507a136b2d2509a5947dfe5677367102ed7a6e86adbb548647b8cf4f07a6c5ca697a1a7abada658ce1cab6c8dd94dc534fc3e310d82aa8ca7cfa3c20c -64e9dc90ae25cae2273f5ccfda59f33631225994fe6ab9f4781859cac283a504dfd0579b50591e76d8b35a2ba4abf5e1224657f73e17d78f6f8937fee213f1b7 -1352f4cf5ef91371fbf6b7e5a1b42e498471b3927a46b7f90d48b62e6b4d886d136a57ee4f8588c488dd559501c49481df7de6c6b36cc3f56cf0fdc1b35349bc -c4c80e71f05c10ed1962f960366971ddd9d88bda4774ecba557d1b08e677e1fa74593f23dc585cc6dfc91f0f6fb5ab7b364175112323c7285fab925c50be8eba -ae59734e0c7cc4c8f6b4b431489318a5f6c7c0dd5a2332ff2871286d275eaef976e65d4a3612edf171795f13c155bde44be63dcafb82b7a8d9cc76b13e3831da -ffeb0371787c53ec7ff9b578f2f44cfcfebffa1fe2effca3ff2adefecbcfc5f2ebaf4b8811d333ae5f96277c73beadf5d1ad5fe63a2b7a1f7d3713964797145a -7b4ae96be6a5b5ecad2b1220ebd9765d7b9d98b384ce05785cfbe0455d0f312a034e6eda0e97b55a27a19e8566eb6a54b5aa89914534aac84c99c7a836310aec -9bcd8833afa84ae651cd683a186efcbdde9c56899183a056798c98a0a6a729bff1e164c8498c4a4370f126da20466c73487bc86c13112075832149d03ccb3fca -efb653bee7d173b529248524a1b29e4a49bdead30e07379dd175af0f458cfeeac3abe2c34f0ec4fffccd074908eda1f8edcebef89ddfff95f8a7ffe64f042560 -efef7f1eee317279c2b9b7dfe5b134d6605def63bee7e61e529553e7d88fbd91004fb441ae9b3c37d0747c64faeff4b8d61d4753ad29afb706625462285c4627 -74c36d078f41b71a468c98f1d51b8f43890b77312caf48935987e2fbe6cf0e7ddae13a0b796ff8c5199a48ef70da7e7aa94be520e35ff6693394e64d7c777912 -5d42726f0a510d79379adf09f38d8d7b4edace2d52a2f275e3ea537bbcb4e7354d1b50b29aa4c6ba43b743162af74f6d6a3a1ccc36a32e156da07daf737d2862 -f4cdf523f12fffddff961ea24fae1d8b7ffe6fff54fcbd7ff247e2cf2fefcbdca2af0fbe69468c5ce169c3eed9af3121a251dffb981222ae77eabbe321aad07d -39e0c6b5dce35a7f1c6da8ec9a88916b33ceeec7b2e4c3dc209684d2f0f87fa90e70039fe67b1593e7b89b5227686b239d2d389988a712b78910a9fc31ab3dee -090ccd35090aa539c219aa9e215b22a73e3fed5743b4458c4a096728313248b1fb29b3759120d70232d78d235caff45cdb1fc75d324bacf6ae31f22759af25e8 -43d8a08d8da56f6dc65c1f8a185dfd644f7c737447fcdd7ffcdfc4effcc1af2429fac37ffdbfc4772fbf9784e8e8f8b8256254ee590cf63eca902ee5ede6b653 -92257ad54e9e6467ed05d9cc561120ef0db25c04251ed75c7382c7d182b2ad81186577f3ae1864e1ae89816e6f7836d048be2ea843b4173cb6a068d19b2ce843 -f41e06d5604cc39f0fbc84a0aa9c84d0c7d92bde63e4f5d41831a7f5245fb737f1edc8df9ebce36939e6fa50c4e8fd0f3e1277ef9f8afff8c717c5effec11f89 -bfff87ff5dfc9fb7f6f43b8c6eddba159f185921aa34bf27bb61aded7dcc6e78f9bb30b2756ae43395e5a1ba4266651105a952251e571e3ee429366b56c5b8c4 -68cdc2a33b130110a3e96a444cc33f3514d7b26eec0d676a20773cde98eb4311a38fae7c2cbefa6a99245fdf11ffe98f7f2be6bfbe9424603f17f71f3c10f7ee -dd1777eedcad78c1a3c313eff3c21a3782fc09f0a6c9d7d22b21f380ccc4ffc05c505b4edba3af9d1e2a0ac13dfae11ed7ae1e4a0031ea78c1c6ec7e2d063ea6 -c0682b1a02310d7f34a106d210d6cd40266a053163ae0ffbcdd7f412477ad335255cd377fbadd878f3f50a13d7515510a38e806fa35b18f836501d469b310dff -30461c4f4aac9b7858f6b5a598eba3eeefa48118f5552bfc7281180d6fcebc12c3c08f68326b0e25a6e1afd9f5e08b63dd0c7e0a2b0780f55109110a3004408c -46a40e64e0ef24c980f84c0b019a7318fee6738e75d31cbb21d4c4fa18c22cf54b4610a37ecdc74ad29c9dbd1027771ee198200634f7f8344300eb66fc3603eb -a3d9da986a2d10a3a9ce3cc60d0480001000024000081410003182520001200004800010000240204300c408aa0004800010000240000800011023e800100002 -40000800012000044c04e0311a91461c5e3f16172fbd2b5e7bfd4d1c13c280e69ce61e9f660860dd8cdb5e607d345b1753ae056234a2d9c763c7239acc1a43c1 -e3c835c07214c5ba590dbfbed78ebd3ef082c7becff8eaf28118ad8e616f5ac08bea7a33156b1704ef316a0e39d64d73ec865233e6fab07f12c4fe0910fc24c8 -50b4c22f2788d1f0e7508f00067e4493597328310d7fcdae075f1ceb66f05358398098eb4311a3dfbcf996701d6ffcd96fc59fbd75495c7c67a7e247642bc56e -b100fd58ec2cf99d7bfe719d6b51841e370d62d4e3c9a92b1a0c7c5dc4c6533ea6e11f0f2a6123c1ba09c369c8a562ae0f4e8cae7cb22ff8f1e9ffff52ec7ff9 -b5581e1c8a9dbffcab726264ff42fd26ff05fab6d16e408cb8bc6d8bd771fb20461d4f40ccee0d034f4abcb12136d831336f0f9c5d6fcfd23a21658d0626b468 -62ce59acb6621afe58320da59de2bad914f325931eba3d94a9f4ca19737db888d1d5bdcfc567fb5f892f97df8883c323717c7243bcbffb4138315a3bc20d88d1 -da65ecae4310a3eeb08fde73c1c01b77204b31dfac223c2bb852d5e6814d24fabc863418d3f087f437a632ce1b0abe76a0d3839fee98eb8313a3ab7b5f884faf -fdb5b8f6c5527a898e8e4fc4cd5bb7c4b7df7e2b3ebe7ab58418a5f658deb892ae19f6732666d9b5cdf9b62eb7a9d8ba71d39b93f8e57c53df08ebb249b0ac18 -32a3e92c2146992cf3ec2659df28f3f36a7d64b2d4be91eeb94681188dc8e89513a34413abc65a75bd4c99418c3a5dea310d7fa703e19daf29d4e05a37b42968 -63bfcabae80d98d31624e6fa50c4e8fffef9db326cf6d5d787e2fad1892443f7efdf170f1e3c90c7b5fdcfc33d46dc7e6e646447920ef65d92112254cca3a975 -93111d59cfce1fb2e7bf8218f1a881c3b653644191b6b19122420ac46844f6a29218f1bb84c25d072d14157a4b17950aaba9709c5c00f626e1b9d391774123c2 -b6ef438969f87b33d6351112e7baf1913263dd649b8fef0e9b80f4dcddf706e3890812737d2862f417172fcbb0d98d9b37c5ddbb77c5a3478fc493274ff4f1f5 -c137cd8811f7c6d8df1d29121b923ce51ea8dc5b5436b9d51e236dbf9d37bdd97e314656d40e31e21bac75d7656dbce9265be236b4ae6f28166c9c4f8c530dd7 -62c1dd681b40a78c7351702b4a9d5b21f4d48241aa2646ea6ec373d751b611f93c42f6f9356d662dc0d7bb26797e98fddd1636a6e137da76adad322220d7449e -db9693e97c9d6f30632aef3c6733c30ea4ebdc136a28908d007252b14e7deb8664336f06cc70b4b4255420c3a8e861f2ddddf74ed506295057eb4311a3b72fbf -2b4e6edc1477eedc911e222245f4a8feb367cfe4dfa3e3e3968851b93728bda1adf21859baa9d6150feb29ad70d97e6517467a031cd96364e7b19091ccd9ac32 -1ca64129711b7257a2bcf9e28648b913ebb8161dee46bd91d7357afdb325d5c4281bbfefae639b882af3f4d8e542160d885154c570197f5707ed10a31202ed72 -b5676426e73dd9fa27bd32c203ca68737db4722514e128dc3dc75fa7fe7593c857c8ffb0d647d59ab01e8048efeea3aac8a41beb627d2862f4ee7bef6b52747a -7a2a49d0f3e7cff5712bc935a27354def9717925cb3c953a94663b1c9473c0b3277a3444137f757d7b96137d578e9d63af4c436ae353e8b8c4c8b72996865f32 -4353a524fa4e3153022bf9cb5c203ed7a2c3dd18ea09b1d9730fcd512531e26375dd5118f3a4486d36d0509c408ca26b06d76d5fe3ad10a33a04da45103c6b46 -1be432434cfa196a13cac849c06c94ad1bba194b3d5a2c41b6ec4edabef3aebc730f1010454a1158f7fa50c4e8a32b1f8b6bd7f693c4e9af931ca32371ebf66d -71f7de3d712fc933ba77ef7e429aee56bcc748795799ae57122382827b659b265f4b45cd13c0551238d75fa79e679e5f7df793ca323672343c62641b2869bceb -bb16b5bb3174c31f3c31e277da96674f615820460c57dac42419b5c287eabc0f4718f5280890f12ffbb4478c1c6b2be446870b6b97cf08d1f6cc4e2c2d21e12d -aed3f21b8a6c1372dcad1b1e6ce7536c9e75164523d00847609deb036fbe1ebfeec525463e577a9618e60ca555269ae586d96d884a3679edb6ce4202dca5afb2 -fb75f8a8c4453f904777ebbdc7c871d7616d603c1f4b3f564af719ecb1d08de40909f36e9add058d7ffdf46684ad10237b3d3b09b454882c04eb09a5db215a75 -c76b787d2bd67948c8bbe13aadf2b44a7d7779a85db6ab70c7edbebbef8de24c449098eb03bf95367ea5894c8c6c379f27f9ba8c0cd9ae68da78559cde67886a -b8168393af838d5e5592dbfa94086ff05d1fd67deb29a6e137c7564da0cd27157dc9d7e6538a466e82243d8e75aed77549f83cc23ac5bae99b36c797a7bdf511 -5f56b4d83d022d10a3888342be4a2d3061e06bc135aac2c332fc5638b6e3758e7533aaa5e01cccb0d6c7f8e7a3ef230431eafb0cd5900f06be0658232b3a18c3 -4ff94576b22688d1c8b4b17fc319ccfae81f749394a8dfc4689253d27cd02046cdb11b7a4d18fee6338875d31cbba1d4c4fa18ca4cf5434e10a37ecc43142960 -e0a3c038c84660f89b4f1bd64d73ec865213eb632833d50f39418cfa310f51a420037fe7fe6994b6d0c87010a03987e16f3e5f5837cdb11b424dac8f21cc52bf -640431ead77cac24cdd9d90b7172e7118e096240738f4f3304b06ec66f33b03e9aad8da9d602319aeacc63dc4000080001200004804001011023280510000240 -000800012000043204408ca00a40000800012000048000100031820e0001200004800010000240c044001ea31169c4e1f56371f1d2bbe2b5d7dfc431210c68ce -69eef16986c0c1c18178e38d3770f410039a9b297f60d3e3ed6575ec2488d188561d1e3b1ed164d6180a1e47ae0196a32891a2939393d51a41ede808d09cd0dc -4cf9039b1e6ff6ebd84910a378b877de125e54d7f914742600de63d41c7ab5f99e9e9e0a1cfdc18066d4458c168b85a87b34d78e6e6bc2a6c7c53fd44e8218c5 -c5bdd3d6b0883a85bfd3ce43177ca742f6b47310a3fe90214e4ccb88918fc03e7efc583c79f2443c7dfa549c9d9d8967cf9e491235d40f6c7adc990bb5932046 -7171efb4352ca24ee1efb4f3d005dfa9903ded1cc4681cc44891a22fbef8425cb97245922210a39e2eba8ec40ab59320461d4d501bddb6468c027efd7c7bb621 -7f357db65d7364016da72d6e8bd9c64c6cf3f2f43de993fa4d8f4d315f66fdab6b86404b31df4cca6dce852aa6a425f93775e5a4b76c3c7c4ccbf926eb8bf79b -c85573d8b18b872ef8d8fd8ea13d10a3e112a3870f1f0a7e90b7686767475cbc78513c7ffe5c1ef0188d6195c61943a89d1c36310ade54e380daf7564a89d12a -5855d6cd484b138054db157d1029911ca7408c1829b1af6d6e8a4d4e821459b28951765e13a3ed19234f2563a37a241495afcd089b80e5af13bae0e3f6daa3d6 -4ef7920d704f34f9a54010a371102322458787879214edeeee8aefbefb4e1e9d11a34abb59bd7e5abbd9adee7a942542ede438885104051c8316b4b688aaf0ad -ba5e066e103162e4a48c1829af12f597959bcf98172921309bb3e4308811799112d29594e31ea35ce4f43a7326e94bdbba6d2ad3add72874c18f41cf9d630031 -1a5de238cdb32ff99ac266743c7af448fea59c230a9bbdf7de7be2d2a54be2c68d1be2e5cb97f2e89c1805d938f7ca6ccda68fd610940f2cd44e8e83184d7492 -ed61f345c443411b3c042517e94ccc28a424c34f9e0ddd0e532932619c27c240a4c56ccbec3b0bafd9e4c930164c1e4798cbf0c8d4f218252133224319ab9144 -669bc6cf426999b7873c524e6224c7ebc0c81a0f8db94ba751e8821fed5201319a143152c9d5b76fdf16cbe55292222243efbcf38ef4161121fafefbefe5d139 -31528baec10da49318e99bbe3c9caf6d8f619f33bb155cde7d0338269b116a27e313a3c2c6c9efde1d1329eff20327587902785e096d7216239f3bf243a407c1 -ae27677c853050cf34c6b588645e0cad1a8e11cbc5d1d78db1a4b9387ab1e9d092e53d09b913f295b1cf97180d83b4148851498e11d70d9a67e37f73ee5dc448 -e514b9088f0eed65b87989d50a3a92e74ef131a6dfed4fe882af258e241b3b6267b125b6b6e8d811475903473bea5cfa7727bb70bab7c8ca6e89c55e1ad82a9c -3bda616d1d891ddd2e7d5f08598dfa967db27e0d7912598c3249391d4ae36d568f18a1b4e185d2d413671f7ef8a178fbedb7c5bd7bf7c4071f7c202e5fbe2c09 -9222456d10239e6b286fa67c379b95377fd57b8f9718f17c4e6d134dbb6dd87e6f792b2fd375635abd843a2dd1869d8c4c8c4a36ce80894c490a4d9467829394 -59e7866d6cfa6c43f7288c91a7d2e994c6edbcb088b8b7a38ca0d81e9132ef8e91ec9c253cdb5e1817092df5183172eb80a49c18716f8e2be49685b9541e1093 -83b7eb273696ce79c8741bc488ba722d7a97d6b4468c145151044731202e84f6d6304222490b1129d7b953b1973c422d0990244919b1d2edd0758b6c51bfb2cd -ac5e924dc4cbc8769063342aaf11a9982f944649d52f5ebc90a134f212d141a4e8fdf7dfd721b4763c46968d51de78d7cd668d9b3fdf4ee08c02b872270b377d -498b2137a52e7b9e703dedf5efd20d5e637b8c6d27e312237b43544f0ab9364ed7442a20aa3651bb5c8802d849b80364c6557a6212236b43afc288375e4a8caa -c24a8adc6a574a1abaaa9ad3c61e232e0f23e63601a23c2223793b7b42cd320cae709a4d7a7cde25778e52d5ac555fe78bde57ba3562c4c986263bb64747796b -52b2424447798b1236e338477c28253e473b09d1394a084ffa4f5acf0e8ba9fff9795f996a380b25e0311a9ec7884811255693e7687f7f5f13a3e3e363f1c30f -3f488f11fda5236e282db71b7abdbb6c5b217da1fce62f8418e93255b6d4b73fbacefb52291aaca3aeabc4b4932d10a3aa8db384c98218ada45b9c1815426486 -572d9fa390509a2c2389a4836cd98fd0dba1491d86b3dcc6ea7c48388e3ff55508a5594fa5a985ee2be72160b6f7287fcaccf618b993b1dbce317285cf0c2e7b -786b25dd7156f6920f16f2a28a8efc9e34d49687dea898714e92a0bd244c474f9225ed257f8f92309c744881188dcaf3d3f46de2a4333e8f1191229e4774edda -3549901419e27fe312a37ca5a45e15eb152274d9e7292ab9f98b428c2cfb5c48a328ecaf1e7b1edf92acadc55876322e310ada3899e2d8e56b86d2f4865de90d -f1784fd6365debe9881323f9be1efe7e1fe5b593582589c6ea9acf73c6bd7f86eb96e78465f1696bc117def793f5619c576deabaaa5d573278d9536966fe8d91 -84e81a5b0031a2d9e209e48627c8f968fe489f4ae31e22c95792fc21c95cac1c1e15c62a84ba326f9011fe52a1306a23f72c9944aa2494a63d588e3208a58d8a -509511234e8a54c8cc458aa27b8ca45d547939d94d12d956e67971e6759645484ab687b2e46bfd2eb6c24d606613f90333de8889c39eaf67bbeaa49750cf7a64 -6224b714964cedde38cd1c9f80e46bd7bb686863b737579f8b51b1f809265f17b4afc15d4b271a6c756a273bf741262dc358df63243d37c9ef52a92468463c78 -42b54c90ceae05255f4be01c39423c7f892756ab7e5d9e242d1bfd7e967a8f1192af9b7a69fa54af8c1875f95b69eee46bc7cd66e186ddbef96b987cdd2be337 -2c613a24460300aa071b591b2805bdf362a0c4a8bf4f0f561bb736e6da6e3374c1d792658547e06bf5d37161e4180d2bc7a863752976dfa24d0db2e9bd03a4bf -0285dac9163c467d04c5f44a193f1dd147711bca8445d410b811540b5df0b5860a6234aad0549fbc4121b2f83c46b574781d85418cd68172943e42ede4448851 -144c7bdf088851efa7a8350143177c6b020cb861788ce031eaabfac2a6c79d99503b09621417f74e5bc322ea14fe4e3b0f5df09d0ad9d3ce89189d9c9cf454ba -e98a4573e27a2a6d4a88c0a6c79ded503b09621417f74e5ba34574e77e939fd1ec546c74be220234e7a10b7ec5ae4659fde0e0406ec038fa8701cdcd943fb0e9 -f166bf8e9d04318a877be72d9d9dbd1027771ee198200634f7f8000120302e0460d3e3ee67a17612c4685ceb08a301024000080001200004564000c46805f050 -150800012000048000101817022046e39a4f8c0608000120000480001058010110a315c04355200004800010000240605c0880188d683e0faf1f8b8b97de15af -bdfe260e60001d800e4007a003bdd701dab368efead307c4a84fb3b1a22c78b4734500511d080001200004d68a409dc7e8d7251888d1ba905e433f7819d81a40 -4617400008000120101581bebd870dc428eaf476db188851b7f8a377200004800010a88f0088517dcc5023100110a340a0500c0800012000047a830088516fa6 -627c82b44f8c5e8aebfb4b71f9ea52ec3fccf07bf1407c74f5b6b83b3e38f3114d618c639e3f8c0d0800815e230062d4ebe919b6704d88d1dd6f12a2f3cdd3a0 -819fdd3e121fdd7e29cbaa7afc5c50233d2e4463716131a631f6187e88060480c044110031ea72e29773b1b93917cb2e6568b1ef26c4285c1cf2161d89ebc64f -72b9ce85b7d8af92beb18c698cfd421cd20001200004080110a32ef560d2c4280f835128ec3285bf548848fe4d4364f2d87f20cef83c3dbc9d5fb3eba9b27619 -d73c5bfde8701cafabda2b947d2af633f964bdaaebd4bf4b267bac5713b2f7908ddf1e3b954f08618e0f238795ed271887e0d2e59a40df40000800818e119800 -31da16b38d0db1911db3ed0c712225fafc4cc8d392a8ccc46c332dbf39df1673fd3df1eb545d576de87637c59cdc4119019acfb81c4bddf686f61a91ac992c1d -2b468ceec33c464430d2cd5d8588cc10527e9dcbc4c349bc9e0cadd1e6cfc2711466532137dd069561a443f7699c376553e565d82ecb63a2ef448c64fdac3dd7 -759f4cbc1ec9c6db2bc89c5c97e5590e952a5fdabec222049718138f368000100002034660e4c428251f9a0c25f467b64164c53cbf9c6f8a0d2a24c9122333fc -3b9197aaeb49506cbe99d5d7444bd56372284fd1c43c462961c84985109cf4a810914d845ca1232aa312ac793d3a977b72b4c7892767cbc5ea265b42d87da97e -f879fe3df4ba4f266a8b278adb63b12d0b1f375de3e599874d7bb26c595d65b2fc2c635e066cd1203a10000240604504c64d8c7cc4c33eef222abc4c9debcc3b -957aa912a2b46de5124d941899ba6a9113e5cdb0bc1ab62744b6c1cbd8f52c4f90737dd87da842765d554e86afb2701eff1e7add27932d876abb4c3e9e98cecb -db21371a932dababcc8a0604d58100100002634300c4c8f6eca8b0566362e408858510b1b16956321e7f28ade8b151212133ece5f6ece8f051d207af27737d2c -12e27ccacd154623d250124653f947aebe29bc5576dd27136f8ba65f8ddd3eaf54c357ded73e972b089711ea20860404800010a88bc0b889910c6dd50ca5ad42 -8cecfe64e82d214a20464c2feda4eb24ffe79bdbd9bb875222f451f66e229e4ba31be0eff03192b579682d0f19e9846a63659832e4b93c3ce495b5e7ea4f7963 -78e2373f677f97212f4b26fb5d44fa7fc7bb990aed65de20239c58d1be4b86bad602e58100100002134060e4c488663020f9ba8c0cd5f1284985e1fd99c9d7fa -b17c4d945459e5659a62f2355b65be10d20416228608048000100002fd406002c4a81f404f518ab0a7d21432a9a7c4ede199227a183310000240000874810088 -5117a84fa4cf7ac46822a06098400008000120d06b04408c7a3d3dc3160ec468d8f307e98100100002534400c4688ab3bea6311331ba73ff744dbda11b200004 -8000100002ab21407b1688d16a18a276090267672fc4c99d4738800174003a001d800e0c460768efead367fff0a6579c0dfb4a59e13e0d0ab200012000048000 -10000240a0090220464d50431d20000480001000024060940880188d725a3128200004800010000240a0090220464d50431d2000048000100002406094088018 -8d685a0f0e0ec41b6fbc8103184007a003d001e8c0607480f6ae3e7d408cfa341b2bca42a4e8e4e464c556501d08000120000480c07a10a03d8bf6ae3e7d408c -fa341b2bcaa294ebf4f454e00006d001e80074003ad0771da06d0fc468c5cd1fd5fd088018c108f6dd08423ee82874003ac07500c408aca65504408c6070b0e9 -4007a003d08121e9008851abb4008dd72646cb85387fee82d8f586de966271fe9c3877ee9cb8b05bd3d854b65db3bd758607872cfb3a71425f08594307a0032b -eac0f488d1e99e582cf644d9af771ded6c89adad2db1735493d804b45db3c5f5156f49f6bac468b9382fce2f96de855d75bdecae44d5a5bfe72eecae643c62b4 -41b286b6a364dfbd9090c29ec83ea43b40c8da63d2bfe22686b9c5dcc6d60110a302f538123b5b3ba22e2792cd2872118364c46883cb5445b162cacefaaa478c -c81b745e2c96be855e75bdcc40a8baabb4a1da8fd106b515da4e68b9100319b3ad90fe5026b6d1467bd029e840bb3a00626413865508494c72b18a1c7c4ca1ed -8496ab2258d6f54a622443446968ec5c428ace9f5f8825dd41ee5e48cfc92309add9ff9fee8a0bfa3a0badd92127f53fef47f695f5c3ef560b7d9c0ae9a171ca -949db7db75c9447d58e52e2cf8b81db2b870718ec5854d663442fae46356e3b4eae51ebc2c8cb9a2c70a46bd5da30e7c812f7460351d980631a24d3f098d5178 -4c1e2a94669c5f88bd53f216a972a9d74885d5545d195eb34984418876c4cec2eac7262aba0fea33ebc3295326ab6c5fb59bfccd427d864cb20f2e3f85024fc5 -5eb02cbcaf24d468f57924dbaeef492b2546b42933824224446ec2749e6dbeea7c5918cd578687cfa86d6f1b9e3e534293918f4c56de465928cc180f1ba7aa53 -2a8b03176728d027b785adb34fa30c11cdd45bc7c7648fb52ccc0963bc9a31067ec00f3ad00f1d9800314ac981ce173adac988119d4f89497018cce711b2cf7b -bd2f9e3e3302b6d83bca65e56d4802c764757a84ac714a2293d439f2e5547970e163f1f559c36b641323e981915e15f20ef1b0990af1143d4169a2359de749d9 -7912b66a6fb17495a13ed479fbba5a84be3e55b88b7b98781b7658ca27932b3ce893c5d526d5778502cbb0aaead3ee47c9639ed7c488086246d6f2392c4b92ef -8781c3468379800e4007eaeac0f889519977877b91e477079170799b4a3d46cadbe248f0b6db527d4a7296797b1483b389114f180f914991171f496b3a861aa4 -882b5741312d4f87f4ccd0c66b793a743d5e5e7a71d8c6cfebf2308f7ddeee5385d17c7df2909e6ad796c3083f05c8c4fb7485a4ca70a1f28ca048cf9a2f2458 -d5b65d57f5cbdbcf92c3cf2f7693dc2f90a0bac615e5b121430786a9031327468ed090411832af4b955729d46324098d271ca5c80e0fa9b9be2b4f50954c4320 -467a534f3d1f3a8c66859128ac465e0af578be19824abd34ae30990a65a9babc0dc36039427a3294a7ceb3bc255b8e2a996cf222c354c9f8166c3c7e59725c54 -bf545fbfa6a04aee8c8439fb2c09a3f1d720c8ba4d5e8d80278d567aea111bea303754ccdb38e66dfcc42879309f87d24ef7162c94c6426c8ab414881123323a -0c67e5dba8f395c9d756f84a13a5fc3ce5342d28bee7f51879fab6c6997aa0c243691a97ca31d47319f9738cec3090f24898e128b949db09d5469274969c5d48 -d8ceceebba65ef3fb2fbccfed7044d912ff29c6489de32799a79517c32c927cf54f830237fec5cf15d4c0e5c8ca46b7f38316f2ba44fde4fd6a6e35d49a1af13 -c086308e0d01f38879840ea45e87f1ff24080f3d251b5afe1e239eac9ce5f058212649181c89dbc679d5a6aeabda757987ec3eb304e93c094a26802ff6f6b244 -f0a48d40998ac9d73c21dbe31dd309e9192e5e62d442f235bc0afdf62a586135184c6c9ad001e8c01474601ac4a89e9303a5232250f9b83ec8510fc991f23821 -af680a9b00c608b2031d307500c428220940534504408c60746174a103d001e8c0907400c4086ca65504408c6010876410212bf4153a001d00316a9516a07122 -46272727000208000120000480c02010a03d6bfcc9d783988a710a79707020150c0730800e4007a003d081a1e800ed5d7dfaec1fdef48ab3615f292bdca74141 -162000048000100002400008344100c4a8096aa8030480001000024000088c120110a3514e2b0605048000100002400008344100c4a8096aa803048000100002 -4000088c120110a3114d2b92af916c3994644bc8095d850e4007940e20f97a4444a46f43c1e3fa7d9b11c8030480001000026508e0717de847ab08e0058f7859 -1a5e98071d800e400786a403b429e23d46ad528369370e6204833824830859a1afd001e80088d1b4794beba307318291c146031d800e400786a4032046ad5383 -6977303a62b45c88f3e7ac5f9d779d3b8521d48610f888216d0a90156b77ea3a00623405de72ba27168b3d71dac158c7468c968bf3e2fc62696c74eadcee8573 -e2dc85dd9536416a6bd536da366a75657461d6b68c681f9b3b74003ad05407408c3a200b6bef12c46825b2922faea5589c3f2f164b6e705ce79a1aa4986d3595 -a1aa5e5d19eb96afea1fd79b1a7bd483ee4007c27400c468ed2ca5830efb4c8c649825f1b464c785dd4c71772fe873e7ce2fc492425385b2bbe202af5775fd34 -2f6ff467d53b778e911f7e2d2145e7952c2a5446d7e99c0a1795b5c5c7e40cc76538a83e5c18d8213a479bd27365b52171f5f5ef9a033bfc658fcb25a33d2635 -67849b9e6386ad4b1ea39f2464598619c29591087fd866814d15384d4507a6418c88186c6d892d792cc45e12533ada49beabf052767de72881c351b640658c32 -3b82aac97a497b7bd46ed6976c8f7f6c82a2fef7d595e777c4ce42b599f595b429e5d763da12795f4762c73e6ff49b5dd7a135fa3f6f37366d2b0da5d1a6c788 -860ed118e789cca49ba9bc9e95979b7fb611d377daf8abaedb8b9aea51588cd7a332aa3d4924987caa3c6f478589f85fbb8e26252ccc56d6966cdf838131062a -e36a53911ade86afac670eecf0973d4e2d63c098d43c15b075d435c2743e9941884088a003d08116756002c4e854ec2d5232243f8c2410b958ec1d25d715b1f0 -97cd090395c989c8e9de426c112be1e4caea47d72d23460999d1e48613a68cc8a54d667dd9ec45b76bca96d0a784f424633f523946d9ff6b4c36b289514a68d4 -6187a5e88ecc0ebd1031a264677e9e7f0fbdaedab6fba7b67832b56adb96c31512b2fbf6b555f4541106da3b2617b86aab0c037ec75ad626c9c1bc460e4f59da -7f4e3a4dd2c865e1f2f0f375c764b7c3e721fd7e61d79e57579994b8a63a6425c1b76828a772a78c71c22b041d4837c871bfc7c8f0ee985ea3943824e7142329 -2d5b245606d1f2919e1a1e23cd572c4f92715e79776c59c903e40b99f1b20537566c1f91d99ed763647903f462b43c18d273429e0515b2d2e1992cbc56e7ba1d -22236f902d87eac7779e6fbeaa8cfdd70eb3d963726de0bc3f1f0676df76584f5d57e127e591f1f55f36073c89dc8549dd31f179f3d5e5731cd23e8810bc06d0 -01e8400b3a301162e4091529c26084d42ac24a15e1b002b9894d8ca4ac96e7c747a454df729c342edba3d42e29e2ca55b80b7185701451d11bbe1946531e161d -ea62612f0ac1545dcf9f264b3d2af43f6f4b857a64b942282b2dcfc7a1eada7f55191d2e7384e4ec27cf0c3942c36856984fb6a9eaf21c215fff9e39d8b59ebc -53e3f0cb987971ac27f2c2b0cdebf239748531fbfeb41eeeb4e16d810e8c4307c64f8c6c32e0200969488d288d451c745983ddf84369fc9178a7f7c6cae739da -49f39c4a436c3951cb43699e760ac4c70ea565a1c416738a6caae5cf31cac23d59582d271d3c4493854af826effa5e755de5ecb0246f1986712618abf08c1d2a -f2bcbbc848ba66658cb6cdb19a213433c4975e736050b82bb2dbb4c36739f94bc3938e0477ebbc9e03e571d278a950a60a7915c39285319562eb90a7f0aea32a -ccc66180b191621ea103fdd3810910231a224f48a67ca39400e9105a763d2547765987578587a6b8b7a992186579422a393ac97d92ef172af542256574f9fc5d -449224b1246b9d486ec89fe52d59eda77555de5587c9d72db8406164fa676430279813e8007460483a301162d47ec8a8951e7c3943ad74d64ea3637bc1e39016 -3764c566041d800e4007eaeb0088513b7c204eab2046482c84570d3a001d800e4007d6aa03204671280c5af120008f51fdbb15dce10133e80074003ad09d0e80 -1881d2b48a0011a393939356fb40e340000800012000046221407bd6b8df63140b29b4d30881838303a96038800174003a001d800e0c450768efead367fff0a6 -579c0dfb4a59e13e0d0ab20001200004800010000240a0090220464d50431d20000480001000024060940880188d725a3128200004800010000240a009022046 -4d50431d20000480001000024060940880188d725a3128200004800010000240a0090220464d50431d20000480001000024060940880188d725a312820000480 -0010000240a0090220464d50eb699d85fca1dc7a474f8702b18000100002400008748200885127b0b7d3299122dfabed1f3f7e2c9e3c79229e3e7d2acececec4 -b367cf2489c207080001200004800010c81100311a9136f8889122455f7cf185b872e58a24452046239a780c05080001200004a22130196274b4b325b6b6b6c4 -ce5186dde95ee231d913a7d1a0ecbe214e8c1e3e7c28f841dea29d9d1d71f1e245f1fcf97379c063d4fd9c4102200004800010e817021321464762676b47484e -a408d184881191a2c3c343498a767777c577df7d270f10a37e2d464803048000100002dd23300d62e422412325461436a3e3d1a347f22fe51c51d8ecbdf7de13 -972e5d12376edc102f5fbe94078851f70b101200012000048040bf10884b8c24d9d8113b0b0a5b251e1afa3f095f51086b6b6b21f6286e6594d9128bbd23b127 -cbd3f72cb065d4639e1ed586f2fcf036ed7e34cee42d5232643251088d1323979c52d445263b932df13b69ef53bfe652121d955c7dfbf66db15c2e25292232f4 -ce3bef486f1111a2efbfff5e1e20463d9b4088030480001000029d23109f1869f2729a109e8c0cd9212c83d070c244393f542fcf0592e4244b0ca23c21459ef2 -f39e7e38b43609328891afbe157e53a1b8cea7cc2f00111df5c4d9871f7e28de7efb6d71efde3df1c1071f88cb972f4b82a4481188518f2712a2010120000480 -406708c427462aa1d9f0c230afd1114b7a2e252c1926ae32923c3142a53d4296774ac15ad68f4fce240455f06475364d611d1331a2a4ea172f5ec8501a7989e8 -2052f4fefbefeb101a3c466178a2141000024000084c0f819689511606abf2ded81e25feb498910b9411229b5c5579732a8991434e2673fa445b79993ea80e11 -23224594584d9ea3fdfd7d4d8c8e8f8fc50f3ffc203d46f4970e84d2fa306b9001080001200004fa84407bc4c80a89c9dc229577c4bd4a85effe505aca9fd2bc -1f9d8fe4eba78a8c69b264f667c8e90b0bf66906992c44748814f13ca26bd7ae4982a4c810ff0b62d4d3898458400008000120d019022d12231a134f7cb67389 -24cbc9df25e44b86b6df35240916cb5d92d039fa092646fefa434cbee6a44885cc5ca4081ea3ced61c3a060240000800811e23109718f578a05310adeeefa4c1 -633405adc018810010000240a00e02204675d0425920000480001000024060d40880188d7a7a3138200004800010000240a00e02204675d04259200004800010 -00024060d40880188d7a7a3138200004800010000240a00e02204675d0425920000480001000024060d40880188d7a7a3138200004800010000240a00e022046 -75d0425920000480001000024060d408d422463ffef8a328ab306aa4303820000480001000024060d40810c721aee3fb6cb82e28724495710003e80074003a00 -1d800e4007c6a20365a488389193188d9a2a62704000080001200004800010f020006204d500024000080001200004804086008811540108000120000480001000022046d00120000480001000024000089808fc0d1ba230eba2ca5bca0000000049454e44ae426082}}{\nonshppict -{\pict\picscalex100\picscaley100\piccropl0\piccropr0\piccropt0\piccropb0\picw15401\pich5530\picwgoal8731\pichgoal3135\wmetafile8\bliptag-1110965009\blipupi95{\*\blipuid bdc804ef0a5456ddb70cd6ce02bece53} -010009000003d4c902000000abc9020000000400000003010800050000000b0200000000050000000c02d2004702030000001e00040000000701040004000000 -07010400abc90200410b2000cc00d100460200000000d1004602000000002800000046020000d100000001001800000000001493050000000000000000000000 -000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -0000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffe7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7deffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffffffffe7e7d6ffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff0000ffff -ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff -ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff -ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff -ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffb5b5b5b5b5b5bdbdbdb5b5b5b5b5b5b5b5b5bdbdbdb5b5b5b5b5b5b5b5b5bdbdbdb5b5b5b5b5b5ffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff -ffffd6f7ffd6b5b5fffff7ffffffe7ffffa5a5c6a5a5a5b5a5a5fff7d6d6f7ffd6b5b5fffff7d6f7ffd6b5b5fffff7d6f7ffd6b5b5fffff7d6f7ffa5a5b5a5a5 -a5d6b5a5fffff7ffffffffffffd6f7ffb5a5b5fff7d6ffffffffffffe7ffffa5a5c6a5a5a5b5a5a5fff7d6ffffffffffffffffffd6f7ffd6b5b5fffff7d6f7ff -d6b5b5d6f7f7d6b5b5fffff7e7ffffa5a5c6a5a5a5b5a5a5fff7d6ffffffb5d6f7a5a5a5a5a5a5f7d6b5ffffffe7ffffc6a5c6ffffe7ffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 -deffffffffffffffffffffffffffffffffffffffffffdef7ffd6b5b5fffff7f7ffffa5bddeffe7c6ffffffd6f7ffcea5bdd6f7e7d6b5b5fffff7def7ffd6b5b5 -fffff7d6f7ffdebdbdf7fff7a5b5d6ffe7c6ffffffb5d6f7e7c6a5ffffffffffffb5d6f7a5a5a5f7d6b5fffffff7ffffa5b5d6ffe7c6ffffffd6f7ffc6a5b5ff -ffe7ffffffffffffd6f7ffd6b5b5fffff7d6f7ffd6b5b5d6f7f7debdbdf7fff7a5b5d6ffe7c6ffffffd6f7ffc6a5b5d6f7e7bda5bdfff7d6f7ffffb5b5d6fff7 -deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdbdbdffffffffffffff -ffffffffffd6d6d6dededeffffffffffffffffffffffffffffffbdbdbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff -ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7d6f7ffc6a5b5ffffe7ffffffff -ffffffffffd6f7ffd6b5b5fffff7d6f7ffd6b5b5fffff7d6f7ffd6b5b5d6f7f7d6b5b5fffff7ffffffd6f7ffd6b5b5fffff7f7ffffb5b5d6d6e7d6d6b5b5ffff -f7d6f7ffc6a5b5ffffe7ffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7d6f7ffd6b5b5d6f7f7d6b5b5d6f7f7c6a5b5ffffe7ffffffffffff -ffffffffffffffffffffffffa5c6e7c6a5a5ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffb5b5b5ffffffffffffffffffd6d6d6c6c6c6c6c6c6e7e7e7ffffffffffffffffffffffffb5b5b5ffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffd6f7 -ffd6b5b5fffff7d6f7ffa5a5b5a5a5a5a5a5a5a5a5a5b5a5a5d6e7d6debdbdfffff7d6f7ffd6b5b5fffff7d6f7ffd6b5b5d6f7f7debdbdfffff7ffffffd6f7ff -debdbdfffff7d6f7ffd6b5b5f7fff7b5b5d6fff7d6d6f7ffa5a5bda5a5a5a5a5a5a5a5a5bda5a5fff7d6ffffffffffffdef7ffd6b5b5fffff7d6f7ffdebdbdd6 -f7f7d6b5b5d6f7f7a5a5bda5a5a5a5a5a5a5a5a5bda5a5f7f7d6a5b5d6a5a5a5f7debdffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffffffffff7f7f7c6c6c6c6c6c6c6c6c6cececeffffffffffffffffffff -ffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff -ffffffffffffffffffffffffffffffffffffd6f7ffb5a5b5fff7d6f7ffffb5b5d6fff7d6ffffffd6f7ffd6b5b5d6f7f7b5a5b5fff7d6d6f7ffb5a5b5fff7d6d6 -f7ffd6b5b5f7fff7a5b5d6ffe7c6ffffffb5d6f7e7c6a5ffffffa5c6e7f7d6b5ffffffb5d6f7e7c6a5f7ffffb5b5d6fff7d6ffffffd6f7ffd6b5b5fffff7ffff -ffffffffd6f7ffd6b5b5fffff7d6f7ffd6b5b5d6f7f7d6b5b5f7fff7b5b5d6fff7d6ffffffd6f7ffd6b5b5e7fff7c6a5c6ffffe7d6f7ffc6a5b5ffffe7ffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7cececebdbd -bdf7f7f7cececec6c6c6e7e7e7ffffffffffffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffdef7ffc6b5b5a5b5c6c6a5a5def7efa5a5b5a5a5a5b5a5a5fff7 -ded6f7ffc6b5b5a5b5c6a5a5a5e7d6b5a5b5d6a5a5a5f7debdffffffd6f7ffa5a5b5a5a5a5c6a5a5ffffe7d6f7ffbda5bdfff7d6ffffffd6f7ffbda5bdfff7d6 -d6f7ffa5a5b5a5a5a5b5a5a5fff7d6ffffffffffffe7ffffa5a5c6a5a5a5cea5a5d6f7e7d6b5b5d6f7f7debdbdfffff7d6f7ffa5a5b5a5a5a5b5a5a5fff7d6ff -ffffbddef7a5a5a5a5a5a5f7d6b5ffffffe7ffffc6a5c6ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffbdbdbdf7f7f7ffffffefefefe7e7e7ffffffefefefc6c6c6cececeffffffffffffffffffbdbdbdffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 -e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffd6f7ffd6b5 -b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7cececebdbdbdefefefffffffffffffb5b5 -b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -efffffc6a5c6ffffe7d6f7ffdebdbdd6f7f7d6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -ffffffe7e7e7c6c6c6cececeffffffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff -ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffa5c6e7a5a5a5ffe7c6ffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffb5b5b5f7f7f7f7f7f7f7f7f7efefeff7f7f7efefeff7f7f7c6c6c6c6c6c6f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffbdbdbdf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7dededecececefffffff7f7f7bdbdbdffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff -ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5 -b5b5b5b5bdbdbdb5b5b5b5b5b5b5b5b5bdbdbdb5b5b5b5b5b5b5b5b5bdbdbdb5b5b5b5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff -ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff -ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 -deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff -ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7e7b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5e7e7e7ffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5efefefffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7e7b5 -b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 -e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff -ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffe7ffffa5a5c6a5a5a5b5a5a5f7f7d6a5b5d6e7c6a5ffffffe7ffff -a5a5c6f7d6b5e7ffffa5a5c6a5a5a5b5a5a5fff7d6ffffffffffffffffffffffffd6f7ffa5a5b5a5a5a5d6b5a5fffff7d6f7ffd6b5b5fffff7ffffffd6f7ffd6 -b5b5fffff7ffffffffffffffffffb5d6f7a5a5a5a5a5a5b5b5a5d6b5b5d6f7f7d6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7b5b5b5a5a5b5a5a5a5d6b5a5ffff -f7ffffffb5d6f7a5a5a5a5a5a5a5a5a5d6b5a5fffff7e7ffffa5a5c6a5a5a5a5a5a5ffe7c6d6f7ffd6b5b5fffff7ffffffb5d6f7b5a5a5fff7d6e7ffffc6a5c6 -ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7defffffffffffffffffffffffffffffffffffffffffff7ffffa5b5d6ffe7c6ff -ffffdef7ffc6a5b5f7ffe7a5b5d6ffefcea5c6e7f7d6b5f7ffffa5bddeffe7c6ffffffd6f7ffcea5bdffffe7fffffffffffff7ffffa5b5d6ffe7c6ffffffbdde -f7e7c6a5d6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5fffff7ffffffffffffe7ffffcea5ceffffe7ffffffc6e7ffdebda5d6f7f7d6b5b5fffff7ffffffd6f7ff -d6b5b5d6f7f7cea5bdffffe7ffffffb5d6f7efcea5e7ffffc6a5c6ffffe7ffffffc6e7ffd6b5a5f7fff7a5bddeffe7c6ffffffe7ffffbda5ced6e7d6d6b5b5ff -fff7def7ffc6a5b5ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7e7f7f76b84b5737373737373e7b58cf7f7f7cef7f773739c -7373739c6b6bf7f7ceb5def7a5738cf7f7cebde7f79c7384f7f7ceb5def7a5738cb5decea5738cf7f7cebde7f79c7384f7f7ceb5def7a5738cf7f7cea5cef76b -6b6b737373737373a57373b5decea5738cf7f7cef7f7f7b5def7a5738cf7f7cecef7f76b6b9c737373737373a57373f7f7cef7f7f7f7f7f7b5e7f79c6b84bde7 -ce9c7384b5e7ce9c6b84f7f7cef7f7f7b5e7f79c6b84f7f7cedef7f7738cb56b6b6b737373f7ce9cf7f7f7f7f7f7f7f7f7def7f7738cb56b6b6bf7cea5cef7f7 -7373a56b6b6ba57373f7f7cef7f7f7f7f7f7f7f7f7f7f7f7e7f7f76b84b5737373737373e7cea56b84b5bd8c73f7f7dee7f7f76b84b5e7bd8cdef7f7738cb56b -6b6b737373f7ce9cf7f7f7def7f7738cbd737373737373deb584f7f7f79ccef77373736b6b6b7373739c7373e7f7ce6b84b5737373f7ce9ce7f7f76b84b57373 -73737373f7cea5f7f7f7f7f7f7f7f7f7b5e7f79c6b84f7f7cef7f7f7b5e7f79c6b84f7f7cedef7f7738cb56b6b6b737373f7ce9cb5e7f79c6b84f7f7cef7f7f7 -e7f7f76b84b5737373737373f7cea5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff -ffffffffffffffffffffd6f7ffc6a5b5ffffe7ffffffffffffffffffffffffd6f7ffa5a5b5d6b5a5fffff7d6f7ffc6a5b5ffffe7ffffffffffffffffffffffff -ffffffffffffd6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7d6b5b5fffff7ffffffd6f7ffd6b5b5fffff7ffffffffffffd6f7ffd6b5b5fffff7ffffffd6 -f7ffd6b5b5d6f7f7d6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7d6b5b5fffff7ffffffd6f7ffd6b5b5e7fff7b5a5c6fff7d6ffffffd6f7ffd6b5b5d6f7f7d6b5 -b5fffff7ffffffffffffffffffd6f7ffc6a5b5f7ffe7a5b5d6ffe7c6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f79ccef7b5 -8c73f7f7def7f7f784b5deb58c739cc6deb58c73f7f7decef7f7846b9cf7deb584b5def7cea5f7f7f7739ccef7ce9cf7f7f76b9cc6f7ce9c84b5def7cea5f7f7 -f7739ccef7ce9cf7f7f76b9cc6f7ce9c84b5dee7b58cf7f7f7def7f76b84b5e7b58c6b9cc6f7ce9cf7f7f7f7f7f76b9cc6deb58c9ccef7b58c73f7f7decef7f7 -6b6b9ce7b58cf7f7f7f7f7f7f7f7f773a5cef7c69c739ccef7ce9c73a5cef7c69cf7f7f7f7f7f773a5cedeb5849ccef7b5846bf7f7e7f7f7f7739ccece9c6bf7 -f7f7f7f7f7f7f7f76b9ccef7cea5f7f7f79ccef7b5846bf7f7e7c6f7f78c739cf7deb5f7f7f7f7f7f7f7f7f79ccef7b58c73f7f7def7f7f76b9ccecea5739cc6 -f7b58c73b5dedea5738cf7f7c69ccef7b5846bf7f7e7f7f7f7739ccece9c6ba5cef7b5846bf7f7def7f7f78cb5e7b5846b8cb5cedeb584f7f7f7f7f7f7739cce -deb58473a5cef7c69cf7f7f79ccef7b58c73f7f7def7f7f76b9ccecea573f7f7f7f7f7f7f7f7f773a5cef7c69cf7f7f7f7f7f773a5cedeb5849ccef7b5846bf7 -f7e7f7f7f7739ccece9c6b8cb5e7f7c69cf7f7f79ccef7b58c73f7f7def7f7f76b9ccecea573f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff -ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffd6f7ffa5a5b5a5a5a5a5a5a5a5a5a5b5a5a5fff7dee7ffffa5a5c6e7c6a5ffffffd6 -f7ffa5a5b5a5a5a5a5a5a5a5a5a5b5a5a5fff7d6ffffffffffffd6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5def7f7d6b5b5fffff7ffffffdef7ffd6b5b5ffff -f7ffffffffffffd6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7debdbdfffff7ffffffd6f7ffdebdbdd6f7f7d6b5b5fffff7ffffffd6f7ffc6a5b5ffffe7 -def7ffa5a5b5a5a5a5a5a5a5debda5d6f7f7d6b5b5fffff7ffffffffffffffffffd6f7ffa5a5bda5a5a5e7c6a5ffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5 -b5fffffff7f7f7f7f7f7f7f7f7f7f7f7a5cef7ce9c73f7f7f7f7f7f7f7f7f7f7f7f7a5cef7b5846bf7f7e7f7f7f7a5cef7ce9c6bbde7f7b58484f7f7e7b5def7 -bd8c8cf7f7dea5cef7ce9c6bbde7f7b58484f7f7e7b5def7bd8c8cf7f7dea5cef7ce9c6bbde7f7847384f7e7b5f7f7f7bde7f7b58484a5cee7ce9c6bf7f7f7f7 -f7f7b5e7f7b58484a5cee7ce9c73f7f7f7f7f7f7bde7f7b58484f7f7e7f7f7f7f7f7f79ccef7cea5739ccef7cea5739ccef7cea573f7f7f7f7f7f7b5def7b58c -8c9ccedebd8c73f7f7def7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7a5cef7ce9c73f7f7f79ccef7bd8c73f7f7def7f7f79ccef7cea573f7f7f7f7f7f7f7f7f7 -a5cef7b58473f7f7e7f7f7f7f7f7f7f7f7f7f7f7f79ccef7737373ce9c73f7f7f79ccef7bd8c73f7f7def7f7f7f7f7f7f7f7f79ccef7cea573f7f7f7f7f7f7f7 -f7f7f7f7f79ccef7cea573f7f7f7f7f7f7b5def7bd8c8c9ccedecea573f7f7f7a5cef7b58473f7f7e7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f79ccef7cea5 -73f7f7f7f7f7f7b5def7b58c8c9ccedebd8c73f7f7def7f7f7f7f7f7f7f7f7b5def7b58c8cf7f7dea5cef7b58473f7f7e7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff -ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6fffffffffffffffffffffffffffffffffffffffffff7ffffb5b5d6fff7d6ffffffd6f7 -ffd6b5b5fffff7a5c6e7e7d6b5a5b5d6ffe7c6f7ffffb5b5d6fff7d6ffffffd6f7ffd6b5b5fffff7fffffffffffff7ffffa5b5d6ffe7c6ffffffb5d6f7e7c6a5 -d6f7ffa5a5b5ffe7c6ffffffd6f7ffd6b5b5fffff7ffffffffffffd6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7a5a5b5ffe7c6ffffffd6f7ffd6b5b5d6 -f7f7b5a5b5fff7d6ffffffb5d6f7e7c6a5ffffffffffffffffffffffffd6f7ffd6b5b5f7fff7a5b5d6ffe7c6ffffffe7ffffb5a5c6d6e7d6d6b5b5e7fff7b5a5 -c6fff7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f76b9cce7373736b6b6b8c7373f7deb5f7f7f7f7f7f7f7f7f7def7f78c8cb5f7deb5f7 -f7f7cef7f7a573a5def7c68c8cb5f7deb5e7f7f78484b5f7deb5cef7f7a573a5def7c68c8cb5f7deb5e7f7f78484b5f7deb5cef7f7a573a5f7f7c6def7f76b84 -b57373736b6b6b8c7373dedeb5a58cb5f7f7c6f7f7f7def7f78c8cb5dedeb58c8cb5f7deb5f7f7f7def7f78c8cb5f7deb5f7f7f7f7f7f7cef7f79c6b9ce7f7ce -8484b5dedeb59c84b5f7f7cef7f7f7def7f78484b5cee7b56b6b9c7373736b6b6b7373736b6b6bf7ce9cf7f7f7f7f7f7c6f7f79c739cf7f7cee7f7f78484b5f7 -deb5f7f7f7cef7f79c6b9cf7f7cef7f7f7f7f7f7c6f7f773739c6b6b6b7373736b6b6b737373f7ce9ce7f7f76b84b5b58c73f7f7decef7f76b6b9c7373736b6b -6b7373736b6b6bcece9c846b9cf7e7b5f7f7f7f7f7f7f7f7f7cef7f79c6b9cf7f7cef7f7f7e7f7f78484b5cedeb59c6b9cf7f7cec6f7f773739c6b6b6b737373 -6b6b6b737373f7ce9cf7f7f7f7f7f7cef7f79c6b9cf7f7cef7f7f7def7f78484b5cee7b56b6b9c7373736b6b6b7373736b6b6bdece9c8484b5f7e7b5c6f7f773 -739c6b6b6b7373736b6b6b737373f7ce9c73a5ce6b6b6b9c7373f7f7cef7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff -ffffffffffffffffffd6f7ffa5a5b5a5a5a5bda5a5fff7d6a5c6e7d6b5a5fffff7d6f7ffa5a5b5ffe7c6def7ffa5a5b5a5a5a5b5a5a5fff7deffffffffffffff -ffffffffffd6f7ffa5a5b5a5a5a5cea5a5ffffe7d6f7ffd6b5b5a5cedea5a5a5a5a5a5ffe7c6ffffffffffffffffffd6f7ffdebdbdfffff7ffffffd6f7ffdebd -bdd6f7f7d6b5b5a5c6d6a5a5a5a5a5a5ffe7c6d6f7ffcebdbda5b5c6a5a5a5c6a5a5ffffefffffffa5c6e7a5a5a5a5a5a5a5a5a5ffe7c6ffffffefffffa5a5c6 -a5a5a5a5a5a5ffefced6f7ffd6b5b5fffff7efffffa5a5c6d6b5a5fffff7efffffc6a5c6ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f79ccef7bd8c -73f7f7def7f7f784b5decea5739ccef7b58c73f7f7decef7f784739cf7e7b584b5debd8c73f7f7de73a5ce9c6b6bf7f7ce739ccef7cea584b5debd8c73f7f7de -73a5ce9c6b6bf7f7ce739ccef7cea5f7f7f7f7f7f7f7f7f7f7f7f76b9ccee7bd8c84b5deb58c73f7f7def7f7f7739ccef7cea59ccef7bd8c73f7f7def7f7f76b -9ccee7bd8cf7f7f7f7f7f7f7f7f78cbde7deb5848cb5e7deb5848cbde7b58473f7f7e7f7f7f773a5cef7ce9ca5cef7ce9c6bf7f7f7f7f7f773a5cedeb584f7f7 -f7f7f7f7f7f7f784b5dee7bd8cf7f7f7a5cef7b5846bf7f7e7cef7f78c73a5f7deb5f7f7f7f7f7f7f7f7f79ccef7cea573f7f7f7f7f7f76b9ccee7bd8cb5def7 -a5738c9ccecebd8c73f7f7dea5cef7ce9c6bf7f7f7f7f7f773a5cedeb584a5cef7b58473f7f7e7f7f7f78cbde7ce9c738cb5e7deb584f7f7f7f7f7f78cb5e7de -b5848cbde7deb584f7f7f79ccef7cea573f7f7f7f7f7f76b9ccee7bd8cf7f7f7f7f7f7f7f7f78cbde79c7373f7f7cef7f7f773a5cef7ce9ca5cef7ce9c6bf7f7 -f7f7f7f773a5cedeb5848cbde7ce9c73f7f7f79ccef7cea573f7f7f7f7f7f76b9ccee7bd8cf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff -ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffadadadffffff -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7b5def773738c6b6b6b737373f7c69cf7f7f79ccef77373736b6b6bb58c73f7f7deb5e7f76b6b847373736b6b6bce -cea56b6b9c737373f7ce9cb5e7f76b6b847373736b6b6bcecea56b6b9c737373f7ce9ccef7f76b6b9c7373736b6b6b737373f7c69cb5def76b6b847373736b6b -6b8c7373f7deb5f7f7f7b5def773738c6b6b6b8c8c73b58484f7f7def7f7f7f7f7f7b5def7b58c8cb5dedea5738cb5dec673738c6b6b6b737373846b6bf7deb5 -f7f7f7a5cef76b6b6b7373739c6b6bf7f7cef7f7f7f7f7f7b5def773738c6b6b6bb58c73f7f7dea5cef76b6b6b737373b5846bf7f7e7f7f7f7f7f7f7f7f7f7f7 -f7f79cc6f77373736b6b6ba57373f7f7c6739cceb5846bf7f7e79cc6f7737373f7ce9ca5cef76b6b6b7373739c6b6bf7f7cef7f7f7b5def76b6b847373736b6b -6bf7ce9cb5def7a5738cf7f7c6f7f7f7b5def773738c6b6b6b737373b5846bf7f7e79cc6f77373736b6b6ba57373f7f7c6f7f7f7f7f7f7f7f7f7b5def78c8c8c -6b6b84737373846b6bf7deb5f7f7f7a5cef76b6b6b7373739c6b6bf7f7ceb5def773738c6b6b6ba573739cc6c67373736b6b6ba57373f7f7c6f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffdebdbdfffff7ffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7def7f78c8cb5f7deb5f7f7f7f7f7f7e7f7f78484b5f7e7bdf7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7def7f78c8cb5f7deb5f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7e7f7f78484b5f7e7bdf7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7e7f7f78484b5f7e7bdf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f784b5 -dee7b58cf7f7f7f7f7f7f7f7f78cb5e7deb584739ccece9c6bf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f784b5decea573f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f78cb5e7c69c6bf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f78cb5e7deb584f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 -deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7bde7f79c7384f7f7cef7f7f7f7f7f7b5def7a5738cf7f7cef7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7b5def7a5738cf7 -f7cef7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff -ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5 -b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffb5b5b5e7e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffefefefb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 -e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffdededeb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad -adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 -b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 -b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad -adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 -b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 -b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad -adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 -b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 -b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad -adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 -b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 -b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad -adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 -b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 -b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad -adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 -b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 -b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad -adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 -b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5e7e7e7ffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff -ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff -ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7 -e7b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5e7e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff -ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffb5b5b5efefefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7e7b5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff -ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffadadadffffff -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7def7f7738cbd9c7373f7f7cef7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff -ffffffffffd6f7ffa5a5b5a5a5a5b5b5a5d6b5b5fffff7e7ffffa5a5c6a5a5a5b5a5a5fff7d6d6f7ffd6b5b5fffff7ffffffb5d6f7a5a5a5a5a5a5a5a5a5d6b5 -a5fffff7b5d6f7a5a5a5a5a5a5b5b5a5d6b5b5d6f7f7d6b5b5e7fff7a5a5c6c6a5a5ffffe7ffffffffffffffffffe7ffffa5a5c6a5a5a5b5a5a5f7f7d6a5b5d6 -e7c6a5ffffffe7ffffa5a5c6d6d6b5a5a5c6c6a5a5d6f7e7d6b5b5fffff7ffffffb5d6f7a5a5a5a5a5a5a5a5a5d6b5a5fffff7e7ffffa5a5c6a5a5a5a5a5a5ff -e7c6e7ffffa5a5c6c6a5a5ffffe7ffffffffffffffffffd6f7ffa5a5b5a5a5a5b5b5a5d6b5b5d6f7f7d6b5b5d6f7f7d6b5b5fffff7ffffffe7ffffc6a5c6ffff -e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7b5def7b58484f7f7e7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 -defffffffffffffffffffffffffffffffffffffffffff7ffffa5b5d6ffe7c6ffffffbddef7d6b5a5f7fff7a5b5d6ffefceffffffd6f7ffc6a5b5def7efd6b5b5 -fffff7e7ffffcea5ceffffe7ffffffc6e7ffdebda5e7fff7c6a5c6ffffe7ffffffc6e7ffd6b5a5d6f7f7debdbdd6f7f7d6b5b5fffff7fffffffffffffffffff7 -ffffa5bddeffe7c6ffffffd6f7ffcea5bdf7ffe7a5b5d6ffe7c6a5ceeff7d6b5d6f7ffd6b5b5fffff7d6f7ffd6b5b5fffff7efffffc6a5c6ffffe7ffffffceef -ffd6b5a5f7fff7a5b5d6ffefceffffffe7ffffb5a5c6deefded6b5b5fffff7fffffffffffffffffff7ffffa5b5d6ffefceffffffb5d6f7d6b5a5def7f7d6b5b5 -d6f7f7d6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7 -f7f7f7f7f7f7f7f7cef7f76b6b9c737373737373a57373f7f7cee7f7f77384b57373736b6b6bf7cea5b5def7a5738cf7f7cef7f7f79ccef77373736b6b6b7373 -739c7373f7f7ce9ccef77373737373737373739c6b6bbde7ce9c7384e7f7ce6b84b5737373f7ce9cf7f7f7f7f7f7f7f7f7def7f7738cb56b6b6b737373dece9c -738cb5b5846bf7f7e7def7f7738cb5ceb584738cbd737373b5b5a59c6b84f7f7cef7f7f7a5cef76b6b6b737373737373a57373f7f7cee7f7f77384b57373736b -6b6be7bd8cdef7f7738cb56b6b6bf7cea5f7f7f7f7f7f7f7f7f7cef7f773739c7373736b6b6ba57373b5decea5738cb5decea5738cf7f7cef7f7f7def7f7738c -bd737373737373f7ce9cf7f7f7def7f7738cb56b6b6b737373deb584e7f7f76b84b5737373f7ce9ccef7f76b6b9c7373739c7373f7f7ceb5def7a5738cf7f7ce -f7f7f7f7f7f78cbde7ce9c73f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff -ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7c6 -a5b5ffffe7ffffffffffffffffffd6f7ffd6b5b5fffff7e7ffffb5a5c6fff7d6ffffffd6f7ffd6b5b5d6f7f7d6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7d6b5 -b5d6f7f7d6b5b5fffff7ffffffffffffffffffd6f7ffc6a5b5ffffe7ffffffffffffffffffffffffd6f7ffa5a5b5d6b5a5fffff7d6f7ffd6b5b5fffff7d6f7ff -d6b5b5fffff7e7ffffb5a5c6fff7d6ffffffd6f7ffd6b5b5d6f7f7d6b5b5fffff7ffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffd6f7ffd6 -b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7d6b5b5d6f7f7d6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f79ccef7b58c73f7f7decef7f76b6b9ce7b58c9cc6f7b58c73f7f7def7f7f76b9cc6ce9c73 -6b9ccef7cea5f7f7f78cb5dedeb584f7f7f7def7f7738cb5deb5848cb5e7deb584f7f7f7f7f7f773a5cedeb584739ccef7ce9c73a5cef7c69cf7f7f7f7f7f7f7 -f7f7f7f7f79ccef7b5846bf7f7e7f7f7f7739ccece9c6ba5cef7b5846bb5dede9c6b84f7f7ce6b9cc6f7ce9cf7f7f78cb5e7f7c69cf7f7f784b5dee7b58cf7f7 -f7def7f76b84b5e7b58c9cc6f7b58c73f7f7def7f7f784b5deb58c736b9cb5f7cea5f7f7f7f7f7f7f7f7f7f7f7f79cc6f7b58c73f7f7decef7f76b6b9cdeb58c -6b9ccef7cea584b5def7ce9cf7f7f7a5cef7b5846bf7f7def7f7f773a5cec69c6b9ccef7b5846bf7f7e7f7f7f78cb5deb5846b73a5b5f7c69cf7f7f79ccef7b5 -8c73f7f7decef7f7846b9cf7e7b584b5def7ce9cf7f7f7f7f7f784b5de737373f7ce9cf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffd6f7 -ffd6b5b5fffff7ffffffd6f7ffd6b5b5def7f7a5a5b5a5a5a5a5a5a5a5a5a5b5a5a5d6e7d6d6b5b5fffff7ffffffd6f7ffa5a5b5a5a5a5a5a5a5d6b5a5d6f7f7 -debdbdfffff7ffffffd6f7ffdebdbdd6f7f7d6b5b5d6f7f7debdbdfffff7ffffffffffffffffffd6f7ffa5a5b5a5a5a5a5a5a5a5a5a5b5a5a5fff7d6efffffa5 -a5c6e7c6a5ffffffdef7ffd6b5b5fffff7d6f7ffdebdbdfffff7ffffffd6f7ffa5a5bda5a5a5a5a5a5d6b5a5def7f7d6b5b5fffff7ffffffffffffffffffd6f7 -ffd6b5b5fffff7ffffffffffffffffffdef7ffd6b5b5fffff7ffffffdef7ffd6b5b5d6f7f7d6b5b5def7f7d6b5b5fffff7ffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7a5cef7ce9c73f7f7f7f7f7f7bde7f7b5 -8484a5cee7b5846bf7f7e7f7f7f7f7f7f7f7f7f7a5cef7ce9c73f7f7f7b5def78c738cf7deb5f7f7f7b5def7bd8c8c9ccedecea573f7f7f7f7f7f7b5def7b58c -8c9ccedecea5739ccef7cea573f7f7f7f7f7f7f7f7f7f7f7f79ccef7bd8c73f7f7def7f7f7f7f7f7f7f7f7f7f7f7a5cef76b6b6bcea573f7f7f7a5cef7ce9c6b -f7f7f7b5def7b58c8cf7f7debde7f7847384f7e7b5f7f7f7bde7f7b58484a5cee7ce9c6bf7f7f7f7f7f7f7f7f7f7f7f7a5cef7ce9c73f7f7f7f7f7f7f7f7f7f7 -f7f7a5cef7ce9c6bf7f7f7f7f7f7b5e7f7b58484a5cee7ce9c73b5e7f7b58484f7f7e79ccef7b58c73f7f7def7f7f7f7f7f7f7f7f79ccef7cea573f7f7f7f7f7 -f7f7f7f7f7f7f79ccef7cea573f7f7f7a5cef7b58473f7f7e7f7f7f7a5cef7ce9c73b5e7f7b58484f7f7e7f7f7f78cb5e7ceb584a58cbdf7f7cef7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff -fffffffffffffffffffffffffffffffffffff7ffffa5b5d6ffe7c6ffffffc6e7ffd6b5a5f7fff7b5b5d6fff7d6ffffffd6f7ffd6b5b5d6f7f7d6b5b5fffff7ff -ffffffffffffffffffffffd6f7ffd6b5b5d6f7f7d6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7d6b5b5d6f7f7d6b5b5fffff7fffffffffffffffffff7ffffb5b5 -d6fff7d6ffffffd6f7ffd6b5b5fffff7a5c6e7e7d6b5a5b5d6ffe7c6d6f7ffd6b5b5fffff7d6f7ffb5a5b5fff7d6ffffffffffffffffffffffffd6f7ffd6b5b5 -f7fff7a5b5d6ffe7c6ffffffe7ffffb5a5c6d6e7d6d6b5b5fffff7fffffffffffffffffff7ffffa5b5d6ffe7c6ffffffc6e7ffd6b5a5d6f7f7d6b5b5d6f7f7b5 -a5b5fff7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f76b9c -ce737373846b6b8c8c8cf7deb5f7f7f7def7f78c8cb5cedeb57373a56b6b6b7373736b6b6b737373c6c69c9c739cf7f7cef7f7f7def7f7738cb56b6b6b737373 -846b6bcedeb59c6b9cf7f7cef7f7f7def7f78484b5cee7b59c6b9ccef7ce9c6b9cf7f7cef7f7f7f7f7f7f7f7f7cef7f76b6b9c7373736b6b6b7373736b6b6bf7 -ce9cdef7f7738cb5b5846bf7f7decef7f7a573a5f7f7c6def7f78484b5f7e7b5f7f7f7def7f76b84b57373736b6b6b8c7373cedeb58c73a5f7deb5f7f7f7f7f7 -f7f7f7f7c6f7f79c739cf7f7cef7f7f7f7f7f7f7f7f7def7f78c8cb5f7deb5f7f7f7def7f78c8cb5dedeb58c8cb5dedeb58c8cb5f7deb5cef7f76b6b9c737373 -6b6b6b7373736b6b6bcecea5846b9cf7deb5f7f7f7f7f7f7f7f7f7cef7f79c6b9cf7f7cedef7f78c8cb5f7deb5f7f7f7c6f7f79c739cdef7ce8c8cb5f7deb5f7 -f7f784b5dee7b58cb5def7b58c8cf7f7de73a5ce6b6b6b9c7373f7f7cef7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5 -b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffa5a5b5a5a5a5a5a5a5d6b5a5fffff7d6f7ffa5a5 -bda5a5a5b5a5a5e7f7d6a5a5cea5a5a5c6a5a5ffffe7a5ceefa5a5a5a5a5a5a5a5a5ffefced6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7cebdbda5b5c6 -a5a5a5d6b5a5fffff7ffffffffffffffffffdef7ffa5a5b5a5a5a5b5a5a5fff7dea5c6e7d6b5a5fffff7def7ffa5a5b5a5a5a5a5a5a5debda5d6f7f7c6b5b5a5 -b5c6cea5a5a5c6c6a5a5a5a5a5a5a5a5a5ffe7c6ffffffe7ffffa5a5cea5a5a5a5a5a5f7e7c6a5bddea5a5a5d6b5a5fffff7ffffffffffffffffffd6f7ffa5a5 -bda5a5a5a5a5a5d6b5a5def7f7d6b5b5d6f7f7c6b5b5a5bdcec6a5a5e7ffe7c6a5c6ffffefffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f79ccef7bd8c73f7f7def7f7f76b9ccee7bd8c9ccef7cea573f7f7f7f7f7f7739ccee7b58c84 -b5dee7bd8cf7f7f7f7f7f7f7f7f7f7f7f7f7f7f773a5cedeb5848cbde7deb584f7f7f7f7f7f78cbde7deb5848cb5e7deb5848cbde7deb584f7f7f7f7f7f7f7f7 -f7f7f7f7a5cef7ce9c6bf7f7f7f7f7f773a5cedeb584bde7f79c7384a5ceceb5846bf7f7e784b5dee7b58cf7f7f78cbde7ce9c73f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f76b9ccee7bd8c9ccef7b58c73f7f7def7f7f784b5decea57384b5dee7bd8cf7f7f7f7f7f7f7f7f7f7f7f79ccef7b58c73f7f7def7f7f7739ccee7b58c84 -b5dee7bd8c84b5decea573f7f7f7a5cef7ce9c73f7f7f7f7f7f773a5cedeb584a5cef7b5846bf7f7e7f7f7f78cb5e7ce9c6b8cbde7deb584f7f7f79ccef7bd8c -73f7f7decef7f7846b9cf7e7bd84b5decea573f7f7f78cbde7deb584f7f7f784b5dee7bd8cf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 -e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffd6f7ffd6b5b5d6f7f7d6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5 -fffff7ffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7b5def773738c6b6b6b8c8c73b584 -84f7f7de9ccef77373736b6b6b9c73739ccece7373736b6b6b9c7373cef7ce7373a56b6b6b7373736b6b6bf7cea5b5def79c738cf7f7cef7f7f7b5def79c738c -b5dece73738c6b6b6b737373b5846bf7f7e7f7f7f7f7f7f7f7f7f7a5cef76b6b6b7373739c6b6bf7f7ce6b9cc6b58c73f7f7dea5cef76b6b6b7373736b6b6bb5 -8c73b5dede73738c6b6b6b7373736b6b6b7373736b6b6b737373f7c69cf7f7f7b5def773738c6b6b6b737373b5b59c73738c6b6b6bb58c73f7f7def7f7f7f7f7 -f7f7f7f7b5def773738c6b6b6b8c8c73b58484b5e7e79c6b84b5dece6b6b847373739c6b6b9ccece6b6b6b7373739c6b6bf7f7cef7f7f7b5e7f76b6b84737373 -6b6b6bb5b5a56b6b84737373b5846bf7f7e79cc6f77373736b6b6bb58c73f7f7deb5def76b6b847373736b6b6bdeb58cf7f7f7e7f7f76b84b5ce9c73f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffe7ffffc6a5c6ffffefffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5d6f7f7debdbdfffff7ffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffdef7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffdef7ffd6b5b5d6f7f7d6b5b5fffff7ffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7def7f78c8cb5f7deb5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7def7f78c8cb5f7deb5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7e7f7f78484b5e7e7b58484b5f7e7bdf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7def7f78c8cbdf7deb5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7def7f78c8cb5f7deb5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7def7f78c8cbdf7deb5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7e7f7f78484b5f7e7bdf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff -ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffff -ffffffffffffffffffa5c6e7a5a5a5ffe7c6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -d6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f784b5dee7b58cf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f784b5 -dee7b58cf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f78cb5dedeb5848cb5e7c69c6bf7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f784b5dece9c73f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f784b5decea573f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f784b5dedeb58c6b9c -cecea573f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f78cb5e7c69c6bf7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7bde7f79c7384 -f7f7cef7f7f7f7f7f7f7f7f7f7f7f7f7f7f7e7f7f77384b5737373f7ce9cf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7b5 -def7a5738cf7f7cef7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7b5e7f79c6b84f7f7cef7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff -ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5 -b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff -ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5e7e7e7ffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefefefb5b5b5ffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff -ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdededeb5b5b5 -b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 -b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad -adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 -b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 -b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad -adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 -b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 -b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad -adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 -b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 -b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad -adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 -b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 -b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad -adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 -b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 -b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad -adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 -b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 -b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad -adb5b5b5b5b5b5e7e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 -deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff -ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 -efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef -eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 -f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 -efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef -eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 -f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 -efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef -eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 -f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 -efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef -eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 -f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 -efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef -eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 -f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 -efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef -eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 -f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 -efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef -eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7effff7f7ffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7f7f7efffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefef -e7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 -e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffe7dee7fff7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff -ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffbdffff000063000000000000ffbd6bffffff94deff000039000000 -943900ffffde94deff943939ffffde94deff943939ffffe794deff94393994dede943939ffffde94deff943939ffffe794deff943939ffffdebdffff00006300 -0000390000ffe79494deff943939ffffdeffffff94deff943939b5ffde00006b630000ffffbdb5ffff6b006bffffb5ffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefefffffe7c6ffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffe7ffff003994ffbd6bff -ffffbdffff39006be7e794003994ffbd6bffffff4294e7bd6b0094e7ff943939ffffe794deff944242ffffde94e7ff94393994e7e7943939ffffe794deff9442 -42ffffde94e7ff943939e7ffe7003994ffbd6bffffff94e7ff6b003994e7bd943939ffffe7ffffff94e7ff94393994e7e7943939ffffe7ffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffe7dee7decec6e7d6c6ded6c6efe7d6efcecefffff7e7d6de -e7ded6decec6efd6c6ffffeffffffffffffffffffff7ffffefd6d6ffffeff7ffffefd6cef7fff7efcecefffff7ffffffe7dee7decec6e7d6c6fff7deffffffff -ffffffffffffffffffffffded6e7e7d6c6ded6c6ffefd6ffffffffffffded6dee7d6c6efcec6fffff7f7ffffefd6d6ffffeff7ffffefd6cefffff7efffffefd6 -d6f7ffefefd6d6ffffeff7ffffefd6cefffff7efffffefd6d6ffffefffffffded6e7e7d6c6ded6c6fff7deefffffefd6d6ffffefffffffefffffefd6d6ffffef -e7dee7decec6fff7deffffffffffffefffffefd6d6ffffefffffffefffffefd6d6ffffefffffffded6e7e7d6c6ded6c6fff7deefffffefd6d6ffffefffffffff -ffffe7dee7ded6c6e7d6c6fff7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff -ffffffffffffffffffff94deff943939ffffdeffffffffffffffffff94deff943939ffffdeffffff94deff94393994dede943939ffffde94e7ff943939ffffde -94deff94393994dede943939ffffde94e7ff943939ffffde94deff94393994dede6b0039ffffb5ffffffffffffffffff94deff943939ffffdeffffff94deff94 -393994dede943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7fffffffffffffffffffffffffffffff7ffffe7 -d6defff7e7ffffffffffffe7e7efffefd6dee7efffefcefffffff7ffffe7d6deffffe7ffffffffffffffffffdedeeffff7deffffffdee7efffefd6e7e7efffef -d6eff7ffefd6c6ffffffffffffdee7eff7dec6ffffffffffffffffffefeffff7dec6fffff7ffffffe7eff7f7dec6e7eff7f7dec6fffff7ffffffe7ced6ffffe7 -e7eff7fff7deffffffdee7efffefd6ffffffdedeeffff7dee7eff7fff7deffffffdee7efffefd6ffffffdedeeffff7deefeffff7dec6fffff7ffffffdedeefff -e7c6dedeeffff7deffffffffffffdedeefffefcededeeffff7deffffffffffffffffffffffffdedeeffff7deffffffffffffdedeefffefceefeffff7dec6ffff -f7ffffffdedeefffe7c6e7e7f7fff7deffffffeff7ffefd6bdffffffffffffe7e7eff7debdffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff -ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffff94e7ff943939ffffe7ffffff94e7ff94 -393994e7e7943939ffffe794deff944242ffffde94e7ff94393994e7e7943939ffffe794deff944242ffffde94e7ff94393994e7e70000390000000000000000 -0039000094bd94943939ffffe7ffffff94e7ff94393994e7e7943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7ef -effffffffffffffffffffffffffffffffffffff7ffffe7d6deffffe7ffffffeff7ffffe7c6eff7ffffe7c6ffffffffffffeff7ffffe7c6ffffffffffffffffff -eff7fff7e7c6ffffffeff7ffffe7c6eff7ffffe7c6eff7fff7dec6fffff7ffffffffffffffffffffffffffffffffffffeff7fff7e7c6ffffffffffffffffffff -ffffeff7ffefd6c6ffffffffffffeff7fff7e7c6f7fffff7deceffffffeffffff7ded6fffff7eff7fff7e7c6f7fffff7deceffffffeffffff7ded6fffff7eff7 -fff7e7c6eff7fff7dec6ffffffffffffffffffffffffeff7fff7e7c6fffffffffffff7ffffefd6ceeff7fff7e7c6ffffffffffffffffffffffffeff7fff7e7c6 -fffffffffffff7ffffefd6ceeff7fff7dec6fffffffffffffffffffffffff7ffffefd6ceffffffeff7fff7dec6fffff7ffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff -ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffdeffff003994ffb563ffffffb5ff -ff39006bdede94003994ffb563ffffff3994debd6b0094deff390039ffde9494deff390039ffe79494deff94393994dede390039ffde9494deff390039ffe794 -94deff943939deffde393994ffde94ffffff94deff94393994dede000039ffb563ffffff94deff94393994dede943939ffffdeffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffdedeefe7d6c6e7cebdffffeff7ffffe7d6defff7e7ffffffe7d6e7ffffe7e7ced6ff -ffe7ffffffffffffe7d6e7ffffe7fffffffffffff7ffffefd6deffffefffffffe7d6e7f7ffe7efced6ffffefdeced6ded6c6decec6e7d6c6decebdfff7deffff -fffffffff7ffffe7d6deffffe7ffffffffffffffffffffffffe7dee7fff7e7fffffff7ffffefd6deffffefe7dee7ffffe7ffffffe7d6e7ffffe7f7ffffefd6de -ffffefe7dee7ffffe7ffffffe7d6e7ffffe7f7ffffefd6def7ffefded6dedecec6e7d6c6decebdded6c6ffefd6efdee7ffffefffffffffffffe7dee7f7f7e7ef -d6deffffeffffffffffffffffffff7ffffefd6deffffefffffffffffffe7dee7f7f7e7ded6dedecec6e7d6c6decebdded6c6ffefd6e7dee7fff7e7f7ffffdece -d6e7d6c6decebdded6c6decec6fff7dededeefded6c6efcec6ffffefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff -ffffffffffffffffffbdffff00006b000000000000ffbd6bffffff94deff0000420000006b0000ffffbd94e7ff6b393900426b000000bd9442003994000000de -943994e7ff6b393900426b000000bd9442003994000000de9439ffffff94deff000042000000420000ffde9494e7ff943939006b94000000000000debd6b0042 -94000000944200ffffdebdffff6b006bffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffff -fff7ffffe7d6deffffe7efefffffefcee7effff7e7c6fffffff7ffffe7d6deffffe7ffffffffffffffffffe7eff7ffefd6ffffffe7efffffefceefefffffefce -eff7fff7e7c6ffffffffffffe7e7f7ffefceffffffffffffffffffeff7fff7dec6fffff7ffffffe7eff7ffe7c6eff7fff7dec6fffff7ffffffe7d6deffffe7e7 -eff7f7dec6fffff7e7e7f7efcec6fffff7dee7effff7dee7eff7f7dec6fffff7e7e7f7efcec6fffff7dee7effff7deeff7ffffe7c6ffffffffffffdee7efffef -d6e7eff7f7dec6fffff7ffffffdee7effff7dee7eff7ffefd6ffffffffffffffffffffffffe7eff7efd6c6ffffefffffffdee7effff7deeff7ffffe7c6ffffff -ffffffdee7efffefd6e7eff7ffe7c6ffffffeff7fff7e7c6ffffffffffffe7e7f7ffefceffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff -ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffff -ffffffffffffffffffffffffffffffffffffded6e7ded6c6decec6efd6c6eff7efefd6ceefffefe7d6cedecebdded6c6efd6c6ffffffffffffffffffefefffe7 -d6c6decebdefd6c6efffefefd6ceeff7eff7decefffff7eff7ffdecebdded6c6efcec6ffffefffffffffffffffffffffffffeff7ffded6cedecec6e7d6c6ffef -d6ffffffefefffe7d6c6decebdf7dec6fffff7f7ffffdececeded6c6decec6fff7dedeced6ded6c6ffefd6f7ffffdececeded6c6decec6fff7dedeced6ded6c6 -ffefd6ffffffe7efffded6c6decec6efd6c6ffffeff7ffffdececee7d6c6decebde7d6c6efefe7e7d6cedecebdf7dec6fffff7fffffffffffff7ffffe7d6cee7 -d6cedecebde7d6c6ffffe7ffffffe7efffded6c6decec6efd6c6ffffeff7ffffdececee7d6c6e7cebdeff7efdecec6e7d6c6e7cebdffffefffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffe7dee7ffffe7ffffffffffffffffffe7d6e7ffffe7ffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7de -e7ffffe7ffffffffffffffffffffffffefdee7ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffe7e7eff7debdffffffffffffffffffffffffffffffffffffffffffffffffffffffe7eff7ffefceffffffdee7eff7dec6e7efffffe7ceff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffe7eff7ffe7c6ffffffffffffffffffffffffe7e7f7ffefceffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 -deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffdedee7e7d6c6fff7d6fffffff7ffffefd6d6ffffefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7ffffefceceffff -f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff -ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef -e7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffff7efeff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffff7f7efefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 -e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7dec6c6bdb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5ad -adb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5ad -b5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbd -b5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5ad -adb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5ad -b5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbd -b5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5ad -adb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5ad -b5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbd -b5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5ad -adb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5ad -b5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbd -b5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5ad -adb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5ad -b5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbd -b5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5ad -adb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5ad -b5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbd -b5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5ad -adb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5ad -b5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adc6bdbde7e7e7ffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff -ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff -ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 -f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 -efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef -eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 -f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 -efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7effff7f7ffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef -eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 -f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 -efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef -eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeffff7f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff -ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffefe7e7f7f7efffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffff7efefefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdededeb5 -b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5 -b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5 -adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5 -b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5 -b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5e7e7e7ffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefefe7f7efefffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefefe7e7ffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffb5b5b5e7e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffefefefb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff -ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdffff00006b000000000000420000ffde94ffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -63b5ffbd6b00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffff94e7ff -943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffbdffff630063ffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdffff630063ff -ffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffff -ffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff94 -3939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffefefe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7 -ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 -deffffffffffffffffffffffffffffffffffffffffffffffffbdffff00006b000000420000ffde9494e7ff943939ffffe7ffffff94e7ff943939ffffe7bdffff -00006b000000000000ffbd6bffffff94deff000042000000944200ffffdeffffff94deff00004200000042420094393994e7e794393994e7e7943939ffffe7ff -ffff94e7ff943939ffffe794deff000042000000000000943900ffffe7bdffff6b006bffffbdffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffff -ffffffffffffffffffffffffffffffffff94deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffff3994deffbd6bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffff6bbdffbd6b00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdef7ffb5b5b5a5a5b5a5a5a5debd -a5fffff7ffffffb5d6f7a5a5a5a5a5a5a5a5a5d6b5a5fffff7b5d6f7a5a5a5a5a5a5f7debdffffffb5d6f7a5a5a5a5a5a5f7d6b5fffffff7ffffa5bddeffe7c6 -ffffffc6e7ffefcea5ffffffffffffd6f7ffa5a5bda5a5a5d6b5a5fffff7def7ffd6b5b5fffff7ffffffdef7ffa5a5b5a5a5a5b5b5a5debdbdfffff7e7ffffc6 -a5c6ffffefffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffb5b5b5b5b5b5bdbdbdb5b5b5b5b5b5b5b5b5bdbdbdb5b5b5b5b5b5b5 -b5b5bdbdbdb5b5b5b5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffff4294e7000000000000de943994e7ff393939000042000000944200ffffde94e7ff94393994e7e7943939bdffe700006b6b0000ffffbdbdffff6b006b -ffffbdffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff -ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffdeffff003994ffb563ffffff94deff6b003994deb594 -3939ffffdeffffff94deff943939deffde003994ffb563ffffffb5ffff39006bdede94003994ffb563ffffff3994debd6b00deffff003994ffb563ffffff3994 -de94390094dede94393994dede943939ffffdeffffff94deff943939deffde003994ffb563ffffff94deff943939ffffdeffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffefe7e7ffffffffffff00399400000000000039000094bd9494393994dede393939000039000000943900ffffdeffffffffffffffffff -ffffff94e7ff000039000000393900943939ffffdebdffff000063000000390000ffde9494deff943939ffffdeffffff3994de000000000000000000943900ff -ffe73994de00000000000039390094393994dede943939bdffe70000636b0000ffffb5ffffffffffffffffffb5ffff6b006bffffb594deff943939ffffe794de -ff000039000000000000000000ffbd6bffffff94e7ff943939ffffdeffffffffffffffffff94deff943939ffffe7ffffffffffffffffff3994e7de9439ffffff -ffffff006bbd000000000000de9439ffffffffffff6bbdffb56300ffffffffffffffffffdeffff6b3994ffffb5ffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffd6f7ffc6a5b5ffffe7ffffffb5d6f7e7c6a5e7ffffc6a5c6ffffe7ffffffc6e7ffd6b5a5d6f7f7b5a5b5fff7d6f7ffffb5b5d6d6e7d6b5a5b5ff -f7d6f7ffffb5b5d6fff7d6e7ffffa5a5c6f7d6b5ffffffa5c6e7c6a5a5ffffe7f7ffffa5b5d6ffe7c6ffffffb5d6f7e7c6a5d6f7ffd6b5b5fffff7f7ffffa5b5 -d6ffe7c6ffffffb5d6f7d6b5a5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffb5b5b5ffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffff94deff390039ffe794deffff39399494b5946b0039ffffb5ffffff3994debd6b0094deff94393994dede94 -393994dede943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffff94deff943939ffff -deffffff94deff943939ffffde94deff000039000000943900ffffde94deff943939ffffdeffffff94deff943939ffffdebdffff000063000000390000ffde94 -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff94e7 -ff6b0039ffffbdffffffffffffffffff94e7ff943939ffffe7ffffff94e7ff94393994e7e7943939ffffe7ffffffffffffffffff94e7ff943939ffffe7ffffff -94e7ff94393994e7e7943939ffffe7ffffff94e7ff94393994e7e794393994e7e7943939ffffe7ffffff94e7ff94393994e7e7943939ffffe7ffffff94e7ff94 -3939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff3994debd6b00ffffffffffff94deff94424294dede6b0042ff -ffbdffffff3994debd6b00ffffffffffffffffffe7ffff003994ffbd6bffffff4294e7943900e7ffe7003994ffbd6bffffff94e7ff6b003994e7bd943939ffff -e7bdffff6b006bffffbdffffff6bbdff944200bdffde6b006bffffbdffffff6bbdff94420094dede94424294dede944242ffffdeffffffffffffffffffffffff -6bbdffbd6b00ffffff94deff944242ffffde94e7ff6b0039ffffbdffffff94e7ff6b0039ffffbd94deff944242ffffde94e7ff6b0039ffffbd94deff944242ff -ffdeffffffffffffffffff3994dee79442ffffff4294e7bd6b00ffffffdeffff004294ffbd6bffffffdeffff424294ffde94ffffffffffffffffff006bbdffbd -6bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffff000000ffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5effff7b5a5c6fff7d6ffffffdef7ffd6b5b5ffff -f7ffffffffffffa5c6e7c6a5a5ffffe7ffffffffffffa5c6e7c6a5a5ffffefc6e7ffd6d6b5d6b5c6effff7d6b5c6b5d6e7ffe7c6def7ffd6b5b5fffff7ffffff -def7ffd6b5b5d6f7f7d6b5b5fffff7d6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5 -ffffffffffffffffffffffffbdbdbdffffffffffffffffffffffffd6d6d6dededeffffffffffffffffffffffffffffffbdbdbdffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff006bbd6b000094e7bd943939ffff -e7ffffff94e7ff94393994e7e794393994e7e794393994e7e7943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7 -ffffffffffffffffffffffff94e7ff943939ffffe7ffffff94e7ff943939e7ffe7003994ffbd6bffffff4294e7bd6b0094e7ff943939ffffe7ffffff94e7ff94 -3939e7ffe7003994ffbd6bffffff94e7ff6b0039ffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000ffffffffffffffffffffffffffffffffffffffffffefe7deffffffff -ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff -ffffffffffffffffffffffffffffffffffff94deff00003900000000000000000039000094b594943939ffffdeffffff94deff94393994dede943939ffffdeff -ffffffffffffffff94deff943939ffffdeffffff94deff94393994dede943939ffffdeffffff94deff94393994dede94393994dede943939ffffdeffffff94de -ff94393994dede943939ffffdeffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffdeffff0039 -94ffbd6bffffff94deff94393994e7e7943939ffffdeffffff94e7ff943939ffffdeffffffffffff94deff943939ffffdeffffff94deff94393994dede6b0039 -ffffb5ffffffffffffffffff94deff943939ffffdebdffff390063ffde94ffffff94e7ff94393994dede943939ffffe7ffffff94deff94393994e7e794393994 -dede943939ffffe7ffffffffffffffffffffffff3994dede9439ffffff94e7ff943939ffffde94deff6b0039ffffb5ffffffdeffff393994ffde9494deff9439 -39ffffe73994de393939ffb56394e7ff943939deffde003994000000000000000000000000e79439ffffffffffffffffffffffff3994dede9439ffffffffffff -3994dede9439ffffffffffffffffff3994dede9439ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffff000000000000000000ffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffd6f7ffc6a5b5 -ffffe7d6f7ffa5a5b5a5a5a5a5a5a5d6b5a5f7fff7a5b5d6a5a5a5f7d6b5fffffff7ffffa5b5d6a5a5a5f7d6b5ffffffffffffa5c6e7ffe7c6b5c6e7d6e7d6e7 -c6b5c6e7fff7d6b5d6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7d6b5b5fffff7d6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5fffff7ffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffb5b5b5ffffffffffffffffffd6d6d6c6c6c6c6c6c6e7e7e7ffffffffffffffff -ffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7ffff -003994000000de9439ffffff94deff943939ffffdeffffff94deff6b003994deb594393994dede94393994dede943939ffffdeffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffefefe7ffffffffffffffffffffffff94deff943939ffffdeffffff94deff94393994dede943939ffffdeffffff94de -ff94393994dede943939ffffdeffffff94deff94393994dede6b0039ffffb5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000ffffffffff -ffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffe7ffff393994ffe794ffffff94e7ff94393994e7e7000039ffbd -6bffffff94e7ff943939e7ffe7003994ffbd6bffffffbdffff39006be7e794003994ffbd6bffffff4294e7bd6b00e7ffff003994ffbd6bffffff6bbdff943900 -94e7e794393994e7e7000039ffbd6bffffff94e7ff943939e7ffe7003994ffbd6bffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffff7efefffffffffffffffffff94e7ff6b0039ffffbd94deff94424294dede944242ffffdeffffff94deff6b0042ffffbdffffffffffff94e7ff94 -3939ffffe7ffffff94e7ff94393994e7e700003900000000000000000039000094bd94943939ffffe7ffffff94e7ff00003900000000000094420094dede9442 -42ffffdeffffff94deff94424294dede94424294dede944242ffffdeffffffffffffffffffffffff4294e7de9439ffffff94deff944242ffffde94e7ff6b0039 -ffffbdffffffbdffff6b006bffffbd94deff944242deffde6b42946bbdbdbd6b0094deff944242ffffde4294e7de9439ffffff3994dee79442ffffffffffffff -ffffffffffdeffff004294ffbd6bffffffffffffbdffff6b006bffffbdffffffffffff3994dee79442ffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000ffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffdef7ffb5a5b5fff7d6ffffffbddef7e7c6a5ffffffffffffffffffffffffd6f7ffd6b5b5effff7c6a5c6ffffe7d6f7ffcea5bde7ffe7c6a5c6ffffe7def7 -ffc6a5b5f7ffe7b5b5d6fff7dec6e7ffa5a5a5ffe7c6def7ffd6b5b5f7fff7a5b5d6ffefceffffffb5d6f7e7c6a5def7ffb5a5b5fff7d6f7ffffa5bddeffe7c6 -ffffffc6e7ffdebda5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffb5b5b5fffffffffffff7f7f7 -c6c6c6c6c6c6c6c6c6cececeffffffffffffffffffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffbdffff6b006bffffbd94e7ff6b003994e7bd390039ffe794ffffff4294e7bd6b0094e7ff94393994e7e794393994e7 -e7943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff006bbd000000424200943939ffffe7ffffff -94e7ff94393994e7e7943939ffffe7ffffff94e7ff94393994e7e7943939ffffe7ffffff94e7ff94393994e7e7000039000000000000000000390000ffe79400 -6bbd000000bd6b00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffff000000000000000000000000000000ffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 -e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffff94deff -000039000000390000ffde9494deff943939006394000000000000ffbd6bffffffbdffff000063000000000000ffbd6bffffff94e7ff000039000000630000ff -ffbdffffff94deff00003900000000000094390094dede94393994dede943939006394000000000000ffbd6bffffff94e7ff000039000000000000943900ffff -debdffff630063ffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffff3994deb5630094e7ff94393994dede390039ffe794ffff -ff3994deb56300ffffffffffffffffffdeffff003994ffb563ffffff63b5ff943900deffde393994ffde94ffffff94deff94393994dede943939ffffdeffffff -ffffffffffffffffff94deff94393994e7e7943939ffffdeffffff94e7ff94393994dede94393994e7e7943939ffffdeffffffffffffffffffffffff3994dee7 -9439ffffff94deff943939ffffe794deff000039000000000000390000ffde94ffffff94e7ff94393994dede943939bdffe794396394dede943939ffffe7b5ff -ff6b006bffffb53994e7de9439ffffffffffffffffff3994de000000ffb563ffffffffffffffffffffffff3994e7ffb563ffffffffffff3994e7de9439ffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000 -0000000000000000000000ffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffd6f7ffc6b5b5a5b5c6a5a5a5c6a5a5ffffe7ffffffa5c6e7a5a5a5a5a5a5a5a5a5ffe7c6ffffffb5d6f7 -a5a5a5a5a5a5f7d6b5ffffffb5d6f7a5a5a5a5a5a5f7d6b5c6e7ffc6a5a5ffffe7e7ffffc6a5c6ffffe7e7ffffb5a5c6fff7d6d6f7ffa5a5b5a5a5a5c6a5a5ff -ffe7d6f7ffc6b5b5a5b5c6c6a5a5d6f7e7a5a5b5a5a5a5a5a5a5d6b5a5fffff7e7ffffc6a5c6ffffe7ffffffffffffffffffffffffffffffffffffffffffffff -ffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffff -ffffffffffffffffb5b5b5fffffff7f7f7cececebdbdbdf7f7f7cececec6c6c6e7e7e7ffffffffffffffffffb5b5b5ffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3994de000000000000de943994deff6b3939003963000000 -630000ffffbd94deff94393994dede6b3939003963000000943900ffffe7b5ffff6b006bffffb5ffffffffffffffffffffffffffffffffffffefe7e7ffffffff -ffffffffffffffff94deff000039ffb563ffffff94deff943939deffde003994ffb563ffffff3994debd6b0094deff000039ffb563ffffff94deff943939deff -de393994ffde94ffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000ffffffffffffffffffffffffefe7deffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff006bbd000000000000 -6b000094debd94424294dede6b424200396b0000006b0000ffffbdffffffffffffffffffffffff94deff000042000000000000943900ffffe794deff00004200 -0000420000bdde9400006b0000006b0000ffffbd006bbd000000000000000000ffbd6b94deff944242ffffdeffffff94deff94424294dede6b424200396b0000 -00943900ffffe7ffffffffffffffffff6bbdffbd6b00ffffff94deff944242ffffde94e7ff6b0039ffffbdffffff94e7ff943939ffffe794deff9442426bbdde -e79442ffffff426bbd94bd94944242ffffdeffffff6bbdffbd6b003994dee79442ffffffffffffffffffffffff94deff6b0042ffffbdffffffffffffffffff94 -deff944242ffffdeffffff006bbdffbd6bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffbdbdbdf7f7f7ffffffefefefe7e7e7ffffffefefefc6c6c6cececeffffffffffffffffff -bdbdbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffff94e7ff943939006b94000000000000ffbd6bffffff94deff0000420000006b0000ffffbd -94e7ff943939006b94000000000000ffbd6bffffff94deff000042000000420000ffde94ffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff -ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff94393994dede94 -3939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffff94deff943939ffffdeffffffffffffffffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffff94e7ff94393994dede943939ffffe7ffffffffffffffffffffffffb5ffff6b006bffffb594e7ff943939ffffde94deff6b0039ffffb5ff -ffffb5ffff6b006bffffb594deff943939396b94ffde94ffffff63b5ff6b6b39943939ffffdeffffffe7ffff393994396b6bde9439ffffffffffffffffffffff -ffe7ffff393994ffde94ffffffffffffffffffffffff3963b5ffe794deffff6b3994ffffb5ffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef -e7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6 -f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffb5b5b5f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7cececebdbdbdefefefffffffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff94393994dede94393994dede943939 -ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefefe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffff94deff944242ffffdeffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffbdffff6b006bffffbdffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff94424294dede944242ffffdeffffffffffffffffffffffffffffff3994deffbd -6b94deff944242ffffde94e7ff6b0039ffffbdffffff94e7ff943939ffffe794deff424242943939ffffe7ffffff94e7ff000039944200ffffdeffffffffffff -94e7ff000039e79442ffffff6bbdff943900ffffe7bdffff6b006bffffbdffffffffffffffffffffffff94e7ffbd6b396bbdffbd6b00ffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffd6f7ffdebdbdfffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -b5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffff -ffffffffb5b5b5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffe7e7e7c6c6c6cececeffffffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffff -ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffffffffffffffffffff -ffffffffffffff006bbd000000ffbd6bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffe7ffffffffffff -ffffffffffffffffffffffffffffffbdffff63006394debd943939ffffe794deff000039000000000000390000ffde94ffffff94e7ff000039bd6b00ffffffff -ffffdeffff003994943900ffffe7ffffffffffffffffff006bbdde9439ffffffffffff006bbd000000000000ffb563ffffff3994de0000000000000000000000 -00000000630000ffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffb5b5b5f7f7f7f7f7f7f7f7f7efefeff7f7f7efefeff7f7f7c6c6c6c6c6c6f7f7f7ffffffb5b5b5ff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff -ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7ef -efffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffbdbdbdf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7dededecececefffffff7f7f7bdbdbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff -ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffadadadff -fffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffff -b5b5b5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefefe7ffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7ffffffb5b5b5ffffffffffffffffffffffffb5b5b5b5b5b5bdbdbdb5b5b5b5b5b5b5b5b5bdbdbdb5b5b5b5b5b5b5b5b5bdbdbdb5b5b5b5b5b5ffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff -ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7f7f7ef -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefefe7e7ffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5efefefffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffe7e7e7b5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7f7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffff7efefefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffefe7e7c6bdbdbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5 -b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adad -bdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5 -b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5 -b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adad -bdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5 -b5adbdb5b5b5adadcec6c6e7e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7e7b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 -b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5dededeffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7e7cec6c6b5b5adbdb5b5b5adadbdb5b5b5 -b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5 -b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adad -bdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5 -b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adcec6c6e7e7e7ffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 -deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff -ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f7f7efefefefe7f7efe7f7ef -e7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efef -efefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7 -efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7ef -e7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efef -efefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7 -efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7ffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f7f7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efef -efefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7 -efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7ef -e7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efef -efefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7 -efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7ef -e7f7efefefefe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffff7efeff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -f7f7efefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efeff7efefffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffff7f7efefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 -e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff -ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef -e7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6bbdff -000000de9439ffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffbdffff6b006bffffbdffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -f7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff -ffffffffffffffffffffffffffbdffff000063000000000000ffbd6bffffff94e7ff000039000000943900ffffe794deff943939ffffde94e7ff943939ffffde -94deff94393994dede393939000039000000943900ffffde94deff943939ffffdeffffffb5ffff00006b000000390000ffde94ffffff3994de000000000000e7 -9439ffffff3994de000000000000de943994deff943939ffffe794deff000039000000943900ffffde94deff943939ffffe7ffffff94deff943939ffffe7b5ff -ff6b006bffffb5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdffff000063000000390000ffde9494deff943939ffff -deffffff94deff943939ffffdebdffff000063000000000000ffbd6b94deff943939ffffdeffffffffffff006bbdde9439ffffff94deff393939000039000000 -943900ffffe7b5ffff00006b63000094e7bd943939ffffde94deff000039000000943900ffffde94e7ff943939ffffdeffffff94e7ff943939ffffdeb5ffff6b -006bffffb5ffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef -e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff -ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffe7ffff003994ffbd6bffffffbdffff39006be7e794003994ffbd6bffffff4294e7bd -6b0094e7ff943939ffffe794deff944242ffffde94e7ff94393994e7e76b0039ffffbdffffff4294e7bd6b0094e7ff943939ffffe7deffff004294ffbd6bffff -ff94deff6b004294debd420042ffde94e7ffff39399494bd94390039ffe794deffff42429494bd94944242deffde004294ffbd6bffffff3994debd6b0094deff -944242ffffdeffffff94deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7ef -efffffffffffff94deff000042000000000000000000ffbd6bffffffffffffbdffff00006b000000420000ffde9494e7ff943939ffffe7ffffff4294e7000000 -000000000000944200ffffde4294e700000000000039390094424294dede944242bdffde00006b6b0000ffffbdffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7ffff003994 -ffbd6bffffff94e7ff6b003994e7bd943939ffffe7ffffff94e7ff943939e7ffe7003994ffbd6bffffffbdffff39006b94bd94943939ffffe7ffffffbdffff00 -006b944200ffffde94e7ff6b0039ffffbdffffff4294e7bd6b0094e7ff943939ffffe794deff944242deffde004294ffbd6bffffff3994debd6b0094deff9442 -42ffffdeffffff94deff944242ffffdefffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff94deff944242ffffdeffffffffffff -4294e7943900ffffe794deff000042000000944200ffffde94e7ff943939ffffe7ffffff94e7ff943939ffffe7bdffff00006b000000420000ffde94ffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffff949494949494949494949494949494949494949494949494949494949494949494949494949494ffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff -ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffffffff -ffffffff94deff943939ffffdeffffff94deff94393994dede943939ffffde94deff943939ffffe794deff94393994dede943939ffffdeffffff94deff943939 -94dede943939ffffde94e7ff630039ffffbdffffffffffffffffffffffffffffffffffff0063b56b0000ffffb5ffffffffffff006bbd63000094e7bd94393994 -dede943939ffffe7ffffff94deff94393994e7e7943939ffffdeffffff94e7ff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff94deff943939ffffe7ffffffdeffff003994ffbd6bdeffff003994ffb563ffffff94deff6b -003994deb5943939ffffdebdffff630063ffffbdffffff6bbdff943900bdffe7630063ffffbdffffff6bbdff94390094dede94393994e7e7943939ffffdeffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000ffffffffffff -ffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffff94deff6b0039ffffb5ffffffffffffffffff94deff943939ffffdeffffff94deff94393994dede943939ffffdeffffffffff -ffffffff94deff943939ffffdeffffff63b5ffbd6b003963b5ffe79494deff943939ffffdeffffff94deff94393994dede943939ffffde94deff94393994e7e7 -943939ffffdeffffff94e7ff94393994dede943939ffffe7ffffff94deff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ff -ffffffffff94e7ff943939ffffdeffffffbdffff000063943900deffde003994ffb563ffffff3994debd6b0094deff943939ffffdeffffff94deff943939deff -de003994ffb563ffffff94deff6b0039ffffb5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffff000000ffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8c8c8cfffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7 -f7ffffff8c8c8cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff -ffffffffffff94e7ff943939ffffe7ffffffffffffffffff94e7ff943939ffffe7ffffff94e7ff94393994e7e7943939ffffe794deff944242ffffde94e7ff94 -393994e7e7943939ffffe7ffffff94e7ff6b003994e7bd943939ffffe794deff000042000000000000000000420000dede94004294000000e79442ffffffe7ff -ff003994000000de9439ffffff94deff94424294dede944242ffffdeffffff94deff94424294dede944242ffffdeffffff94deff944242ffffdeffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff94deff944242ffffdeffffffffffff94e7 -ff94393994e7e76b0039ffffbdffffffffffffffffff94e7ff943939ffffe7bdffff42006bffde94ffffff94deff94424294dede944242ffffdeffffff94deff -94424294dede94424294dede944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffff000000000000000000ffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff00003900000000000000000039000094bd94943939ffffe7ffffff -94e7ff94393994e7e7943939ffffe7ffffffffffffffffff94e7ff943939ffffe7ffffff006bbdffbd6b6bbdffbd6b0094e7ff943939ffffe7ffffff94e7ff6b -003994e7bd943939ffffe794deff94424294dede944242ffffdeffffff94deff94424294dede944242ffffdeffffff94deff944242ffffdeffffffffffffffff -fffffffffffffffffffffffffffffffff7efefffffffffffff94deff944242ffffdeffffff3994de6b6b4294393994e7e7943939ffffe7ffffff94e7ff943939 -94e7e7943939ffffe7ffffff94e7ff94393994e7e76b0039ffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000ffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff949494f7f7f7d6d6d6ded6d6 -e7e7e7e7e7e7efefefefefeff7f7f7efefeff7f7f7f7f7f7949494ffffffffffffffffffffffffffffffbdffff00006b6b000094debd94424294dede944242ff -ffde94e7ff943939ffffe794deff944242ffffdebdffff00006b000000390000ffe794ffffff4294e7000000000000de9439ffffffbdffff6b006bffffbdffff -ffffffffffffffffffffe7ffff003994000000000000944200ffffde94e7ff943939ffffe7ffffff94e7ff94393994e7e76b393900426bbd6b00ffffffbdffff -00006bde9439ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff -ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffdeffff003994ffb563ffffffb5ffff39006bdede94003994ffb563ffffff3994debd6b0094de -ff390039ffde9494e7ff390039ffde9494deff94393994dede390039ffde94ffffff3994debd6b0094deff390039ffde94deffff393994ffe794ffffff94deff -943939bdffe7630063ffffbd94deff6b0039b5ffb56b006bffffb594e7ff63003994debd943939e7ffe7003994ffbd6bffffff3994e7b5630094deff000039ff -bd6bffffff94deff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffff -ffffff94e7ff943939ffffdeffffffffffffb5ffff6b006b94deb500003900000000000000000039000094b594943939ffffdeffffff94deff00003900000000 -000094390094dede943939ffffe7ffffff94deff94393994e7e794393994dede943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000ffffffffffffffffffffffffffffffefe7e7ffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdeffff393994ffde94ff -ffff94deff94393994dede000039ffb563ffffff94deff943939deffde003994ffb563ffffffb5ffff39006b94b594390039ffde9494deff630039ffffbdb5ff -ff6b006b94deb5390039ffde94ffffff3994debd6b0094deff943939ffffde94e7ff943939deffde003994ffbd6bffffff3994deb5630094e7ff000039ffbd6b -ffffff94e7ff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff94deff943939ffffe7b5ffff94396b94dede94 -393994dede943939ffffdeffffff94deff94393994dede943939ffffdeffffff94deff94393994dede000039000000000000000000390000ffde94ffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000 -ffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffff94948cffffffc6c6c6efefefefefeff7f7f7f7f7f7fffffff7f7f7ffffffe7e7e7ffffff94948cffffffffffffffffffffffffffffff94de -ff943939ffffde94e7ff94393994dede943939ffffe794deff943939ffffde94e7ff943939deffde003994ffbd6bffffff94deff63003994e7bd390039ffde94 -deffff393994ffde94ffffffffffffffffffffffffffffffffffffffffff0063b5ffbd6bffffffffffff63b5ffbd6b0094deff943939ffffdeffffff94deff94 -393994dede943939deffde003994ffb563006bbdde9439ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffbdffff00006b000000000000ffbd6b -ffffff94deff0000420000006b0000ffffbd94e7ff6b393900426b000000bd9442003994000000de943994e7ff6b393900426b0000006b0000ffffbd94e7ff6b -393900426b6b000094e7bd000039000000390000ffe794ffffff4294e7000000000000de9439ffffff3994de000000000000e7944294deff944242ffffde94e7 -ff0000390000006b0000ffffbd94deff944242006b94000000000000ffbd6bffffffbdffff6b006bffffbdffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffff7efefffffffffffff94deff944242ffffdeffffffffffffe7ffff393994e7e794393994ffe794ffffff94e7ff94393994e7 -e7943939ffffe7ffffffffffffffffffffffff94deff94424294dede944242ffffdeffffff94deff94424294dede94424294dede944242ffffdeffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000ff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffff94deff000042000000420000ffde9494e7ff943939006b94000000000000ffbd6bffffffbdffff00006b000000000000ffbd6b -94e7ff6b393900426b000000bd6b00ffffffffffff006bbd6b6b426b393900426b0000006b0000deffbd00429400000094420094dede944242ffffde94e7ff00 -00390000006b0000ffffbd94deff944242006b94000000000000ffbd6bffffffbdffff6b006bffffbdfffffffffffffffffffffffffffffff7efefffffffffff -ff94deff944242ffffde006bbdffbd6b94e7ff943939e7ffe7003994ffbd6bffffff4294e7bd6b0094e7ff000039ffbd6bffffff94e7ff943939e7ffe7393994 -ffe794ffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffff000000000000000000000000000000000000000000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffff949494f7f7f7cec6c6e7e7e7f7f7f7f7f7f7fffffff7f7f7fffffff7f7f7efefe7f7f7f7 -949494ffffffffffffffffffffffffffffff94e7ff943939ffffe794deff94424294dede944242ffffde94e7ff943939ffffe794deff94424294dede6b0042ff -ffbdffffffffffffffffffffffffffffffffffff006bbd6b0000ffffbdffffffffffffffffffffffffffffffffffffdeffff424294ffde94ffffffffffff94e7 -ff94393994e7e7943939ffffe7ffffff94e7ff94393994e7e7943939ffffe794deff000042943900ffffe7ffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff94deff943939ffffe7ffffffffffffb5ffff6b006b -ffffb594deff000039000000390000bdde94000063000000630000ffffbd0063b5000000000000000000ffb56394e7ff943939ffffdeffffff94e7ff94393994 -dede63393900396b000000943900ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94de -ff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffefe7e7ffffffffffff94e7ff94393994dede943939ffffe794deff943939ffffde94e7ff000039000000630000ffffbd94deff94 -3939006394000000000000ffbd6bffffff94e7ff000039000000390000ffe794ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8c8c8cffffffc6bdbde7e7e7e7e7e7ef -efeff7f7f7f7f7f7f7f7f7f7f7f7dededeffffff8c8c8cffffffffffffffffffffffffffffff94deff943939ffffde94deff94393994e7e7943939ffffde94de -ff943939ffffde94deff94393994e7e7000039000000000000000000390000dede94003994000000de9439ffffffffffffffffffffffffffffffffffffffffff -ffffffbdffff630063ffffbdffffffffffffb5ffff6b006b94deb5943939ffffdeffffff94deff94393994dede943939ffffdebdffff000063bd6b00ffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 -deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff94 -deff944242ffffdeffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffff94deff94424294dede944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffff94e7ff943939ffffe794deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff94deff944242006b94ffbd6bffffff94e7ff943939ffff -e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffff949494f7f7f7c6bdbddededee7e7e7e7e7e7efefefefefeff7f7f7efefefdededef7f7f7949494ffffffffffffffffffffffffffffff94e7ff943939 -ffffe794deff94424294dede420042ffde9494e7ff390039ffe79494deff944242deffde424294ffde94ffffff94deff944242bdffde6b006bffffbd94e7ff6b -0039ffffbdffffffffffffffffffffffffffffffffffffbdffff6b006bffffbdffffffffffffbdffff6b006b94e7bd000039ffbd6bffffff94e7ff94393994e7 -e7943939ffffe7006bbdbd9442003994ffbd6bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff -ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffefe7e7ffffffffffff94e7ff943939ffffdeffffffe7ffff003994ffbd6bffffffffffffffffffffffffffffffffffffb5ffff6b006b -ffffb5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff94393994dede943939ffffe7ffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff94deff -000039943900ffffdeffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffff94948cffffffbdb5added6d6ded6d6e7dededededee7e7e7e7e7e7efefefcececeffffff94948cff -ffffffffffffffffffffffe7ffff00399400000094390094e7e794393994dede63393900396b000000bd9439003994000000de9439ffffff94deff0000390000 -00390000ffde94ffffff3994de000000000000e79439ffffffbdffff630063ffffbdffffffffffffffffffbdffff630063ffffbdffffffffffffb5ffff6b006b -94deb5943939006394000000000000ffbd6b94deff943939006394943900ffffde94deff000039ffbd6bffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff94deff000042000000000000000000ffbd6bffffffffffffff -ffffffffffffffffffffffffffffffffff006bbd000000ffbd6bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff9442 -42ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffff7efefffffffffffff94deff420042ffde94ffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff949494f7f7f7bdbdb5d6d6ceded6d6ded6d6e7de -dee7dedeefe7e7e7e7e7cececef7f7f7949494ffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbd -ffff6b006bffffbdffffffffffffbdffff6b006bffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -8c8c8cffffffbdb5added6d6d6ceceded6ced6d6cededed6deded6e7e7dec6c6c6ffffff8c8c8cffffffffffffffffffffffffffffff94deff943939ffffde94 -deff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffbdffff630063ffffbdffffffffffffb5ffff6b006bffffb5ffffffffffffffffffffffffffffff94deff943939 -ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffff949494f7f7f7c6bdb5bdb5b5bdbdb5bdb5b5c6bdb5bdb5b5c6bdb5bdbdb5cec6c6f7f7f7949494ffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdffff6b006bffffbdffffffffffffbdffff6b006bffffbdff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 -e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94948cfffffff7f7f7fffffff7f7f7fffffff7f7f7ffffff -f7f7f7fffffff7f7f7ffffff94948cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efeff7efefffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f7f7efe7deffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffff7efeff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -f7f7f7efe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94949494 -9494949494949494949494949494949494949494949494949494949494949494949494ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff -ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffe7e7e7c6c6c6b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5ad -adbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5 -b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5 -b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5ad -adbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5 -b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5c6bdbde7 -e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7dec6c6bdb5adadbdb5b5b5adadb5b5adb5ad -adbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5 -b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5 -b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5ad -adbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5 -b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5 -b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5c6bdbde7e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff -ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff -ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7 -eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7 -f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7 -efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7 -eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7 -f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7 -efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeffff7f7ffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7 -f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7 -efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7 -eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7 -f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7 -efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeffff7f7ffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff -ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7f7f7ef -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefefe7e7ffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7f7f7efffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffff7efefefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8c8c8c94949494948c9494948c8c8c94 -949494948c9494948c8c8c94949494948c9494948c8c8cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 -deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffff949494f7f7f7fffffff7f7f7fffffffffffffffffffffffffffffff7f7f7fffffff7f7f7949494ffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff -ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff9439 -39ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6b -bdff000000de9439ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffff94948cffffffcececedededeefe7e7bd9c94bd9c94fff7f7efefeff7f7f7efefefffffff94948cff -ffffffffffffffffffffffffffffb5ffff00006b63000094e7bd94393994dede943939ffffe794deff943939ffffde94e7ff943939ffffdeb5ffff00006b0000 -00390000ffde94ffffff3994de000000000000e79439ffffffbdffff630063ffffbdffffffffffffffffffffffffdeffff003994de9439ffffffffffffbdffff -390063ffe794ffffff94deff94393994e7e7943939ffffdeffffff94e7ff943939ffffde94deff000039000000393900943939ffffe794deff00003900000094 -3900ffffdeffffffdeffff003994ffb563ffffff63b5ffbd6b00ffffffffffff3994de000000000000de9439ffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff94e7 -ff943939ffffe794deff944242ffffde4294e7000000000000000000944200ffffdeffffff94deff420042ffde94ffffffffffff94e7ff000039000000943900 -ffffe794deff944242ffffdeffffffbdffff6b006bffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffff94deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffe7ffff003994000000000000000000000000000000bd6b0094e7ff943939ffffe794deff9442 -42ffffdeffffffffffffffffffffffffffffff6bbdff000000000000bd6b00ffffffffffffffffffffffff3994dee79442ffffffffffffffffff4294e7de9439 -ffffffffffffbdffff6b006bffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffbdffff6b006bffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff949494f7f7f7d6cecef7efefc6a5949c634a9c63 -52d6bdb5ffffffffffffefefeff7f7f7949494ffffffffffffffffffffffffffffff94e7ff943939ffffe794deff94424294dede944242ffffde94e7ff943939 -ffffe794deff944242deffde004294ffbd6bffffff94deff6b004294debd420042ffde94e7ffff393994ffe794ffffffffffffffffffffffffffffffffffffff -ffffbdffff00006bbd6b00ffffffffffff6bbdff000000de9439ffffff94deff94424294dede944242ffffdeffffff94deff944242deffde004294ffbd6bffff -ff3994de944200deffde004294ffbd6bffffff3994debd6b00ffffffbdffff00006be79442ffffff006bbd6b0000ffffbd94deff420042ffde94e7ffff393994 -ffe794ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff -ffffffffffffffffffffffffffffffffffff94deff943939ffffde94deff943939bdffe7630063ffffbdffffff6bbdff943900ffffdeffffff3994e7000000de -9439ffffffe7ffff003994ffbd6bffffff3994e7b5630094deff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff00006b6300 -0094e7bd943939ffffdeffffff3994e7000000000000000000943900ffffde94deff00003900000039390094393994dede943939b5ffde00006b63000094e7bd -943939ffffde94deff000039000000943900ffffde94e7ff943939ffffdeffffff94e7ff943939ffffde3994de00000000000000000094390094e7e7943939ff -ffdeffffffffffffdeffff00399400000000000000000000000000000039390094393994dede393939000039000000943900ffffdeffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3994e7b56300ffffffffffffffffff -ffffffffffff94deff943939ffffde94deff943939ffffe7ffffffffffffffffffffffffb5ffff6b006bffffb5e7ffff003994ffbd6bffffffffffffffffff39 -94dede9439ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff39006bffde94ffffffffffffffffff94deff000039943900ffffe7 -deffff003994ffb563ffffff63b5ffbd6b00ffffffffffff3994de000000000000000000943900ffffdeffffff006bbdde9439ffffffffffff3994e700000000 -0000de9439ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -8c8c8cffffffd6d6ceefe7e7945a4a9c634a9c634aad7b63ffffffffffffe7e7e7ffffff8c8c8cffffffffffffffffffffffffffffff94deff943939ffffde94 -deff94393994e7e7943939ffffde94deff943939ffffde94deff94393994e7e7630039ffffbdffffffffffffffffffffffffffffffffffff0063b56b0000ffff -b5ffffffffffffffffffffffffffffffffffffffffff63b5ff6b6b00943963ffffdeffffff3994e7949463bd6b39ffffff94e7ff94393994dede943939ffffe7 -ffffff94deff94393994e7e7943939ffffdeffffff94e7ff94393994dede943939ffffe7ffffff94deff943939ffffe763b5ff949439943963bdffe794396339 -94bdffb563ffffffffffffffffff0063b56b0000ffffb5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe794deff944242bdffde42006bffde94ffff -ff94deff944242ffffdee7ffff39399494bd94943939ffffe794deff944242ffffdeffffff94deff94424294dede944242ffffdeffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffff7efefffffffffffff943939ffffe794deff944242ffffdebdffff6b006bffffbdffffff6bbdff943900e7ffe7003994ffbd6bffffff4294e794 -390094e7e794393994e7e7943939ffffe794deff944242deffde004294ffbd6bffffff3994debd6b0094deff944242ffffdeffffff94deff944242bdffde6b00 -6bffffbdffffff6bbdff94420094dede944242ffffdeffffffffffffffffff3994debd6b00ffffffffffffffffffffffff94deff94424294dede6b0042ffffbd -ffffff3994debd6b00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000ffffffffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffff006bbdde9439ffffffffffffffffffffffff94e7ff943939ffffe794deff944242ffffdeffffffffffffffffffffffff6bbdffde9439ffff -ffffffff4294e7bd9439004294000000000000000000000000de9439ffffffffffff4294e7de9439ffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff3994dee79442ff -ffffffffffffffff4294e76b6b39944242ffffdebdffff00006be79442ffffff006bbd6b0000ffffbdbdffff6b006bffffbdffffff6bbdff944200ffffdebdff -ff00006b944200ffffde94e7ff390039ffe794deffff424294ffde94ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffff000000ffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffff949494f7f7f7efe7e7ad84739c634ae7d6d6ad7b6b9c634adec6bdffffffe7e7e7f7f7f7949494ffffffffff -ffffffffffffffffffff94e7ff943939ffffe794deff94424294dede944242ffffde94e7ff943939ffffe794deff94424294dede000042000000000000000000 -420000dede94004294000000e79442ffffffffffffffffffffffffffffffffffffffffffffffffffffff4294e7debd6b424294ffde94e7ffff393994bde7946b -006bffffbd94deff94424294dede944242ffffdeffffff94deff94424294dede944242ffffdeffffff94deff94424294dede944242ffffdeffffff94deff9442 -42ffffde006bbdffbd6b426bbd94bd94bd6b426bbdffe79442deffff004294000000e79442ffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 -e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffff94deff943939 -ffffde94e7ff943939ffffde94deff000039000000000000943900ffffe794deff943939deffde393994ffde9494deff943939ffffe7ffffff94deff94393994 -e7e7943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff943939ffffde94deff943939ffffe7b5ffff39006bffde94ffffff94de -ff94393994dede943939ffffdeffffff94deff94393994dede94393994dede943939ffffde94deff94393994e7e7943939ffffdeffffff94e7ff94393994dede -943939ffffe7ffffff94deff943939bdffe7390063ffde94ffffff94e7ff94393994dede943939ffffe7ffffffffffffffffffffffff0063b5de9439ffffffff -ffffffffff94deff94393994e7e7943939ffffdeffffff94e7ff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000 -0000000000ffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5ffff39006bffde94ffffffffffffffffff94deff943939ffffde94e7ff943939ffffde -ffffffffffffffffffffffff3994de943900ffffdedeffff003994ffbd6b3994dede9439ffffff3994e7de9439ffffffffffffffffff63b5ff943900ffffdeff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffefe7e7ffffffffffff94deffb56339ffffffffffffdeffff39399494bd94943939ffffde63b5ff949439943963bdffde9439633994bdffb563bdffff -390063ffe794ffffff94deff943939ffffe763b5ffbd6b003963b5ffe794ffffffffffffffffff006bbd630000ffffbdffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffff000000000000000000ffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94948cffffffcecec6e7d6ceceada5f7f7f7d6c6bd9c634a -a57363ffffffd6d6d6ffffff94948cffffffffffffffffffffffffffffff94deff943939ffffde94e7ff94393994dede390039ffe79494deff390039ffde9494 -e7ff943939deffde393994ffe794ffffff94deff943939bdffe7630063ffffbd94deff6b0039ffffb5ffffffffffffffffffffffffffffffffffffe7ffff3939 -94ffde943994deffbd6bb5ffff94396bdeffde393994ffde9494deff94393994e7e7000039ffbd6bffffff94e7ff943939deffde003994ffbd6bffffff6bbdff -943900e7ffe7003994ffbd6bffffff3994e7b56300deffff393994ffe79463b5ff000000ffb56394e7ff943939bdffde630063ffffbd94deff6b0039ffffb5ff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff -ffffffffffffffffffffffffffff94e7ff943939ffffe794deff944242ffffdeffffffffffffffffff94deff944242ffffde006bbdde9439ffffff3994debd6b -00deffff004294ffbd6bffffff3994debd6b0094deff420042ffde94ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff943939ffffe794deff -944242ffffdeffffff94deff00004200000000000094390094e7e7943939ffffe7ffffff94e7ff94393994e7e794393994e7e7943939ffffe794deff94424294 -dede944242ffffdeffffff94deff94424294dede944242ffffdeffffff94deff944242ffffde94e7ff00003900000000000094420094dede944242ffffdeffff -ffffffffffffffffffffbdffff39006bffe794ffffffffffff94deff94424294dede944242ffffdeffffff94deff6b0042ffffbdffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffff000000000000000000000000000000ffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff6b0042ffffbdffffffff -ffff94e7ff943939ffffe794deff000042000000000000390000ffe794ffffff4294e76b6b39000042000000bd6b00ffffffbdffff6b006bffffbd3994dee794 -42ffffffffffffffffffffffff006bbdbd6b00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffdeffff00429400000000000000000094420094dede944242ffffde006bbdff -bd6b426bbd94bd94bd6b426bbdffe79442ffffff94e7ff000039000000000000944200ffffde006bbdffbd6b6bbdffbd6b00e7ffff003994000000de9439ffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000ffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff949494f7 -f7f7bdbdb5deded6efefe7dededeffffffa573639c634adec6bde7e7e7f7f7f7949494ffffffffffffffffffffffffdeffff00429400000094420094dede9442 -4294dede6b424200396b000000bd9439004294000000e79442ffffff94e7ff000039000000390000ffe794ffffff4294e7000000000000de9439ffffffbdffff -6b006bffffbdffffffffffffffffffbdffff6b006bffffbd6bbdffbd6b0094e7ffbd6b39ffffff3994dee7944294deff94424294dede944242006b9400000000 -0000ffbd6bffffff94e7ff000039000000000000944200ffffde94e7ff0000390000006b0000ffffbd6bbdff6b0000ffffbdbdffff6b006bffffbdbdffff4200 -6bffde944294e7000000000000de9439ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff -ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffbdffff00006300000063000094debd943939ffffe70063b5000000000000000000 -ffb56394deff390039ffe794ffffff94deff390039ffe79494deff0000390000006b0000ffffb594deff63393900396b630000bdffbd630063ffffbdffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffefe7e7ffffffffffff943939ffffde94e7ff390039ffde94ffffffffffffffffffffffff94deff943939deffde003994ffb563ffffff63b5ff94390094de -de94393994dede943939ffffde94e7ff943939deffde003994ffbd6bffffff3994deb5630094e7ff000039ffbd6bffffff94e7ff943939ffffdeffffffffffff -ffffff94deff94393994e7e7943939ffffdeffffffffffffffffffffffffffffff94e7ff630039ffffbdffffff94e7ff94393994dede390039ffe794ffffff39 -94deb56300ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000ffffffffffffffffffffffffef -e7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffff3994de943900ffffdeffffff94deff943939ffffde94deff943939ffffe7ffffff94deff943939ffffe73994debd6b00ffffffffffff -ffffffffffffffffff6bbdffb563003994dede9439ffffffffffffffffffffffffe7ffff003994ffbd6bb5ffff6b006bffffb5ffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffff3994deffbd6bffff -ff3994e7de943994deff943939e7ffe7393994ffde9463b5ff000000ffb56394deff943939ffffe7ffffffffffffffffff94e7ff94393994dede630039ffffbd -b5ffff6b006bb5ffb56b006bffffb594deff630039ffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000 -0000000000000000000000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffff8c8c8cffffffbdb5added6d6d6ceceded6d6e7e7e7d6bdb5945a42ad7b6befefefffffff8c8c8cffffffffffffffffff -ffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6bbdff943900ffffe7b5ffff94396b3994b5e79439ffffff6bbdffb563 -00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffdeffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe794 -deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff00000094420094dede6b424200396b6b0000006b6b000000000000000000ffbd6b -ffffff94deff00004200000000000094390094e7e76b393900426b00000094420094dede944242ffffde94e7ff0000390000006b0000ffffbd94deff94424200 -6b94000000000000ffbd6bffffff006bbd000000000000000000ffbd6b94deff944242ffffdeffffffffffffffffffffffffffffffffffff4294e7943900ffff -e794deff94424294dede6b424200396b0000006b0000ffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff006bbde79442ffffff94e7ff943939ffffe794deff944242ffffdeffffffbd -ffff6b006bffffbd6bbdff943900ffffe7ffffffffffffffffffffffffdeffff424294396b6be79442ffffffffffffffffffffffffffffff4294e7de9439ffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -f7efefffffffffffffffffff94e7ffbd6b39e7ffff393994ffe79494deff9442426bbdde6b0000ffffbdbdffff6b006bffffbdbdffff42006bffde94006bbd00 -0000000000000000ffbd6b006bbdbd6b00ffffffffffff006bbde794423994de000000000000e79442ffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff949494f7f7f7c6bdb5ded6ceded6d6d6d6ceded6d6f7f7f7a5735a94 -5a42d6c6c6ffffff949494ffffffffffffffffffffffffffffff94e7ff943939ffffe794deff944242ffffdeffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3994dee79442ffffff -e7ffff393994424242ffde94ffffff94deff6b004294debd944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff944242ff -ffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff -ffffffffffffffffffffb5ffff6b006bffffb594e7ff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff943939ffffdeffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffff94deff943939ffffdeffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffe7ffffffffffff -ffffffffffffffffffffffffffffff006bbdde9439ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdffff000063ffbd6b94de -ff943939ffffde94e7ff943939ffffdeffffff94e7ff943939ffffdeb5ffff00006bffb563ffffff0063b5e79439ffffffffffff94deff000039de9439ffffff -3994debd6b00ffffffdeffff003994ffbd6bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffdeffff6b3994b5ffb594396bffffde94e7ff943939ffffdeffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef -e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94948cffffffbdb5 -adbdb5b5bdb5adbdbdb5bdb5add6d6cec6ad9cb58c7be7dedeffffff94948cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffdeffff003994ffb563ffffffffffff3994e7630000ffffbdffffffbdffff000063ffbd6bffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffff94deff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff -ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffff006bbd00000094946b944242ffffdeffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7ef -efffffffffffff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff94393994e7e7943939 -94e7e7943939ffffe794deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffff94deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffbdffff00006b94946b944242ffffdeffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6bbdff -000000000000000000000000000000bd6b0094e7ff943939ffffe794deff000042000000000000000000ffbd6bffffffffffff6bbdff000000000000bd6b00ff -ffffffffffffffffffffff006bbde79442ffffffffffff006bbd000000000000bd6b00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffff006bbd6b6b6bde9439 -ffffff94deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffff949494f7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffffffffffffffff7f7f7949494ffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff -ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffdeffffffffffffffffff6bbdff000000000000000000000000000000bd6b00 -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ff -ffffffffffffffffffffff6bbdff390000ffe794ffffff94deff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8c8c8c94949494948c9494948c8c8c94949494948c9494948c8c8c9494949494 -8c9494948c8c8cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff -ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7f7f7efffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffefe7e7f7f7efffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefefe7deffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 -deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7c6c6bdbdb5b5b5 -adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 -b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad -bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 -adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 -b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad -bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adcec6c6e7e7e7ffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7c6bdbdbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 -b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad -bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 -adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 -b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad -bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 -adadbdb5b5b5b5adcec6c6e7e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff -ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 -e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffff7f7f7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefef -e7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7 -f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7 -efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefef -e7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7 -f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7 -efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefef -e7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7 -f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7 -efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefef -e7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7 -f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7 -efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefef -e7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7 -f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7 -efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefef -e7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7 -f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7 -efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefef -e7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7 -f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7ffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efeff7efefffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f7f7efe7deffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff -ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffff8c8c8c7b7b7b73737373737373737373737373737373 -73737373737373737373737373737373737373737373737373737373737373737373738c8c8cffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff8c8c8c9494 -94e7e7e7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7efefef949494949494ffffff -ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff -ffffffffffffffffffffffffffffff7b7b7be7e7e7f7f7f7d6d6d6d6d6d6cececed6d6d6d6d6d6d6d6d6cececed6d6d6d6d6d6d6d6d6cececed6d6d6d6d6d6d6 -d6d6cececed6d6d6efefefe7e7e7737373ffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff -ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe794deff94424294dede944242ffffdebdffff00006b00000039 -0000ffe794ffffffffffffffffffbdffff00006b6b0000ffffbd94e7ff000039000000943900ffffe7ffffffffffffffffffffffff3994de000000000000e794 -42ffffff4294e7000000000000000000944200ffffdeffffff94deff420042ffde94ffffffffffffbdffff00006b000000390000ffe794ffffffffffffffffff -bdffff00006b6b0000ffffbd94e7ff000039000000943900ffffe7ffffffbdffff6b006bffffbdffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7ef -efffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff737373ffffffd6d6d6dededed6d6d6d6d6d6d6d6d6dededed6d6d6d6d6 -d6d6d6d6dededed6d6d6d6d6d6d6d6d6dededed6d6d6d6d6d6d6d6d6dededef7f7f7737373ffffffffffffffffffffffffffffffffffffefe7deffffffffffff -ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffff94deff943939ffffde94deff9439 -3994e7e7943939deffde003994ffbd6bffffff94deff630039ffffbdffffffffffff94deff943939ffffdedeffff003994ffbd6bffffff3994deb56300ffffff -ffffffffffff94deff390039ffde94deffff393994bde794630063ffffbdffffff6bbdff943900ffffdeffffff3994e7000000de9439ffffffe7ffff003994ff -bd6bffffff94e7ff630039ffffbdffffffffffff94deff943939ffffdee7ffff003994ffbd6bffffff3994e7b56300ffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffbdffff000063000000000000ffbd6bffffffbdffff630063ffffbdffffffffffffffffffbd -ffff630063399494000000000000393900943939ffffde3994de000000000000de9439ffffffb5ffff00006b000000390000ffde9494e7ff943939ffffdeffff -ff3994e7000000000000de9439ffffffffffffffffffffffffbdffff63006394debd00003900000039390094393994dede94393994dede943939ffffdeffffff -94deff943939ffffde94e7ff000039000000943900ffffe7ffffffffffffffffffffffffb5ffff6b006b94deb5000039000000393900943939ffffe794deff00 -0039000000943900ffffdeffffffb5ffff00006b000000000000ffb563ffffff3994de00000000000039390094393994dede943939ffffe794deff943939ffff -de94e7ff943939ffffdeb5ffff00006b000000390000ffde9494e7ff943939ffffdeffffff94e7ff943939bdffde0000636b0000ffffb53994de000000000000 -de9439ffffffffffffffffffffffffbdffff000063000000630000ffffbdb5ffff00006b000000390000ffde94ffffff3994de000000000000e79439b5ffff00 -006b630000e7ffbd00399400000000000039000094b59494393994dede393939000039000000943900ffffe7ffffffbdffff630063e7ffbd0039940000000000 -0039000094b59494393994dede393939000039000000943900ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff737373f7f7f7d6d6d6 -d6d6d6d6d6d6d6d6d69cd6d6520052d6d69c94d6d65a005ad6d6949cd6d6520052d6d69cd6d6d6d6d6d6d6d6d6d6d6d6d6d6d6ffffff737373ffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff -ffffffffffff94e7ff943939ffffe794deff94424294dede94424294dede6b0042ffffbdffffffffffffffffffffffffffffffffffff94e7ff943939ffffe794 -deff944242ffffdeffffff94deff944242ffffdeffffffffffffffffffffffffffffff006bbd6b0000bdffbd42006bffde94ffffff94deff944242ffffdee7ff -ff39399494bd94943939ffffe794deff6b0042ffffbdffffffffffffffffffffffffffffffffffff94e7ff943939ffffe794deff944242ffffdeffffff94deff -944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff003994ffbd6bffffffbdffff39006bffe7 -94ffffffffffffffffffffffffffffffffffff3994debdbd6b6b006bffffbdffffff6bbdff94390094e7e7390039ffe794deffff424294dede94004294ffbd6b -ffffff94deff6b004294debd944242ffffde94e7ff390039ffe794deffff424294ffde94ffffffffffffffffff3994dee7bd6b003994ffbd6bffffff4294e794 -390094e7e794393994e7e7943939ffffe7ffffff94e7ff943939e7ffe7003994ffbd6bffffff4294e7bd6b00ffffffffffffffffffffffff4294e7debd6b0042 -94ffbd6bffffff3994de944200deffde004294ffbd6bffffff3994debd6b00deffff004294ffbd6bffffffbdffff42006bbdde946b006bffffbdffffff6bbdff -94420094dede944242ffffde94e7ff943939ffffe794deff944242deffde004294ffbd6bffffff94deff6b004294debd944242ffffdeffffff94deff94424294 -dede944242ffffde94e7ff390039ffe794deffff424294ffde94ffffffffffffffffff3994de94946b943939ffffe7deffff004294ffbd6bffffff94deff6b00 -4294debd420042ffde94e7ffff39399494bd94943939ffffe7ffffff4294e7bd6b00ffffffffffff94e7ff94393994e7e76b0039ffffbdffffff4294e7bd6b00 -ffffffffffffffffffffffff4294e7bd6b00ffffffffffff94e7ff94393994e7e76b0039ffffbdffffff4294e7bd6b00ffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffffffffff737373ffffffd6d6d6dededed6d6d6dededed6d6d6dededed6d6d6dededed6d6d6dededed6d6d6dededed6d6d6dededed6d6d6dede -ded6d6d6dededef7f7f7737373ffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff -ffffe7ded6ffffffffffffffffffffffffffffffffffffffffff94deff943939ffffde94e7ff94393994dede94393994e7e70000390000000000000000003900 -00ffde94ffffffffffff94deff943939ffffde94e7ff943939ffffdeffffff94e7ff943939ffffdeffffffffffffdeffff003994000000e79439ffffffffffff -94deff000039000000000000943900ffffe794deff943939deffde393994ffde9494deff000039000000000000000000390000ffe794ffffffffffff94deff94 -3939ffffde94deff943939ffffe7ffffff94deff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffff -ffffff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffb5ffff94396b94dede943939ffffdeffffff94deff943939ffffdeff -ffffffffff006bbd63000094e7bd630039ffffbdffffffffffffffffff94deff943939ffffe7ffffffffffffffffff006bbd630000ffffbdffffffffffffb5ff -ff94396b94dede943939ffffdeffffff94deff94393994dede94393994dede943939ffffdeffffff94deff94393994dede943939ffffdeffffff94deff943939 -ffffdeffffffffffffbdffff94396394e7e7943939ffffdeffffff94e7ff94393994dede943939ffffe7ffffff94deff94393994e7e7943939ffffdeffffffff -ffffffffff94deff943939ffffe7ffffff94deff94393994e7e7943939ffffde94deff943939ffffde94deff94393994e7e7630039ffffbdffffffffffffffff -ff94deff943939ffffe7ffffff94deff94393994e7e7943939ffffdeffffffffffffffffff006bbd630000ffffbdffffffffffffb5ffff94396b94dede943939 -ffffde94e7ff630039ffffbdffffffffffffffffffffffffffffffffffff0063b56b000094deb5943939ffffdeffffffdeffff003994ffb563ffffff94deff94 -393994dede943939ffffdeffffff94deff943939ffffdeffffffffffffffffffdeffff003994ffb563ffffff94deff94393994dede943939ffffdeffffff94de -ff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffff737373f7f7f7dedededededededededededededededededededededededededede -dededededededededededededededededededededededededededeffffff737373ffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff -ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe794deff94424294dede -944242deffde424294ffde94ffffff94deff944242ffffdeffffffffffff94e7ff943939ffffe7deffff004294ffbd6bffffff3994debd6b00ffffffffffffff -ffffbdffff6b006bffffbd94deff6b0042ffffbdffffffffffffffffff94deff944242ffffde006bbdde9439ffffff3994debd6b00deffff424294ffde94ffff -ff94deff944242ffffdeffffffffffff94e7ff943939ffffe7deffff004294ffbd6bffffff3994debd6b00ffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffff7efefffffffffffff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffff4294e7ffbd6b94e7 -ff943939ffffe7ffffff94e7ff943939e7ffe7003994000000de9439ffffff94deff00004200000000000000000042000094bd94944242ffffdee7ffff003994 -000000de9439ffffffffffffffffffffffff4294e7ffbd6b94e7ff943939ffffe7ffffff94e7ff94393994e7e794393994e7e7943939ffffe7ffffff94e7ff94 -393994e7e7943939ffffe7ffffff94e7ff943939ffffe7ffffffffffff3994deffbd6b94deff944242ffffdeffffff94deff94424294dede944242ffffdeffff -ff94deff94424294dede944242ffffdeffffffffffffffffff94deff944242ffffdeffffff94deff94424294dede944242ffffde94e7ff943939ffffe794deff -94424294dede00004200000000000000000042000094bd94944242ffffdeffffff94deff94424294dede944242ffffdee7ffff003994000000de9439ffffffff -ffffffffffffffff4294e7ffbd6b94e7ff943939ffffe794deff000042000000000000000000420000dede94004294000000e79442ffffff94e7ff943939ffff -e7ffffffffffff94deff6b0042ffffbd94e7ff94393994e7e7943939ffffe7ffffff94e7ff6b0039ffffbdffffffffffffffffffffffff94deff6b0042ffffbd -94e7ff94393994e7e7943939ffffe7ffffff94e7ff6b0039ffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff737373ffffffdededee7e7e7de -dedee7e7e7dededee7e7e7dededee7e7e7dededee7e7e7dededee7e7e7dededee7e7e7dededee7e7e7dededee7e7e7ffffff737373ffffffffffffffffffffff -ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffbd -ffff00006300000063000094debd94393994e7e7943939ffffde94deff000039000000390000ffde94ffffffffffffdeffff003994000000943900ffffde94de -ff0000390000006b0000ffffb5ffffffffffffffffffffffff3994e7000000000000de9439ffffff0063b5000000000000000000ffb56394deff390039ffe794 -ffffff94deff390039ffe79494deff000039000000390000ffde94ffffffffffffe7ffff003994000000943900ffffe794deff0000390000006b0000ffffb5ff -ffffb5ffff6b006bffffb5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff003994ffb563ffffffb5ffff39006bffde94ffffff -ffffffffffffffffffbdffff943963ffffde94deff943939ffffdeffffff94deff943939b5ffde6b006bffffb594e7ff630039deffbd393994ffe794ffffff94 -deff94393994e7e7390039ffde94b5ffff6b006bffffb594deff630039ffffbdffffffbdffff943963ffffe7deffff003994ffb563ffffff63b5ff94390094de -de94393994dede000039ffb563ffffff94deff943939deffde003994ffb563ffffff3994debd6b00ffffffffffffb5ffff94396bffffdedeffff003994ffbd6b -ffffff6bbdff943900e7ffe7003994ffbd6bffffff3994e7b56300deffff003994ffbd6bffffffbdffff39006394bd94943939ffffdeffffff94e7ff94393994 -dede390039ffe79494deff390039ffde9494e7ff943939deffde393994ffe794ffffff94deff94393994e7e7000039ffbd6bffffff94e7ff94393994dede9439 -39ffffe7b5ffff6b006bffffb594e7ff630039ffffbdffffffbdffff943963ffffde94deff943939ffffdedeffff393994ffe794ffffff94deff943939bdffe7 -630063ffffbd94deff6b003994deb5943939ffffdeffffffffffffffffff3994debd6b0094deff94393994dede390039ffde94ffffff3994debd6b00ffffffff -ffffffffffffffffffffffffffff3994debd6b0094deff94393994dede390039ffde94ffffff3994debd6b00ffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffff -ffffffffffffff737373f7f7f7e7e7e7dededededededededee7e7e7dededededededededee7e7e7dededededededededee7e7e7dededededededededee7e7e7 -dededeffffff737373ffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 -deffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffff94deff944242ffffdeffffffffffffffffffffffffffffffffffff -ffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffff -e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffbd -ffff00006b000000000000ffbd6bffffffbdffff6b006bffffbdffffff3994deffbd6bffffff94e7ff943939ffffe7ffffff94e7ff943939ffffe73994de0000 -00000000e79442ffffff94e7ff000039000000390000ffe79494deff6b424200396b6b0000399494000000000000e79442ffffffffffff3994deffbd6bffffff -ffffff94deff00004200000000000094390094e7e794393994e7e7943939006b94000000000000ffbd6bffffff94deff0000420000006b0000ffffbdffffffff -ffff4294e7ffbd6bffffffffffff94e7ff000039000000000000944200ffffde94e7ff0000390000006b0000ffffbdffffffbdffff00006b000000000000ffbd -6b94deff944242ffffdeffffff94deff94424294dede6b424200396b000000bd9439004294000000e79442ffffff94e7ff000039000000390000ffe79494deff -944242006b94000000000000e7bd6b003994000000943900ffffe73994de000000000000e79442ffffffffffff3994deffbd6bdeffff004294000000944200ff -ffde94e7ff000039000000390000ffe794ffffff4294e7000000000000bd9439004294000000944200ffffde006bbd0000000000006b000094e7bd94393994e7 -e76b393900426b0000006b0000ffffbdffffffffffffffffffffffff006bbd0000000000006b000094e7bd94393994e7e76b393900426b0000006b0000ffffbd -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffffffffff737373ffffffefefeff7f7f7efefeff7f7f7efefeff7f7f7efefeff7f7f7efefeff7f7f7ef -efeff7f7f7efefeff7f7f7efefeff7f7f7efefeff7f7f7ffffff737373ffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff -ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffb5ffff6b006bffffb594e7ff94393994dede943939ff -ffe7ffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5ffff94396bffffdeffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffb5ffff94396bffffdeffffffffffffffffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffbdffff943963ffffdeffffffffffffffffffffffffffffff94e7ff943939ffffdeffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffdeffffffffffffffffffffffffffffffffffffb5ff -ff94396bffffdeffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffff737373fffffff7f7f7efefeff7f7f7efef -eff7f7f7efefeff7f7f7efefeff7f7f7efefeff7f7f7efefeff7f7f7efefeff7f7f7efefeff7f7f7efefefffffff737373ffffffffffffffffffffffffffffff -ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffff -ff006bbd000000ffbd6bffffff94deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffff4294e7ffbd6bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffff4294e7ffbd6bffffffffffffffffffffffffffffffffffff94e7ff94393994e7e7943939 -ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3994deffbd6bffffffffffffffffffffffffffffffffffff94 -deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff944242ffffde -ffffffffffffffffffffffffffffffffffff4294e7ffbd6bffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -ffffff737373ffffffefefeff7f7f7f7f7f7f7f7f7efefeff7f7f7f7f7f7f7f7f7efefeff7f7f7f7f7f7f7f7f7efefeff7f7f7f7f7f7f7f7f7efefeff7f7f7ff -ffff737373ffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffbdffff943963ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdffff943963ffffdeffffffffffffffffffff -ffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5ffff94396bffff -deffffffffffffffffffffffffffffffffffff94deff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdffff943963ffffe7ffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef -e7deffffffffffffffffffffffffffffffffffffffffff737373fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 -f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffff737373ffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff -0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff737373fffffff7f7f7f7f7f7f7f7f7fffffff7f7f7 -f7f7f7f7f7f7fffffff7f7f7f7f7f7f7f7f7fffffff7f7f7f7f7f7f7f7f7fffffff7f7f7f7f7f7ffffff737373ffffffffffffffffffffffffffffffffffffe7 -e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffff73 -7373fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffff7373 -73ffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffffffffff7b7b7bf7f7f7fffffffffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7 -fffffff7f7f7fffffff7f7f7ffffffefefef7b7b7bffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff -ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffefe7e7f7f7efffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffffffffff7efefefe7deffffffffffffffffffffffffffffffffffffffffff8c8c8c949494efefefffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefefef9494948c8c8cffffffffffffffffffffffffffffffffffffefe7deffff -ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffefe7e7c6c6bdbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad -bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 -adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 -b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad -bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 -adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 -b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad -bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 -adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 -b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad -bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 -adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 -b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad -bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 -adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 -b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad -bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 -adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 -b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad -bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 -adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adcec6c6e7e7e7ffffffffffffffffffffffffffffffffffffffffffffffff9c9c -9c7b7b7b7373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737b7b7b949494ffffffffffff -ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff -ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff -ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff -ffffffffffffffffe7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef -e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de -d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de -e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7deffffffffffffffffffffffffffffffff -ffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffff0000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000040000002701ffff030000000000}}}{\rtlch\fcs1 \af0 \ltrch\fcs0 -\insrsid14842421 -\par The files you\rquote ve provisionally added into the zip appear in a listbox below. You can edit this list, and change the path or filename used in the zipfile for any entry. -\par Click \'93Zip it!\'94 to create the zip with the given specifications. -\par }\pard\plain \ltrpar\s3\ql \li0\ri0\sb200\sl276\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel2\adjustright\rin0\lin0\itap0\pararsid13582222 \rtlch\fcs1 \ab\af0\afs22\alang1025 \ltrch\fcs0 -\b\fs22\cf18\lang1033\langfe1033\loch\af31502\hich\af31502\dbch\af31501\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid13582222 \hich\af31502\dbch\af31501\loch\f31502 Drag and Drop}{\rtlch\fcs1 \af0 \ltrch\fcs0 -\insrsid14842421\charrsid14842421 -\par }\pard\plain \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid6951347 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { -\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid13582222 You can also drag-and-drop into the zip tool. If you drag a .zip file onto the listview that appears at the bottom of the Read tab, that will open the given zip file and read it. }{\rtlch\fcs1 \af0 -\ltrch\fcs0 \insrsid6951347 -\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid13582222 Drag a set of fen to the listview that appears at the bottom of the Create tab to add that set of files to the zip file you are creating.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid13582222\charrsid6951347 - -\par }{\*\themedata 504b030414000600080000002100e9de0fbfff0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb4ec3301045f748fc83e52d4a -9cb2400825e982c78ec7a27cc0c8992416c9d8b2a755fbf74cd25442a820166c2cd933f79e3be372bd1f07b5c3989ca74aaff2422b24eb1b475da5df374fd9ad -5689811a183c61a50f98f4babebc2837878049899a52a57be670674cb23d8e90721f90a4d2fa3802cb35762680fd800ecd7551dc18eb899138e3c943d7e503b6 -b01d583deee5f99824e290b4ba3f364eac4a430883b3c092d4eca8f946c916422ecab927f52ea42b89a1cd59c254f919b0e85e6535d135a8de20f20b8c12c3b0 -0c895fcf6720192de6bf3b9e89ecdbd6596cbcdd8eb28e7c365ecc4ec1ff1460f53fe813d3cc7f5b7f020000ffff0300504b030414000600080000002100a5d6 -a7e7c0000000360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4f -c7060abb0884a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b6309512 -0f88d94fbc52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462 -a1a82fe353bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f746865 -6d652f7468656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b -4b0d592c9c070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b -4757e8d3f729e245eb2b260a0238fd010000ffff0300504b03041400060008000000210030dd4329a8060000a41b0000160000007468656d652f7468656d652f -7468656d65312e786d6cec594f6fdb3614bf0fd87720746f6327761a07758ad8b19b2d4d1bc46e871e698996d850a240d2497d1bdae38001c3ba618715d86d87 -615b8116d8a5fb34d93a6c1dd0afb0475292c5585e9236d88aad3e2412f9e3fbff1e1fa9abd7eec70c1d1221294fda5efd72cd4324f1794093b0eddd1ef62fad -79482a9c0498f184b4bd2991deb58df7dfbb8ad755446282607d22d771db8b944ad79796a40fc3585ee62949606ecc458c15bc8a702910f808e8c66c69b9565b -5d8a314d3c94e018c8de1a8fa94fd05093f43672e23d06af89927ac06762a049136785c10607758d9053d965021d62d6f6804fc08f86e4bef210c352c144dbab -999fb7b4717509af678b985ab0b6b4ae6f7ed9ba6c4170b06c788a705430adf71bad2b5b057d03606a1ed7ebf5babd7a41cf00b0ef83a6569632cd467faddec9 -699640f6719e76b7d6ac355c7c89feca9cccad4ea7d36c65b258a206641f1b73f8b5da6a6373d9c11b90c537e7f08dce66b7bbeae00dc8e257e7f0fd2badd586 -8b37a088d1e4600ead1ddaef67d40bc898b3ed4af81ac0d76a197c86826828a24bb318f3442d8ab518dfe3a20f000d6458d104a9694ac6d88728eee2782428d6 -0cf03ac1a5193be4cbb921cd0b495fd054b5bd0f530c1931a3f7eaf9f7af9e3f45c70f9e1d3ff8e9f8e1c3e3073f5a42ceaa6d9c84e5552fbffdeccfc71fa33f -9e7ef3f2d117d57859c6fffac327bffcfc793510d26726ce8b2f9ffcf6ecc98baf3efdfdbb4715f04d814765f890c644a29be408edf3181433567125272371be -15c308d3f28acd249438c19a4b05fd9e8a1cf4cd296699771c393ac4b5e01d01e5a30a787d72cf1178108989a2159c77a2d801ee72ce3a5c545a6147f32a9979 -3849c26ae66252c6ed637c58c5bb8b13c7bfbd490a75330f4b47f16e441c31f7184e140e494214d273fc80900aedee52ead87597fa824b3e56e82e451d4c2b4d -32a423279a668bb6690c7e9956e90cfe766cb37b077538abd27a8b1cba48c80acc2a841f12e698f13a9e281c57911ce298950d7e03aba84ac8c154f8655c4f2a -f074481847bd804859b5e696007d4b4edfc150b12addbecba6b18b148a1e54d1bc81392f23b7f84137c2715a851dd0242a633f900710a218ed715505dfe56e86 -e877f0034e16bafb0e258ebb4faf06b769e888340b103d331115bebc4eb813bf83291b63624a0d1475a756c734f9bbc2cd28546ecbe1e20a3794ca175f3fae90 -fb6d2dd99bb07b55e5ccf68942bd0877b23c77b908e8db5f9db7f024d9239010f35bd4bbe2fcae387bfff9e2bc289f2fbe24cfaa301468dd8bd846dbb4ddf1c2 -ae7b4c191ba8292337a469bc25ec3d411f06f53a73e224c5292c8de0516732307070a1c0660d125c7d44553488700a4d7bddd3444299910e254ab984c3a219ae -a4adf1d0f82b7bd46cea4388ad1c12ab5d1ed8e1153d9c9f350a3246aad01c6873462b9ac05999ad5cc988826eafc3acae853a33b7ba11cd1445875ba1b236b1 -399483c90bd560b0b0263435085a21b0f22a9cf9356b38ec6046026d77eba3dc2dc60b17e92219e180643ed27acffba86e9c94c7ca9c225a0f1b0cfae0788ad5 -4adc5a9aec1b703b8b93caec1a0bd8e5de7b132fe5113cf312503b998e2c2927274bd051db6b35979b1ef271daf6c6704e86c73805af4bdd476216c26593af84 -0dfb5393d964f9cc9bad5c313709ea70f561ed3ea7b053075221d51696910d0d339585004b34272bff7213cc7a510a5454a3b349b1b206c1f0af490176745d4b -c663e2abb2b34b23da76f6352ba57ca2881844c1111ab189d8c7e07e1daaa04f40255c77988aa05fe06e4e5bdb4cb9c5394bbaf28d98c1d971ccd20867e556a7 -689ec9166e0a522183792b8907ba55ca6e943bbf2a26e52f48957218ffcf54d1fb09dc3eac04da033e5c0d0b8c74a6b43d2e54c4a10aa511f5fb021a07533b20 -5ae07e17a621a8e082dafc17e450ffb739676998b48643a4daa7211214f623150942f6a02c99e83b85583ddbbb2c4996113211551257a656ec1139246ca86be0 -aadedb3d1441a89b6a929501833b197fee7b9641a3503739e57c732a59b1f7da1cf8a73b1f9bcca0945b874d4393dbbf10b1680f66bbaa5d6f96e77b6f59113d -316bb31a795600b3d256d0cad2fe354538e7566b2bd69cc6cbcd5c38f0e2bcc63058344429dc2121fd07f63f2a7c66bf76e80d75c8f7a1b622f878a18941d840 -545fb28d07d205d20e8ea071b283369834296bdaac75d256cb37eb0bee740bbe278cad253b8bbfcf69eca23973d939b97891c6ce2cecd8da8e2d343578f6648a -c2d0383fc818c798cf64e52f597c740f1cbd05df0c264c49134cf09d4a60e8a107260f20f92d47b374e32f000000ffff0300504b030414000600080000002100 -0dd1909fb60000001b010000270000007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f7 -8277086f6fd3ba109126dd88d0add40384e4350d363f2451eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89 -d93b64b060828e6f37ed1567914b284d262452282e3198720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd500 -1996509affb3fd381a89672f1f165dfe514173d9850528a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100e9de0f -bfff0000001c0200001300000000000000000000000000000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6 -a7e7c0000000360100000b00000000000000000000000000300100005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a -0000001c00000000000000000000000000190200007468656d652f7468656d652f7468656d654d616e616765722e786d6c504b01022d00140006000800000021 -0030dd4329a8060000a41b00001600000000000000000000000000d60200007468656d652f7468656d652f7468656d65312e786d6c504b01022d001400060008 -00000021000dd1909fb60000001b0100002700000000000000000000000000b20900007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000ad0a00000000} -{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d -617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 -6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 -656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} -{\*\latentstyles\lsdstimax267\lsdlockeddef0\lsdsemihiddendef1\lsdunhideuseddef1\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4; -\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9; -\lsdpriority39 \lsdlocked0 toc 1;\lsdpriority39 \lsdlocked0 toc 2;\lsdpriority39 \lsdlocked0 toc 3;\lsdpriority39 \lsdlocked0 toc 4;\lsdpriority39 \lsdlocked0 toc 5;\lsdpriority39 \lsdlocked0 toc 6;\lsdpriority39 \lsdlocked0 toc 7; -\lsdpriority39 \lsdlocked0 toc 8;\lsdpriority39 \lsdlocked0 toc 9;\lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdpriority1 \lsdlocked0 Default Paragraph Font; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority22 \lsdlocked0 Strong;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority59 \lsdlocked0 Table Grid;\lsdunhideused0 \lsdlocked0 Placeholder Text;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;\lsdunhideused0 \lsdlocked0 Revision; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdpriority37 \lsdlocked0 Bibliography;\lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;}}{\*\datastore 010500000200000018000000 -4d73786d6c322e534158584d4c5265616465722e362e3000000000000000000000060000 -d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e50000000000000000000000009009 -81e1502bcc01feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 -000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 +{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff0\deff0\stshfdbch0\stshfloch31506\stshfhich31506\stshfbi31506\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;} +{\f36\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria;}{\f37\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}{\f38\fbidi \fswiss\fcharset0\fprq2{\*\panose 020b0604030504040204}Tahoma;} +{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} +{\fhimajor\f31502\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria;}{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} +{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} +{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f39\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} +{\f40\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\f42\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f43\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f44\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} +{\f45\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f46\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f47\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f379\fbidi \froman\fcharset238\fprq2 Cambria Math CE;} +{\f380\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;}{\f382\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f383\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f386\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;} +{\f387\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese);}{\f399\fbidi \froman\fcharset238\fprq2 Cambria CE;}{\f400\fbidi \froman\fcharset204\fprq2 Cambria Cyr;}{\f402\fbidi \froman\fcharset161\fprq2 Cambria Greek;} +{\f403\fbidi \froman\fcharset162\fprq2 Cambria Tur;}{\f406\fbidi \froman\fcharset186\fprq2 Cambria Baltic;}{\f407\fbidi \froman\fcharset163\fprq2 Cambria (Vietnamese);}{\f409\fbidi \fswiss\fcharset238\fprq2 Calibri CE;} +{\f410\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\f412\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\f413\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;}{\f416\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;} +{\f417\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}{\f419\fbidi \fswiss\fcharset238\fprq2 Tahoma CE;}{\f420\fbidi \fswiss\fcharset204\fprq2 Tahoma Cyr;}{\f422\fbidi \fswiss\fcharset161\fprq2 Tahoma Greek;} +{\f423\fbidi \fswiss\fcharset162\fprq2 Tahoma Tur;}{\f424\fbidi \fswiss\fcharset177\fprq2 Tahoma (Hebrew);}{\f425\fbidi \fswiss\fcharset178\fprq2 Tahoma (Arabic);}{\f426\fbidi \fswiss\fcharset186\fprq2 Tahoma Baltic;} +{\f427\fbidi \fswiss\fcharset163\fprq2 Tahoma (Vietnamese);}{\f428\fbidi \fswiss\fcharset222\fprq2 Tahoma (Thai);}{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} +{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} +{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} +{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} +{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} +{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhimajor\f31528\fbidi \froman\fcharset238\fprq2 Cambria CE;} +{\fhimajor\f31529\fbidi \froman\fcharset204\fprq2 Cambria Cyr;}{\fhimajor\f31531\fbidi \froman\fcharset161\fprq2 Cambria Greek;}{\fhimajor\f31532\fbidi \froman\fcharset162\fprq2 Cambria Tur;} +{\fhimajor\f31535\fbidi \froman\fcharset186\fprq2 Cambria Baltic;}{\fhimajor\f31536\fbidi \froman\fcharset163\fprq2 Cambria (Vietnamese);}{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} +{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} +{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} +{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} +{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} +{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} +{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} +{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} +{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE;} +{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;} +{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} +{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} +{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} +{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0; +\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192; +\caccentone\ctint255\cshade191\red54\green95\blue145;\caccentone\ctint255\cshade255\red79\green129\blue189;\ctexttwo\ctint255\cshade191\red23\green54\blue93;\chyperlink\ctint255\cshade255\red0\green0\blue255;}{\*\defchp \f31506\fs22 }{\*\defpap +\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 +\af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext0 \sqformat \spriority0 Normal;}{\s1\ql \li0\ri0\sb480\sl276\slmult1 +\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af0\afs28\alang1025 \ltrch\fcs0 \b\fs28\cf17\lang1033\langfe1033\loch\f31502\hich\af31502\dbch\af31501\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext0 \slink15 \sqformat \spriority9 \styrsid11291379 heading 1;}{\s2\ql \li0\ri0\sb200\sl276\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af0\afs26\alang1025 +\ltrch\fcs0 \b\fs26\cf18\lang1033\langfe1033\loch\f31502\hich\af31502\dbch\af31501\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \slink16 \sunhideused \sqformat \spriority9 \styrsid7287596 heading 2;}{\s3\ql \li0\ri0\sb200\sl276\slmult1 +\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel2\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af0\afs22\alang1025 \ltrch\fcs0 \b\fs22\cf18\lang1033\langfe1033\loch\f31502\hich\af31502\dbch\af31501\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext0 \slink17 \sunhideused \sqformat \spriority9 \styrsid12153459 heading 3;}{\*\cs10 \additive \ssemihidden \sunhideused \spriority1 Default Paragraph Font;}{\* +\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa200\sl276\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31506\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext11 \ssemihidden \sunhideused Normal Table;}{\*\cs15 \additive +\rtlch\fcs1 \ab\af0\afs28 \ltrch\fcs0 \b\fs28\cf17\loch\f31502\hich\af31502\dbch\af31501 \sbasedon10 \slink1 \slocked \spriority9 \styrsid11291379 Heading 1 Char;}{\*\cs16 \additive \rtlch\fcs1 \ab\af0\afs26 \ltrch\fcs0 +\b\fs26\cf18\loch\f31502\hich\af31502\dbch\af31501 \sbasedon10 \slink2 \slocked \spriority9 \styrsid7287596 Heading 2 Char;}{\*\cs17 \additive \rtlch\fcs1 \ab\af0 \ltrch\fcs0 \b\cf18\loch\f31502\hich\af31502\dbch\af31501 +\sbasedon10 \slink3 \slocked \spriority9 \styrsid12153459 Heading 3 Char;}{\s18\ql \li0\ri0\sa300\widctlpar\brdrb\brdrs\brdrw20\brsp80\brdrcf18 \wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\contextualspace \rtlch\fcs1 +\af0\afs52\alang1025 \ltrch\fcs0 \fs52\expnd1\expndtw5\cf19\lang1033\langfe1033\kerning28\loch\f31502\hich\af31502\dbch\af31501\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 \slink19 \sqformat \spriority10 \styrsid7287596 Title;}{\*\cs19 \additive +\rtlch\fcs1 \af0\afs52 \ltrch\fcs0 \fs52\expnd1\expndtw5\cf19\kerning28\loch\f31502\hich\af31502\dbch\af31501 \sbasedon10 \slink18 \slocked \spriority10 \styrsid7287596 Title Char;}{ +\s20\ql \li0\ri0\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af38\afs16\alang1025 \ltrch\fcs0 \f38\fs16\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext20 \slink21 \ssemihidden \sunhideused \styrsid2837595 Balloon Text;}{\*\cs21 \additive \rtlch\fcs1 \af38\afs16 \ltrch\fcs0 \f38\fs16 \sbasedon10 \slink20 \slocked \ssemihidden \styrsid2837595 Balloon Text Char;}{\*\cs22 \additive +\rtlch\fcs1 \af0 \ltrch\fcs0 \ul\cf20 \sbasedon10 \sunhideused \styrsid10709506 Hyperlink;}}{\*\pgptbl {\pgp\ipgp2\itap2\li0\ri0\sb0\sa0}{\pgp\ipgp4\itap1\li0\ri0\sb0\sa0}{\pgp\ipgp6\itap0\li0\ri0\sb0\sa0}{\pgp\ipgp8\itap1\li0\ri0\sb0\sa0}{\pgp\ipgp0 +\itap0\li0\ri0\sb0\sa0}{\pgp\ipgp10\itap0\li0\ri0\sb0\sa0}{\pgp\ipgp9\itap0\li0\ri0\sb0\sa0}{\pgp\ipgp5\itap1\li0\ri0\sb0\sa0}{\pgp\ipgp1\itap2\li0\ri0\sb0\sa0}{\pgp\ipgp7\itap0\li240\ri240\sb0\sa0}}{\*\rsidtbl \rsid1053480\rsid1774901\rsid2168267 +\rsid2837595\rsid4327730\rsid6647841\rsid6830883\rsid6895449\rsid6951347\rsid7287596\rsid7564013\rsid8347551\rsid10098615\rsid10709506\rsid11291379\rsid11567049\rsid12153459\rsid12654957\rsid13461213\rsid13582222\rsid13845429\rsid14751135\rsid14842421 +\rsid15034817\rsid16526446}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\author Dino}{\operator Dino}{\creatim\yr2011\mo5\dy16\min48} +{\revtim\yr2011\mo6\dy15\hr7\min39}{\version17}{\edmins79}{\nofpages4}{\nofwords1352}{\nofchars7713}{\nofcharsws9047}{\vern49255}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}} +\paperw12240\paperh15840\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect +\widowctrl\ftnbj\aenddoc\trackmoves0\trackformatting1\donotembedsysfont1\relyonvml0\donotembedlingdata0\grfdocevents0\validatexml1\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors1\noxlattoyen +\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1440\dgvorigin1440\dghshow1\dgvshow1 +\jexpand\viewkind1\viewscale125\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\allowfieldendsel\wrppunct +\asianbrkrule\rsidroot7287596\newtblstyruls\nogrowautofit\usenormstyforlist\noindnmbrts\felnbrelev\nocxsptable\indrlsweleven\noafcnsttbl\afelev\utinl\hwelev\spltpgpar\notcvasp\notbrkcnstfrctbl\notvatxbx\krnprsnet\cachedcolbal \nouicompat \fet0 +{\*\wgrffmtfilter 2450}\nofeaturethrottle1\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\endnhere\sectlinegrid360\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang +{\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang +{\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}} +\pard\plain \ltrpar\s1\ql \li0\ri0\sb480\sl276\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0\pararsid11291379 \rtlch\fcs1 \ab\af0\afs28\alang1025 \ltrch\fcs0 +\b\fs28\cf17\lang1033\langfe1033\loch\af31502\hich\af31502\dbch\af31501\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049 \hich\af31502\dbch\af31501\loch\f31502 About DotNetZip }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid7287596 + +\par }\pard\plain \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11567049 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { +\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049 This is DotNetZip, a free zip tool. It reads or creates zip files. The tool is built on the DotNetZip library. +\par This zip tool and the library that it uses are part of the DotNetZip project, an open-source effort to build a zip library and tools for .NET. In addition to the library and the tool, the DotNetZip project delivers various command-line tools for creating + and unpacking zip files. +\par The DotNetZip library enables any .NET application to read and write ZIP files, simply and easily. This graphical tool is just one example of the things you can build with the library. +\par The DotNetZip library supports many advanced +ZIP features like ZIP64, WinZip-compatible AES encryption, Unicode or arbitrary code pages, self-extracting archives, archive and entry comments, split archives, and more. DotNetZip has a simple and clean programming interface, which takes advantage of n +ice .NET features like eventing and generic collections. There is a full helpfile with plenty of code examples to get you started. +\par DotNetZip is really nice to use with .NET apps, but it can also be used from Powershell scripts, as well as any COM-compliant + language or environment. For example, you can write VBScript code that uses DotNetZip, to script the creation of AES-encrypted ZIP files. +\par DotNetZip is CLS-compliant, FxCop-approved, fair-trade, color-blind, family-friendly, low-fat, and totally free of co +st. The library can be used from any .NET programming language. This library runs on the .NET Framework. In particular, this tool runs only on the desktop Framework. DotNetZip requires .NET 4.0 at + a minimum. +\par The library and this tool are produced in an open source project hosted at CodePlex: http://}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049\charrsid11567049 }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049 DotNetZip.codeplex.com/. +\par DotNetZip is donationware. This tool and the library that supports it are free to use, but if you like the tool or library an +d find it them useful, you are encouraged to donate. Proceeds benefit a charity. (which may be me, if I am unemployed). To learn more: http://cheeso.members.winisp.net/DotNetZipDonate.aspx +\par }\pard\plain \ltrpar\s2\ql \li0\ri0\sb200\sl276\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid11567049 \rtlch\fcs1 \ab\af0\afs26\alang1025 \ltrch\fcs0 +\b\fs26\cf18\lang1033\langfe1033\loch\af31502\hich\af31502\dbch\af31501\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049 \hich\af31502\dbch\af31501\loch\f31502 Licensing. +\par }\pard\plain \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11567049 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { +\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049 DotNetZip is licensed under the MS-PL. +\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid11567049 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid11567049\charrsid11567049 Microsoft Public License (Ms-PL) +\par This license governs use of the accompanying software, DotNetZip ("the software"). If you use the software, you accept this license. If you do not accept the license, do not use the software. +\par 1. Definitions +\par The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. +\par A "contribution" is the original software, or any additions or changes to the software. +\par A "contributor" is any person that distributes its contribution under this license. +\par "Licensed patents" are a contributor's patent claims that read directly on its contribution. +\par 2. Grant of Rights +\par (A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, e +ach contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. +\par (B) Patent Grant- Su +bject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, impor +t, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. +\par 3. Conditions and Limitations +\par (A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. +\par (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. +\par (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. +\par (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this lic +ense with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. +\par (E) The software is licensed "as-is." You bear the risk of using it. The contrib +utors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of m +erchantability, fitness for a particular purpose and non-infringement. +\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11567049 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049 +DotNetZip is based in part on code derived from jzlib, which itself is derived from ZLIB, which are both licensed separately. +\par The following applies to ZLIB: +\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid11567049 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid11567049\charrsid11567049 +Copyright (C) 1995-2004 Jean-loup Gailly and Mark Adler +\par The ZLIB software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. +\par Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: +\par 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. +\par 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. +\par 3. This notice may not be removed or altered from any source distribution. +\par +\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid10709506 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid11567049\charrsid11567049 }{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 +\fs18\insrsid10709506 Jean-loup Gailly }{\field{\*\fldinst {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid10709506 HYPERLINK "mailto:jloup@gzip.org" }{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid14842421 {\*\datafield +00d0c9ea79f9bace118c8200aa004ba90b0200000003000000e0c9ea79f9bace118c8200aa004ba90b440000006d00610069006c0074006f003a006a006c006f0075007000400067007a00690070002e006f00720067000000795881f43b1d7f48af2c825dc485276300000000a5ab000000}}}{\fldrslt {\rtlch\fcs1 +\af0\afs18 \ltrch\fcs0 \cs22\fs18\ul\cf20\insrsid10709506\charrsid12654957 jloup@gzip.org}}}\sectd \ltrsect\linex0\endnhere\sectlinegrid360\sectdefaultcl\sftnbj {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid10709506 \line }{\rtlch\fcs1 \af0\afs18 +\ltrch\fcs0 \fs18\insrsid11567049\charrsid11567049 Mark Adler madler@alumni.caltech.edu +\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid11567049 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049 +\par The following applies to jzlib: +\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid11567049 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid11567049\charrsid11567049 +JZlib 0.0.* were released under the GNU LGPL license. Later, we have switched over to a BSD-style license. +\par ------------------------------------------------------------------------------ +\par Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. +\par Redistribution and use in source and binary forms, with or without modification, are permitted provided that th}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid11567049 e following conditions are met:}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 +\fs18\insrsid11567049\charrsid11567049 +\par 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +\par 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +\par 3. The names of the authors may not be used to endorse or promote products derived from this software without specific prior written permission. +\par THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY E +XPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, IND +I +RECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +\par }\pard\plain \ltrpar\s2\ql \li0\ri0\sb200\sl276\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel1\adjustright\rin0\lin0\itap0\pararsid14842421 \rtlch\fcs1 \ab\af0\afs26\alang1025 \ltrch\fcs0 +\b\fs26\cf18\lang1033\langfe1033\loch\af31502\hich\af31502\dbch\af31501\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid14842421 \hich\af31502\dbch\af31501\loch\f31502 Tool Usage}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid11567049 +\par }\pard\plain \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid14842421 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { +\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid14842421 The tool is pretty self-explanatory. You should be able to figure it out. +\par There are 3 tabs \endash one is used for creating zip files; one is used for reading zip files, and this tab provides this text. +\par In the create tab, the top groupbox lets you specify which files to add into a zip. +\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \lang1024\langfe1024\noproof\insrsid7564013\charrsid16080314 {\*\shppict{\pict{\*\picprop\shplid1026{\sp{\sn shapeType}{\sv 75}}{\sp{\sn fFlipH}{\sv 0}} +{\sp{\sn fFlipV}{\sv 0}}{\sp{\sn fLockAspectRatio}{\sv 1}}{\sp{\sn fLockPosition}{\sv 0}}{\sp{\sn fLockAgainstSelect}{\sv 0}}{\sp{\sn fLockAgainstGrouping}{\sv 0}}{\sp{\sn pictureGray}{\sv 0}}{\sp{\sn pictureBiLevel}{\sv 0}}{\sp{\sn fFilled}{\sv 0}} +{\sp{\sn fNoFillHitTest}{\sv 0}}{\sp{\sn fLine}{\sv 0}}{\sp{\sn wzName}{\sv Picture 1}}{\sp{\sn dhgt}{\sv 251658240}}{\sp{\sn fHidden}{\sv 0}}{\sp{\sn fLayoutInCell}{\sv 1}}}\picscalex74\picscaley74\piccropl0\piccropr0\piccropt0\piccropb0 +\picw15348\pich2275\picwgoal8701\pichgoal1290\pngblip\bliptag-1350385587{\*\blipuid af82c04d624ccb83612fe808581f0552}89504e470d0a1a0a0000000d49484452000002440000005608060000002e6189e3000000017352474200aece1ce90000000467414d410000b18f0bfc61050000 +00097048597300000ec300000ec301c76fa8640000136d49444154785eed9ddf8fdc5615c7e74f2a0f7d19410b1294e5c71b4545fcae0483d40754444a5079e0 +05a112109dd0d252297d40a580a85a409506d2b44a690b22b461b35136844cdadd6edab49b6ce86eb24df34b3af8786ccff51d7bec595fcf7aee7c2c5d653363 +9f7befe79ef1f9eeb967bc2de180000420000108400002734ea035e7f367fa10800004200001084040104438010420000108400002734f2057102dafbc2d3418 +e003f8003e800fe003f8804f3e90a7fc3205914e9c03021080000420000108f846204fe38c0822c4906f4bcf7c2000010840000210300964691d04113e020108 +4000021080c05c114010cdd57233590840000210800004b2082088f00b0840000210800004e69e008268ee5d0000108000042000010820883cf08195d53539f4 +c24bf2d4d3cfd260800fe00353f301bdefe8fd8703023e10401079b08a6b67cfcbfac6a60733610a1080c02c11d0fb4e7fe55ce1901f7ae821d9bb77afdc7bef +bd959ada505b1c10a8830082a80eaa53b6a9828803021080c06e102812443fd9b74ff6efdf2fefbefbaedcbc79b352531b6a4b6d7240c0350104916ba2bb600f +41b40bd0e912021008091409a2fbeebb4fce9f3f2fd7af5f974b972e556a6a436da9cd9d1c3f7ff04199b4eda41fae994d0208a2d95cb7d4a811441e2c225380 +c08c12281244ba4da699a1aa6228be5e6da9cd9d1c2a86b6b7b773dbd5ab57e5dab56b72e5ca95f01c3d7f1e8e4945a2af5c10441e78fb6482a8279d7657fa53 +9f77897efb5d69571a5b461f956d4e1d141d4260a608941144376edc90adad2d274d6d551544cf3c7b50ec76e4b563f2f8ef5e94bd3f7e4aceacbc25efbffffe +5c09a2ca42f1f01e692d1c90d5babcb76efbc1b8eb1144f31884f2e63c05169309a220c5dd6d4ba75797d7e6db2dec37665581d9481fbbb82ed3274c8f10983e +81b282687373535c345782e8d5c56589db6bc74ecac5ff6dc95df73c2e1fffe22fe4e0e1636196c8d74c88ed2571e6ac714271f5802cd429b22c10f50aa20a81 +2d19a70b1be6a45ddb8b6def62e09d54108994c8d6d4725f2de8d7c9da587d38b1590b0c8c42c00b02650491d6fe5cbc78d149535b2e3244b1183aba745256d7 +cec91fffba289f08c4d037f73e29efbcf3eedc6d996986480551a384a25782c8c5c7dd7540736daf7182281004ad96b4a236cc04e9eb9d400a0d8e5426c56662 +fc5fcf8b6db5bbd1469bbe9ff4d196f0e5f09a4eb01da77d77a49b759dddef602086ade05add32b33245dd4ec67c52d70de7953db7785c83b1850ccaf4e1c27f +b10101cf099415441b1b1be2a2b91244cbff7d5d56d6de96e55367e4d2e56df9ea777e2d9ffcf2c3f2fccb27a57fe6cc784164ddef7a59f7c470dd33eec779f7 +db32f7d0dc7eaa39999921dab15034b7b4f4e73d8793411dded392f0bfe1397b64cf42744f37b23fab0716925833b876550e98e7595b66a3e78fb37f58f61871 +d1185a0a9cbb0c5161601b06cbf2ced3976e1860a340391240cde066043d633fa81704d32490079533a5ec59bea5366251a0ff26e6b3e69c17e4930f473a7857 +73e3c1d5668648e7971641916019e9c8c8a4e40a2243448573d5b12b43c3a6292c5af1eb59d7c50330333883f548c6dbeb8c0a229b77586394be2e146da93d40 +6b6e868de4dcd4b8ad35ad54c7e46245b10181d9215056105db870415c341782e8ef478eca91c5d7e58967fe196c95fd4f9efbdbb27ceaab8fc837bef7a46861 +f5f2f2c9624194dcef72ee89d67d6a208e827b64cfaa952c7d0fcdeba7baaf988268c742b1ac206a2dc881a8d0282d9486f547fafa829e6466886cfb86984ace +d77332ecab780aede93126ebe4481095096c71b0ace23c3981300cd646a622c984a4b322218c54f02f0aac198e965c9f3367fb431007f9ea3e9b6bc114449314 +252759a25c41341490d9d9a15828da1ff28ceb8cd117f66b656f9202f0a2d7cbf6a1fe3181ad1a970ed310987902650491d6e3f4fbc1af320e9adaaaba65f6c6 +ea9bf2ed1ffe21cc082d9e58936f7dff77f299af3f2a7f39bc1cd60e9d79fd8d624114ffe264ff621c662232844fbcd2633344f1175e26b8f73af8864c2c882a +09c5b282c812329aad49048dfd69c8114423e7c719292b8b94125c5186282f3ba45dbb1144450b6cbe5fc5798afa89606a46274c18a818b1ab87edb198d900db +bee9c046ba2db5ad633b79aeb8a8efbeb7534194d4129518f3204b16090963eb2d99550ebbe4bad4f4a30c4ed17a16bd9f7783095fafd8477dcb8565087845a0 +ac203a7dfab4b8682e04d1d1c52579e3cd7559f8ca2fe5535f7b241443777ff73772f5daf55008bdb9b636a120cac8fc8f8b275971a7e81e9a64e9ddbb4f2c88 +2a09c5260ba20459bc0db747021d3672ec9220daa1f3940d909110ea7532b68b261644519a3356e145998512e2c2b53bef6ccb6c308a41b6c6caa4995b572369 +612b33167f4847446f4e46309afca0df8c0c5d460dd14886a870cbcc985b37deea1bbe168ae4a27574bd48d88380a704ca0822fd0afba953a79c34b5553543f4 +8f7ffe4bce077f76e4a78f1d924f7fed51f9ecddbf923f1d5c4a9e4174eedcb9f282c8de1548848b75af8cb7ccfa63eeb7a9ac937d0fcdb9f73af0ab58105512 +8aa6204a6d4b0dea77863544e9adb1bcd777bc65569881d2f1d42988b202546e60cb5bd41ce749edb78ed9324bd57d44856c59b520136f99e5386fde9c735f77 +e0b53926d2df322b57543d3435989f5904dd0a6a84e2adb7cca2ea54a1a059543d7cbe51f675e60422ae66c630eeb78c58495d97f75ca5348b915a34d347c766 +9bea5b3b2c4360d6099411449a753971e28493a6b6aa0aa27fbdfa5a90adea0745d5ebf2b3c79e93eee32f0485d5576423f826dc850b1bb2be7e7e0241a42b68 +de6bcc5fc4b3efc7e6fd31b9df5abf4c97bef73a70a0581055128aa9ed2aa3203a101f7b5245d5198228984366917490c71914430702a674517596fd74517552 +4f64b17393211aa41a86df162a0a6c13394fec50460175bc7d65aa694bfca48ba9ed406c7ddbc8b667414a396f5e81b7212232598436336a9a1c38f3e45fbb77 +d0292620000108e8adbfe08fbbaa78511173fcf871ab3d2277b6ee9447c2d7f37eb6af391edaaa2a88e287106ab6499f4cad85d4fab3fd70c2797b0e5125a168 +7db36c163f1cee0451a3665f8ff068d4148dc120889aba328c0b02fe132823882e5fbe2c4b4b4b4e9adaaa228826fd3315feafa0840fa034c5e0c44231fc7657 +f4cdb01906e69f20d2fa976061865fb59fe1d5293974045149509c0601083827502488f40fb1ae0545cafa0ca2c5c5c54a4d6da8ad9dfe7157e793f7c4e0a422 +d1d7cc997f82c813079d641a08a24968712e0420e092409120dab76f9f3c186420de7aeb2dd1ec4e95a636d496dae480806b020822d74477c19e0aa2f5e01b13 +1c10800004a64940ef3b458248c7f3c0030f84591dddeaaad2d486dae280401d04104475509db2cdeded0fe4ecfa7b3418e003f8c0d47d40ef3f1c10f0810082 +c88755640e108000042000010854228020aa848f8b2100010840000210f0810082c88755640e108000042000010854228020aa848f8b2100010840000210f081 +0082c88755640e108000042000010854228020aa84af1917afacaec9a1175e92a79e7e9606037c001fc007f081c6fb80c62c8d5d4d3a10444d5a8d1d8e85e710 +ed101c974100021080c0ae1028fb0cab690e0e41344dda35f5c593aa6b028b590840000210a88d4099877ad6d679866104d13469d7d41782a826b09885000420 +0081da0820886a433bbf861144f3bbf6cc1c021080c0ac124010cdeaca3578dca6206ab7bbd26ff058191a0420000108404009cc8720ea7765ee03f31419140a +a2298e858f39042000010840a00c81f912442e02b10b1be6cab8b697b7ea79fdd4d07fa1202ae3999c03010840000210982281f912442ec0d620205c0cabd0c6 +14c79d16441de9b45bd26a69eb482fcc4b4619bbe8df6e277ebf259df0040e084000021080c07409f82b8834d88641386a5acb920ac471a00e8274eadcb67493 +a2979e740c1b9d5e5fba71708f6b6352d79a01df10024694ef05c1bf3dec606271a0d727730ac6169a0ee765cc27901de9710f45c888f83099b48cb987f38afe +3f964f3467c36f5382281e633884b6b474c0a93e0d113445d136dd8f19bd410002108040d309782a8806c225d121bd8eb46c4194047f3dd71202a1d8b16c8422 +2338af67d623a5cf4905fc9498884583dab004441571902966c68cdb102776964635a029d692b9841cb2f8e4bb76ee965928ac22016aae476c0a41d4f4fb05e3 +83000420e02d013f05911d58ad2d9a2453a4cb6a6792c28c902d7c8cf5376d17f5135da6422314672accec3d217b6c45e2605ce62b9e4fd637bbca8c3539c710 +41797cc67c756cac201ac9d419df424310797ba36162108000049a4e004114672dec952a53845c4664a8dd4808f53ae6765cd4e1448228ca52c56224ebda32e3 +368553eafc48089959b03c3e633c3bbd6536cc88656e9999e20d41d4f4fb05e383000420e02d013f0591b5dd1506e2dccc84b5c59408808a5b66a92c4d54d333 +2e739327ae52ae676db9d95b81e1b965c61d65c632b6ad425641966c58e794c727ff3361d710a5eab872c59831266f3f6e4c0c02108000049a4ac053411405d7 +a4a0ba3d780e515e362655843caea83a4cf74405cb4601b559b86d067c63d5478aa9e3f726ca104585c979c5e2497ff945d5c94ed7b87ecde2ead0a669cfe633 +bea8baa98ecfb82000010840000226017f0551a3d639a398ba51e3733b18fe74875b9e58830004200081fa092088ea66acdb5aa92da8ba3bdc7dfb08a2dd5f03 +46000108400002931140104dc68bb34b1040109580c4291080000420d0280208a2462d871f835141b4beb1e9c76498050420000108784f40631682c8fb659efe +04b7b73f90b3ebefd160800fe003f8003e30333ea0b1ab49c7f2cadb23c369d9af649dd4a449301608400002108000042050850082a80a3dae85000420000108 +40c00b0208222f969149400002108000042050850082a80a3dae8500042000010840c00b0208222f969149400002108000042050850082a80abd865cbbb2ba26 +875e78499e7afa591a0cf0017c001fc0071aef031ab3347635e940103569357638169e43b443705c060108400002bb42a0ec73887eff8f33f285fdcfcb877ff8 +e74a4d6da8ad71078268575cc16da73ca9da2d4fac410002108040fd048a1eccf8db57fa72fbc32fc91daf6ec9c2a91b959ada505b6a33ef4010d5bfe6b5f780 +20aa1d311d40000210808063024582e8f3dd4372c76b5b72cfebd7e4d2a54b959ada505b6a1341e478219b640e41d4a4d5602c10800004205086409120d26db2 +85ffdca824844c21a5b6d42682a8cceacce8392382a8d79176d74a0bf6bbd26e77253f5938a39367d81080000420309304ca0aa2adad2d71d19a278808ccce1d +d71444dd764b5aada899026852ee939eef7c56188400042000019f099415449b9b9be2a2f92388cc004db04e7d465219a2203bd4eaf4a4d76949f0cff09894d9 +a4e7fbfca9656e1080000420e09c401941f4c993d7e5e2c58b4e9ada6ad696d94e03ed4eaf73be84cd3358aa8628e4d7914e9241ea48ac97543c2559a520bbd4 +e9f525c934b1cdd6bc056744108000043c20504610dd71f29a6c6c6c38696a6b2a82a8df6d274135a95fd1201c6fdfb4da1296b5d8991efbfd70917bd2495ecf +08d0b936a2201fbddf3502fd305ba2b68762c0039f92d28228143b831987eb954a21452462b608501f5c833940000210682c81528268f99a5cb87021b71df9d1 +ad72eb8f8e8c3d27befe8ec0d614049121324211a48243b30c91081a44e041516f126873de0faf33b77bd47660a7671405a76c6404f9488825f1def3e05e5a10 +d93545b1304c09d7205b945aa7c67e9618180420000108cc30813282e863c7b603ddd0cf6dcfffe043f2a11f3c3ff69cf87ab535054134dc62c9ce0ec55b3286 +b0b183709811b2848fb9d0593544b6d0c9cb6e2088d2993953a086d9b871c275863f6d0c1d02108000041a4ba0ac203a7dfab4d8edc05de9528fb0ece3ae0323 +e799d74d49100d790fea51820c519229b2d6c2142d595b5779e2054194ebd4a5334406efe19699b585a845d964881a7b036160108000047c215046107df4d865 +3975ea546e3b787f9021baffe0d873e2ebd556fd19a250fcc45986782bccdafa8a0552ce7657b8a5966cb539d832abf295f319f3b6f18228123c59db62d13ccd +faaf506587ece23a2ebfeaad666c69192e042000016f09941144b7fffb929c387122b7f5f6de22b7eced8d3d27be5e6dd52f8882e5ca2caa4e154767145567bd +1f2ebd5d546dbe16659f62c163067af3b55c4134a745d5de7ea498180420000108cc2281b282e8f8f1e3e2a24d4d10cde262f832e6525b66be4c967940000210 +80801704ca08a2db8e6ec9d2d29293a6b6a69221f2627566741208a2195d38860d010840608e09140922fd43acb7bdbc2e5f3a7a5e1617172b35b5a1b6f8e3ae +9e3b1c82c8f305667a108000043c245024887efb4a5f3ebcff45f9c82bebf291a39bd55a60436da9cdbc6379e5ed91b75af62b592779b836333b251544eb1b9b +333b7e060e0108400002f345406356912052224fbc7c5a3ef7f3e7c2adae2a4d6da8ad710782c8031fdcdefe40ceaebf4783013e800fe003f8c0ccf880c6ae26 +1d08a226ad06638100042000010840605708941244376fde14b6cd76657de81402108000042000819a09a8c651ad631f2335447a422c8af4221a0cf0017c001f +c007f0017cc0171fc81243aa7d320551cde20cf3108000042000010840a0510410448d5a0e060301084000021080c06e104010ed0675fa8400042000010840a05104fe0f9c108489c1f680bd0000000049454e44ae426082}}{\nonshppict +{\pict\picscalex74\picscaley74\piccropl0\piccropr0\piccropt0\piccropb0\picw15348\pich2275\picwgoal8701\pichgoal1290\wmetafile8\bliptag-1350385587\blipupi95{\*\blipuid af82c04d624ccb83612fe808581f0552} +010009000003b663000000008d63000000000400000003010800050000000b0200000000050000000c0257004502030000001e00040000000701040004000000 +070104008d630000410b2000cc005600440200000000560044020000000028000000440200005600000001000800000000000000000000000000000000000000 +00000000000000000000ffffff00e5dfd500e2e0df00c2bdbb00b3adab00eae3e200f0ece900e6dfdb009393930077777700707070008a8a890091919100e8e8 +e800fcfcfc0075757500eaeaea00fafafa00f2f2f2008f8f8e00f4f4f400f8f8f800f9f9f900f6f6f600b6ffff00903a6600ffffdb0090dbff00903a3a00fbfb +fb00f1f1f100b9b3ae00d0ccc900c0a79d00ab867700e4dfdc00f5f5f50074bfff009c480000ffffe0003a90db00ffb6660090dbdb00f0f0f000d5cfcb00d6d0 +cc00f1eeed009d6a5700925a4400d0bfb9009ce0ff009c484800ededed00d6d1cd00e6e2e000cfb8af00925a4500a5776500e8e7e7000000660066006600ffff +b600db903a0000003a003a000000ffdb9000663a3a00003a6600660000003a909000903a000000669000ececec00ddd9d500e5e2df00dcd8d500f4f3f200a171 +5e00945c4700d6c3bc00dcdcdb0090dbb600bf7400000074bf00ffbf74007448000000487400489ce000e0ffff0000489c0074bfe000bfffff0000007400dbb6 +6600003a9000b66600000066b600dbffff003a006600b6ffdb0066003a00dbffb6003a3a90003a003a0066b6ff00dbffdb00ebebeb00cdc9c500ddcfc900c8ae +a300eeeeed00d5c1ba00965e4900a5766400d6d5d50090b6900048000000ffe09c00e09c4800dbdbdb00e1e0de00aa7f6e00e2d4cf00a778670097604b00d5bf +b700dedddc00dadada00d1cfcd00e9e1de00955d4800965f4900a4736100faf9f800e2e2e10074000000ffffbf003a66b600b6b66600dbdb900090906600d8d8 +d800cac8c600f0ecea00bb998b00975f4a0098614c00d1b9b000e6e6e600b6db9000740074003a3a0000d4d4d400cccbca00dbdada00e9e2df00ba998c00bd9d +9000f6f3f200ededec00ecebeb00eae9e9000074740074bfbf00d2d2d20096d2d20054005400d2d29600f3f3f300d1d1d100e2e2e200cfcfcf008a8a8a008f8f +8f00e4e4e40088888800f7f4f400efe9e300b6ffb600dcc6a800bc915800b17f3c00dbc4a600c2943f00f1cb4600fbd84800bb905500f1cc4600f9dd6a00fbd7 +4800fad64700f9d64600f9d546003584c900c9843500f4d04100317bbc00bc7b310000579c009c570000f3d04000317ab900b97a3100f2ce3f003077b600b677 +3000f1cd3e00e9c33e00eacd5b00c0913c00e9c43d00f0cd3d00dac3a300ba8e5300000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 +00000000000001010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010f02020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +020202020202020202020202020202020f0101010101010101010f02010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101020f010101010101010102010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101020101010101010101020101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101b1b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b1010101010101 +01010101010101010101010101010101010101010101010101010101010201010101010101010201010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010607010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010107080101 +010101010101d5d6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6d6d50101010101010102010101010101010102010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010106010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +010801010101010101b7d2d3d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d4d3d2b7010101010101020101010101010101020101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101060101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010801010101010101bbd0d1acacacacacacacacacacacacacacacacd1d0bb0101010101010201010101010101010201010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010601010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010801010101010101b6cfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfb601010101010102010101010101010102010101010101010129 +00003f01193c0041421c1d1b193c00414201193c00002a193c45521d1b1c4000471b1c1d1b011c1d1b193d3e0101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010106010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +010101010101010101010101010801010101010101b6cca5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5a5ccb6010101010101020101010101010101020101010101 +01011c684262678c5f2a011c65521d6a5f2a011c65665f2a011963741d1b1c1d6a5f2a0129601c1d1b011c1d1b01010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010106010101010101193d52400000471b012900000047643c453e0101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010801010101010101b6cc99999999999999cdce999999999999999999ccb60101010101010201010101010101010201 +010101010101010101614552653e0101011c1d2b653e0101011c1d1b0101011c1d1b1c1d2b1d1b011c1d2b1d1b011c1d1b010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010601010101010101011c653e012960193d3e0169472b1d1b0101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010801010101010101b6c98e8e8e8e8e8e8ecacb8e8e8e8e8e8e8e8e8ec9b601010101010102010101010101 +01010201010101010101625f003f011c4000000041741d2b4000000041741d1b0101011c1d1b1c1d2b1d1b011c1d2b1d1b011c1d1b0101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101010101010601010101010101011c1d1b011c1d646342011c1d2b +1d1b0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +010101010101010101010101010101010101010101010101010801010101010101b6c48080808080c700000000c880808080808080c4b6010101010101020101 +0101010101010201010101010101193d3e1c65666742011c1d2b1d6a6742011c1d6a5f2a011963741d1b1c1d6a5f2a0129601c402a011c1d1b01010101010101 +010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010601010101010101011c1d1b011c653e1c40 +0000472b1d1b01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010801010101010101b6c478787878787878c5c6787878787878787878c4b60101010101 +010201010101010101010201010101010101012900003f011c400041421c1d1b1c4000414201193c00005e5f00472b1d1b1c4000453e1c1d4800002a01193d3e +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010601010101010101011c402a0129 +60010101011c1d2b1d1b010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010801010101010101b6c16b6b6b6b6b6b6bc2c36b6b6b6b6b6b6b6b6bc1b601 +0101010101020101010101010101020101010101010101010101010101010101011c1d1b01010101010101010101011c1d1b0101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010601010101010101011c +434400453e01610000005e5f00471b01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +010101010101010101010101010101010101010101010101010101010101010101010101010801010101010101b6c04949494949494949494949494949494949 +49c0b6010101010101020101010101010101020101010101010101010101010101010101011c1d1b01010101010101010101011c1d1b1c1d1b01010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101060101696061 +2a01011c1d1b0101010101010101011c1d1b01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010801010101010101b6bf35353535353535353535353535 +3535353535bfb6010101010101020101010101010101020101010101010101010101010101010101011c1d1b0101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010601 +015f0000471b011c1d1b0101010101010101011c1d1b010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010801010101010101b6be2c2c2c2c2c2c2c2c2c +2c2c2c2c2c2c2c2c2cbeb60101010101010201010101010101010201010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +010106010101693f0101011c1d1b0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010801010101010101b6be1f1f1f1f1f +1f1f1f1f1f1f1f1f1f1f1f1f1fbeb601010101010102010101010101010102010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010106010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010801010101010101b6be13 +1313131313131313131313131313131313beb6010101010101020101010101010101020101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101060101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010108010101010101 +01bbbcbd13131313131313131313131313131313bdbcbb0101010101010201010101010101010201010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010601010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101080101 +0101010101b7b8b9babababababababababababababababab9b8b701010101010102010101010101010102010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010106070101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +07080101010101010101b4b5b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b5b401010101010101020101010101010101020101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101030405050505050505050505050505050505050505050505050505050505050505050505050505050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 +05050505040301010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010102010101010101010102010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101020101010101010101020101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010102010101010101 +01010201010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101020101 +01010101010102010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101b1b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b101010101010101010101010101010101010101010101010101010101010101010101 +01020101010101010101020101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010607010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010708010101010101010101010101010101010101010101010101010101010101 +01010101010201010101010101010201010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010106010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101080101010101010101010101010101010101010101010101010101 +0101010101010101010201010101010101010201010101010101010101010101010101010101010101010101010101010101010101010101010101010169003f +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101060101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010801010101010101010101010101010101010101010101 +01010101010101010101010101020101010101010101020101010101010101010101010101010101010101010101010101010101010101010101010101010101 +0101193d3e0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010601 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010108010101010101010101010101010101010101 +01010101010101010101010101010101010201010101010101010201010101010101011c4000981d2b1d2b1d1b01193c00414201193c00002a193c453e1c4000 +471b1c1d1b0101613f010101011c1d2b1d1b011c1d1b01010129000000472b1d1b01193c00002a1c1d1b011c1d2b1d1b011c68420101193c00414201193d3e01 +01010601010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101080101010101010101010101010101 +0101010101010101010101010101010101010101010201010101010101010201010101010101625f2a0129472b1d2b1d1b625f2a011c65665f2a011963741d1b +625f2a0129601c1d1b01193c471b0101011c1d2b1d1b011c1d1b0101193d3e0169472b1d1b625f2a011963741d1b011c1d2b1d1b0129003f01625f2a011c653e +010101010101060101400000471b1c1d2b1d1b011c1d1b0101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010801010101010101010101 +0101010101010101010101010101010101010101010101010102010101010101010102010101010101011c1d1b011c1d2b1d2b1d1b1c653e0101011c1d1b0101 +011c1d1b1c1d1b011c1d2b1d1b0169608a420101011c1d2b1d1b011c1d1b0101196342011c1d2b1d1b1c1d1b0101011c1d1b011c1d2b1d1b6267741d1b1c653e +01010101010101010101060101653e0129601c1d2b1d1b011c1d1b01010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010108010101010101 +010101010101010101010101010101010101010101010101010101010102010101010101010102010101010101011c1d1b011c1d2b1d2b1d1b1c400000004174 +1d1b0101011c1d1b1c1d1b011c1d2b1d1b01612a69600101011c1d2b1d1b011c1d1b0101011c400000472b1d1b1c1d1b0101011c1d1b011c1d2b1d1b1c1d6a67 +421c4000000041420101010101010601011d1b011c1d2b1d2b1d1b011c1d1b010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101080101 +0101010101010101010101010101010101010101010101010101010101010101010201010101010101010201010101010101625f2a0169472b1d2b6842626742 +011c1d6a5f2a011963741d1b625f2a0129601c68421c653e193d3e01011c1d2b402a011c1d1b0101010101011c1d2b6842625f2a01196374402a011c1d2b1d1b +613f012960626742011c1d1b0101010101010601011d1b011c65521d2b1d1b011c1d1b0101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +010801010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201010101010101011c400000472b1d2b43 +4445524000414201193c00005e5f00471b1c4000453e1c434400600101613f01011c1d2b1d4800002a01010101610000002a1c434445b33c00002a1c1d480000 +2a1c1d2b6842011c68421c4000414201193d3e010101060101402a0129601c1d2b402a011c1d1b01010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010801010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201010101010101010101011c1d +1b010101010101010101010101010101011c1d1b010101010101010101010101010101010101010101010101010101010101010101010101010101010101011c +1d1b010101010101010101010101010101010101010101010101060101434400453e1c1d2b1d4800002a01010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010108010101010101010101010101010101010101010101010101010101010101010101010102010101010101010102010101010101010101 +01011c1d2b1d1b01010101010101010101010101011c1d1b01010101010101010101010101010101011c1d1b0101010101010101010101010101010101010101 +0101011c1d1b0101011c1d1b0101010101010101010101010101010101010601011d1b0101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101080101010101010101010101010101010101010101010101010101010101010101010101020101010101010101020101010101 +0101010101011c1d1b01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +010101010101011c1d1b0101010101010101010101010101010101010101010101010601011d1b0101011c1d1b01010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010801010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010601011d1b010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010108010101010101010101010101010101010101010101010101010101010101010101010102010101010101 +01010201010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010106010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101080101010101010101010101010101010101010101010101010101010101010101010101020101 +01010101010102010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101060101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010801010101010101010101010101010101010101010101010101010101010101010101 +01020101010101010101020101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010601010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010108010101010101010101010101010101010101010101010101010101010101 +01010101010201010101010101010201010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010106070101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010107080101010101010101010101010101010101010101010101010101 +01010101010101010102010101010101010102010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101030405050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505040301010101010101010101010101010101010101010101 +01010101010101010101010101020101010101010101020101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010201010101010101010201010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010102010101010101010102010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101020101010101010101020101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010201010101010101010201010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010102010101010101010102010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +010101010101010101010101010101010101b1b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2 +b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b2b101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101020101010101010101020101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101060701010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010107080101010101010101b0 +100b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b10b0010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010601010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101080101010101 +0101adaeafa9a9a9a9a9a9a9a9a9a9a9a9a9a9a9a9afaead01010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010102010101010101010102010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010169003f01010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010106010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010801 +01010101010110ab49acacacacacacacacacacacacacacacac49ab10010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101011414141414141414141414141401010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101020101010101010101020101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101193d3e0101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101060101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +010108010101010101010ba9aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa90b0101010101010101010101010114141414141414141414141414010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010114151515251716251515151514 +01010126007701010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201 +010101010101011c4000981d2b1d2b1d1b01193c00414201193c00002a193c453e1c4000471b1c1d1b0101613f01010101193c453e1c4000471b010101012900 +0000471b1c4000981d1b1c4000981d1b193d3e010101010101010101010101010101010101010601010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010108010101010101010b15a5a5a5a5a6a7a8a6a7a8a6a7a8a5a5a5a5a5150b01010101010101010101010101141515152517162515151515140101 +0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010114159a9b9c9d9e9fa0 +a1a21514010101012653010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010102010101010101 +01010201010101010101625f2a0129472b1d2b1d1b625f2a011c65665f2a011963741d1b625f2a0129601c1d1b01193c471b0101011c1d1b625f2a0129600101 +01193d3e0169476a5f2a0129476a5f2a0129471b01010101010101010101010101010101010101010101060101193c00002a01193d3e010101193d460000981d +1b2900003f01193c0041421c1d1b012900003f01010101193d524000981d2b1d2b1d1b011c1d1b1c4000471b01010101193c000000471b1c1d2b1d1b011c1d1b +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010108010101010101010b15999999999999999999999999999999999999150b0101010101010101010101010114159a9b9c9d9e9fa0a1a2 +151401010101011c1d1b01193c00414201193c00002a01290000981d2b1d1b012900003f01193c004142010101010101010101010101010101010114158f9091 +929394171895151401010101262728595a0088a3552627280154550158000053015c5d88a427280158000053012627280154555c5d0000770101010101020101 +01010101010102010101010101011c1d1b011c1d2b1d2b1d1b1c653e0101011c1d1b0101011c1d1b1c1d1b011c1d2b1d1b0169608a420101011c1d1b1c1d1b01 +1c1d1b0101196342011c1d2b1d1b011c1d2b1d1b011c1d1b010101010101010101010101010101010101010101010601015f2a01196342010101010101298b3d +3e0169472b684262678c5f2a011c65521d1b1c6842626742010101295e5f2a0129472b1d2b1d1b011c1d6a5f2a01296001010101298d653e0129601c1d2b1d1b +011c1d1b010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +010101010101010101010101010108010101010101010b258e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e250b0101010101010101010101010114158f90919293 +94171895151401010101011c1d1b625f2a011c65665f2a011963963d3e0169472b1d1b1c684262678c5f2a011c653e0101010101010101010101010101010114 +15818283847d858615871514010101012627283334285c5d552627280154552627280154773334282627282627280154772627280154555477015c9789010101 +0102010101010101010102010101010101011c1d1b011c1d2b1d2b1d1b1c4000000041741d1b0101011c1d1b1c1d1b011c1d2b1d1b01612a69600101011c1d1b +1c1d1b011c1d1b0101011c400000472b1d1b011c1d2b1d1b011c1d1b010101010101010101010101010101010101010101010601011d1b010101010101010101 +191a2b1d1b011c1d1b0101614552653e0101011c1d1b01010161453e0101191a2b1d1b011c1d2b1d2b1d1b011c1d2b1d1b011c1d1b0101191a2b1d1b011c1d2b +1d2b1d1b011c1d1b0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010108010101010101010b18808080808080808080808080808080808080180b01010101010101010101010101141581 +8283847d85861587151401010101011c1d1b1c653e0101011c1d1b0101011c1d1b011c1d2b1d1b010101614552653e0101010101010101010101010101010101 +0101011415797a4f7b7c7d7e187f1514010101012627282653010154552627280154555477010101013334282627285477010126532627280154550101595a88 +89010101010201010101010101010201010101010101625f2a0169472b1d2b6842626742011c1d6a5f2a011963741d1b625f2a0129601c68421c653e193d3e01 +011c1d1b625f2a012960010101010101011c1d6a5f2a0169476a5f2a0169471b010101010101010101010101010101010101010101010601011d1b0101010101 +01010101292a1c1d1b011c1d6a5f003f011c4000000041741d1b625f003f01010101292a1c1d1b011c1d2b1d2b1d1b011c1d2b1d1b011c1d1b0101292a1c1d1b +011c65521d2b1d1b011c1d1b01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010108010101010101010b18787878787878787878787878787878787878180b010101010101010101010101 +011415797a4f7b7c7d7e187f151401010101011c1d1b1c4000000041741d1b0101011c1d1b011c1d2b1d1b625f003f011c400000004142010101010101010101 +0101010101010114156c6d6e6f707172167315140101010126272826530101545526272801545554770101010133342826272854770101265326272801545526 +0000550101010101010201010101010101010201010101010101011c400000472b1d2b434445524000414201193c00005e5f00471b1c4000453e1c4344006001 +01613f01625f00471b1c4000453e01010101610000002a011c400000471b1c400000471b193d3e010101010101010101010101010101010101010601015f2a01 +19634201010101191a1b1c1d1b011c1d643d3e1c65666742011c1d2b6842193d3e1c653e01191a1b625f2a0169472b1d2b402a011c1d6a5f2a0129600101191a +1b1c402a0129601c1d2b402a011c1d1b010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +010101010101010101010101010101010101010101010101010108010101010101010b126b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b6b120b0101010101010101 +010101010114156c6d6e6f7071721673151401010101011c6842626742011c1d6a5f2a011963741d1b011c1d2b6842193d3e1c65666742011c1d1b0101010101 +01010101010101010101011415204a4b4c4d4e4f5051151401010101262728265301015455267576015455262728015477333428262728262728015477267576 +015455587701333428010101010201010101010101010201010101010101010101011c1d1b010101010101010101010101010101011c1d1b0101010101010101 +0101010101010101011c1d1b010101010101010101010101010101010101011c1d1b0101011c1d1b010101010101010101010101010101010101010101010601 +01193c00002a01193d3e01292a011c1d1b011c1d1b2900003f011c400041421c4344454600003f0101292a01011c400000472b1d2b1d4800002a011c4000453e +0101292a011c434400453e1c1d2b1d4800002a010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010108010101010101010b12494949494949494949494949494949494949120b01010101 +0101010101010101011415204a4b4c4d4e4f5051151401010101011c434445524000414201193c00002a1c1d1b011c1d2b4344454600003f011c400041420101 +0101010101010101010101010101011415202d2d363738393a3b1514010101012627282653010154552656570027280158000053595a00275b27280158000053 +012656570027285c5d00005501010101010201010101010101010201010101010101010101011c1d2b1d1b01010101010101010101010101011c1d1b01010101 +010101010101010101010101011c1d1b010101010101010101010101010101010101011c1d1b0101011c1d1b0101010101010101010101010101010101010101 +0101060101010101010101010101191a1b010101010101010101010101010101010101010101010101010101191a1b01010101011c1d1b010101010101010101 +0101010101191a1b011c1d1b01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010108010101010101010b12353535353535353535353535353535353535120b +010101010101010101010101011415202d2d363738393a3b15140101010101010101010101010101010101010101010101010101010101010101010101010101 +010101010101010101010101010101010101011415202d2d2d2e2f30313218140101010101010101010101010101010101010101010101010133342801010101 +0101010101010101010101010101010101010101010201010101010101010201010101010101010101011c1d1b01010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101011c1d1b0101011c1d1b01010101010101010101010101010101 +010101010101060101010101010101010101292a01010101010101010101010101010101010101010101010101010101292a0101010101011c1d2b1d1b010101 +010101010101010101292a01011c1d1b0101011c1d1b010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +010101010101010101010101010101010101010101010101010101010101010101010101010108010101010101010b1e2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c2c +2c2c1e0b010101010101010101010101011415202d2d2d2e2f303132181401010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101011415202020202021222324251401010101010101010101010101010101010101010101010101333428 +01010101010101010101010101010101010101010101010101020101010101010101020101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +010101010101010101010601010101010101010101191a1b010101010101010101010101010101010101010101010101010101191a1b0101010101011c1d1b01 +010101010101010101010101191a1b01011c1d1b0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010108010101010101010b1e1f1f1f1f1f1f1f1f1f1f1f1f +1f1f1f1f1f1f1e0b0101010101010101010101010114152020202020212223242514010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010114151515151515151617181514010101012627280101010101010101010101010101010101 +01010101262728010101010101010101010101010101010101010101010201010101010101010201010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010601010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010108010101010101010b0f1313131313131313 +131313131313131313130f0b01010101010101010101010101141515151515151516171815140101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101141414141414141414141414140101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010102010101010101010102010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010106010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010801010101010101101112131313 +13131313131313131313131313121110010101010101010101010101011414141414141414141414141401010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101020101010101010101020101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101060101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010108010101010101010c0d +0e0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0e0d0c0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010607010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010107080101010101 +010101090a0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0a090101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010102010101010101010102010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010103040505050505050505050505050505050505050505050505050505050505050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505 +05050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505050505040301 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101020101010101010101020101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010201010101010101010201 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010102010101010101 +01010201010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101020101 +01010101010102010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01020101010101010101020101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010201010101010101010102010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010201010101010101010101010202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202 +02020202020202020202020201010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 +01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101040000002701ffff030000000000}}}{\rtlch\fcs1 \af0 \ltrch\fcs0 +\insrsid14842421 +\par Specify directories and file name patterns, then click the + button to add those files. You can also tell the tool whether to recurse a directory (select files from subdirectories) and whether to traverse junctions in the filesystem. Also specify the \'93 +directory in zip\'94 for those files. +\par The middle group box of settings lets you specify how to add those files into the zip file you are creating. Here you specify encryption, encoding, compression level, whether to create a self-extracting archive, split zips +, and so on. You can also specify zipfile comments and other zip settings. +\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \lang1024\langfe1024\noproof\insrsid7564013\charrsid16080314 {\*\shppict{\pict{\*\picprop\shplid1025{\sp{\sn shapeType}{\sv 75}}{\sp{\sn fFlipH}{\sv 0}} +{\sp{\sn fFlipV}{\sv 0}}{\sp{\sn fLockAspectRatio}{\sv 1}}{\sp{\sn fLockPosition}{\sv 0}}{\sp{\sn fLockAgainstSelect}{\sv 0}}{\sp{\sn fLockAgainstGrouping}{\sv 0}}{\sp{\sn pictureGray}{\sv 0}}{\sp{\sn pictureBiLevel}{\sv 0}}{\sp{\sn fFilled}{\sv 0}} +{\sp{\sn fNoFillHitTest}{\sv 0}}{\sp{\sn fLine}{\sv 0}}{\sp{\sn wzName}{\sv Picture 2}}{\sp{\sn dhgt}{\sv 251658240}}{\sp{\sn fHidden}{\sv 0}}{\sp{\sn fLayoutInCell}{\sv 1}}}\picscalex100\picscaley100\piccropl0\piccropr0\piccropt0\piccropb0 +\picw15401\pich5530\picwgoal8731\pichgoal3135\pngblip\bliptag-1110965009{\*\blipuid bdc804ef0a5456ddb70cd6ce02bece53}89504e470d0a1a0a0000000d4948445200000246000000d1080600000029217dbe000000017352474200aece1ce90000000467414d410000b18f0bfc61050000 +00097048597300000ec300000ec301c76fa8640000393e49444154785eed7d6d8f25479656fdaefa0c825df8b81212825d56828b84d468101acc37beb4d06010 +7387815956ad910ac16a252c8fb97855bb9e76bb29afd765bbddb2cb74d95e5f97ababaa5fdcefd5ddd5dd6edb526c9ec88cc8139111999179236fbe3d574ad5 +adcc7839f1c489134f9e7332ef86c0070800012000048000100002404022b0011c800010000240000800012000045204408ca0094000080001200004800010c8 +100031822a0001200004800010000240a08a18ed1fde1438800174003a001d800e4007a00363d2812a06e8f4181100f80001200004800010000240606c085471 +9c0231aaaa303680301e200004800010000240605a0894711d10a369e902460b0480001000024060f20880184d5e050000100002400008000120a01000311a91 +2e1c5e3f16172fbd2b5e7bfd4d1cc0003a001d800e40077aaf03b467d1de55f5f9e52f7f295e79e515f1939ffc64a583daa0b6ca3e204655b331a0ebc72777c5 +9dfba7039218a2020120000480c09411a03d6b7978ab1482fff0eaabe217bff885f8f6db6fc58f3ffeb8d2416d505bd4a6ef036234228d2462840f1000024000 +080081212150458c7efad39f8abb77ef8aefbfff5e3c79f264a583daa0b6a84d10a32169494359418c1a02876a400008000120d0190255c488c267e4295a9514 +a9fad416b50962d4d994afaf6310a3f5618d9e800010000240200e0221c4e8871f7e108f1f3f8e72505b204671e6aef7add42346db62b63917cbb58f2aa0dfe5 +5c6cae24db3afa583b7056870163ec5a44f40f0480001008402094189d9e9e8a18c7da89d1f66c436c6c6c88d97686c6ca9b5c00aa282211a8478c8458ce37f3 +795a238695fd2a9d59417782fb58e3b86b751530f6c21803ea3865a8aa5775bd6a60abd6af6a1fd781001018340221c48872831e3c7810e5a0b6d6e8314aee62 +37664272a2269b5b5f0d685fe5b296425d62249299eaa5d7280ade15638bd2478bb628483e6b8c41751c3237add7e2f0d134100002d341209418ddbf7f5fc438 +d64b8c5c06b68ed1ad53769d3ad357b94a891191d4d47b6778f0880c29f22af92bf31ad9e364ff5339d5d6e63c0bc0d175ddc7a690a7659d5942b8a8df9998bb +ead9fd2a22cde4dda0509a45aee79937b2e091d4f53252ae9d959647cc9037914f85eb8cf3bc0d07863e8c8c716f88cdf9b6984b0ce87b155e73618e6da9eb2a +199df81b3816ebc8b9b0e727ab93cf652ea7ea4b797dd332091ec63ca8b9cdae39d6e1aaf5d7b9b4d117100002dd23104a8ceeddbb27621c6b24467c13b18d69 +96cbe231d4e9b454197673d35353e9da304cc39c85f564dfd9e6ad3762b6993b3690fa7299a463ddeac63d46b429eb70a624436cec8660ccebe0254696275012 +2b9a2f0b4f4566745fae7aaa73eeed48e75ecbbb3d4b490bdf909de159b39ed4857cd04947017d647aa7aae56d5832290cb7adfc274346ae4f9c2892fe97e1e5 +083d1b731188a351c7d31f27c6724db0b56a29acc6c2354645b00cbccd0656adbfeef583fe800010e806811062f4fcf9f3644f482c698483da5a5f288d1b66eb +6edfbb31f0792818f67cc3286e7a54b16cc3d06e039dc84b8449ddbd9b1ba063835f49ae6e948b13a33ac9cbda6be425463969757b3f94672ac1d1200e8e7a0c +9aca7e0b3a64cd6989878b1367b977977a7a5812baafcfbc413331dc55deb70eb8474c7eb7f162723ad682e17daac2d1f68ea9fe12a3e2f464d9c9ee8a34a99b +084e543916ccfb6868fdaaf5bb5942e8150800810e100825465f7df5958871f48718790db561e1f34d2760d3e35e26bd612b436e8765b881e777efadc8d58166 +255d362546dab3128079ea8dcbbc0cae4dd16e238342d733a0c93c3a55a4a5eaba8fb4c8f3817dd86d78c61144b0bcc4c8e1f50c1d5b5d1c3931f1a8a3319706 +31b2bc655504b5d0feaaf5bb593fe8150800816e10082146cf9e3d135f7ef9659483daea87c728c0501b9b4ec026cda730df78adb0912bbcc0bd1a2dcbb54e35 +6b164a4b254cbd3756289087b474784c85681c9b9f1d9691d82a6f9c15dac98049fb7584c41c3946fad5027a4eab42697c6c9e3eea86d2962518f19ca5c2f700 +bc3879b7c955088e731ee62be9cf6ecb0a0f16bcb39c1859f96966e832c7db385fb3fe3ad70cfa020240a07b044288d1d9d999b876ed5a9483daea0731b236a0 +3431d4ba8376840f8ab91f6c129d1baf67e3621bb11992f06c205c57eacad5919e994fa585255fe7a2a6b8f164e98d24874885e4dcc9bfbc0f3ba7866d9299f7 +cef0eae98eb3f9e29e3bd56f88a7c2a8e77b2f53491f8a8c280fa3e1397163c8b1d018b9bc449ce8c8f156e395df1ca8b2e91af1255f9bf3a7429a6a5d39fa73 +b6c5fb62b97e76b84f8e31d1092f562af72c4ffa37c285a5f53b5a34e816080081ce110825469f7df699308f5f89dfdbf83df12b79def7ddaef399e81131f26c +0cc694989b81f1548de7857fae0dc3d8b8c888f3ba0699529dbb3790e2a6c35e4550ba3974a367f51fd7ef464ef43a50047ce1c5d0e1ac5a3fb41f9403024060 +50088410a3a74f9f8abdbdbd2807b5b53e8fd1a0a6627cc282188d6f4e7b35a25589cdaaf57b05068401024020160255c4887ef0f5f8f858bec3e8934f3e59e9 +a036a82dfc886cacd9eb793b20463d9f2088070480001000020504aa88d1abafbe2a7efef39f8b1b376e08f2f6ac72501bd416b5e9fbec1fdef45edbb0af9415 +c65c778f008851f7730009800010000240a01e0255c4885afbd9cf7e26bd3c14025be5a036a8adb20f8851bdf9eb7569224677ee9ff65a460807048000100002 +404021407b5608315a27622046eb44bbe5becece5e88933b8f700003e80074003a001d188c0ed0ded5a70f88519f6603b2000120000480001000029d220062d4 +29fce81c080001200004800010e8130220467d9a0dc802048000100002400008748a008851a7f0a373200004800010000240a04f088018f569365694e5f0fab1 +b878e95df1daeb6fe298100634e734f7f8344300eb66dcf602eba3d9ba98722d10a311cd3e1ed71fd164d6184a1f1f77ad217ee745b16e3a9f825605c0fa6815 +de51360e6234a269c50b1e4734993587d2b7f780d414bfd3e258379dc2bf96ceb13ed602f3683a01311acd540a01033fa2c9ac391418fe9a80b1e25837cdb11b +4a4dac8fa1cc543fe40431eac73c449102063e0a8c836c0486bff9b461dd34c76e2835b13e863253fd9013c4a81ff310458a68067e9dbf82eeeb6b7b26363636 +8ac76c3b0a56636b0486bff98c3ad78dd4bf4d315f66edae734d341f0a6a7a1088b93efe73f203a4750f4cccb010884e8cb667e966369bcfc5e6e65c28bb322c +5886292d37f02b61af3601fb2fc1127b83086e6f5bcca0575ec58c69f88d4eca082a9f3bfa6e115983c3f2761ce496ecc6a6662142283b22c971cb64d8458ca8 +ffd96c96cb14aca7c3b41d63973ae6fa2052747676e63dbefbee3bf1f2e54bf1fcf9735986cae3332c04221323dabc6642ded3c390ac5d13a21323358236e732 +b06d7be35c3bb83def30a6e12f1f6a46506991dbc488df0819f3caea24d50a7399912a458c96f34d46869662be999094161d854562447d921d4be456630ad4d3 +9eabc964c58bb93e1431facd9b6f09fbf8f0e34fc5affff4ff8957fefd6be2ebc31be2d9b3673d2446c53525d79cdabba596986b36587146b24ee212a3324319 +8c2c0a3645801b7879a74d465dcec92c31f0e4c94bfe661e3d15a6d21b8e7dc75fa8cbdbcb3c81461d9310cf593faa0fc30b40de1f7b73f50c5c2e5a7b8332c6 +958eadc5bdb3e994acad5e4cc35f26b4416a4ad73bbb49226f91d77b4c467a33d1cb4dc363c465a0f9e7dea4d8a01688118d2b554e299b7464a9b14acf97d235 +3646b991a4655d7a2ecf3176a7704c37a4d4cbdee618636336b4f662ae0f4e8cae7cb22fd4f1f1a79f8b070f1f8b7ff02f7e2dfed63ffc2fe2adcb9f4aaf91d7 +63d4e17e69aea954cf3795ae2bc706e9795da253b77c4f152922314a1966bac84d40bd1ba21dc357ff7b37dc7c8397777313df0c6d9d727a8c24962c57c2dc71 +b270a77507a136b2d2509a5947dfe5677367102ed7a6e86adbb548647b8cf4f07a6c5ca697a1a7abada658ce1cab6c8dd94dc534fc3e310d82aa8ca7cfa3c20c +64e9dc90ae25cae2273f5ccfda59f33631225994fe6ab9f4781859cac283a504dfd0579b50591e76d8b35a2ba4abf5e1224657f73e17d78f6f8937fee213f1b7 +1352f4cf5ef91371fbf6b7e5a1b42e498471b3927a46b7f90d48b62e6b4d886d136a57ee4f8588c488dd559501c49481df7de6c6b36cc3f56cf0fdc1b35349bc +c4c80e71f05c10ed1962f960366971ddd9d88bda4774ecba557d1b08e677e1fa74593f23dc585cc6dfc91f0f6fb5ab7b364175112323c7285fab925c50be8eba +ae59734e0c7cc4c8f6b4b431489318a5f6c7c0dd5a2332ff2871286d275eaef976e65d4a3612edf171795f13c155bde44be63dcafb82b7a8d9cc76b13e3831da +ffeb0371787c53ec7ff9b578f2f44cfcfebffa1fe2effca3ff2adefecbcfc5f2ebaf4b8811d333ae5f96277c73beadf5d1ad5fe63a2b7a1f7d3713964797145a +7b4ae96be6a5b5ecad2b1220ebd9765d7b9d98b384ce05785cfbe0455d0f312a034e6eda0e97b55a27a19e8566eb6a54b5aa89914534aac84c99c7a836310aec +9bcd8833afa84ae651cd683a186efcbdde9c56899183a056798c98a0a6a729bff1e164c8498c4a4370f126da20466c73487bc86c13112075832149d03ccb3fca +efb653bee7d173b529248524a1b29e4a49bdead30e07379dd175af0f458cfeeac3abe2c34f0ec4fffccd074908eda1f8edcebef89ddfff95f8a7ffe64f042560 +efef7f1eee317279c2b9b7dfe5b134d6605def63bee7e61e529553e7d88fbd91004fb441ae9b3c37d0747c64faeff4b8d61d4753ad29afb706625462285c4627 +74c36d078f41b71a468c98f1d51b8f43890b77312caf48935987e2fbe6cf0e7ddae13a0b796ff8c5199a48ef70da7e7aa94be520e35ff6693394e64d7c777912 +5d42726f0a510d79379adf09f38d8d7b4edace2d52a2f275e3ea537bbcb4e7354d1b50b29aa4c6ba43b743162af74f6d6a3a1ccc36a32e156da07daf737d2862 +f4cdf523f12fffddff961ea24fae1d8b7ffe6fff54fcbd7ff247e2cf2fefcbdca2af0fbe69468c5ce169c3eed9af3121a251dffb981222ae77eabbe321aad07d +39e0c6b5dce35a7f1c6da8ec9a88916b33ceeec7b2e4c3dc209684d2f0f87fa90e70039fe67b1593e7b89b5227686b239d2d389988a712b78910a9fc31ab3dee +090ccd35090aa539c219aa9e215b22a73e3fed5743b4458c4a096728313248b1fb29b3759120d70232d78d235caff45cdb1fc75d324bacf6ae31f22759af25e8 +43d8a08d8da56f6dc65c1f8a185dfd644f7c737447fcdd7ffcdfc4effcc1af2429fac37ffdbfc4772fbf9784e8e8f8b8256254ee590cf63eca902ee5ede6b653 +92257ad54e9e6467ed05d9cc561120ef0db25c04251ed75c7382c7d182b2ad81186577f3ae1864e1ae89816e6f7836d048be2ea843b4173cb6a068d19b2ce843 +f41e06d5604cc39f0fbc84a0aa9c84d0c7d92bde63e4f5d41831a7f5245fb737f1edc8df9ebce36939e6fa50c4e8fd0f3e1277ef9f8afff8c717c5effec11f89 +bfff87ff5dfc9fb7f6f43b8c6eddba159f185921aa34bf27bb61aded7dcc6e78f9bb30b2756ae43395e5a1ba4266651105a952251e571e3ee429366b56c5b8c4 +68cdc2a33b130110a3e96a444cc33f3514d7b26eec0d676a20773cde98eb4311a38fae7c2cbefa6a99245fdf11ffe98f7f2be6bfbe9424603f17f71f3c10f7ee +dd1777eedcad78c1a3c313eff3c21a3782fc09f0a6c9d7d22b21f380ccc4ffc05c505b4edba3af9d1e2a0ac13dfae11ed7ae1e4a0031ea78c1c6ec7e2d063ea6 +c0682b1a02310d7f34a106d210d6cd40266a053163ae0ffbcdd7f412477ad335255cd377fbadd878f3f50a13d7515510a38e806fa35b18f836501d469b310dff +30461c4f4aac9b7858f6b5a598eba3eeefa48118f5552bfc7281180d6fcebc12c3c08f68326b0e25a6e1afd9f5e08b63dd0c7e0a2b0780f55109110a3004408c +46a40e64e0ef24c980f84c0b019a7318fee6738e75d31cbb21d4c4fa18c22cf54b4610a37ecdc74ad29c9dbd1027771ee198200634f7f8344300eb66fc3603eb +a3d9da986a2d10a3a9ce3cc60d0480001000024000081410003182520001200004800010000240204300c408aa0004800010000240000800011023e800100002 +40000800012000044c04e0311a91461c5e3f16172fbd2b5e7bfd4d1c13c280e69ce61e9f660860dd8cdb5e607d345b1753ae056234a2d9c763c7239acc1a43c1 +e3c835c07214c5ba590dbfbed78ebd3ef082c7becff8eaf28118ad8e616f5ac08bea7a33156b1704ef316a0e39d64d73ec865233e6fab07f12c4fe0910fc24c8 +50b4c22f2788d1f0e7508f00067e4493597328310d7fcdae075f1ceb66f05358398098eb4311a3dfbcf996701d6ffcd96fc59fbd75495c7c67a7e247642bc56e +b100fd58ec2cf99d7bfe719d6b51841e370d62d4e3c9a92b1a0c7c5dc4c6533ea6e11f0f2a6123c1ba09c369c8a562ae0f4e8cae7cb22ff8f1e9ffff52ec7ff9 +b5581e1c8a9dbffcab726264ff42fd26ff05fab6d16e408cb8bc6d8bd771fb20461d4f40ccee0d034f4abcb12136d831336f0f9c5d6fcfd23a21658d0626b468 +62ce59acb6621afe58320da59de2bad914f325931eba3d94a9f4ca19737db888d1d5bdcfc567fb5f892f97df8883c323717c7243bcbffb4138315a3bc20d88d1 +da65ecae4310a3eeb08fde73c1c01b77204b31dfac223c2bb852d5e6814d24fabc863418d3f087f437a632ce1b0abe76a0d3839fee98eb8313a3ab7b5f884faf +fdb5b8f6c5527a898e8e4fc4cd5bb7c4b7df7e2b3ebe7ab58418a5f658deb892ae19f6732666d9b5cdf9b62eb7a9d8ba71d39b93f8e57c53df08ebb249b0ac18 +32a3e92c2146992cf3ec2659df28f3f36a7d64b2d4be91eeb94681188dc8e89513a34413abc65a75bd4c99418c3a5dea310d7fa703e19daf29d4e05a37b42968 +63bfcabae80d98d31624e6fa50c4e8fffef9db326cf6d5d787e2fad1892443f7efdf170f1e3c90c7b5fdcfc33d46dc7e6e646447920ef65d92112254cca3a975 +93111d59cfce1fb2e7bf8218f1a881c3b653644191b6b19122420ac46844f6a29218f1bb84c25d072d14157a4b17950aaba9709c5c00f626e1b9d391774123c2 +b6ef438969f87b33d6351112e7baf1913263dd649b8fef0e9b80f4dcddf706e3890812737d2862f417172fcbb0d98d9b37c5ddbb77c5a3478fc493274ff4f1f5 +c137cd8811f7c6d8df1d29121b923ce51ea8dc5b5436b9d51e236dbf9d37bdd97e314656d40e31e21bac75d7656dbce9265be236b4ae6f28166c9c4f8c530dd7 +62c1dd681b40a78c7351702b4a9d5b21f4d48241aa2646ea6ec373d751b611f93c42f6f9356d662dc0d7bb26797e98fddd1636a6e137da76adad322220d7449e +db9693e97c9d6f30632aef3c6733c30ea4ebdc136a28908d007252b14e7deb8664336f06cc70b4b4255420c3a8e861f2ddddf74ed506295057eb4311a3b72fbf +2b4e6edc1477eedc911e222245f4a8feb367cfe4dfa3e3e3968851b93728bda1adf21859baa9d6150feb29ad70d97e6517467a031cd96364e7b19091ccd9ac32 +1ca64129711b7257a2bcf9e28648b913ebb8161dee46bd91d7357afdb325d5c4281bbfefae639b882af3f4d8e542160d885154c570197f5707ed10a31202ed72 +b5676426e73dd9fa27bd32c203ca68737db4722514e128dc3dc75fa7fe7593c857c8ffb0d647d59ab01e8048efeea3aac8a41beb627d2862f4ee7bef6b52747a +7a2a49d0f3e7cff5712bc935a27354def9717925cb3c953a94663b1c9473c0b3277a3444137f757d7b96137d578e9d63af4c436ae353e8b8c4c8b72996865f32 +4353a524fa4e3153022bf9cb5c203ed7a2c3dd18ea09b1d9730fcd512531e26375dd5118f3a4486d36d0509c408ca26b06d76d5fe3ad10a33a04da45103c6b46 +1be432434cfa196a13cac849c06c94ad1bba194b3d5a2c41b6ec4edabef3aebc730f1010454a1158f7fa50c4e8a32b1f8b6bd7f693c4e9af931ca32371ebf66d +71f7de3d712fc933ba77ef7e429aee56bcc748795799ae57122382827b659b265f4b45cd13c0551238d75fa79e679e5f7df793ca323672343c62641b2869bceb +bb16b5bb3174c31f3c31e277da96674f615820460c57dac42419b5c287eabc0f4718f5280890f12ffbb4478c1c6b2be446870b6b97cf08d1f6cc4e2c2d21e12d +aed3f21b8a6c1372dcad1b1e6ce7536c9e75164523d00847609deb036fbe1ebfeec525463e577a9618e60ca555269ae586d96d884a3679edb6ce4202dca5afb2 +fb75f8a8c4453f904777ebbdc7c871d7616d603c1f4b3f564af719ecb1d08de40909f36e9add058d7ffdf46684ad10237b3d3b09b454882c04eb09a5db215a75 +c76b787d2bd67948c8bbe13aadf2b44a7d7779a85db6ab70c7edbebbef8de24c449098eb03bf95367ea5894c8c6c379f27f9ba8c0cd9ae68da78559cde67886a +b8168393af838d5e5592dbfa94086ff05d1fd67deb29a6e137c7564da0cd27157dc9d7e6538a466e82243d8e75aed77549f83cc23ac5bae99b36c797a7bdf511 +5f56b4d83d022d10a3888342be4a2d3061e06bc135aac2c332fc5638b6e3758e7533aaa5e01cccb0d6c7f8e7a3ef230431eafb0cd5900f06be0658232b3a18c3 +4ff94576b22688d1c8b4b17fc319ccfae81f749394a8dfc4689253d27cd02046cdb11b7a4d18fee6338875d31cbba1d4c4fa18ca4cf5434e10a37ecc43142960 +e0a3c038c84660f89b4f1bd64d73ec865213eb632833d50f39418cfa310f51a420037fe7fe6994b6d0c87010a03987e16f3e5f5837cdb11b424dac8f21cc52bf +640431ead77cac24cdd9d90b7172e7118e096240738f4f3304b06ec66f33b03e9aad8da9d602319aeacc63dc4000080001200004804001011023280510000240 +000800012000043204408ca00a40000800012000048000100031820e0001200004800010000240c044001ea31169c4e1f56371f1d2bbe2b5d7dfc431210c68ce +69eef16986c0c1c18178e38d3770f410039a9b297f60d3e3ed6575ec2488d188561d1e3b1ed164d6180a1e47ae0196a32891a2939393d51a41ede808d09cd0dc +4cf9039b1e6ff6ebd84910a378b877de125e54d7f914742600de63d41c7ab5f99e9e9e0a1cfdc18066d4458c168b85a87b34d78e6e6bc2a6c7c53fd44e8218c5 +c5bdd3d6b0883a85bfd3ce43177ca742f6b47310a3fe90214e4ccb88918fc03e7efc583c79f2443c7dfa549c9d9d8967cf9e491235d40f6c7adc990bb5932046 +7171efb4352ca24ee1efb4f3d005dfa9903ded1cc4681cc44891a22fbef8425cb97245922210a39e2eba8ec40ab59320461d4d501bddb6468c027efd7c7bb621 +7f357db65d7364016da72d6e8bd9c64c6cf3f2f43de993fa4d8f4d315f66fdab6b86404b31df4cca6dce852aa6a425f93775e5a4b76c3c7c4ccbf926eb8bf79b +c85573d8b18b872ef8d8fd8ea13d10a3e112a3870f1f0a7e90b7686767475cbc78513c7ffe5c1ef0188d6195c61943a89d1c36310ade54e380daf7564a89d12a +5855d6cd484b138054db157d1029911ca7408c1829b1af6d6e8a4d4e821459b28951765e13a3ed19234f2563a37a241495afcd089b80e5af13bae0e3f6daa3d6 +4ef7920d704f34f9a54010a371102322458787879214edeeee8aefbefb4e1e9d11a34abb59bd7e5abbd9adee7a942542ede438885104051c8316b4b688aaf0ad +ba5e066e103162e4a48c1829af12f597959bcf98172921309bb3e4308811799112d29594e31ea35ce4f43a7326e94bdbba6d2ad3add72874c18f41cf9d630031 +1a5de238cdb32ff99ac266743c7af448fea59c230a9bbdf7de7be2d2a54be2c68d1be2e5cb97f2e89c1805d938f7ca6ccda68fd610940f2cd44e8e83184d7492 +ed61f345c443411b3c042517e94ccc28a424c34f9e0ddd0e532932619c27c240a4c56ccbec3b0bafd9e4c930164c1e4798cbf0c8d4f218252133224319ab9144 +669bc6cf426999b7873c524e6224c7ebc0c81a0f8db94ba751e8821fed5201319a143152c9d5b76fdf16cbe55292222243efbcf38ef4161121fafefbefe5d139 +31528baec10da49318e99bbe3c9caf6d8f619f33bb155cde7d0338269b116a27e313a3c2c6c9efde1d1329eff20327587902785e096d7216239f3bf243a407c1 +ae27677c853050cf34c6b588645e0cad1a8e11cbc5d1d78db1a4b9387ab1e9d092e53d09b913f295b1cf97180d83b4148851498e11d70d9a67e37f73ee5dc448 +e514b9088f0eed65b87989d50a3a92e74ef131a6dfed4fe882af258e241b3b6267b125b6b6e8d811475903473bea5cfa7727bb70bab7c8ca6e89c55e1ad82a9c +3bda616d1d891ddd2e7d5f08598dfa967db27e0d7912598c3249391d4ae36d568f18a1b4e185d2d413671f7ef8a178fbedb7c5bd7bf7c4071f7c202e5fbe2c09 +9222456d10239e6b286fa67c379b95377fd57b8f9718f17c4e6d134dbb6dd87e6f792b2fd375635abd843a2dd1869d8c4c8c4a36ce80894c490a4d9467829394 +59e7866d6cfa6c43f7288c91a7d2e994c6edbcb088b8b7a38ca0d81e9132ef8e91ec9c253cdb5e1817092df5183172eb80a49c18716f8e2be49685b9541e1093 +83b7eb273696ce79c8741bc488ba722d7a97d6b4468c145151044731202e84f6d6304222490b1129d7b953b1973c422d0990244919b1d2edd0758b6c51bfb2cd +ac5e924dc4cbc8769063342aaf11a9982f944649d52f5ebc90a134f212d141a4e8fdf7dfd721b4763c46968d51de78d7cd668d9b3fdf4ee08c02b872270b377d +498b2137a52e7b9e703dedf5efd20d5e637b8c6d27e312237b43544f0ab9364ed7442a20aa3651bb5c8802d849b80364c6557a6212236b43afc288375e4a8caa +c24a8adc6a574a1abaaa9ad3c61e232e0f23e63601a23c2223793b7b42cd320cae709a4d7a7cde25778e52d5ac555fe78bde57ba3562c4c986263bb64747796b +52b2424447798b1236e338477c28253e473b09d1394a084ffa4f5acf0e8ba9fff9795f996a380b25e0311a9ec7884811255693e7687f7f5f13a3e3e363f1c30f +3f488f11fda5236e282db71b7abdbb6c5b217da1fce62f8418e93255b6d4b73fbacefb52291aaca3aeabc4b4932d10a3aa8db384c98218ada45b9c1815426486 +572d9fa390509a2c2389a4836cd98fd0dba1491d86b3dcc6ea7c48388e3ff55508a5594fa5a985ee2be72160b6f7287fcaccf618b993b1dbce317285cf0c2e7b +786b25dd7156f6920f16f2a28a8efc9e34d49687dea898714e92a0bd244c474f9225ed257f8f92309c744881188dcaf3d3f46de2a4333e8f1191229e4774edda +3549901419e27fe312a37ca5a45e15eb152274d9e7292ab9f98b428c2cfb5c48a328ecaf1e7b1edf92acadc55876322e310ada3899e2d8e56b86d2f4865de90d +f1784fd6365debe9881323f9be1efe7e1fe5b593582589c6ea9acf73c6bd7f86eb96e78465f1696bc117def793f5619c576deabaaa5d573278d9536966fe8d91 +84e81a5b0031a2d9e209e48627c8f968fe489f4ae31e22c95792fc21c95cac1c1e15c62a84ba326f9011fe52a1306a23f72c9944aa2494a63d588e3208a58d8a +509511234e8a54c8cc458aa27b8ca45d547939d94d12d956e67971e6759645484ab687b2e46bfd2eb6c24d606613f90333de8889c39eaf67bbeaa49750cf7a64 +6224b714964cedde38cd1c9f80e46bd7bb686863b737579f8b51b1f809265f17b4afc15d4b271a6c756a273bf741262dc358df63243d37c9ef52a92468463c78 +42b54c90ceae05255f4be01c39423c7f892756ab7e5d9e242d1bfd7e967a8f1192af9b7a69fa54af8c1875f95b69eee46bc7cd66e186ddbef96b987cdd2be337 +2c613a24460300aa071b591b2805bdf362a0c4a8bf4f0f561bb736e6da6e3374c1d792658547e06bf5d37161e4180d2bc7a863752976dfa24d0db2e9bd03a4bf +0285dac9163c467d04c5f44a193f1dd147711bca8445d410b811540b5df0b5860a6234aad0549fbc4121b2f83c46b574781d85418cd68172943e42ede4448851 +144c7bdf088851efa7a8350143177c6b020cb861788ce031eaabfac2a6c79d99503b09621417f74e5bc322ea14fe4e3b0f5df09d0ad9d3ce89189d9c9cf454ba +e98a4573e27a2a6d4a88c0a6c79ded503b09621417f74e5ba34574e77e939fd1ec546c74be220234e7a10b7ec5ae4659fde0e0406ec038fa8701cdcd943fb0e9 +f166bf8e9d04318a877be72d9d9dbd1027771ee198200634f7f8000120302e0460d3e3ee67a17612c4685ceb08a301024000080001200004564000c46805f050 +150800012000048000101817022046e39a4f8c0608000120000480001058010110a315c04355200004800010000240605c0880188d683e0faf1f8b8b97de15af +bdfe260e60001d800e4007a003bdd701dab368efead307c4a84fb3b1a22c78b4734500511d080001200004d68a409dc7e8d7251888d1ba905e433f7819d81a40 +4617400008000120101581bebd870dc428eaf476db188851b7f8a377200004800010a88f0088517dcc5023100110a340a0500c0800012000047a830088516fa6 +627c82b44f8c5e8aebfb4b71f9ea52ec3fccf07bf1407c74f5b6b83b3e38f3114d618c639e3f8c0d0800815e230062d4ebe919b6704d88d1dd6f12a2f3cdd3a0 +819fdd3e121fdd7e29cbaa7afc5c50233d2e4463716131a631f6187e88060480c044110031ea72e29773b1b93917cb2e6568b1ef26c4285c1cf2161d89ebc64f +72b9ce85b7d8af92beb18c698cfd421cd20001200004080110a32ef560d2c4280f835128ec3285bf548848fe4d4364f2d87f20cef83c3dbc9d5fb3eba9b27619 +d73c5bfde8701cafabda2b947d2af633f964bdaaebd4bf4b267bac5713b2f7908ddf1e3b954f08618e0f238795ed271887e0d2e59a40df40000800818e119800 +31da16b38d0db1911db3ed0c712225fafc4cc8d392a8ccc46c332dbf39df1673fd3df1eb545d576de87637c59cdc4119019acfb81c4bddf686f61a91ac992c1d +2b468ceec33c464430d2cd5d8588cc10527e9dcbc4c349bc9e0cadd1e6cfc2711466532137dd069561a443f7699c376553e565d82ecb63a2ef448c64fdac3dd7 +759f4cbc1ec9c6db2bc89c5c97e5590e952a5fdabec222049718138f368000100002034660e4c428251f9a0c25f467b64164c53cbf9c6f8a0d2a24c9122333fc +3b9197aaeb49506cbe99d5d7444bd56372284fd1c43c462961c84985109cf4a810914d845ca1232aa312ac793d3a977b72b4c7892767cbc5ea265b42d87da97e +f879fe3df4ba4f266a8b278adb63b12d0b1f375de3e599874d7bb26c595d65b2fc2c635e066cd1203a10000240604504c64d8c7cc4c33eef222abc4c9debcc3b +957aa912a2b46de5124d941899ba6a9113e5cdb0bc1ab62744b6c1cbd8f52c4f90737dd87da842765d554e86afb2701eff1e7add27932d876abb4c3e9e98cecb +db21371a932dababcc8a0604d58100100002634300c4c8f6eca8b0566362e408858510b1b16956321e7f28ade8b151212133ece5f6ece8f051d207af27737d2c +12e27ccacd154623d250124653f947aebe29bc5576dd27136f8ba65f8ddd3eaf54c357ded73e972b089711ea20860404800010a88bc0b889910c6dd50ca5ad42 +8cecfe64e82d214a20464c2feda4eb24ffe79bdbd9bb875222f451f66e229e4ba31be0eff03192b579682d0f19e9846a63659832e4b93c3ce495b5e7ea4f7963 +78e2373f677f97212f4b26fb5d44fa7fc7bb990aed65de20239c58d1be4b86bad602e58100100002134060e4c488663020f9ba8c0cd5f1284985e1fd99c9d7fa +b17c4d945459e5659a62f2355b65be10d20416228608048000100002fd406002c4a81f404f518ab0a7d21432a9a7c4ede199227a183310000240000874810088 +5117a84fa4cf7ac46822a06098400008000120d06b04408c7a3d3dc3160ec468d8f307e98100100002534400c4688ab3bea6311331ba73ff744dbda11b200004 +8000100002ab21407b1688d16a18a276090267672fc4c99d4738800174003a001d800e0c460768efead367fff0a6579c0dfb4a59e13e0d0ab200012000048000 +10000240a0090220464d50431d20000480001000024060940880188d725a3128200004800010000240a0090220464d50431d2000048000100002406094088018 +8d685a0f0e0ec41b6fbc8103184007a003d001e8c0607480f6ae3e7d408cfa341b2bca42a4e8e4e464c556501d08000120000480c07a10a03d8bf6ae3e7d408c +fa341b2bcaa294ebf4f454e00006d001e80074003ad0771da06d0fc468c5cd1fd5fd088018c108f6dd08423ee82874003ac07500c408aca65504408c6070b0e9 +4007a003d08121e9008851abb4008dd72646cb85387fee82d8f586de966271fe9c3877ee9cb8b05bd3d854b65db3bd758607872cfb3a71425f08594307a0032b +eac0f488d1e99e582cf644d9af771ded6c89adad2db1735493d804b45db3c5f5156f49f6bac468b9382fce2f96de855d75bdecae44d5a5bfe72eecae643c62b4 +41b286b6a364dfbd9090c29ec83ea43b40c8da63d2bfe22686b9c5dcc6d60110a302f538123b5b3ba22e2792cd2872118364c46883cb5445b162cacefaaa478c +c81b745e2c96be855e75bdcc40a8baabb4a1da8fd106b515da4e68b9100319b3ad90fe5026b6d1467bd029e840bb3a00626413865508494c72b18a1c7c4ca1ed +8496ab2258d6f54a622443446968ec5c428ace9f5f8825dd41ee5e48cfc92309add9ff9fee8a0bfa3a0badd92127f53fef47f695f5c3ef560b7d9c0ae9a171ca +949db7db75c9447d58e52e2cf8b81db2b870718ec5854d663442fae46356e3b4eae51ebc2c8cb9a2c70a46bd5da30e7c812f7460351d980631a24d3f098d5178 +4c1e2a94669c5f88bd53f216a972a9d74885d5545d195eb34984418876c4cec2eac7262aba0fea33ebc3295326ab6c5fb59bfccd427d864cb20f2e3f85024fc5 +5eb02cbcaf24d468f57924dbaeef492b2546b42933824224446ec2749e6dbeea7c5918cd578687cfa86d6f1b9e3e534293918f4c56de465928cc180f1ba7aa53 +2a8b03176728d027b785adb34fa30c11cdd45bc7c7648fb52ccc0963bc9a31067ec00f3ad00f1d9800314ac981ce173adac988119d4f89497018cce711b2cf7b +bd2f9e3e3302b6d83bca65e56d4802c764757a84ac714a2293d439f2e5547970e163f1f559c36b641323e981915e15f20ef1b0990af1143d4169a2359de749d9 +7912b66a6fb17495a13ed479fbba5a84be3e55b88b7b98781b7658ca27932b3ce893c5d526d5778502cbb0aaead3ee47c9639ed7c488086246d6f2392c4b92ef +8781c3468379800e4007eaeac0f889519977877b91e477079170799b4a3d46cadbe248f0b6db527d4a7296797b1483b389114f180f914991171f496b3a861aa4 +882b5741312d4f87f4ccd0c66b793a743d5e5e7a71d8c6cfebf2308f7ddeee5385d17c7df2909e6ad796c3083f05c8c4fb7485a4ca70a1f28ca048cf9a2f2458 +d5b65d57f5cbdbcf92c3cf2f7693dc2f90a0bac615e5b121430786a9031327468ed090411832af4b955729d46324098d271ca5c80e0fa9b9be2b4f50954c4320 +467a534f3d1f3a8c66859128ac465e0af578be19824abd34ae30990a65a9babc0dc36039427a3294a7ceb3bc255b8e2a996cf222c354c9f8166c3c7e59725c54 +bf545fbfa6a04aee8c8439fb2c09a3f1d720c8ba4d5e8d80278d567aea111bea303754ccdb38e66dfcc42879309f87d24ef7162c94c6426c8ab414881123323a +0c67e5dba8f395c9d756f84a13a5fc3ce5342d28bee7f51879fab6c6997aa0c243691a97ca31d47319f9738cec3090f24898e128b949db09d5469274969c5d48 +d8ceceebba65ef3fb2fbccfed7044d912ff29c6489de32799a79517c32c927cf54f830237fec5cf15d4c0e5c8ca46b7f38316f2ba44fde4fd6a6e35d49a1af13 +c086308e0d01f38879840ea45e87f1ff24080f3d251b5afe1e239eac9ce5f058212649181c89dbc679d5a6aeabda757987ec3eb304e93c094a26802ff6f6b244 +f0a48d40998ac9d73c21dbe31dd309e9192e5e62d442f235bc0afdf62a586135184c6c9ad001e8c01474601ac4a89e9303a5232250f9b83ec8510fc991f23821 +af680a9b00c608b2031d307500c428220940534504408c60746174a103d001e8c0907400c4086ca65504408c6010876410212bf4153a001d00316a9516a07122 +46272727000208000120000480c02010a03d6bfcc9d783988a710a79707020150c0730800e4007a003d081a1e800ed5d7dfaec1fdef48ab3615f292bdca74141 +162000048000100002400008344100c4a8096aa8030480001000024000088c120110a3514e2b0605048000100002400008344100c4a8096aa803048000100002 +4000088c120110a3114d2b92af916c3994644bc8095d850e4007940e20f97a4444a46f43c1e3fa7d9b11c8030480001000026508e0717de847ab08e0058f7859 +1a5e98071d800e400786a403b429e23d46ad528369370e6204833824830859a1afd001e80088d1b4794beba307318291c146031d800e400786a4032046ad5383 +6977303a62b45c88f3e7ac5f9d779d3b8521d48610f888216d0a90156b77ea3a00623405de72ba27168b3d71dac158c7468c968bf3e2fc62696c74eadcee8573 +e2dc85dd9536416a6bd536da366a75657461d6b68c681f9b3b74003ad05407408c3a200b6bef12c46825b2922faea5589c3f2f164b6e705ce79a1aa4986d3595 +a1aa5e5d19eb96afea1fd79b1a7bd483ee4007c27400c468ed2ca5830efb4c8c649825f1b464c785dd4c71772fe873e7ce2fc492425385b2bbe202af5775fd34 +2f6ff467d53b778e911f7e2d2145e7952c2a5446d7e99c0a1795b5c5c7e40cc76538a83e5c18d8213a479bd27365b52171f5f5ef9a033bfc658fcb25a33d2635 +67849b9e6386ad4b1ea39f2464598619c29591087fd866814d15384d4507a6418c88186c6d892d792cc45e12533ada49beabf052767de72881c351b640658c32 +3b82aac97a497b7bd46ed6976c8f7f6c82a2fef7d595e777c4ce42b599f595b429e5d763da12795f4762c73e6ff49b5dd7a135fa3f6f37366d2b0da5d1a6c788 +860ed118e789cca49ba9bc9e95979b7fb611d377daf8abaedb8b9aea51588cd7a332aa3d4924987caa3c6f478589f85fbb8e26252ccc56d6966cdf838131062a +e36a53911ade86afac670eecf0973d4e2d63c098d43c15b075d435c2743e9941884088a003d08116756002c4e854ec2d5232243f8c2410b958ec1d25d715b1f0 +97cd090395c989c8e9de426c112be1e4caea47d72d23460999d1e48613a68cc8a54d667dd9ec45b76bca96d0a784f424633f523946d9ff6b4c36b289514a68d4 +6187a5e88ecc0ebd1031a264677e9e7f0fbdaedab6fba7b67832b56adb96c31512b2fbf6b555f4541106da3b2617b86aab0c037ec75ad626c9c1bc460e4f59da +7f4e3a4dd2c865e1f2f0f375c764b7c3e721fd7e61d79e57579994b8a63a6425c1b76828a772a78c71c22b041d4837c871bfc7c8f0ee985ea3943824e7142329 +2d5b245606d1f2919e1a1e23cd572c4f92715e79776c59c903e40b99f1b20537566c1f91d99ed763647903f462b43c18d273429e0515b2d2e1992cbc56e7ba1d +22236f902d87eac7779e6fbeaa8cfdd70eb3d963726de0bc3f1f0676df76584f5d57e127e591f1f55f36073c89dc8549dd31f179f3d5e5731cd23e8810bc06d0 +01e8400b3a301162e4091529c26084d42ac24a15e1b002b9894d8ca4ac96e7c747a454df729c342edba3d42e29e2ca55b80b7185701451d11bbe1946531e161d +ea62612f0ac1545dcf9f264b3d2af43f6f4b857a64b942282b2dcfc7a1eada7f55191d2e7384e4ec27cf0c3942c36856984fb6a9eaf21c215fff9e39d8b59ebc +53e3f0cb987971ac27f2c2b0cdebf239748531fbfeb41eeeb4e16d810e8c4307c64f8c6c32e0200969488d288d451c745983ddf84369fc9178a7f7c6cae739da +49f39c4a436c3951cb43699e760ac4c70ea565a1c416738a6caae5cf31cac23d59582d271d3c4493854af826effa5e755de5ecb0246f1986712618abf08c1d2a +f2bcbbc848ba66658cb6cdb19a213433c4975e736050b82bb2dbb4c36739f94bc3938e0477ebbc9e03e571d278a950a60a7915c39285319562eb90a7f0aea32a +ccc66180b191621ea103fdd3810910231a224f48a67ca39400e9105a763d2547765987578587a6b8b7a992186579422a393ac97d92ef172af542256574f9fc5d +449224b1246b9d486ec89fe52d59eda77555de5587c9d72db8406164fa676430279813e8007460483a301162d47ec8a8951e7c3943ad74d64ea3637bc1e39016 +3764c566041d800e4007eaeb0088513b7c204eab2046482c84570d3a001d800e4007d6aa03204671280c5af120008f51fdbb15dce10133e80074003ad09d0e80 +1881d2b48a0011a393939356fb40e340000800012000046221407bd6b8df63140b29b4d30881838303a96038800174003a001d800e0c450768efead367fff0a6 +579c0dfb4a59e13e0d0ab20001200004800010000240a0090220464d50431d20000480001000024060940880188d725a3128200004800010000240a009022046 +4d50431d20000480001000024060940880188d725a3128200004800010000240a0090220464d50431d20000480001000024060940880188d725a312820000480 +0010000240a0090220464d50eb699d85fca1dc7a474f8702b18000100002400008748200885127b0b7d3299122dfabed1f3f7e2c9e3c79229e3e7d2acececec4 +b367cf2489c207080001200004800010c81100311a9136f8889122455f7cf185b872e58a24452046239a780c05080001200004a22130196274b4b325b6b6b6c4 +ce5186dde95ee231d913a7d1a0ecbe214e8c1e3e7c28f841dea29d9d1d71f1e245f1fcf97379c063d4fd9c4102200004800010e817021321464762676b47484e +a408d184881191a2c3c343498a767777c577df7d270f10a37e2d464803048000100002dd23300d62e422412325461436a3e3d1a347f22fe51c51d8ecbdf7de13 +972e5d12376edc102f5fbe94078851f70b101200012000048040bf10884b8c24d9d8113b0b0a5b251e1afa3f095f51086b6b6b21f6286e6594d9128bbd23b127 +cbd3f72cb065d4639e1ed586f2fcf036ed7e34cee42d5232643251088d1323979c52d445263b932df13b69ef53bfe652121d955c7dfbf66db15c2e25292232f4 +ce3bef486f1111a2efbfff5e1e20463d9b4088030480001000029d23109f1869f2729a109e8c0cd9212c83d070c244393f542fcf0592e4244b0ca23c21459ef2 +f39e7e38b43609328891afbe157e53a1b8cea7cc2f00111df5c4d9871f7e28de7efb6d71efde3df1c1071f88cb972f4b82a4481188518f2712a2010120000480 +406708c427462aa1d9f0c230afd1114b7a2e252c1926ae32923c3142a53d4296774ac15ad68f4fce240455f06475364d611d1331a2a4ea172f5ec8501a7989e8 +2052f4fefbefeb101a3c466178a2141000024000084c0f819689511606abf2ded81e25feb498910b9411229b5c5579732a8991434e2673fa445b79993ea80e11 +23224594584d9ea3fdfd7d4d8c8e8f8fc50f3ffc203d46f4970e84d2fa306b9001080001200004fa84407bc4c80a89c9dc229577c4bd4a85effe505aca9fd2bc +1f9d8fe4eba78a8c69b264f667c8e90b0bf66906992c44748814f13ca26bd7ae4982a4c810ff0b62d4d3898458400008000120d019022d12231a134f7cb67389 +24cbc9df25e44b86b6df35240916cb5d92d039fa092646fefa434cbee6a44885cc5ca4081ea3ced61c3a060240000800811e23109718f578a05310adeeefa4c1 +633405adc018810010000240a00e02204675d0425920000480001000024060d40880188d7a7a3138200004800010000240a00e02204675d04259200004800010 +00024060d40880188d7a7a3138200004800010000240a00e02204675d0425920000480001000024060d40880188d7a7a3138200004800010000240a00e022046 +75d0425920000480001000024060d408d422463ffef8a328ab306aa4303820000480001000024060d40810c721aee3fb6cb82e28724495710003e80074003a00 +1d800e4007c6a20365a488389193188d9a2a62704000080001200004800010f020006204d500024000080001200004804086008811540108000120000480001000022046d00120000480001000024000089808fc0d1ba230eba2ca5bca0000000049454e44ae426082}}{\nonshppict +{\pict\picscalex100\picscaley100\piccropl0\piccropr0\piccropt0\piccropb0\picw15401\pich5530\picwgoal8731\pichgoal3135\wmetafile8\bliptag-1110965009\blipupi95{\*\blipuid bdc804ef0a5456ddb70cd6ce02bece53} +010009000003d4c902000000abc9020000000400000003010800050000000b0200000000050000000c02d2004702030000001e00040000000701040004000000 +07010400abc90200410b2000cc00d100460200000000d1004602000000002800000046020000d100000001001800000000001493050000000000000000000000 +000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +0000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffe7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7deffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffffffffe7e7d6ffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff0000ffff +ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff +ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff +ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff +ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffb5b5b5b5b5b5bdbdbdb5b5b5b5b5b5b5b5b5bdbdbdb5b5b5b5b5b5b5b5b5bdbdbdb5b5b5b5b5b5ffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff +ffffd6f7ffd6b5b5fffff7ffffffe7ffffa5a5c6a5a5a5b5a5a5fff7d6d6f7ffd6b5b5fffff7d6f7ffd6b5b5fffff7d6f7ffd6b5b5fffff7d6f7ffa5a5b5a5a5 +a5d6b5a5fffff7ffffffffffffd6f7ffb5a5b5fff7d6ffffffffffffe7ffffa5a5c6a5a5a5b5a5a5fff7d6ffffffffffffffffffd6f7ffd6b5b5fffff7d6f7ff +d6b5b5d6f7f7d6b5b5fffff7e7ffffa5a5c6a5a5a5b5a5a5fff7d6ffffffb5d6f7a5a5a5a5a5a5f7d6b5ffffffe7ffffc6a5c6ffffe7ffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 +deffffffffffffffffffffffffffffffffffffffffffdef7ffd6b5b5fffff7f7ffffa5bddeffe7c6ffffffd6f7ffcea5bdd6f7e7d6b5b5fffff7def7ffd6b5b5 +fffff7d6f7ffdebdbdf7fff7a5b5d6ffe7c6ffffffb5d6f7e7c6a5ffffffffffffb5d6f7a5a5a5f7d6b5fffffff7ffffa5b5d6ffe7c6ffffffd6f7ffc6a5b5ff +ffe7ffffffffffffd6f7ffd6b5b5fffff7d6f7ffd6b5b5d6f7f7debdbdf7fff7a5b5d6ffe7c6ffffffd6f7ffc6a5b5d6f7e7bda5bdfff7d6f7ffffb5b5d6fff7 +deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdbdbdffffffffffffff +ffffffffffd6d6d6dededeffffffffffffffffffffffffffffffbdbdbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff +ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7d6f7ffc6a5b5ffffe7ffffffff +ffffffffffd6f7ffd6b5b5fffff7d6f7ffd6b5b5fffff7d6f7ffd6b5b5d6f7f7d6b5b5fffff7ffffffd6f7ffd6b5b5fffff7f7ffffb5b5d6d6e7d6d6b5b5ffff +f7d6f7ffc6a5b5ffffe7ffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7d6f7ffd6b5b5d6f7f7d6b5b5d6f7f7c6a5b5ffffe7ffffffffffff +ffffffffffffffffffffffffa5c6e7c6a5a5ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffb5b5b5ffffffffffffffffffd6d6d6c6c6c6c6c6c6e7e7e7ffffffffffffffffffffffffb5b5b5ffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffd6f7 +ffd6b5b5fffff7d6f7ffa5a5b5a5a5a5a5a5a5a5a5a5b5a5a5d6e7d6debdbdfffff7d6f7ffd6b5b5fffff7d6f7ffd6b5b5d6f7f7debdbdfffff7ffffffd6f7ff +debdbdfffff7d6f7ffd6b5b5f7fff7b5b5d6fff7d6d6f7ffa5a5bda5a5a5a5a5a5a5a5a5bda5a5fff7d6ffffffffffffdef7ffd6b5b5fffff7d6f7ffdebdbdd6 +f7f7d6b5b5d6f7f7a5a5bda5a5a5a5a5a5a5a5a5bda5a5f7f7d6a5b5d6a5a5a5f7debdffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffffffffff7f7f7c6c6c6c6c6c6c6c6c6cececeffffffffffffffffffff +ffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff +ffffffffffffffffffffffffffffffffffffd6f7ffb5a5b5fff7d6f7ffffb5b5d6fff7d6ffffffd6f7ffd6b5b5d6f7f7b5a5b5fff7d6d6f7ffb5a5b5fff7d6d6 +f7ffd6b5b5f7fff7a5b5d6ffe7c6ffffffb5d6f7e7c6a5ffffffa5c6e7f7d6b5ffffffb5d6f7e7c6a5f7ffffb5b5d6fff7d6ffffffd6f7ffd6b5b5fffff7ffff +ffffffffd6f7ffd6b5b5fffff7d6f7ffd6b5b5d6f7f7d6b5b5f7fff7b5b5d6fff7d6ffffffd6f7ffd6b5b5e7fff7c6a5c6ffffe7d6f7ffc6a5b5ffffe7ffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7cececebdbd +bdf7f7f7cececec6c6c6e7e7e7ffffffffffffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffdef7ffc6b5b5a5b5c6c6a5a5def7efa5a5b5a5a5a5b5a5a5fff7 +ded6f7ffc6b5b5a5b5c6a5a5a5e7d6b5a5b5d6a5a5a5f7debdffffffd6f7ffa5a5b5a5a5a5c6a5a5ffffe7d6f7ffbda5bdfff7d6ffffffd6f7ffbda5bdfff7d6 +d6f7ffa5a5b5a5a5a5b5a5a5fff7d6ffffffffffffe7ffffa5a5c6a5a5a5cea5a5d6f7e7d6b5b5d6f7f7debdbdfffff7d6f7ffa5a5b5a5a5a5b5a5a5fff7d6ff +ffffbddef7a5a5a5a5a5a5f7d6b5ffffffe7ffffc6a5c6ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffbdbdbdf7f7f7ffffffefefefe7e7e7ffffffefefefc6c6c6cececeffffffffffffffffffbdbdbdffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 +e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffd6f7ffd6b5 +b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7cececebdbdbdefefefffffffffffffb5b5 +b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +efffffc6a5c6ffffe7d6f7ffdebdbdd6f7f7d6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +ffffffe7e7e7c6c6c6cececeffffffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff +ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffa5c6e7a5a5a5ffe7c6ffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffb5b5b5f7f7f7f7f7f7f7f7f7efefeff7f7f7efefeff7f7f7c6c6c6c6c6c6f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffbdbdbdf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7dededecececefffffff7f7f7bdbdbdffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff +ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5 +b5b5b5b5bdbdbdb5b5b5b5b5b5b5b5b5bdbdbdb5b5b5b5b5b5b5b5b5bdbdbdb5b5b5b5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff +ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff +ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 +deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff +ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7e7b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5e7e7e7ffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5efefefffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7e7b5 +b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 +e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff +ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffe7ffffa5a5c6a5a5a5b5a5a5f7f7d6a5b5d6e7c6a5ffffffe7ffff +a5a5c6f7d6b5e7ffffa5a5c6a5a5a5b5a5a5fff7d6ffffffffffffffffffffffffd6f7ffa5a5b5a5a5a5d6b5a5fffff7d6f7ffd6b5b5fffff7ffffffd6f7ffd6 +b5b5fffff7ffffffffffffffffffb5d6f7a5a5a5a5a5a5b5b5a5d6b5b5d6f7f7d6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7b5b5b5a5a5b5a5a5a5d6b5a5ffff +f7ffffffb5d6f7a5a5a5a5a5a5a5a5a5d6b5a5fffff7e7ffffa5a5c6a5a5a5a5a5a5ffe7c6d6f7ffd6b5b5fffff7ffffffb5d6f7b5a5a5fff7d6e7ffffc6a5c6 +ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7defffffffffffffffffffffffffffffffffffffffffff7ffffa5b5d6ffe7c6ff +ffffdef7ffc6a5b5f7ffe7a5b5d6ffefcea5c6e7f7d6b5f7ffffa5bddeffe7c6ffffffd6f7ffcea5bdffffe7fffffffffffff7ffffa5b5d6ffe7c6ffffffbdde +f7e7c6a5d6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5fffff7ffffffffffffe7ffffcea5ceffffe7ffffffc6e7ffdebda5d6f7f7d6b5b5fffff7ffffffd6f7ff +d6b5b5d6f7f7cea5bdffffe7ffffffb5d6f7efcea5e7ffffc6a5c6ffffe7ffffffc6e7ffd6b5a5f7fff7a5bddeffe7c6ffffffe7ffffbda5ced6e7d6d6b5b5ff +fff7def7ffc6a5b5ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7e7f7f76b84b5737373737373e7b58cf7f7f7cef7f773739c +7373739c6b6bf7f7ceb5def7a5738cf7f7cebde7f79c7384f7f7ceb5def7a5738cb5decea5738cf7f7cebde7f79c7384f7f7ceb5def7a5738cf7f7cea5cef76b +6b6b737373737373a57373b5decea5738cf7f7cef7f7f7b5def7a5738cf7f7cecef7f76b6b9c737373737373a57373f7f7cef7f7f7f7f7f7b5e7f79c6b84bde7 +ce9c7384b5e7ce9c6b84f7f7cef7f7f7b5e7f79c6b84f7f7cedef7f7738cb56b6b6b737373f7ce9cf7f7f7f7f7f7f7f7f7def7f7738cb56b6b6bf7cea5cef7f7 +7373a56b6b6ba57373f7f7cef7f7f7f7f7f7f7f7f7f7f7f7e7f7f76b84b5737373737373e7cea56b84b5bd8c73f7f7dee7f7f76b84b5e7bd8cdef7f7738cb56b +6b6b737373f7ce9cf7f7f7def7f7738cbd737373737373deb584f7f7f79ccef77373736b6b6b7373739c7373e7f7ce6b84b5737373f7ce9ce7f7f76b84b57373 +73737373f7cea5f7f7f7f7f7f7f7f7f7b5e7f79c6b84f7f7cef7f7f7b5e7f79c6b84f7f7cedef7f7738cb56b6b6b737373f7ce9cb5e7f79c6b84f7f7cef7f7f7 +e7f7f76b84b5737373737373f7cea5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff +ffffffffffffffffffffd6f7ffc6a5b5ffffe7ffffffffffffffffffffffffd6f7ffa5a5b5d6b5a5fffff7d6f7ffc6a5b5ffffe7ffffffffffffffffffffffff +ffffffffffffd6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7d6b5b5fffff7ffffffd6f7ffd6b5b5fffff7ffffffffffffd6f7ffd6b5b5fffff7ffffffd6 +f7ffd6b5b5d6f7f7d6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7d6b5b5fffff7ffffffd6f7ffd6b5b5e7fff7b5a5c6fff7d6ffffffd6f7ffd6b5b5d6f7f7d6b5 +b5fffff7ffffffffffffffffffd6f7ffc6a5b5f7ffe7a5b5d6ffe7c6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f79ccef7b5 +8c73f7f7def7f7f784b5deb58c739cc6deb58c73f7f7decef7f7846b9cf7deb584b5def7cea5f7f7f7739ccef7ce9cf7f7f76b9cc6f7ce9c84b5def7cea5f7f7 +f7739ccef7ce9cf7f7f76b9cc6f7ce9c84b5dee7b58cf7f7f7def7f76b84b5e7b58c6b9cc6f7ce9cf7f7f7f7f7f76b9cc6deb58c9ccef7b58c73f7f7decef7f7 +6b6b9ce7b58cf7f7f7f7f7f7f7f7f773a5cef7c69c739ccef7ce9c73a5cef7c69cf7f7f7f7f7f773a5cedeb5849ccef7b5846bf7f7e7f7f7f7739ccece9c6bf7 +f7f7f7f7f7f7f7f76b9ccef7cea5f7f7f79ccef7b5846bf7f7e7c6f7f78c739cf7deb5f7f7f7f7f7f7f7f7f79ccef7b58c73f7f7def7f7f76b9ccecea5739cc6 +f7b58c73b5dedea5738cf7f7c69ccef7b5846bf7f7e7f7f7f7739ccece9c6ba5cef7b5846bf7f7def7f7f78cb5e7b5846b8cb5cedeb584f7f7f7f7f7f7739cce +deb58473a5cef7c69cf7f7f79ccef7b58c73f7f7def7f7f76b9ccecea573f7f7f7f7f7f7f7f7f773a5cef7c69cf7f7f7f7f7f773a5cedeb5849ccef7b5846bf7 +f7e7f7f7f7739ccece9c6b8cb5e7f7c69cf7f7f79ccef7b58c73f7f7def7f7f76b9ccecea573f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff +ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffd6f7ffa5a5b5a5a5a5a5a5a5a5a5a5b5a5a5fff7dee7ffffa5a5c6e7c6a5ffffffd6 +f7ffa5a5b5a5a5a5a5a5a5a5a5a5b5a5a5fff7d6ffffffffffffd6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5def7f7d6b5b5fffff7ffffffdef7ffd6b5b5ffff +f7ffffffffffffd6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7debdbdfffff7ffffffd6f7ffdebdbdd6f7f7d6b5b5fffff7ffffffd6f7ffc6a5b5ffffe7 +def7ffa5a5b5a5a5a5a5a5a5debda5d6f7f7d6b5b5fffff7ffffffffffffffffffd6f7ffa5a5bda5a5a5e7c6a5ffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5 +b5fffffff7f7f7f7f7f7f7f7f7f7f7f7a5cef7ce9c73f7f7f7f7f7f7f7f7f7f7f7f7a5cef7b5846bf7f7e7f7f7f7a5cef7ce9c6bbde7f7b58484f7f7e7b5def7 +bd8c8cf7f7dea5cef7ce9c6bbde7f7b58484f7f7e7b5def7bd8c8cf7f7dea5cef7ce9c6bbde7f7847384f7e7b5f7f7f7bde7f7b58484a5cee7ce9c6bf7f7f7f7 +f7f7b5e7f7b58484a5cee7ce9c73f7f7f7f7f7f7bde7f7b58484f7f7e7f7f7f7f7f7f79ccef7cea5739ccef7cea5739ccef7cea573f7f7f7f7f7f7b5def7b58c +8c9ccedebd8c73f7f7def7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7a5cef7ce9c73f7f7f79ccef7bd8c73f7f7def7f7f79ccef7cea573f7f7f7f7f7f7f7f7f7 +a5cef7b58473f7f7e7f7f7f7f7f7f7f7f7f7f7f7f79ccef7737373ce9c73f7f7f79ccef7bd8c73f7f7def7f7f7f7f7f7f7f7f79ccef7cea573f7f7f7f7f7f7f7 +f7f7f7f7f79ccef7cea573f7f7f7f7f7f7b5def7bd8c8c9ccedecea573f7f7f7a5cef7b58473f7f7e7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f79ccef7cea5 +73f7f7f7f7f7f7b5def7b58c8c9ccedebd8c73f7f7def7f7f7f7f7f7f7f7f7b5def7b58c8cf7f7dea5cef7b58473f7f7e7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff +ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6fffffffffffffffffffffffffffffffffffffffffff7ffffb5b5d6fff7d6ffffffd6f7 +ffd6b5b5fffff7a5c6e7e7d6b5a5b5d6ffe7c6f7ffffb5b5d6fff7d6ffffffd6f7ffd6b5b5fffff7fffffffffffff7ffffa5b5d6ffe7c6ffffffb5d6f7e7c6a5 +d6f7ffa5a5b5ffe7c6ffffffd6f7ffd6b5b5fffff7ffffffffffffd6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7a5a5b5ffe7c6ffffffd6f7ffd6b5b5d6 +f7f7b5a5b5fff7d6ffffffb5d6f7e7c6a5ffffffffffffffffffffffffd6f7ffd6b5b5f7fff7a5b5d6ffe7c6ffffffe7ffffb5a5c6d6e7d6d6b5b5e7fff7b5a5 +c6fff7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f76b9cce7373736b6b6b8c7373f7deb5f7f7f7f7f7f7f7f7f7def7f78c8cb5f7deb5f7 +f7f7cef7f7a573a5def7c68c8cb5f7deb5e7f7f78484b5f7deb5cef7f7a573a5def7c68c8cb5f7deb5e7f7f78484b5f7deb5cef7f7a573a5f7f7c6def7f76b84 +b57373736b6b6b8c7373dedeb5a58cb5f7f7c6f7f7f7def7f78c8cb5dedeb58c8cb5f7deb5f7f7f7def7f78c8cb5f7deb5f7f7f7f7f7f7cef7f79c6b9ce7f7ce +8484b5dedeb59c84b5f7f7cef7f7f7def7f78484b5cee7b56b6b9c7373736b6b6b7373736b6b6bf7ce9cf7f7f7f7f7f7c6f7f79c739cf7f7cee7f7f78484b5f7 +deb5f7f7f7cef7f79c6b9cf7f7cef7f7f7f7f7f7c6f7f773739c6b6b6b7373736b6b6b737373f7ce9ce7f7f76b84b5b58c73f7f7decef7f76b6b9c7373736b6b +6b7373736b6b6bcece9c846b9cf7e7b5f7f7f7f7f7f7f7f7f7cef7f79c6b9cf7f7cef7f7f7e7f7f78484b5cedeb59c6b9cf7f7cec6f7f773739c6b6b6b737373 +6b6b6b737373f7ce9cf7f7f7f7f7f7cef7f79c6b9cf7f7cef7f7f7def7f78484b5cee7b56b6b9c7373736b6b6b7373736b6b6bdece9c8484b5f7e7b5c6f7f773 +739c6b6b6b7373736b6b6b737373f7ce9c73a5ce6b6b6b9c7373f7f7cef7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff +ffffffffffffffffffd6f7ffa5a5b5a5a5a5bda5a5fff7d6a5c6e7d6b5a5fffff7d6f7ffa5a5b5ffe7c6def7ffa5a5b5a5a5a5b5a5a5fff7deffffffffffffff +ffffffffffd6f7ffa5a5b5a5a5a5cea5a5ffffe7d6f7ffd6b5b5a5cedea5a5a5a5a5a5ffe7c6ffffffffffffffffffd6f7ffdebdbdfffff7ffffffd6f7ffdebd +bdd6f7f7d6b5b5a5c6d6a5a5a5a5a5a5ffe7c6d6f7ffcebdbda5b5c6a5a5a5c6a5a5ffffefffffffa5c6e7a5a5a5a5a5a5a5a5a5ffe7c6ffffffefffffa5a5c6 +a5a5a5a5a5a5ffefced6f7ffd6b5b5fffff7efffffa5a5c6d6b5a5fffff7efffffc6a5c6ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f79ccef7bd8c +73f7f7def7f7f784b5decea5739ccef7b58c73f7f7decef7f784739cf7e7b584b5debd8c73f7f7de73a5ce9c6b6bf7f7ce739ccef7cea584b5debd8c73f7f7de +73a5ce9c6b6bf7f7ce739ccef7cea5f7f7f7f7f7f7f7f7f7f7f7f76b9ccee7bd8c84b5deb58c73f7f7def7f7f7739ccef7cea59ccef7bd8c73f7f7def7f7f76b +9ccee7bd8cf7f7f7f7f7f7f7f7f78cbde7deb5848cb5e7deb5848cbde7b58473f7f7e7f7f7f773a5cef7ce9ca5cef7ce9c6bf7f7f7f7f7f773a5cedeb584f7f7 +f7f7f7f7f7f7f784b5dee7bd8cf7f7f7a5cef7b5846bf7f7e7cef7f78c73a5f7deb5f7f7f7f7f7f7f7f7f79ccef7cea573f7f7f7f7f7f76b9ccee7bd8cb5def7 +a5738c9ccecebd8c73f7f7dea5cef7ce9c6bf7f7f7f7f7f773a5cedeb584a5cef7b58473f7f7e7f7f7f78cbde7ce9c738cb5e7deb584f7f7f7f7f7f78cb5e7de +b5848cbde7deb584f7f7f79ccef7cea573f7f7f7f7f7f76b9ccee7bd8cf7f7f7f7f7f7f7f7f78cbde79c7373f7f7cef7f7f773a5cef7ce9ca5cef7ce9c6bf7f7 +f7f7f7f773a5cedeb5848cbde7ce9c73f7f7f79ccef7cea573f7f7f7f7f7f76b9ccee7bd8cf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff +ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffadadadffffff +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7b5def773738c6b6b6b737373f7c69cf7f7f79ccef77373736b6b6bb58c73f7f7deb5e7f76b6b847373736b6b6bce +cea56b6b9c737373f7ce9cb5e7f76b6b847373736b6b6bcecea56b6b9c737373f7ce9ccef7f76b6b9c7373736b6b6b737373f7c69cb5def76b6b847373736b6b +6b8c7373f7deb5f7f7f7b5def773738c6b6b6b8c8c73b58484f7f7def7f7f7f7f7f7b5def7b58c8cb5dedea5738cb5dec673738c6b6b6b737373846b6bf7deb5 +f7f7f7a5cef76b6b6b7373739c6b6bf7f7cef7f7f7f7f7f7b5def773738c6b6b6bb58c73f7f7dea5cef76b6b6b737373b5846bf7f7e7f7f7f7f7f7f7f7f7f7f7 +f7f79cc6f77373736b6b6ba57373f7f7c6739cceb5846bf7f7e79cc6f7737373f7ce9ca5cef76b6b6b7373739c6b6bf7f7cef7f7f7b5def76b6b847373736b6b +6bf7ce9cb5def7a5738cf7f7c6f7f7f7b5def773738c6b6b6b737373b5846bf7f7e79cc6f77373736b6b6ba57373f7f7c6f7f7f7f7f7f7f7f7f7b5def78c8c8c +6b6b84737373846b6bf7deb5f7f7f7a5cef76b6b6b7373739c6b6bf7f7ceb5def773738c6b6b6ba573739cc6c67373736b6b6ba57373f7f7c6f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffdebdbdfffff7ffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7def7f78c8cb5f7deb5f7f7f7f7f7f7e7f7f78484b5f7e7bdf7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7def7f78c8cb5f7deb5f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7e7f7f78484b5f7e7bdf7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7e7f7f78484b5f7e7bdf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f784b5 +dee7b58cf7f7f7f7f7f7f7f7f78cb5e7deb584739ccece9c6bf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f784b5decea573f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f78cb5e7c69c6bf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f78cb5e7deb584f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 +deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7bde7f79c7384f7f7cef7f7f7f7f7f7b5def7a5738cf7f7cef7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7b5def7a5738cf7 +f7cef7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff +ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5 +b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffb5b5b5e7e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffefefefb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 +e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffdededeb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad +adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 +b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 +b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad +adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 +b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 +b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad +adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 +b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 +b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad +adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 +b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 +b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad +adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 +b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 +b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad +adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 +b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 +b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad +adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 +b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5e7e7e7ffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff +ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff +ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7 +e7b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5e7e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff +ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffb5b5b5efefefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7e7b5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff +ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffadadadffffff +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7def7f7738cbd9c7373f7f7cef7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff +ffffffffffd6f7ffa5a5b5a5a5a5b5b5a5d6b5b5fffff7e7ffffa5a5c6a5a5a5b5a5a5fff7d6d6f7ffd6b5b5fffff7ffffffb5d6f7a5a5a5a5a5a5a5a5a5d6b5 +a5fffff7b5d6f7a5a5a5a5a5a5b5b5a5d6b5b5d6f7f7d6b5b5e7fff7a5a5c6c6a5a5ffffe7ffffffffffffffffffe7ffffa5a5c6a5a5a5b5a5a5f7f7d6a5b5d6 +e7c6a5ffffffe7ffffa5a5c6d6d6b5a5a5c6c6a5a5d6f7e7d6b5b5fffff7ffffffb5d6f7a5a5a5a5a5a5a5a5a5d6b5a5fffff7e7ffffa5a5c6a5a5a5a5a5a5ff +e7c6e7ffffa5a5c6c6a5a5ffffe7ffffffffffffffffffd6f7ffa5a5b5a5a5a5b5b5a5d6b5b5d6f7f7d6b5b5d6f7f7d6b5b5fffff7ffffffe7ffffc6a5c6ffff +e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7b5def7b58484f7f7e7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 +defffffffffffffffffffffffffffffffffffffffffff7ffffa5b5d6ffe7c6ffffffbddef7d6b5a5f7fff7a5b5d6ffefceffffffd6f7ffc6a5b5def7efd6b5b5 +fffff7e7ffffcea5ceffffe7ffffffc6e7ffdebda5e7fff7c6a5c6ffffe7ffffffc6e7ffd6b5a5d6f7f7debdbdd6f7f7d6b5b5fffff7fffffffffffffffffff7 +ffffa5bddeffe7c6ffffffd6f7ffcea5bdf7ffe7a5b5d6ffe7c6a5ceeff7d6b5d6f7ffd6b5b5fffff7d6f7ffd6b5b5fffff7efffffc6a5c6ffffe7ffffffceef +ffd6b5a5f7fff7a5b5d6ffefceffffffe7ffffb5a5c6deefded6b5b5fffff7fffffffffffffffffff7ffffa5b5d6ffefceffffffb5d6f7d6b5a5def7f7d6b5b5 +d6f7f7d6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7 +f7f7f7f7f7f7f7f7cef7f76b6b9c737373737373a57373f7f7cee7f7f77384b57373736b6b6bf7cea5b5def7a5738cf7f7cef7f7f79ccef77373736b6b6b7373 +739c7373f7f7ce9ccef77373737373737373739c6b6bbde7ce9c7384e7f7ce6b84b5737373f7ce9cf7f7f7f7f7f7f7f7f7def7f7738cb56b6b6b737373dece9c +738cb5b5846bf7f7e7def7f7738cb5ceb584738cbd737373b5b5a59c6b84f7f7cef7f7f7a5cef76b6b6b737373737373a57373f7f7cee7f7f77384b57373736b +6b6be7bd8cdef7f7738cb56b6b6bf7cea5f7f7f7f7f7f7f7f7f7cef7f773739c7373736b6b6ba57373b5decea5738cb5decea5738cf7f7cef7f7f7def7f7738c +bd737373737373f7ce9cf7f7f7def7f7738cb56b6b6b737373deb584e7f7f76b84b5737373f7ce9ccef7f76b6b9c7373739c7373f7f7ceb5def7a5738cf7f7ce +f7f7f7f7f7f78cbde7ce9c73f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff +ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7c6 +a5b5ffffe7ffffffffffffffffffd6f7ffd6b5b5fffff7e7ffffb5a5c6fff7d6ffffffd6f7ffd6b5b5d6f7f7d6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7d6b5 +b5d6f7f7d6b5b5fffff7ffffffffffffffffffd6f7ffc6a5b5ffffe7ffffffffffffffffffffffffd6f7ffa5a5b5d6b5a5fffff7d6f7ffd6b5b5fffff7d6f7ff +d6b5b5fffff7e7ffffb5a5c6fff7d6ffffffd6f7ffd6b5b5d6f7f7d6b5b5fffff7ffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffd6f7ffd6 +b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7d6b5b5d6f7f7d6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f79ccef7b58c73f7f7decef7f76b6b9ce7b58c9cc6f7b58c73f7f7def7f7f76b9cc6ce9c73 +6b9ccef7cea5f7f7f78cb5dedeb584f7f7f7def7f7738cb5deb5848cb5e7deb584f7f7f7f7f7f773a5cedeb584739ccef7ce9c73a5cef7c69cf7f7f7f7f7f7f7 +f7f7f7f7f79ccef7b5846bf7f7e7f7f7f7739ccece9c6ba5cef7b5846bb5dede9c6b84f7f7ce6b9cc6f7ce9cf7f7f78cb5e7f7c69cf7f7f784b5dee7b58cf7f7 +f7def7f76b84b5e7b58c9cc6f7b58c73f7f7def7f7f784b5deb58c736b9cb5f7cea5f7f7f7f7f7f7f7f7f7f7f7f79cc6f7b58c73f7f7decef7f76b6b9cdeb58c +6b9ccef7cea584b5def7ce9cf7f7f7a5cef7b5846bf7f7def7f7f773a5cec69c6b9ccef7b5846bf7f7e7f7f7f78cb5deb5846b73a5b5f7c69cf7f7f79ccef7b5 +8c73f7f7decef7f7846b9cf7e7b584b5def7ce9cf7f7f7f7f7f784b5de737373f7ce9cf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffd6f7 +ffd6b5b5fffff7ffffffd6f7ffd6b5b5def7f7a5a5b5a5a5a5a5a5a5a5a5a5b5a5a5d6e7d6d6b5b5fffff7ffffffd6f7ffa5a5b5a5a5a5a5a5a5d6b5a5d6f7f7 +debdbdfffff7ffffffd6f7ffdebdbdd6f7f7d6b5b5d6f7f7debdbdfffff7ffffffffffffffffffd6f7ffa5a5b5a5a5a5a5a5a5a5a5a5b5a5a5fff7d6efffffa5 +a5c6e7c6a5ffffffdef7ffd6b5b5fffff7d6f7ffdebdbdfffff7ffffffd6f7ffa5a5bda5a5a5a5a5a5d6b5a5def7f7d6b5b5fffff7ffffffffffffffffffd6f7 +ffd6b5b5fffff7ffffffffffffffffffdef7ffd6b5b5fffff7ffffffdef7ffd6b5b5d6f7f7d6b5b5def7f7d6b5b5fffff7ffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7a5cef7ce9c73f7f7f7f7f7f7bde7f7b5 +8484a5cee7b5846bf7f7e7f7f7f7f7f7f7f7f7f7a5cef7ce9c73f7f7f7b5def78c738cf7deb5f7f7f7b5def7bd8c8c9ccedecea573f7f7f7f7f7f7b5def7b58c +8c9ccedecea5739ccef7cea573f7f7f7f7f7f7f7f7f7f7f7f79ccef7bd8c73f7f7def7f7f7f7f7f7f7f7f7f7f7f7a5cef76b6b6bcea573f7f7f7a5cef7ce9c6b +f7f7f7b5def7b58c8cf7f7debde7f7847384f7e7b5f7f7f7bde7f7b58484a5cee7ce9c6bf7f7f7f7f7f7f7f7f7f7f7f7a5cef7ce9c73f7f7f7f7f7f7f7f7f7f7 +f7f7a5cef7ce9c6bf7f7f7f7f7f7b5e7f7b58484a5cee7ce9c73b5e7f7b58484f7f7e79ccef7b58c73f7f7def7f7f7f7f7f7f7f7f79ccef7cea573f7f7f7f7f7 +f7f7f7f7f7f7f79ccef7cea573f7f7f7a5cef7b58473f7f7e7f7f7f7a5cef7ce9c73b5e7f7b58484f7f7e7f7f7f78cb5e7ceb584a58cbdf7f7cef7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff +fffffffffffffffffffffffffffffffffffff7ffffa5b5d6ffe7c6ffffffc6e7ffd6b5a5f7fff7b5b5d6fff7d6ffffffd6f7ffd6b5b5d6f7f7d6b5b5fffff7ff +ffffffffffffffffffffffd6f7ffd6b5b5d6f7f7d6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7d6b5b5d6f7f7d6b5b5fffff7fffffffffffffffffff7ffffb5b5 +d6fff7d6ffffffd6f7ffd6b5b5fffff7a5c6e7e7d6b5a5b5d6ffe7c6d6f7ffd6b5b5fffff7d6f7ffb5a5b5fff7d6ffffffffffffffffffffffffd6f7ffd6b5b5 +f7fff7a5b5d6ffe7c6ffffffe7ffffb5a5c6d6e7d6d6b5b5fffff7fffffffffffffffffff7ffffa5b5d6ffe7c6ffffffc6e7ffd6b5a5d6f7f7d6b5b5d6f7f7b5 +a5b5fff7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f76b9c +ce737373846b6b8c8c8cf7deb5f7f7f7def7f78c8cb5cedeb57373a56b6b6b7373736b6b6b737373c6c69c9c739cf7f7cef7f7f7def7f7738cb56b6b6b737373 +846b6bcedeb59c6b9cf7f7cef7f7f7def7f78484b5cee7b59c6b9ccef7ce9c6b9cf7f7cef7f7f7f7f7f7f7f7f7cef7f76b6b9c7373736b6b6b7373736b6b6bf7 +ce9cdef7f7738cb5b5846bf7f7decef7f7a573a5f7f7c6def7f78484b5f7e7b5f7f7f7def7f76b84b57373736b6b6b8c7373cedeb58c73a5f7deb5f7f7f7f7f7 +f7f7f7f7c6f7f79c739cf7f7cef7f7f7f7f7f7f7f7f7def7f78c8cb5f7deb5f7f7f7def7f78c8cb5dedeb58c8cb5dedeb58c8cb5f7deb5cef7f76b6b9c737373 +6b6b6b7373736b6b6bcecea5846b9cf7deb5f7f7f7f7f7f7f7f7f7cef7f79c6b9cf7f7cedef7f78c8cb5f7deb5f7f7f7c6f7f79c739cdef7ce8c8cb5f7deb5f7 +f7f784b5dee7b58cb5def7b58c8cf7f7de73a5ce6b6b6b9c7373f7f7cef7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5 +b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffa5a5b5a5a5a5a5a5a5d6b5a5fffff7d6f7ffa5a5 +bda5a5a5b5a5a5e7f7d6a5a5cea5a5a5c6a5a5ffffe7a5ceefa5a5a5a5a5a5a5a5a5ffefced6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7cebdbda5b5c6 +a5a5a5d6b5a5fffff7ffffffffffffffffffdef7ffa5a5b5a5a5a5b5a5a5fff7dea5c6e7d6b5a5fffff7def7ffa5a5b5a5a5a5a5a5a5debda5d6f7f7c6b5b5a5 +b5c6cea5a5a5c6c6a5a5a5a5a5a5a5a5a5ffe7c6ffffffe7ffffa5a5cea5a5a5a5a5a5f7e7c6a5bddea5a5a5d6b5a5fffff7ffffffffffffffffffd6f7ffa5a5 +bda5a5a5a5a5a5d6b5a5def7f7d6b5b5d6f7f7c6b5b5a5bdcec6a5a5e7ffe7c6a5c6ffffefffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f79ccef7bd8c73f7f7def7f7f76b9ccee7bd8c9ccef7cea573f7f7f7f7f7f7739ccee7b58c84 +b5dee7bd8cf7f7f7f7f7f7f7f7f7f7f7f7f7f7f773a5cedeb5848cbde7deb584f7f7f7f7f7f78cbde7deb5848cb5e7deb5848cbde7deb584f7f7f7f7f7f7f7f7 +f7f7f7f7a5cef7ce9c6bf7f7f7f7f7f773a5cedeb584bde7f79c7384a5ceceb5846bf7f7e784b5dee7b58cf7f7f78cbde7ce9c73f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f76b9ccee7bd8c9ccef7b58c73f7f7def7f7f784b5decea57384b5dee7bd8cf7f7f7f7f7f7f7f7f7f7f7f79ccef7b58c73f7f7def7f7f7739ccee7b58c84 +b5dee7bd8c84b5decea573f7f7f7a5cef7ce9c73f7f7f7f7f7f773a5cedeb584a5cef7b5846bf7f7e7f7f7f78cb5e7ce9c6b8cbde7deb584f7f7f79ccef7bd8c +73f7f7decef7f7846b9cf7e7bd84b5decea573f7f7f78cbde7deb584f7f7f784b5dee7bd8cf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 +e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffd6f7ffd6b5b5d6f7f7d6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5 +fffff7ffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7b5def773738c6b6b6b8c8c73b584 +84f7f7de9ccef77373736b6b6b9c73739ccece7373736b6b6b9c7373cef7ce7373a56b6b6b7373736b6b6bf7cea5b5def79c738cf7f7cef7f7f7b5def79c738c +b5dece73738c6b6b6b737373b5846bf7f7e7f7f7f7f7f7f7f7f7f7a5cef76b6b6b7373739c6b6bf7f7ce6b9cc6b58c73f7f7dea5cef76b6b6b7373736b6b6bb5 +8c73b5dede73738c6b6b6b7373736b6b6b7373736b6b6b737373f7c69cf7f7f7b5def773738c6b6b6b737373b5b59c73738c6b6b6bb58c73f7f7def7f7f7f7f7 +f7f7f7f7b5def773738c6b6b6b8c8c73b58484b5e7e79c6b84b5dece6b6b847373739c6b6b9ccece6b6b6b7373739c6b6bf7f7cef7f7f7b5e7f76b6b84737373 +6b6b6bb5b5a56b6b84737373b5846bf7f7e79cc6f77373736b6b6bb58c73f7f7deb5def76b6b847373736b6b6bdeb58cf7f7f7e7f7f76b84b5ce9c73f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffe7ffffc6a5c6ffffefffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5d6f7f7debdbdfffff7ffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffdef7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffdef7ffd6b5b5d6f7f7d6b5b5fffff7ffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7def7f78c8cb5f7deb5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7def7f78c8cb5f7deb5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7e7f7f78484b5e7e7b58484b5f7e7bdf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7def7f78c8cbdf7deb5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7def7f78c8cb5f7deb5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7def7f78c8cbdf7deb5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7e7f7f78484b5f7e7bdf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff +ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffff +ffffffffffffffffffa5c6e7a5a5a5ffe7c6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +d6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f784b5dee7b58cf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f784b5 +dee7b58cf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f78cb5dedeb5848cb5e7c69c6bf7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f784b5dece9c73f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f784b5decea573f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f784b5dedeb58c6b9c +cecea573f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f78cb5e7c69c6bf7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7bde7f79c7384 +f7f7cef7f7f7f7f7f7f7f7f7f7f7f7f7f7f7e7f7f77384b5737373f7ce9cf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7b5 +def7a5738cf7f7cef7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7b5e7f79c6b84f7f7cef7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff +ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5 +b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff +ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5e7e7e7ffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefefefb5b5b5ffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff +ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdededeb5b5b5 +b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 +b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad +adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 +b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 +b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad +adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 +b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 +b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad +adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 +b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 +b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad +adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 +b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 +b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad +adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 +b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 +b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad +adb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5 +b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5 +b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adad +adb5b5b5b5b5b5e7e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 +deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff +ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 +efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef +eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 +f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 +efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef +eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 +f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 +efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef +eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 +f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 +efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef +eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 +f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 +efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef +eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 +f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 +efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef +eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 +f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 +efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef +eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7effff7f7ffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7f7f7efffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefef +e7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 +e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffe7dee7fff7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff +ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffbdffff000063000000000000ffbd6bffffff94deff000039000000 +943900ffffde94deff943939ffffde94deff943939ffffe794deff94393994dede943939ffffde94deff943939ffffe794deff943939ffffdebdffff00006300 +0000390000ffe79494deff943939ffffdeffffff94deff943939b5ffde00006b630000ffffbdb5ffff6b006bffffb5ffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefefffffe7c6ffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffe7ffff003994ffbd6bff +ffffbdffff39006be7e794003994ffbd6bffffff4294e7bd6b0094e7ff943939ffffe794deff944242ffffde94e7ff94393994e7e7943939ffffe794deff9442 +42ffffde94e7ff943939e7ffe7003994ffbd6bffffff94e7ff6b003994e7bd943939ffffe7ffffff94e7ff94393994e7e7943939ffffe7ffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffe7dee7decec6e7d6c6ded6c6efe7d6efcecefffff7e7d6de +e7ded6decec6efd6c6ffffeffffffffffffffffffff7ffffefd6d6ffffeff7ffffefd6cef7fff7efcecefffff7ffffffe7dee7decec6e7d6c6fff7deffffffff +ffffffffffffffffffffffded6e7e7d6c6ded6c6ffefd6ffffffffffffded6dee7d6c6efcec6fffff7f7ffffefd6d6ffffeff7ffffefd6cefffff7efffffefd6 +d6f7ffefefd6d6ffffeff7ffffefd6cefffff7efffffefd6d6ffffefffffffded6e7e7d6c6ded6c6fff7deefffffefd6d6ffffefffffffefffffefd6d6ffffef +e7dee7decec6fff7deffffffffffffefffffefd6d6ffffefffffffefffffefd6d6ffffefffffffded6e7e7d6c6ded6c6fff7deefffffefd6d6ffffefffffffff +ffffe7dee7ded6c6e7d6c6fff7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff +ffffffffffffffffffff94deff943939ffffdeffffffffffffffffff94deff943939ffffdeffffff94deff94393994dede943939ffffde94e7ff943939ffffde +94deff94393994dede943939ffffde94e7ff943939ffffde94deff94393994dede6b0039ffffb5ffffffffffffffffff94deff943939ffffdeffffff94deff94 +393994dede943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7fffffffffffffffffffffffffffffff7ffffe7 +d6defff7e7ffffffffffffe7e7efffefd6dee7efffefcefffffff7ffffe7d6deffffe7ffffffffffffffffffdedeeffff7deffffffdee7efffefd6e7e7efffef +d6eff7ffefd6c6ffffffffffffdee7eff7dec6ffffffffffffffffffefeffff7dec6fffff7ffffffe7eff7f7dec6e7eff7f7dec6fffff7ffffffe7ced6ffffe7 +e7eff7fff7deffffffdee7efffefd6ffffffdedeeffff7dee7eff7fff7deffffffdee7efffefd6ffffffdedeeffff7deefeffff7dec6fffff7ffffffdedeefff +e7c6dedeeffff7deffffffffffffdedeefffefcededeeffff7deffffffffffffffffffffffffdedeeffff7deffffffffffffdedeefffefceefeffff7dec6ffff +f7ffffffdedeefffe7c6e7e7f7fff7deffffffeff7ffefd6bdffffffffffffe7e7eff7debdffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff +ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffff94e7ff943939ffffe7ffffff94e7ff94 +393994e7e7943939ffffe794deff944242ffffde94e7ff94393994e7e7943939ffffe794deff944242ffffde94e7ff94393994e7e70000390000000000000000 +0039000094bd94943939ffffe7ffffff94e7ff94393994e7e7943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7ef +effffffffffffffffffffffffffffffffffffff7ffffe7d6deffffe7ffffffeff7ffffe7c6eff7ffffe7c6ffffffffffffeff7ffffe7c6ffffffffffffffffff +eff7fff7e7c6ffffffeff7ffffe7c6eff7ffffe7c6eff7fff7dec6fffff7ffffffffffffffffffffffffffffffffffffeff7fff7e7c6ffffffffffffffffffff +ffffeff7ffefd6c6ffffffffffffeff7fff7e7c6f7fffff7deceffffffeffffff7ded6fffff7eff7fff7e7c6f7fffff7deceffffffeffffff7ded6fffff7eff7 +fff7e7c6eff7fff7dec6ffffffffffffffffffffffffeff7fff7e7c6fffffffffffff7ffffefd6ceeff7fff7e7c6ffffffffffffffffffffffffeff7fff7e7c6 +fffffffffffff7ffffefd6ceeff7fff7dec6fffffffffffffffffffffffff7ffffefd6ceffffffeff7fff7dec6fffff7ffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff +ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffdeffff003994ffb563ffffffb5ff +ff39006bdede94003994ffb563ffffff3994debd6b0094deff390039ffde9494deff390039ffe79494deff94393994dede390039ffde9494deff390039ffe794 +94deff943939deffde393994ffde94ffffff94deff94393994dede000039ffb563ffffff94deff94393994dede943939ffffdeffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffdedeefe7d6c6e7cebdffffeff7ffffe7d6defff7e7ffffffe7d6e7ffffe7e7ced6ff +ffe7ffffffffffffe7d6e7ffffe7fffffffffffff7ffffefd6deffffefffffffe7d6e7f7ffe7efced6ffffefdeced6ded6c6decec6e7d6c6decebdfff7deffff +fffffffff7ffffe7d6deffffe7ffffffffffffffffffffffffe7dee7fff7e7fffffff7ffffefd6deffffefe7dee7ffffe7ffffffe7d6e7ffffe7f7ffffefd6de +ffffefe7dee7ffffe7ffffffe7d6e7ffffe7f7ffffefd6def7ffefded6dedecec6e7d6c6decebdded6c6ffefd6efdee7ffffefffffffffffffe7dee7f7f7e7ef +d6deffffeffffffffffffffffffff7ffffefd6deffffefffffffffffffe7dee7f7f7e7ded6dedecec6e7d6c6decebdded6c6ffefd6e7dee7fff7e7f7ffffdece +d6e7d6c6decebdded6c6decec6fff7dededeefded6c6efcec6ffffefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff +ffffffffffffffffffbdffff00006b000000000000ffbd6bffffff94deff0000420000006b0000ffffbd94e7ff6b393900426b000000bd9442003994000000de +943994e7ff6b393900426b000000bd9442003994000000de9439ffffff94deff000042000000420000ffde9494e7ff943939006b94000000000000debd6b0042 +94000000944200ffffdebdffff6b006bffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffff +fff7ffffe7d6deffffe7efefffffefcee7effff7e7c6fffffff7ffffe7d6deffffe7ffffffffffffffffffe7eff7ffefd6ffffffe7efffffefceefefffffefce +eff7fff7e7c6ffffffffffffe7e7f7ffefceffffffffffffffffffeff7fff7dec6fffff7ffffffe7eff7ffe7c6eff7fff7dec6fffff7ffffffe7d6deffffe7e7 +eff7f7dec6fffff7e7e7f7efcec6fffff7dee7effff7dee7eff7f7dec6fffff7e7e7f7efcec6fffff7dee7effff7deeff7ffffe7c6ffffffffffffdee7efffef +d6e7eff7f7dec6fffff7ffffffdee7effff7dee7eff7ffefd6ffffffffffffffffffffffffe7eff7efd6c6ffffefffffffdee7effff7deeff7ffffe7c6ffffff +ffffffdee7efffefd6e7eff7ffe7c6ffffffeff7fff7e7c6ffffffffffffe7e7f7ffefceffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff +ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffff +ffffffffffffffffffffffffffffffffffffded6e7ded6c6decec6efd6c6eff7efefd6ceefffefe7d6cedecebdded6c6efd6c6ffffffffffffffffffefefffe7 +d6c6decebdefd6c6efffefefd6ceeff7eff7decefffff7eff7ffdecebdded6c6efcec6ffffefffffffffffffffffffffffffeff7ffded6cedecec6e7d6c6ffef +d6ffffffefefffe7d6c6decebdf7dec6fffff7f7ffffdececeded6c6decec6fff7dedeced6ded6c6ffefd6f7ffffdececeded6c6decec6fff7dedeced6ded6c6 +ffefd6ffffffe7efffded6c6decec6efd6c6ffffeff7ffffdececee7d6c6decebde7d6c6efefe7e7d6cedecebdf7dec6fffff7fffffffffffff7ffffe7d6cee7 +d6cedecebde7d6c6ffffe7ffffffe7efffded6c6decec6efd6c6ffffeff7ffffdececee7d6c6e7cebdeff7efdecec6e7d6c6e7cebdffffefffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffe7dee7ffffe7ffffffffffffffffffe7d6e7ffffe7ffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7de +e7ffffe7ffffffffffffffffffffffffefdee7ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffe7e7eff7debdffffffffffffffffffffffffffffffffffffffffffffffffffffffe7eff7ffefceffffffdee7eff7dec6e7efffffe7ceff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffe7eff7ffe7c6ffffffffffffffffffffffffe7e7f7ffefceffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 +deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffdedee7e7d6c6fff7d6fffffff7ffffefd6d6ffffefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7ffffefceceffff +f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff +ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef +e7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffff7efeff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffff7f7efefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 +e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7dec6c6bdb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5ad +adb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5ad +b5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbd +b5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5ad +adb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5ad +b5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbd +b5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5ad +adb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5ad +b5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbd +b5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5ad +adb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5ad +b5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbd +b5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5ad +adb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5ad +b5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbd +b5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5ad +adb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5ad +b5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbd +b5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5ad +adb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5ad +b5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adc6bdbde7e7e7ffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff +ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff +ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 +f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 +efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef +eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 +f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 +efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7effff7f7ffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef +eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7 +f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7 +efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7ef +eff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeffff7f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff +ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffefe7e7f7f7efffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffff7efefefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdededeb5 +b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5 +b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5 +adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5 +b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5 +b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5b5b5b5adadadb5b5b5b5b5b5e7e7e7ffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefefe7f7efefffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefefe7e7ffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffb5b5b5e7e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffefefefb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff +ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdffff00006b000000000000420000ffde94ffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +63b5ffbd6b00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffff94e7ff +943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffbdffff630063ffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdffff630063ff +ffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffff +ffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff94 +3939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffefefe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7 +ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 +deffffffffffffffffffffffffffffffffffffffffffffffffbdffff00006b000000420000ffde9494e7ff943939ffffe7ffffff94e7ff943939ffffe7bdffff +00006b000000000000ffbd6bffffff94deff000042000000944200ffffdeffffff94deff00004200000042420094393994e7e794393994e7e7943939ffffe7ff +ffff94e7ff943939ffffe794deff000042000000000000943900ffffe7bdffff6b006bffffbdffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffff +ffffffffffffffffffffffffffffffffff94deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffff3994deffbd6bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffff6bbdffbd6b00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdef7ffb5b5b5a5a5b5a5a5a5debd +a5fffff7ffffffb5d6f7a5a5a5a5a5a5a5a5a5d6b5a5fffff7b5d6f7a5a5a5a5a5a5f7debdffffffb5d6f7a5a5a5a5a5a5f7d6b5fffffff7ffffa5bddeffe7c6 +ffffffc6e7ffefcea5ffffffffffffd6f7ffa5a5bda5a5a5d6b5a5fffff7def7ffd6b5b5fffff7ffffffdef7ffa5a5b5a5a5a5b5b5a5debdbdfffff7e7ffffc6 +a5c6ffffefffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffb5b5b5b5b5b5bdbdbdb5b5b5b5b5b5b5b5b5bdbdbdb5b5b5b5b5b5b5 +b5b5bdbdbdb5b5b5b5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffff4294e7000000000000de943994e7ff393939000042000000944200ffffde94e7ff94393994e7e7943939bdffe700006b6b0000ffffbdbdffff6b006b +ffffbdffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff +ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffdeffff003994ffb563ffffff94deff6b003994deb594 +3939ffffdeffffff94deff943939deffde003994ffb563ffffffb5ffff39006bdede94003994ffb563ffffff3994debd6b00deffff003994ffb563ffffff3994 +de94390094dede94393994dede943939ffffdeffffff94deff943939deffde003994ffb563ffffff94deff943939ffffdeffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffefe7e7ffffffffffff00399400000000000039000094bd9494393994dede393939000039000000943900ffffdeffffffffffffffffff +ffffff94e7ff000039000000393900943939ffffdebdffff000063000000390000ffde9494deff943939ffffdeffffff3994de000000000000000000943900ff +ffe73994de00000000000039390094393994dede943939bdffe70000636b0000ffffb5ffffffffffffffffffb5ffff6b006bffffb594deff943939ffffe794de +ff000039000000000000000000ffbd6bffffff94e7ff943939ffffdeffffffffffffffffff94deff943939ffffe7ffffffffffffffffff3994e7de9439ffffff +ffffff006bbd000000000000de9439ffffffffffff6bbdffb56300ffffffffffffffffffdeffff6b3994ffffb5ffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffd6f7ffc6a5b5ffffe7ffffffb5d6f7e7c6a5e7ffffc6a5c6ffffe7ffffffc6e7ffd6b5a5d6f7f7b5a5b5fff7d6f7ffffb5b5d6d6e7d6b5a5b5ff +f7d6f7ffffb5b5d6fff7d6e7ffffa5a5c6f7d6b5ffffffa5c6e7c6a5a5ffffe7f7ffffa5b5d6ffe7c6ffffffb5d6f7e7c6a5d6f7ffd6b5b5fffff7f7ffffa5b5 +d6ffe7c6ffffffb5d6f7d6b5a5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffb5b5b5ffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffff94deff390039ffe794deffff39399494b5946b0039ffffb5ffffff3994debd6b0094deff94393994dede94 +393994dede943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffff94deff943939ffff +deffffff94deff943939ffffde94deff000039000000943900ffffde94deff943939ffffdeffffff94deff943939ffffdebdffff000063000000390000ffde94 +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff94e7 +ff6b0039ffffbdffffffffffffffffff94e7ff943939ffffe7ffffff94e7ff94393994e7e7943939ffffe7ffffffffffffffffff94e7ff943939ffffe7ffffff +94e7ff94393994e7e7943939ffffe7ffffff94e7ff94393994e7e794393994e7e7943939ffffe7ffffff94e7ff94393994e7e7943939ffffe7ffffff94e7ff94 +3939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff3994debd6b00ffffffffffff94deff94424294dede6b0042ff +ffbdffffff3994debd6b00ffffffffffffffffffe7ffff003994ffbd6bffffff4294e7943900e7ffe7003994ffbd6bffffff94e7ff6b003994e7bd943939ffff +e7bdffff6b006bffffbdffffff6bbdff944200bdffde6b006bffffbdffffff6bbdff94420094dede94424294dede944242ffffdeffffffffffffffffffffffff +6bbdffbd6b00ffffff94deff944242ffffde94e7ff6b0039ffffbdffffff94e7ff6b0039ffffbd94deff944242ffffde94e7ff6b0039ffffbd94deff944242ff +ffdeffffffffffffffffff3994dee79442ffffff4294e7bd6b00ffffffdeffff004294ffbd6bffffffdeffff424294ffde94ffffffffffffffffff006bbdffbd +6bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffff000000ffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5effff7b5a5c6fff7d6ffffffdef7ffd6b5b5ffff +f7ffffffffffffa5c6e7c6a5a5ffffe7ffffffffffffa5c6e7c6a5a5ffffefc6e7ffd6d6b5d6b5c6effff7d6b5c6b5d6e7ffe7c6def7ffd6b5b5fffff7ffffff +def7ffd6b5b5d6f7f7d6b5b5fffff7d6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5 +ffffffffffffffffffffffffbdbdbdffffffffffffffffffffffffd6d6d6dededeffffffffffffffffffffffffffffffbdbdbdffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff006bbd6b000094e7bd943939ffff +e7ffffff94e7ff94393994e7e794393994e7e794393994e7e7943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7 +ffffffffffffffffffffffff94e7ff943939ffffe7ffffff94e7ff943939e7ffe7003994ffbd6bffffff4294e7bd6b0094e7ff943939ffffe7ffffff94e7ff94 +3939e7ffe7003994ffbd6bffffff94e7ff6b0039ffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000ffffffffffffffffffffffffffffffffffffffffffefe7deffffffff +ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff +ffffffffffffffffffffffffffffffffffff94deff00003900000000000000000039000094b594943939ffffdeffffff94deff94393994dede943939ffffdeff +ffffffffffffffff94deff943939ffffdeffffff94deff94393994dede943939ffffdeffffff94deff94393994dede94393994dede943939ffffdeffffff94de +ff94393994dede943939ffffdeffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffdeffff0039 +94ffbd6bffffff94deff94393994e7e7943939ffffdeffffff94e7ff943939ffffdeffffffffffff94deff943939ffffdeffffff94deff94393994dede6b0039 +ffffb5ffffffffffffffffff94deff943939ffffdebdffff390063ffde94ffffff94e7ff94393994dede943939ffffe7ffffff94deff94393994e7e794393994 +dede943939ffffe7ffffffffffffffffffffffff3994dede9439ffffff94e7ff943939ffffde94deff6b0039ffffb5ffffffdeffff393994ffde9494deff9439 +39ffffe73994de393939ffb56394e7ff943939deffde003994000000000000000000000000e79439ffffffffffffffffffffffff3994dede9439ffffffffffff +3994dede9439ffffffffffffffffff3994dede9439ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffff000000000000000000ffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffd6f7ffc6a5b5 +ffffe7d6f7ffa5a5b5a5a5a5a5a5a5d6b5a5f7fff7a5b5d6a5a5a5f7d6b5fffffff7ffffa5b5d6a5a5a5f7d6b5ffffffffffffa5c6e7ffe7c6b5c6e7d6e7d6e7 +c6b5c6e7fff7d6b5d6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5d6f7f7d6b5b5fffff7d6f7ffd6b5b5fffff7ffffffd6f7ffd6b5b5fffff7ffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffb5b5b5ffffffffffffffffffd6d6d6c6c6c6c6c6c6e7e7e7ffffffffffffffff +ffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7ffff +003994000000de9439ffffff94deff943939ffffdeffffff94deff6b003994deb594393994dede94393994dede943939ffffdeffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffefefe7ffffffffffffffffffffffff94deff943939ffffdeffffff94deff94393994dede943939ffffdeffffff94de +ff94393994dede943939ffffdeffffff94deff94393994dede6b0039ffffb5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000ffffffffff +ffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffe7ffff393994ffe794ffffff94e7ff94393994e7e7000039ffbd +6bffffff94e7ff943939e7ffe7003994ffbd6bffffffbdffff39006be7e794003994ffbd6bffffff4294e7bd6b00e7ffff003994ffbd6bffffff6bbdff943900 +94e7e794393994e7e7000039ffbd6bffffff94e7ff943939e7ffe7003994ffbd6bffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffff7efefffffffffffffffffff94e7ff6b0039ffffbd94deff94424294dede944242ffffdeffffff94deff6b0042ffffbdffffffffffff94e7ff94 +3939ffffe7ffffff94e7ff94393994e7e700003900000000000000000039000094bd94943939ffffe7ffffff94e7ff00003900000000000094420094dede9442 +42ffffdeffffff94deff94424294dede94424294dede944242ffffdeffffffffffffffffffffffff4294e7de9439ffffff94deff944242ffffde94e7ff6b0039 +ffffbdffffffbdffff6b006bffffbd94deff944242deffde6b42946bbdbdbd6b0094deff944242ffffde4294e7de9439ffffff3994dee79442ffffffffffffff +ffffffffffdeffff004294ffbd6bffffffffffffbdffff6b006bffffbdffffffffffff3994dee79442ffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000ffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffdef7ffb5a5b5fff7d6ffffffbddef7e7c6a5ffffffffffffffffffffffffd6f7ffd6b5b5effff7c6a5c6ffffe7d6f7ffcea5bde7ffe7c6a5c6ffffe7def7 +ffc6a5b5f7ffe7b5b5d6fff7dec6e7ffa5a5a5ffe7c6def7ffd6b5b5f7fff7a5b5d6ffefceffffffb5d6f7e7c6a5def7ffb5a5b5fff7d6f7ffffa5bddeffe7c6 +ffffffc6e7ffdebda5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffb5b5b5fffffffffffff7f7f7 +c6c6c6c6c6c6c6c6c6cececeffffffffffffffffffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffbdffff6b006bffffbd94e7ff6b003994e7bd390039ffe794ffffff4294e7bd6b0094e7ff94393994e7e794393994e7 +e7943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff006bbd000000424200943939ffffe7ffffff +94e7ff94393994e7e7943939ffffe7ffffff94e7ff94393994e7e7943939ffffe7ffffff94e7ff94393994e7e7000039000000000000000000390000ffe79400 +6bbd000000bd6b00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffff000000000000000000000000000000ffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 +e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffff94deff +000039000000390000ffde9494deff943939006394000000000000ffbd6bffffffbdffff000063000000000000ffbd6bffffff94e7ff000039000000630000ff +ffbdffffff94deff00003900000000000094390094dede94393994dede943939006394000000000000ffbd6bffffff94e7ff000039000000000000943900ffff +debdffff630063ffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffff3994deb5630094e7ff94393994dede390039ffe794ffff +ff3994deb56300ffffffffffffffffffdeffff003994ffb563ffffff63b5ff943900deffde393994ffde94ffffff94deff94393994dede943939ffffdeffffff +ffffffffffffffffff94deff94393994e7e7943939ffffdeffffff94e7ff94393994dede94393994e7e7943939ffffdeffffffffffffffffffffffff3994dee7 +9439ffffff94deff943939ffffe794deff000039000000000000390000ffde94ffffff94e7ff94393994dede943939bdffe794396394dede943939ffffe7b5ff +ff6b006bffffb53994e7de9439ffffffffffffffffff3994de000000ffb563ffffffffffffffffffffffff3994e7ffb563ffffffffffff3994e7de9439ffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000 +0000000000000000000000ffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffd6f7ffc6b5b5a5b5c6a5a5a5c6a5a5ffffe7ffffffa5c6e7a5a5a5a5a5a5a5a5a5ffe7c6ffffffb5d6f7 +a5a5a5a5a5a5f7d6b5ffffffb5d6f7a5a5a5a5a5a5f7d6b5c6e7ffc6a5a5ffffe7e7ffffc6a5c6ffffe7e7ffffb5a5c6fff7d6d6f7ffa5a5b5a5a5a5c6a5a5ff +ffe7d6f7ffc6b5b5a5b5c6c6a5a5d6f7e7a5a5b5a5a5a5a5a5a5d6b5a5fffff7e7ffffc6a5c6ffffe7ffffffffffffffffffffffffffffffffffffffffffffff +ffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffff +ffffffffffffffffb5b5b5fffffff7f7f7cececebdbdbdf7f7f7cececec6c6c6e7e7e7ffffffffffffffffffb5b5b5ffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3994de000000000000de943994deff6b3939003963000000 +630000ffffbd94deff94393994dede6b3939003963000000943900ffffe7b5ffff6b006bffffb5ffffffffffffffffffffffffffffffffffffefe7e7ffffffff +ffffffffffffffff94deff000039ffb563ffffff94deff943939deffde003994ffb563ffffff3994debd6b0094deff000039ffb563ffffff94deff943939deff +de393994ffde94ffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000ffffffffffffffffffffffffefe7deffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff006bbd000000000000 +6b000094debd94424294dede6b424200396b0000006b0000ffffbdffffffffffffffffffffffff94deff000042000000000000943900ffffe794deff00004200 +0000420000bdde9400006b0000006b0000ffffbd006bbd000000000000000000ffbd6b94deff944242ffffdeffffff94deff94424294dede6b424200396b0000 +00943900ffffe7ffffffffffffffffff6bbdffbd6b00ffffff94deff944242ffffde94e7ff6b0039ffffbdffffff94e7ff943939ffffe794deff9442426bbdde +e79442ffffff426bbd94bd94944242ffffdeffffff6bbdffbd6b003994dee79442ffffffffffffffffffffffff94deff6b0042ffffbdffffffffffffffffff94 +deff944242ffffdeffffff006bbdffbd6bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6f7ffd6b5b5fffff7ffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffbdbdbdf7f7f7ffffffefefefe7e7e7ffffffefefefc6c6c6cececeffffffffffffffffff +bdbdbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffff94e7ff943939006b94000000000000ffbd6bffffff94deff0000420000006b0000ffffbd +94e7ff943939006b94000000000000ffbd6bffffff94deff000042000000420000ffde94ffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff +ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff94393994dede94 +3939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffff94deff943939ffffdeffffffffffffffffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffff94e7ff94393994dede943939ffffe7ffffffffffffffffffffffffb5ffff6b006bffffb594e7ff943939ffffde94deff6b0039ffffb5ff +ffffb5ffff6b006bffffb594deff943939396b94ffde94ffffff63b5ff6b6b39943939ffffdeffffffe7ffff393994396b6bde9439ffffffffffffffffffffff +ffe7ffff393994ffde94ffffffffffffffffffffffff3963b5ffe794deffff6b3994ffffb5ffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef +e7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6 +f7ffd6b5b5fffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffadadadfffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffb5b5b5f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7cececebdbdbdefefefffffffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff94393994dede94393994dede943939 +ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefefe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffff94deff944242ffffdeffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffbdffff6b006bffffbdffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff94424294dede944242ffffdeffffffffffffffffffffffffffffff3994deffbd +6b94deff944242ffffde94e7ff6b0039ffffbdffffff94e7ff943939ffffe794deff424242943939ffffe7ffffff94e7ff000039944200ffffdeffffffffffff +94e7ff000039e79442ffffff6bbdff943900ffffe7bdffff6b006bffffbdffffffffffffffffffffffff94e7ffbd6b396bbdffbd6b00ffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffd6f7ffdebdbdfffff7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +b5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffff +ffffffffb5b5b5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffe7e7e7c6c6c6cececeffffffffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffff +ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffffffffffffffffffff +ffffffffffffff006bbd000000ffbd6bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffe7ffffffffffff +ffffffffffffffffffffffffffffffbdffff63006394debd943939ffffe794deff000039000000000000390000ffde94ffffff94e7ff000039bd6b00ffffffff +ffffdeffff003994943900ffffe7ffffffffffffffffff006bbdde9439ffffffffffff006bbd000000000000ffb563ffffff3994de0000000000000000000000 +00000000630000ffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffb5b5b5f7f7f7f7f7f7f7f7f7efefeff7f7f7efefeff7f7f7c6c6c6c6c6c6f7f7f7ffffffb5b5b5ff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff +ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7ef +efffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffbdbdbdf7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7dededecececefffffff7f7f7bdbdbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff +ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffadadadff +fffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffff +b5b5b5f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffffb5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefefe7ffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffb5b5b5fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7ffffffb5b5b5ffffffffffffffffffffffffb5b5b5b5b5b5bdbdbdb5b5b5b5b5b5b5b5b5bdbdbdb5b5b5b5b5b5b5b5b5bdbdbdb5b5b5b5b5b5ffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff +ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7f7f7ef +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefefe7e7ffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5b5b5efefefffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffe7e7e7b5b5b5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7f7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffff7efefefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffefe7e7c6bdbdbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5 +b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adad +bdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5 +b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5 +b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adad +bdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5 +b5adbdb5b5b5adadcec6c6e7e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7e7b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5 +b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5b5dededeffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7e7cec6c6b5b5adbdb5b5b5adadbdb5b5b5 +b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5 +b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adad +bdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5 +b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adcec6c6e7e7e7ffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 +deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff +ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f7f7efefefefe7f7efe7f7ef +e7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efef +efefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7 +efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7ef +e7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efef +efefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7 +efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7ffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f7f7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efef +efefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7 +efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7ef +e7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efef +efefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7 +efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7ef +e7f7efefefefe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffff7efeff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +f7f7efefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efeff7efefffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffff7f7efefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 +e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff +ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef +e7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6bbdff +000000de9439ffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffbdffff6b006bffffbdffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +f7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff +ffffffffffffffffffffffffffbdffff000063000000000000ffbd6bffffff94e7ff000039000000943900ffffe794deff943939ffffde94e7ff943939ffffde +94deff94393994dede393939000039000000943900ffffde94deff943939ffffdeffffffb5ffff00006b000000390000ffde94ffffff3994de000000000000e7 +9439ffffff3994de000000000000de943994deff943939ffffe794deff000039000000943900ffffde94deff943939ffffe7ffffff94deff943939ffffe7b5ff +ff6b006bffffb5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdffff000063000000390000ffde9494deff943939ffff +deffffff94deff943939ffffdebdffff000063000000000000ffbd6b94deff943939ffffdeffffffffffff006bbdde9439ffffff94deff393939000039000000 +943900ffffe7b5ffff00006b63000094e7bd943939ffffde94deff000039000000943900ffffde94e7ff943939ffffdeffffff94e7ff943939ffffdeb5ffff6b +006bffffb5ffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef +e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff +ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffe7ffff003994ffbd6bffffffbdffff39006be7e794003994ffbd6bffffff4294e7bd +6b0094e7ff943939ffffe794deff944242ffffde94e7ff94393994e7e76b0039ffffbdffffff4294e7bd6b0094e7ff943939ffffe7deffff004294ffbd6bffff +ff94deff6b004294debd420042ffde94e7ffff39399494bd94390039ffe794deffff42429494bd94944242deffde004294ffbd6bffffff3994debd6b0094deff +944242ffffdeffffff94deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7ef +efffffffffffff94deff000042000000000000000000ffbd6bffffffffffffbdffff00006b000000420000ffde9494e7ff943939ffffe7ffffff4294e7000000 +000000000000944200ffffde4294e700000000000039390094424294dede944242bdffde00006b6b0000ffffbdffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7ffff003994 +ffbd6bffffff94e7ff6b003994e7bd943939ffffe7ffffff94e7ff943939e7ffe7003994ffbd6bffffffbdffff39006b94bd94943939ffffe7ffffffbdffff00 +006b944200ffffde94e7ff6b0039ffffbdffffff4294e7bd6b0094e7ff943939ffffe794deff944242deffde004294ffbd6bffffff3994debd6b0094deff9442 +42ffffdeffffff94deff944242ffffdefffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff94deff944242ffffdeffffffffffff +4294e7943900ffffe794deff000042000000944200ffffde94e7ff943939ffffe7ffffff94e7ff943939ffffe7bdffff00006b000000420000ffde94ffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffff949494949494949494949494949494949494949494949494949494949494949494949494949494ffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff +ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffffffff +ffffffff94deff943939ffffdeffffff94deff94393994dede943939ffffde94deff943939ffffe794deff94393994dede943939ffffdeffffff94deff943939 +94dede943939ffffde94e7ff630039ffffbdffffffffffffffffffffffffffffffffffff0063b56b0000ffffb5ffffffffffff006bbd63000094e7bd94393994 +dede943939ffffe7ffffff94deff94393994e7e7943939ffffdeffffff94e7ff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff94deff943939ffffe7ffffffdeffff003994ffbd6bdeffff003994ffb563ffffff94deff6b +003994deb5943939ffffdebdffff630063ffffbdffffff6bbdff943900bdffe7630063ffffbdffffff6bbdff94390094dede94393994e7e7943939ffffdeffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000ffffffffffff +ffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffff94deff6b0039ffffb5ffffffffffffffffff94deff943939ffffdeffffff94deff94393994dede943939ffffdeffffffffff +ffffffff94deff943939ffffdeffffff63b5ffbd6b003963b5ffe79494deff943939ffffdeffffff94deff94393994dede943939ffffde94deff94393994e7e7 +943939ffffdeffffff94e7ff94393994dede943939ffffe7ffffff94deff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ff +ffffffffff94e7ff943939ffffdeffffffbdffff000063943900deffde003994ffb563ffffff3994debd6b0094deff943939ffffdeffffff94deff943939deff +de003994ffb563ffffff94deff6b0039ffffb5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffff000000ffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8c8c8cfffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7 +f7ffffff8c8c8cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff +ffffffffffff94e7ff943939ffffe7ffffffffffffffffff94e7ff943939ffffe7ffffff94e7ff94393994e7e7943939ffffe794deff944242ffffde94e7ff94 +393994e7e7943939ffffe7ffffff94e7ff6b003994e7bd943939ffffe794deff000042000000000000000000420000dede94004294000000e79442ffffffe7ff +ff003994000000de9439ffffff94deff94424294dede944242ffffdeffffff94deff94424294dede944242ffffdeffffff94deff944242ffffdeffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff94deff944242ffffdeffffffffffff94e7 +ff94393994e7e76b0039ffffbdffffffffffffffffff94e7ff943939ffffe7bdffff42006bffde94ffffff94deff94424294dede944242ffffdeffffff94deff +94424294dede94424294dede944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffff000000000000000000ffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff00003900000000000000000039000094bd94943939ffffe7ffffff +94e7ff94393994e7e7943939ffffe7ffffffffffffffffff94e7ff943939ffffe7ffffff006bbdffbd6b6bbdffbd6b0094e7ff943939ffffe7ffffff94e7ff6b +003994e7bd943939ffffe794deff94424294dede944242ffffdeffffff94deff94424294dede944242ffffdeffffff94deff944242ffffdeffffffffffffffff +fffffffffffffffffffffffffffffffff7efefffffffffffff94deff944242ffffdeffffff3994de6b6b4294393994e7e7943939ffffe7ffffff94e7ff943939 +94e7e7943939ffffe7ffffff94e7ff94393994e7e76b0039ffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000ffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff949494f7f7f7d6d6d6ded6d6 +e7e7e7e7e7e7efefefefefeff7f7f7efefeff7f7f7f7f7f7949494ffffffffffffffffffffffffffffffbdffff00006b6b000094debd94424294dede944242ff +ffde94e7ff943939ffffe794deff944242ffffdebdffff00006b000000390000ffe794ffffff4294e7000000000000de9439ffffffbdffff6b006bffffbdffff +ffffffffffffffffffffe7ffff003994000000000000944200ffffde94e7ff943939ffffe7ffffff94e7ff94393994e7e76b393900426bbd6b00ffffffbdffff +00006bde9439ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff +ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffdeffff003994ffb563ffffffb5ffff39006bdede94003994ffb563ffffff3994debd6b0094de +ff390039ffde9494e7ff390039ffde9494deff94393994dede390039ffde94ffffff3994debd6b0094deff390039ffde94deffff393994ffe794ffffff94deff +943939bdffe7630063ffffbd94deff6b0039b5ffb56b006bffffb594e7ff63003994debd943939e7ffe7003994ffbd6bffffff3994e7b5630094deff000039ff +bd6bffffff94deff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffff +ffffff94e7ff943939ffffdeffffffffffffb5ffff6b006b94deb500003900000000000000000039000094b594943939ffffdeffffff94deff00003900000000 +000094390094dede943939ffffe7ffffff94deff94393994e7e794393994dede943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000ffffffffffffffffffffffffffffffefe7e7ffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdeffff393994ffde94ff +ffff94deff94393994dede000039ffb563ffffff94deff943939deffde003994ffb563ffffffb5ffff39006b94b594390039ffde9494deff630039ffffbdb5ff +ff6b006b94deb5390039ffde94ffffff3994debd6b0094deff943939ffffde94e7ff943939deffde003994ffbd6bffffff3994deb5630094e7ff000039ffbd6b +ffffff94e7ff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff94deff943939ffffe7b5ffff94396b94dede94 +393994dede943939ffffdeffffff94deff94393994dede943939ffffdeffffff94deff94393994dede000039000000000000000000390000ffde94ffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000 +ffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffff94948cffffffc6c6c6efefefefefeff7f7f7f7f7f7fffffff7f7f7ffffffe7e7e7ffffff94948cffffffffffffffffffffffffffffff94de +ff943939ffffde94e7ff94393994dede943939ffffe794deff943939ffffde94e7ff943939deffde003994ffbd6bffffff94deff63003994e7bd390039ffde94 +deffff393994ffde94ffffffffffffffffffffffffffffffffffffffffff0063b5ffbd6bffffffffffff63b5ffbd6b0094deff943939ffffdeffffff94deff94 +393994dede943939deffde003994ffb563006bbdde9439ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffbdffff00006b000000000000ffbd6b +ffffff94deff0000420000006b0000ffffbd94e7ff6b393900426b000000bd9442003994000000de943994e7ff6b393900426b0000006b0000ffffbd94e7ff6b +393900426b6b000094e7bd000039000000390000ffe794ffffff4294e7000000000000de9439ffffff3994de000000000000e7944294deff944242ffffde94e7 +ff0000390000006b0000ffffbd94deff944242006b94000000000000ffbd6bffffffbdffff6b006bffffbdffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffff7efefffffffffffff94deff944242ffffdeffffffffffffe7ffff393994e7e794393994ffe794ffffff94e7ff94393994e7 +e7943939ffffe7ffffffffffffffffffffffff94deff94424294dede944242ffffdeffffff94deff94424294dede94424294dede944242ffffdeffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000ff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffff94deff000042000000420000ffde9494e7ff943939006b94000000000000ffbd6bffffffbdffff00006b000000000000ffbd6b +94e7ff6b393900426b000000bd6b00ffffffffffff006bbd6b6b426b393900426b0000006b0000deffbd00429400000094420094dede944242ffffde94e7ff00 +00390000006b0000ffffbd94deff944242006b94000000000000ffbd6bffffffbdffff6b006bffffbdfffffffffffffffffffffffffffffff7efefffffffffff +ff94deff944242ffffde006bbdffbd6b94e7ff943939e7ffe7003994ffbd6bffffff4294e7bd6b0094e7ff000039ffbd6bffffff94e7ff943939e7ffe7393994 +ffe794ffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffff000000000000000000000000000000000000000000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffff949494f7f7f7cec6c6e7e7e7f7f7f7f7f7f7fffffff7f7f7fffffff7f7f7efefe7f7f7f7 +949494ffffffffffffffffffffffffffffff94e7ff943939ffffe794deff94424294dede944242ffffde94e7ff943939ffffe794deff94424294dede6b0042ff +ffbdffffffffffffffffffffffffffffffffffff006bbd6b0000ffffbdffffffffffffffffffffffffffffffffffffdeffff424294ffde94ffffffffffff94e7 +ff94393994e7e7943939ffffe7ffffff94e7ff94393994e7e7943939ffffe794deff000042943900ffffe7ffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff94deff943939ffffe7ffffffffffffb5ffff6b006b +ffffb594deff000039000000390000bdde94000063000000630000ffffbd0063b5000000000000000000ffb56394e7ff943939ffffdeffffff94e7ff94393994 +dede63393900396b000000943900ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94de +ff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffefe7e7ffffffffffff94e7ff94393994dede943939ffffe794deff943939ffffde94e7ff000039000000630000ffffbd94deff94 +3939006394000000000000ffbd6bffffff94e7ff000039000000390000ffe794ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8c8c8cffffffc6bdbde7e7e7e7e7e7ef +efeff7f7f7f7f7f7f7f7f7f7f7f7dededeffffff8c8c8cffffffffffffffffffffffffffffff94deff943939ffffde94deff94393994e7e7943939ffffde94de +ff943939ffffde94deff94393994e7e7000039000000000000000000390000dede94003994000000de9439ffffffffffffffffffffffffffffffffffffffffff +ffffffbdffff630063ffffbdffffffffffffb5ffff6b006b94deb5943939ffffdeffffff94deff94393994dede943939ffffdebdffff000063bd6b00ffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 +deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff94 +deff944242ffffdeffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffff94deff94424294dede944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffff94e7ff943939ffffe794deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff94deff944242006b94ffbd6bffffff94e7ff943939ffff +e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffff949494f7f7f7c6bdbddededee7e7e7e7e7e7efefefefefeff7f7f7efefefdededef7f7f7949494ffffffffffffffffffffffffffffff94e7ff943939 +ffffe794deff94424294dede420042ffde9494e7ff390039ffe79494deff944242deffde424294ffde94ffffff94deff944242bdffde6b006bffffbd94e7ff6b +0039ffffbdffffffffffffffffffffffffffffffffffffbdffff6b006bffffbdffffffffffffbdffff6b006b94e7bd000039ffbd6bffffff94e7ff94393994e7 +e7943939ffffe7006bbdbd9442003994ffbd6bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff +ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffefe7e7ffffffffffff94e7ff943939ffffdeffffffe7ffff003994ffbd6bffffffffffffffffffffffffffffffffffffb5ffff6b006b +ffffb5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff94393994dede943939ffffe7ffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff94deff +000039943900ffffdeffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffff94948cffffffbdb5added6d6ded6d6e7dededededee7e7e7e7e7e7efefefcececeffffff94948cff +ffffffffffffffffffffffe7ffff00399400000094390094e7e794393994dede63393900396b000000bd9439003994000000de9439ffffff94deff0000390000 +00390000ffde94ffffff3994de000000000000e79439ffffffbdffff630063ffffbdffffffffffffffffffbdffff630063ffffbdffffffffffffb5ffff6b006b +94deb5943939006394000000000000ffbd6b94deff943939006394943900ffffde94deff000039ffbd6bffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff94deff000042000000000000000000ffbd6bffffffffffffff +ffffffffffffffffffffffffffffffffff006bbd000000ffbd6bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff9442 +42ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffff7efefffffffffffff94deff420042ffde94ffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff949494f7f7f7bdbdb5d6d6ceded6d6ded6d6e7de +dee7dedeefe7e7e7e7e7cececef7f7f7949494ffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbd +ffff6b006bffffbdffffffffffffbdffff6b006bffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +8c8c8cffffffbdb5added6d6d6ceceded6ced6d6cededed6deded6e7e7dec6c6c6ffffff8c8c8cffffffffffffffffffffffffffffff94deff943939ffffde94 +deff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffbdffff630063ffffbdffffffffffffb5ffff6b006bffffb5ffffffffffffffffffffffffffffff94deff943939 +ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffff949494f7f7f7c6bdb5bdb5b5bdbdb5bdb5b5c6bdb5bdb5b5c6bdb5bdbdb5cec6c6f7f7f7949494ffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdffff6b006bffffbdffffffffffffbdffff6b006bffffbdff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 +e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94948cfffffff7f7f7fffffff7f7f7fffffff7f7f7ffffff +f7f7f7fffffff7f7f7ffffff94948cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efeff7efefffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f7f7efe7deffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffff7efeff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +f7f7f7efe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94949494 +9494949494949494949494949494949494949494949494949494949494949494949494ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff +ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffe7e7e7c6c6c6b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5ad +adbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5 +b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5 +b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5ad +adbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5 +b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5c6bdbde7 +e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7dec6c6bdb5adadbdb5b5b5adadb5b5adb5ad +adbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5 +b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5 +b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5ad +adbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5 +b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5b5adadb5 +b5adb5adadbdb5b5b5adadb5b5adb5adadbdb5b5c6bdbde7e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff +ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff +ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7 +eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7 +f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7 +efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7 +eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7 +f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7 +efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeffff7f7ffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7 +f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7 +efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7 +eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7 +f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7 +efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeff7efe7f7f7eff7efe7f7efeffff7f7ffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff +ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7f7f7ef +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefefe7e7ffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7f7f7efffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffff7efefefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8c8c8c94949494948c9494948c8c8c94 +949494948c9494948c8c8c94949494948c9494948c8c8cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 +deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffff949494f7f7f7fffffff7f7f7fffffffffffffffffffffffffffffff7f7f7fffffff7f7f7949494ffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff +ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff9439 +39ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6b +bdff000000de9439ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffff94948cffffffcececedededeefe7e7bd9c94bd9c94fff7f7efefeff7f7f7efefefffffff94948cff +ffffffffffffffffffffffffffffb5ffff00006b63000094e7bd94393994dede943939ffffe794deff943939ffffde94e7ff943939ffffdeb5ffff00006b0000 +00390000ffde94ffffff3994de000000000000e79439ffffffbdffff630063ffffbdffffffffffffffffffffffffdeffff003994de9439ffffffffffffbdffff +390063ffe794ffffff94deff94393994e7e7943939ffffdeffffff94e7ff943939ffffde94deff000039000000393900943939ffffe794deff00003900000094 +3900ffffdeffffffdeffff003994ffb563ffffff63b5ffbd6b00ffffffffffff3994de000000000000de9439ffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff94e7 +ff943939ffffe794deff944242ffffde4294e7000000000000000000944200ffffdeffffff94deff420042ffde94ffffffffffff94e7ff000039000000943900 +ffffe794deff944242ffffdeffffffbdffff6b006bffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffff94deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffe7ffff003994000000000000000000000000000000bd6b0094e7ff943939ffffe794deff9442 +42ffffdeffffffffffffffffffffffffffffff6bbdff000000000000bd6b00ffffffffffffffffffffffff3994dee79442ffffffffffffffffff4294e7de9439 +ffffffffffffbdffff6b006bffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffbdffff6b006bffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff949494f7f7f7d6cecef7efefc6a5949c634a9c63 +52d6bdb5ffffffffffffefefeff7f7f7949494ffffffffffffffffffffffffffffff94e7ff943939ffffe794deff94424294dede944242ffffde94e7ff943939 +ffffe794deff944242deffde004294ffbd6bffffff94deff6b004294debd420042ffde94e7ffff393994ffe794ffffffffffffffffffffffffffffffffffffff +ffffbdffff00006bbd6b00ffffffffffff6bbdff000000de9439ffffff94deff94424294dede944242ffffdeffffff94deff944242deffde004294ffbd6bffff +ff3994de944200deffde004294ffbd6bffffff3994debd6b00ffffffbdffff00006be79442ffffff006bbd6b0000ffffbd94deff420042ffde94e7ffff393994 +ffe794ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff +ffffffffffffffffffffffffffffffffffff94deff943939ffffde94deff943939bdffe7630063ffffbdffffff6bbdff943900ffffdeffffff3994e7000000de +9439ffffffe7ffff003994ffbd6bffffff3994e7b5630094deff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff00006b6300 +0094e7bd943939ffffdeffffff3994e7000000000000000000943900ffffde94deff00003900000039390094393994dede943939b5ffde00006b63000094e7bd +943939ffffde94deff000039000000943900ffffde94e7ff943939ffffdeffffff94e7ff943939ffffde3994de00000000000000000094390094e7e7943939ff +ffdeffffffffffffdeffff00399400000000000000000000000000000039390094393994dede393939000039000000943900ffffdeffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3994e7b56300ffffffffffffffffff +ffffffffffff94deff943939ffffde94deff943939ffffe7ffffffffffffffffffffffffb5ffff6b006bffffb5e7ffff003994ffbd6bffffffffffffffffff39 +94dede9439ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff39006bffde94ffffffffffffffffff94deff000039943900ffffe7 +deffff003994ffb563ffffff63b5ffbd6b00ffffffffffff3994de000000000000000000943900ffffdeffffff006bbdde9439ffffffffffff3994e700000000 +0000de9439ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +8c8c8cffffffd6d6ceefe7e7945a4a9c634a9c634aad7b63ffffffffffffe7e7e7ffffff8c8c8cffffffffffffffffffffffffffffff94deff943939ffffde94 +deff94393994e7e7943939ffffde94deff943939ffffde94deff94393994e7e7630039ffffbdffffffffffffffffffffffffffffffffffff0063b56b0000ffff +b5ffffffffffffffffffffffffffffffffffffffffff63b5ff6b6b00943963ffffdeffffff3994e7949463bd6b39ffffff94e7ff94393994dede943939ffffe7 +ffffff94deff94393994e7e7943939ffffdeffffff94e7ff94393994dede943939ffffe7ffffff94deff943939ffffe763b5ff949439943963bdffe794396339 +94bdffb563ffffffffffffffffff0063b56b0000ffffb5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe794deff944242bdffde42006bffde94ffff +ff94deff944242ffffdee7ffff39399494bd94943939ffffe794deff944242ffffdeffffff94deff94424294dede944242ffffdeffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffff7efefffffffffffff943939ffffe794deff944242ffffdebdffff6b006bffffbdffffff6bbdff943900e7ffe7003994ffbd6bffffff4294e794 +390094e7e794393994e7e7943939ffffe794deff944242deffde004294ffbd6bffffff3994debd6b0094deff944242ffffdeffffff94deff944242bdffde6b00 +6bffffbdffffff6bbdff94420094dede944242ffffdeffffffffffffffffff3994debd6b00ffffffffffffffffffffffff94deff94424294dede6b0042ffffbd +ffffff3994debd6b00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000ffffffffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffff006bbdde9439ffffffffffffffffffffffff94e7ff943939ffffe794deff944242ffffdeffffffffffffffffffffffff6bbdffde9439ffff +ffffffff4294e7bd9439004294000000000000000000000000de9439ffffffffffff4294e7de9439ffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff3994dee79442ff +ffffffffffffffff4294e76b6b39944242ffffdebdffff00006be79442ffffff006bbd6b0000ffffbdbdffff6b006bffffbdffffff6bbdff944200ffffdebdff +ff00006b944200ffffde94e7ff390039ffe794deffff424294ffde94ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffff000000ffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffff949494f7f7f7efe7e7ad84739c634ae7d6d6ad7b6b9c634adec6bdffffffe7e7e7f7f7f7949494ffffffffff +ffffffffffffffffffff94e7ff943939ffffe794deff94424294dede944242ffffde94e7ff943939ffffe794deff94424294dede000042000000000000000000 +420000dede94004294000000e79442ffffffffffffffffffffffffffffffffffffffffffffffffffffff4294e7debd6b424294ffde94e7ffff393994bde7946b +006bffffbd94deff94424294dede944242ffffdeffffff94deff94424294dede944242ffffdeffffff94deff94424294dede944242ffffdeffffff94deff9442 +42ffffde006bbdffbd6b426bbd94bd94bd6b426bbdffe79442deffff004294000000e79442ffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 +e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffff94deff943939 +ffffde94e7ff943939ffffde94deff000039000000000000943900ffffe794deff943939deffde393994ffde9494deff943939ffffe7ffffff94deff94393994 +e7e7943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff943939ffffde94deff943939ffffe7b5ffff39006bffde94ffffff94de +ff94393994dede943939ffffdeffffff94deff94393994dede94393994dede943939ffffde94deff94393994e7e7943939ffffdeffffff94e7ff94393994dede +943939ffffe7ffffff94deff943939bdffe7390063ffde94ffffff94e7ff94393994dede943939ffffe7ffffffffffffffffffffffff0063b5de9439ffffffff +ffffffffff94deff94393994e7e7943939ffffdeffffff94e7ff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000 +0000000000ffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5ffff39006bffde94ffffffffffffffffff94deff943939ffffde94e7ff943939ffffde +ffffffffffffffffffffffff3994de943900ffffdedeffff003994ffbd6b3994dede9439ffffff3994e7de9439ffffffffffffffffff63b5ff943900ffffdeff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffefe7e7ffffffffffff94deffb56339ffffffffffffdeffff39399494bd94943939ffffde63b5ff949439943963bdffde9439633994bdffb563bdffff +390063ffe794ffffff94deff943939ffffe763b5ffbd6b003963b5ffe794ffffffffffffffffff006bbd630000ffffbdffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffff000000000000000000ffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94948cffffffcecec6e7d6ceceada5f7f7f7d6c6bd9c634a +a57363ffffffd6d6d6ffffff94948cffffffffffffffffffffffffffffff94deff943939ffffde94e7ff94393994dede390039ffe79494deff390039ffde9494 +e7ff943939deffde393994ffe794ffffff94deff943939bdffe7630063ffffbd94deff6b0039ffffb5ffffffffffffffffffffffffffffffffffffe7ffff3939 +94ffde943994deffbd6bb5ffff94396bdeffde393994ffde9494deff94393994e7e7000039ffbd6bffffff94e7ff943939deffde003994ffbd6bffffff6bbdff +943900e7ffe7003994ffbd6bffffff3994e7b56300deffff393994ffe79463b5ff000000ffb56394e7ff943939bdffde630063ffffbd94deff6b0039ffffb5ff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff +ffffffffffffffffffffffffffff94e7ff943939ffffe794deff944242ffffdeffffffffffffffffff94deff944242ffffde006bbdde9439ffffff3994debd6b +00deffff004294ffbd6bffffff3994debd6b0094deff420042ffde94ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff943939ffffe794deff +944242ffffdeffffff94deff00004200000000000094390094e7e7943939ffffe7ffffff94e7ff94393994e7e794393994e7e7943939ffffe794deff94424294 +dede944242ffffdeffffff94deff94424294dede944242ffffdeffffff94deff944242ffffde94e7ff00003900000000000094420094dede944242ffffdeffff +ffffffffffffffffffffbdffff39006bffe794ffffffffffff94deff94424294dede944242ffffdeffffff94deff6b0042ffffbdffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffff000000000000000000000000000000ffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff6b0042ffffbdffffffff +ffff94e7ff943939ffffe794deff000042000000000000390000ffe794ffffff4294e76b6b39000042000000bd6b00ffffffbdffff6b006bffffbd3994dee794 +42ffffffffffffffffffffffff006bbdbd6b00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffdeffff00429400000000000000000094420094dede944242ffffde006bbdff +bd6b426bbd94bd94bd6b426bbdffe79442ffffff94e7ff000039000000000000944200ffffde006bbdffbd6b6bbdffbd6b00e7ffff003994000000de9439ffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000ffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff949494f7 +f7f7bdbdb5deded6efefe7dededeffffffa573639c634adec6bde7e7e7f7f7f7949494ffffffffffffffffffffffffdeffff00429400000094420094dede9442 +4294dede6b424200396b000000bd9439004294000000e79442ffffff94e7ff000039000000390000ffe794ffffff4294e7000000000000de9439ffffffbdffff +6b006bffffbdffffffffffffffffffbdffff6b006bffffbd6bbdffbd6b0094e7ffbd6b39ffffff3994dee7944294deff94424294dede944242006b9400000000 +0000ffbd6bffffff94e7ff000039000000000000944200ffffde94e7ff0000390000006b0000ffffbd6bbdff6b0000ffffbdbdffff6b006bffffbdbdffff4200 +6bffde944294e7000000000000de9439ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff +ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffbdffff00006300000063000094debd943939ffffe70063b5000000000000000000 +ffb56394deff390039ffe794ffffff94deff390039ffe79494deff0000390000006b0000ffffb594deff63393900396b630000bdffbd630063ffffbdffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffefe7e7ffffffffffff943939ffffde94e7ff390039ffde94ffffffffffffffffffffffff94deff943939deffde003994ffb563ffffff63b5ff94390094de +de94393994dede943939ffffde94e7ff943939deffde003994ffbd6bffffff3994deb5630094e7ff000039ffbd6bffffff94e7ff943939ffffdeffffffffffff +ffffff94deff94393994e7e7943939ffffdeffffffffffffffffffffffffffffff94e7ff630039ffffbdffffff94e7ff94393994dede390039ffe794ffffff39 +94deb56300ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000ffffffffffffffffffffffffef +e7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffff3994de943900ffffdeffffff94deff943939ffffde94deff943939ffffe7ffffff94deff943939ffffe73994debd6b00ffffffffffff +ffffffffffffffffff6bbdffb563003994dede9439ffffffffffffffffffffffffe7ffff003994ffbd6bb5ffff6b006bffffb5ffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffff3994deffbd6bffff +ff3994e7de943994deff943939e7ffe7393994ffde9463b5ff000000ffb56394deff943939ffffe7ffffffffffffffffff94e7ff94393994dede630039ffffbd +b5ffff6b006bb5ffb56b006bffffb594deff630039ffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000 +0000000000000000000000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffff8c8c8cffffffbdb5added6d6d6ceceded6d6e7e7e7d6bdb5945a42ad7b6befefefffffff8c8c8cffffffffffffffffff +ffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6bbdff943900ffffe7b5ffff94396b3994b5e79439ffffff6bbdffb563 +00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffdeffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe794 +deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff00000094420094dede6b424200396b6b0000006b6b000000000000000000ffbd6b +ffffff94deff00004200000000000094390094e7e76b393900426b00000094420094dede944242ffffde94e7ff0000390000006b0000ffffbd94deff94424200 +6b94000000000000ffbd6bffffff006bbd000000000000000000ffbd6b94deff944242ffffdeffffffffffffffffffffffffffffffffffff4294e7943900ffff +e794deff94424294dede6b424200396b0000006b0000ffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff006bbde79442ffffff94e7ff943939ffffe794deff944242ffffdeffffffbd +ffff6b006bffffbd6bbdff943900ffffe7ffffffffffffffffffffffffdeffff424294396b6be79442ffffffffffffffffffffffffffffff4294e7de9439ffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +f7efefffffffffffffffffff94e7ffbd6b39e7ffff393994ffe79494deff9442426bbdde6b0000ffffbdbdffff6b006bffffbdbdffff42006bffde94006bbd00 +0000000000000000ffbd6b006bbdbd6b00ffffffffffff006bbde794423994de000000000000e79442ffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff949494f7f7f7c6bdb5ded6ceded6d6d6d6ceded6d6f7f7f7a5735a94 +5a42d6c6c6ffffff949494ffffffffffffffffffffffffffffff94e7ff943939ffffe794deff944242ffffdeffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3994dee79442ffffff +e7ffff393994424242ffde94ffffff94deff6b004294debd944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff944242ff +ffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff +ffffffffffffffffffffb5ffff6b006bffffb594e7ff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff943939ffffdeffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffff94deff943939ffffdeffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffe7ffffffffffff +ffffffffffffffffffffffffffffff006bbdde9439ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdffff000063ffbd6b94de +ff943939ffffde94e7ff943939ffffdeffffff94e7ff943939ffffdeb5ffff00006bffb563ffffff0063b5e79439ffffffffffff94deff000039de9439ffffff +3994debd6b00ffffffdeffff003994ffbd6bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffdeffff6b3994b5ffb594396bffffde94e7ff943939ffffdeffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef +e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94948cffffffbdb5 +adbdb5b5bdb5adbdbdb5bdb5add6d6cec6ad9cb58c7be7dedeffffff94948cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffdeffff003994ffb563ffffffffffff3994e7630000ffffbdffffffbdffff000063ffbd6bffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffff94deff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff +ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffff006bbd00000094946b944242ffffdeffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7ef +efffffffffffff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff94393994e7e7943939 +94e7e7943939ffffe794deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffff94deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffbdffff00006b94946b944242ffffdeffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6bbdff +000000000000000000000000000000bd6b0094e7ff943939ffffe794deff000042000000000000000000ffbd6bffffffffffff6bbdff000000000000bd6b00ff +ffffffffffffffffffffff006bbde79442ffffffffffff006bbd000000000000bd6b00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffff006bbd6b6b6bde9439 +ffffff94deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffff949494f7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffffffffffffffff7f7f7949494ffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff +ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffdeffffffffffffffffff6bbdff000000000000000000000000000000bd6b00 +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ff +ffffffffffffffffffffff6bbdff390000ffe794ffffff94deff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8c8c8c94949494948c9494948c8c8c94949494948c9494948c8c8c9494949494 +8c9494948c8c8cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff +ffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7f7f7efffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffefe7e7f7f7efffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefefe7deffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 +deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7c6c6bdbdb5b5b5 +adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 +b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad +bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 +adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 +b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad +bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adcec6c6e7e7e7ffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7c6bdbdbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 +b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad +bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 +adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 +b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad +bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 +adadbdb5b5b5b5adcec6c6e7e7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff +ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe7 +e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffff7f7f7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefef +e7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7 +f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7 +efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefef +e7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7 +f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7 +efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefef +e7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7 +f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7 +efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefef +e7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7 +f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7 +efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefef +e7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7 +f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7 +efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefef +e7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7 +f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7 +efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefef +e7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7 +f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7f7efefefefe7f7efe7f7efe7ffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efeff7efefffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f7f7efe7deffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff +ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffff8c8c8c7b7b7b73737373737373737373737373737373 +73737373737373737373737373737373737373737373737373737373737373737373738c8c8cffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff8c8c8c9494 +94e7e7e7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7efefef949494949494ffffff +ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff +ffffffffffffffffffffffffffffff7b7b7be7e7e7f7f7f7d6d6d6d6d6d6cececed6d6d6d6d6d6d6d6d6cececed6d6d6d6d6d6d6d6d6cececed6d6d6d6d6d6d6 +d6d6cececed6d6d6efefefe7e7e7737373ffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff +ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe794deff94424294dede944242ffffdebdffff00006b00000039 +0000ffe794ffffffffffffffffffbdffff00006b6b0000ffffbd94e7ff000039000000943900ffffe7ffffffffffffffffffffffff3994de000000000000e794 +42ffffff4294e7000000000000000000944200ffffdeffffff94deff420042ffde94ffffffffffffbdffff00006b000000390000ffe794ffffffffffffffffff +bdffff00006b6b0000ffffbd94e7ff000039000000943900ffffe7ffffffbdffff6b006bffffbdffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7ef +efffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff737373ffffffd6d6d6dededed6d6d6d6d6d6d6d6d6dededed6d6d6d6d6 +d6d6d6d6dededed6d6d6d6d6d6d6d6d6dededed6d6d6d6d6d6d6d6d6dededef7f7f7737373ffffffffffffffffffffffffffffffffffffefe7deffffffffffff +ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffff94deff943939ffffde94deff9439 +3994e7e7943939deffde003994ffbd6bffffff94deff630039ffffbdffffffffffff94deff943939ffffdedeffff003994ffbd6bffffff3994deb56300ffffff +ffffffffffff94deff390039ffde94deffff393994bde794630063ffffbdffffff6bbdff943900ffffdeffffff3994e7000000de9439ffffffe7ffff003994ff +bd6bffffff94e7ff630039ffffbdffffffffffff94deff943939ffffdee7ffff003994ffbd6bffffff3994e7b56300ffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffbdffff000063000000000000ffbd6bffffffbdffff630063ffffbdffffffffffffffffffbd +ffff630063399494000000000000393900943939ffffde3994de000000000000de9439ffffffb5ffff00006b000000390000ffde9494e7ff943939ffffdeffff +ff3994e7000000000000de9439ffffffffffffffffffffffffbdffff63006394debd00003900000039390094393994dede94393994dede943939ffffdeffffff +94deff943939ffffde94e7ff000039000000943900ffffe7ffffffffffffffffffffffffb5ffff6b006b94deb5000039000000393900943939ffffe794deff00 +0039000000943900ffffdeffffffb5ffff00006b000000000000ffb563ffffff3994de00000000000039390094393994dede943939ffffe794deff943939ffff +de94e7ff943939ffffdeb5ffff00006b000000390000ffde9494e7ff943939ffffdeffffff94e7ff943939bdffde0000636b0000ffffb53994de000000000000 +de9439ffffffffffffffffffffffffbdffff000063000000630000ffffbdb5ffff00006b000000390000ffde94ffffff3994de000000000000e79439b5ffff00 +006b630000e7ffbd00399400000000000039000094b59494393994dede393939000039000000943900ffffe7ffffffbdffff630063e7ffbd0039940000000000 +0039000094b59494393994dede393939000039000000943900ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff737373f7f7f7d6d6d6 +d6d6d6d6d6d6d6d6d69cd6d6520052d6d69c94d6d65a005ad6d6949cd6d6520052d6d69cd6d6d6d6d6d6d6d6d6d6d6d6d6d6d6ffffff737373ffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffff +ffffffffffff94e7ff943939ffffe794deff94424294dede94424294dede6b0042ffffbdffffffffffffffffffffffffffffffffffff94e7ff943939ffffe794 +deff944242ffffdeffffff94deff944242ffffdeffffffffffffffffffffffffffffff006bbd6b0000bdffbd42006bffde94ffffff94deff944242ffffdee7ff +ff39399494bd94943939ffffe794deff6b0042ffffbdffffffffffffffffffffffffffffffffffff94e7ff943939ffffe794deff944242ffffdeffffff94deff +944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffff003994ffbd6bffffffbdffff39006bffe7 +94ffffffffffffffffffffffffffffffffffff3994debdbd6b6b006bffffbdffffff6bbdff94390094e7e7390039ffe794deffff424294dede94004294ffbd6b +ffffff94deff6b004294debd944242ffffde94e7ff390039ffe794deffff424294ffde94ffffffffffffffffff3994dee7bd6b003994ffbd6bffffff4294e794 +390094e7e794393994e7e7943939ffffe7ffffff94e7ff943939e7ffe7003994ffbd6bffffff4294e7bd6b00ffffffffffffffffffffffff4294e7debd6b0042 +94ffbd6bffffff3994de944200deffde004294ffbd6bffffff3994debd6b00deffff004294ffbd6bffffffbdffff42006bbdde946b006bffffbdffffff6bbdff +94420094dede944242ffffde94e7ff943939ffffe794deff944242deffde004294ffbd6bffffff94deff6b004294debd944242ffffdeffffff94deff94424294 +dede944242ffffde94e7ff390039ffe794deffff424294ffde94ffffffffffffffffff3994de94946b943939ffffe7deffff004294ffbd6bffffff94deff6b00 +4294debd420042ffde94e7ffff39399494bd94943939ffffe7ffffff4294e7bd6b00ffffffffffff94e7ff94393994e7e76b0039ffffbdffffff4294e7bd6b00 +ffffffffffffffffffffffff4294e7bd6b00ffffffffffff94e7ff94393994e7e76b0039ffffbdffffff4294e7bd6b00ffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffffffffff737373ffffffd6d6d6dededed6d6d6dededed6d6d6dededed6d6d6dededed6d6d6dededed6d6d6dededed6d6d6dededed6d6d6dede +ded6d6d6dededef7f7f7737373ffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff +ffffe7ded6ffffffffffffffffffffffffffffffffffffffffff94deff943939ffffde94e7ff94393994dede94393994e7e70000390000000000000000003900 +00ffde94ffffffffffff94deff943939ffffde94e7ff943939ffffdeffffff94e7ff943939ffffdeffffffffffffdeffff003994000000e79439ffffffffffff +94deff000039000000000000943900ffffe794deff943939deffde393994ffde9494deff000039000000000000000000390000ffe794ffffffffffff94deff94 +3939ffffde94deff943939ffffe7ffffff94deff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffff +ffffff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffb5ffff94396b94dede943939ffffdeffffff94deff943939ffffdeff +ffffffffff006bbd63000094e7bd630039ffffbdffffffffffffffffff94deff943939ffffe7ffffffffffffffffff006bbd630000ffffbdffffffffffffb5ff +ff94396b94dede943939ffffdeffffff94deff94393994dede94393994dede943939ffffdeffffff94deff94393994dede943939ffffdeffffff94deff943939 +ffffdeffffffffffffbdffff94396394e7e7943939ffffdeffffff94e7ff94393994dede943939ffffe7ffffff94deff94393994e7e7943939ffffdeffffffff +ffffffffff94deff943939ffffe7ffffff94deff94393994e7e7943939ffffde94deff943939ffffde94deff94393994e7e7630039ffffbdffffffffffffffff +ff94deff943939ffffe7ffffff94deff94393994e7e7943939ffffdeffffffffffffffffff006bbd630000ffffbdffffffffffffb5ffff94396b94dede943939 +ffffde94e7ff630039ffffbdffffffffffffffffffffffffffffffffffff0063b56b000094deb5943939ffffdeffffffdeffff003994ffb563ffffff94deff94 +393994dede943939ffffdeffffff94deff943939ffffdeffffffffffffffffffdeffff003994ffb563ffffff94deff94393994dede943939ffffdeffffff94de +ff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffff737373f7f7f7dedededededededededededededededededededededededededede +dededededededededededededededededededededededededededeffffff737373ffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffff +ffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe794deff94424294dede +944242deffde424294ffde94ffffff94deff944242ffffdeffffffffffff94e7ff943939ffffe7deffff004294ffbd6bffffff3994debd6b00ffffffffffffff +ffffbdffff6b006bffffbd94deff6b0042ffffbdffffffffffffffffff94deff944242ffffde006bbdde9439ffffff3994debd6b00deffff424294ffde94ffff +ff94deff944242ffffdeffffffffffff94e7ff943939ffffe7deffff004294ffbd6bffffff3994debd6b00ffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffff7efefffffffffffff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffff4294e7ffbd6b94e7 +ff943939ffffe7ffffff94e7ff943939e7ffe7003994000000de9439ffffff94deff00004200000000000000000042000094bd94944242ffffdee7ffff003994 +000000de9439ffffffffffffffffffffffff4294e7ffbd6b94e7ff943939ffffe7ffffff94e7ff94393994e7e794393994e7e7943939ffffe7ffffff94e7ff94 +393994e7e7943939ffffe7ffffff94e7ff943939ffffe7ffffffffffff3994deffbd6b94deff944242ffffdeffffff94deff94424294dede944242ffffdeffff +ff94deff94424294dede944242ffffdeffffffffffffffffff94deff944242ffffdeffffff94deff94424294dede944242ffffde94e7ff943939ffffe794deff +94424294dede00004200000000000000000042000094bd94944242ffffdeffffff94deff94424294dede944242ffffdee7ffff003994000000de9439ffffffff +ffffffffffffffff4294e7ffbd6b94e7ff943939ffffe794deff000042000000000000000000420000dede94004294000000e79442ffffff94e7ff943939ffff +e7ffffffffffff94deff6b0042ffffbd94e7ff94393994e7e7943939ffffe7ffffff94e7ff6b0039ffffbdffffffffffffffffffffffff94deff6b0042ffffbd +94e7ff94393994e7e7943939ffffe7ffffff94e7ff6b0039ffffbdffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff737373ffffffdededee7e7e7de +dedee7e7e7dededee7e7e7dededee7e7e7dededee7e7e7dededee7e7e7dededee7e7e7dededee7e7e7dededee7e7e7ffffff737373ffffffffffffffffffffff +ffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffbd +ffff00006300000063000094debd94393994e7e7943939ffffde94deff000039000000390000ffde94ffffffffffffdeffff003994000000943900ffffde94de +ff0000390000006b0000ffffb5ffffffffffffffffffffffff3994e7000000000000de9439ffffff0063b5000000000000000000ffb56394deff390039ffe794 +ffffff94deff390039ffe79494deff000039000000390000ffde94ffffffffffffe7ffff003994000000943900ffffe794deff0000390000006b0000ffffb5ff +ffffb5ffff6b006bffffb5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffff003994ffb563ffffffb5ffff39006bffde94ffffff +ffffffffffffffffffbdffff943963ffffde94deff943939ffffdeffffff94deff943939b5ffde6b006bffffb594e7ff630039deffbd393994ffe794ffffff94 +deff94393994e7e7390039ffde94b5ffff6b006bffffb594deff630039ffffbdffffffbdffff943963ffffe7deffff003994ffb563ffffff63b5ff94390094de +de94393994dede000039ffb563ffffff94deff943939deffde003994ffb563ffffff3994debd6b00ffffffffffffb5ffff94396bffffdedeffff003994ffbd6b +ffffff6bbdff943900e7ffe7003994ffbd6bffffff3994e7b56300deffff003994ffbd6bffffffbdffff39006394bd94943939ffffdeffffff94e7ff94393994 +dede390039ffe79494deff390039ffde9494e7ff943939deffde393994ffe794ffffff94deff94393994e7e7000039ffbd6bffffff94e7ff94393994dede9439 +39ffffe7b5ffff6b006bffffb594e7ff630039ffffbdffffffbdffff943963ffffde94deff943939ffffdedeffff393994ffe794ffffff94deff943939bdffe7 +630063ffffbd94deff6b003994deb5943939ffffdeffffffffffffffffff3994debd6b0094deff94393994dede390039ffde94ffffff3994debd6b00ffffffff +ffffffffffffffffffffffffffff3994debd6b0094deff94393994dede390039ffde94ffffff3994debd6b00ffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffff +ffffffffffffff737373f7f7f7e7e7e7dededededededededee7e7e7dededededededededee7e7e7dededededededededee7e7e7dededededededededee7e7e7 +dededeffffff737373ffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7 +deffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffff94deff944242ffffdeffffffffffffffffffffffffffffffffffff +ffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffff +e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffbd +ffff00006b000000000000ffbd6bffffffbdffff6b006bffffbdffffff3994deffbd6bffffff94e7ff943939ffffe7ffffff94e7ff943939ffffe73994de0000 +00000000e79442ffffff94e7ff000039000000390000ffe79494deff6b424200396b6b0000399494000000000000e79442ffffffffffff3994deffbd6bffffff +ffffff94deff00004200000000000094390094e7e794393994e7e7943939006b94000000000000ffbd6bffffff94deff0000420000006b0000ffffbdffffffff +ffff4294e7ffbd6bffffffffffff94e7ff000039000000000000944200ffffde94e7ff0000390000006b0000ffffbdffffffbdffff00006b000000000000ffbd +6b94deff944242ffffdeffffff94deff94424294dede6b424200396b000000bd9439004294000000e79442ffffff94e7ff000039000000390000ffe79494deff +944242006b94000000000000e7bd6b003994000000943900ffffe73994de000000000000e79442ffffffffffff3994deffbd6bdeffff004294000000944200ff +ffde94e7ff000039000000390000ffe794ffffff4294e7000000000000bd9439004294000000944200ffffde006bbd0000000000006b000094e7bd94393994e7 +e76b393900426b0000006b0000ffffbdffffffffffffffffffffffff006bbd0000000000006b000094e7bd94393994e7e76b393900426b0000006b0000ffffbd +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffffffffff737373ffffffefefeff7f7f7efefeff7f7f7efefeff7f7f7efefeff7f7f7efefeff7f7f7ef +efeff7f7f7efefeff7f7f7efefeff7f7f7efefeff7f7f7ffffff737373ffffffffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffff +ffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffb5ffff6b006bffffb594e7ff94393994dede943939ff +ffe7ffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5ffff94396bffffdeffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffb5ffff94396bffffdeffffffffffffffffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffbdffff943963ffffdeffffffffffffffffffffffffffffff94e7ff943939ffffdeffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94e7ff943939ffffdeffffffffffffffffffffffffffffffffffffb5ff +ff94396bffffdeffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff943939ffffdeffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffff737373fffffff7f7f7efefeff7f7f7efef +eff7f7f7efefeff7f7f7efefeff7f7f7efefeff7f7f7efefeff7f7f7efefeff7f7f7efefeff7f7f7efefefffffff737373ffffffffffffffffffffffffffffff +ffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffff +ff006bbd000000ffbd6bffffff94deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffff4294e7ffbd6bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffff4294e7ffbd6bffffffffffffffffffffffffffffffffffff94e7ff94393994e7e7943939 +ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3994deffbd6bffffffffffffffffffffffffffffffffffff94 +deff944242ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff94deff944242ffffde +ffffffffffffffffffffffffffffffffffff4294e7ffbd6bffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffff94e7ff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +ffffff737373ffffffefefeff7f7f7f7f7f7f7f7f7efefeff7f7f7f7f7f7f7f7f7efefeff7f7f7f7f7f7f7f7f7efefeff7f7f7f7f7f7f7f7f7efefeff7f7f7ff +ffff737373ffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffbdffff943963ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdffff943963ffffdeffffffffffffffffffff +ffffffffffffffff94deff943939ffffdeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb5ffff94396bffff +deffffffffffffffffffffffffffffffffffff94deff943939ffffe7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbdffff943963ffffe7ffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffef +e7deffffffffffffffffffffffffffffffffffffffffff737373fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7 +f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffff737373ffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff +0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffff7efefffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff737373fffffff7f7f7f7f7f7f7f7f7fffffff7f7f7 +f7f7f7f7f7f7fffffff7f7f7f7f7f7f7f7f7fffffff7f7f7f7f7f7f7f7f7fffffff7f7f7f7f7f7ffffff737373ffffffffffffffffffffffffffffffffffffe7 +e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7e7ffffffffffffffffffffffffffffffffffffffffff73 +7373fffffff7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7f7ffffff7373 +73ffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7efefffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffffffffff7b7b7bf7f7f7fffffffffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7fffffff7f7f7 +fffffff7f7f7fffffff7f7f7ffffffefefef7b7b7bffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffff +ffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffefe7e7f7f7efffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffffffffff7efefefe7deffffffffffffffffffffffffffffffffffffffffff8c8c8c949494efefefffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefefef9494948c8c8cffffffffffffffffffffffffffffffffffffefe7deffff +ffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffefe7e7c6c6bdbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad +bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 +adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 +b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad +bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 +adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 +b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad +bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 +adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 +b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad +bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 +adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 +b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad +bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 +adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 +b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad +bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 +adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5 +b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5ad +bdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5 +adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adbdb5b5b5adadbdb5b5b5b5adcec6c6e7e7e7ffffffffffffffffffffffffffffffffffffffffffffffff9c9c +9c7b7b7b7373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737373737b7b7b949494ffffffffffff +ffffffffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffe7ded6ffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffff +ffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffff +ffffffffffffffffffffffff0000ffffffffffffffffffffffffe7e7d6ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffefe7deffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff +ffffffffffffffffe7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6ef +e7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7de +d6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7de +e7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7dee7e7d6efe7dee7ded6efe7deffffffffffffffffffffffffffffffff +ffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffff0000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000040000002701ffff030000000000}}}{\rtlch\fcs1 \af0 \ltrch\fcs0 +\insrsid14842421 +\par The files you\rquote ve provisionally added into the zip appear in a listbox below. You can edit this list, and change the path or filename used in the zipfile for any entry. +\par Click \'93Zip it!\'94 to create the zip with the given specifications. +\par }\pard\plain \ltrpar\s3\ql \li0\ri0\sb200\sl276\slmult1\keep\keepn\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel2\adjustright\rin0\lin0\itap0\pararsid13582222 \rtlch\fcs1 \ab\af0\afs22\alang1025 \ltrch\fcs0 +\b\fs22\cf18\lang1033\langfe1033\loch\af31502\hich\af31502\dbch\af31501\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid13582222 \hich\af31502\dbch\af31501\loch\f31502 Drag and Drop}{\rtlch\fcs1 \af0 \ltrch\fcs0 +\insrsid14842421\charrsid14842421 +\par }\pard\plain \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid6951347 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 { +\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid13582222 You can also drag-and-drop into the zip tool. If you drag a .zip file onto the listview that appears at the bottom of the Read tab, that will open the given zip file and read it. }{\rtlch\fcs1 \af0 +\ltrch\fcs0 \insrsid6951347 +\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid13582222 Drag a set of fen to the listview that appears at the bottom of the Create tab to add that set of files to the zip file you are creating.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid13582222\charrsid6951347 + +\par }{\*\themedata 504b030414000600080000002100e9de0fbfff0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb4ec3301045f748fc83e52d4a +9cb2400825e982c78ec7a27cc0c8992416c9d8b2a755fbf74cd25442a820166c2cd933f79e3be372bd1f07b5c3989ca74aaff2422b24eb1b475da5df374fd9ad +5689811a183c61a50f98f4babebc2837878049899a52a57be670674cb23d8e90721f90a4d2fa3802cb35762680fd800ecd7551dc18eb899138e3c943d7e503b6 +b01d583deee5f99824e290b4ba3f364eac4a430883b3c092d4eca8f946c916422ecab927f52ea42b89a1cd59c254f919b0e85e6535d135a8de20f20b8c12c3b0 +0c895fcf6720192de6bf3b9e89ecdbd6596cbcdd8eb28e7c365ecc4ec1ff1460f53fe813d3cc7f5b7f020000ffff0300504b030414000600080000002100a5d6 +a7e7c0000000360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4f +c7060abb0884a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b6309512 +0f88d94fbc52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462 +a1a82fe353bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f746865 +6d652f7468656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b +4b0d592c9c070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b +4757e8d3f729e245eb2b260a0238fd010000ffff0300504b03041400060008000000210030dd4329a8060000a41b0000160000007468656d652f7468656d652f +7468656d65312e786d6cec594f6fdb3614bf0fd87720746f6327761a07758ad8b19b2d4d1bc46e871e698996d850a240d2497d1bdae38001c3ba618715d86d87 +615b8116d8a5fb34d93a6c1dd0afb0475292c5585e9236d88aad3e2412f9e3fbff1e1fa9abd7eec70c1d1221294fda5efd72cd4324f1794093b0eddd1ef62fad +79482a9c0498f184b4bd2991deb58df7dfbb8ad755446282607d22d771db8b944ad79796a40fc3585ee62949606ecc458c15bc8a702910f808e8c66c69b9565b +5d8a314d3c94e018c8de1a8fa94fd05093f43672e23d06af89927ac06762a049136785c10607758d9053d965021d62d6f6804fc08f86e4bef210c352c144dbab +999fb7b4717509af678b985ab0b6b4ae6f7ed9ba6c4170b06c788a705430adf71bad2b5b057d03606a1ed7ebf5babd7a41cf00b0ef83a6569632cd467faddec9 +699640f6719e76b7d6ac355c7c89feca9cccad4ea7d36c65b258a206641f1b73f8b5da6a6373d9c11b90c537e7f08dce66b7bbeae00dc8e257e7f0fd2badd586 +8b37a088d1e4600ead1ddaef67d40bc898b3ed4af81ac0d76a197c86826828a24bb318f3442d8ab518dfe3a20f000d6458d104a9694ac6d88728eee2782428d6 +0cf03ac1a5193be4cbb921cd0b495fd054b5bd0f530c1931a3f7eaf9f7af9e3f45c70f9e1d3ff8e9f8e1c3e3073f5a42ceaa6d9c84e5552fbffdeccfc71fa33f +9e7ef3f2d117d57859c6fffac327bffcfc793510d26726ce8b2f9ffcf6ecc98baf3efdfdbb4715f04d814765f890c644a29be408edf3181433567125272371be +15c308d3f28acd249438c19a4b05fd9e8a1cf4cd296699771c393ac4b5e01d01e5a30a787d72cf1178108989a2159c77a2d801ee72ce3a5c545a6147f32a9979 +3849c26ae66252c6ed637c58c5bb8b13c7bfbd490a75330f4b47f16e441c31f7184e140e494214d273fc80900aedee52ead87597fa824b3e56e82e451d4c2b4d +32a423279a668bb6690c7e9956e90cfe766cb37b077538abd27a8b1cba48c80acc2a841f12e698f13a9e281c57911ce298950d7e03aba84ac8c154f8655c4f2a +f074481847bd804859b5e696007d4b4edfc150b12addbecba6b18b148a1e54d1bc81392f23b7f84137c2715a851dd0242a633f900710a218ed715505dfe56e86 +e877f0034e16bafb0e258ebb4faf06b769e888340b103d331115bebc4eb813bf83291b63624a0d1475a756c734f9bbc2cd28546ecbe1e20a3794ca175f3fae90 +fb6d2dd99bb07b55e5ccf68942bd0877b23c77b908e8db5f9db7f024d9239010f35bd4bbe2fcae387bfff9e2bc289f2fbe24cfaa301468dd8bd846dbb4ddf1c2 +ae7b4c191ba8292337a469bc25ec3d411f06f53a73e224c5292c8de0516732307070a1c0660d125c7d44553488700a4d7bddd3444299910e254ab984c3a219ae +a4adf1d0f82b7bd46cea4388ad1c12ab5d1ed8e1153d9c9f350a3246aad01c6873462b9ac05999ad5cc988826eafc3acae853a33b7ba11cd1445875ba1b236b1 +399483c90bd560b0b0263435085a21b0f22a9cf9356b38ec6046026d77eba3dc2dc60b17e92219e180643ed27acffba86e9c94c7ca9c225a0f1b0cfae0788ad5 +4adc5a9aec1b703b8b93caec1a0bd8e5de7b132fe5113cf312503b998e2c2927274bd051db6b35979b1ef271daf6c6704e86c73805af4bdd476216c26593af84 +0dfb5393d964f9cc9bad5c313709ea70f561ed3ea7b053075221d51696910d0d339585004b34272bff7213cc7a510a5454a3b349b1b206c1f0af490176745d4b +c663e2abb2b34b23da76f6352ba57ca2881844c1111ab189d8c7e07e1daaa04f40255c77988aa05fe06e4e5bdb4cb9c5394bbaf28d98c1d971ccd20867e556a7 +689ec9166e0a522183792b8907ba55ca6e943bbf2a26e52f48957218ffcf54d1fb09dc3eac04da033e5c0d0b8c74a6b43d2e54c4a10aa511f5fb021a07533b20 +5ae07e17a621a8e082dafc17e450ffb739676998b48643a4daa7211214f623150942f6a02c99e83b85583ddbbb2c4996113211551257a656ec1139246ca86be0 +aadedb3d1441a89b6a929501833b197fee7b9641a3503739e57c732a59b1f7da1cf8a73b1f9bcca0945b874d4393dbbf10b1680f66bbaa5d6f96e77b6f59113d +316bb31a795600b3d256d0cad2fe354538e7566b2bd69cc6cbcd5c38f0e2bcc63058344429dc2121fd07f63f2a7c66bf76e80d75c8f7a1b622f878a18941d840 +545fb28d07d205d20e8ea071b283369834296bdaac75d256cb37eb0bee740bbe278cad253b8bbfcf69eca23973d939b97891c6ce2cecd8da8e2d343578f6648a +c2d0383fc818c798cf64e52f597c740f1cbd05df0c264c49134cf09d4a60e8a107260f20f92d47b374e32f000000ffff0300504b030414000600080000002100 +0dd1909fb60000001b010000270000007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f7 +8277086f6fd3ba109126dd88d0add40384e4350d363f2451eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89 +d93b64b060828e6f37ed1567914b284d262452282e3198720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd500 +1996509affb3fd381a89672f1f165dfe514173d9850528a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100e9de0f +bfff0000001c0200001300000000000000000000000000000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6 +a7e7c0000000360100000b00000000000000000000000000300100005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a +0000001c00000000000000000000000000190200007468656d652f7468656d652f7468656d654d616e616765722e786d6c504b01022d00140006000800000021 +0030dd4329a8060000a41b00001600000000000000000000000000d60200007468656d652f7468656d652f7468656d65312e786d6c504b01022d001400060008 +00000021000dd1909fb60000001b0100002700000000000000000000000000b20900007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000ad0a00000000} +{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d +617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 +6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 +656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} +{\*\latentstyles\lsdstimax267\lsdlockeddef0\lsdsemihiddendef1\lsdunhideuseddef1\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4; +\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9; +\lsdpriority39 \lsdlocked0 toc 1;\lsdpriority39 \lsdlocked0 toc 2;\lsdpriority39 \lsdlocked0 toc 3;\lsdpriority39 \lsdlocked0 toc 4;\lsdpriority39 \lsdlocked0 toc 5;\lsdpriority39 \lsdlocked0 toc 6;\lsdpriority39 \lsdlocked0 toc 7; +\lsdpriority39 \lsdlocked0 toc 8;\lsdpriority39 \lsdlocked0 toc 9;\lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdpriority1 \lsdlocked0 Default Paragraph Font; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority22 \lsdlocked0 Strong;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority59 \lsdlocked0 Table Grid;\lsdunhideused0 \lsdlocked0 Placeholder Text;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 1; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;\lsdunhideused0 \lsdlocked0 Revision; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 1; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 3; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 3; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 3; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 4; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 4; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 4; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 5; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 5; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 6; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 6; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 6; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdpriority37 \lsdlocked0 Bibliography;\lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;}}{\*\datastore 010500000200000018000000 +4d73786d6c322e534158584d4c5265616465722e362e3000000000000000000000060000 +d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e50000000000000000000000009009 +81e1502bcc01feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000105000000000000}} \ No newline at end of file diff --git a/src/Tools/WinFormsApp/Extensions.cs b/old/src/Tools/WinFormsApp/Extensions.cs similarity index 96% rename from src/Tools/WinFormsApp/Extensions.cs rename to old/src/Tools/WinFormsApp/Extensions.cs index bee99f0..efb08a8 100644 --- a/src/Tools/WinFormsApp/Extensions.cs +++ b/old/src/Tools/WinFormsApp/Extensions.cs @@ -1,55 +1,55 @@ -// Extensions.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009 Dino Chiesa -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// - -using System; -using System.Collections.Generic; - -namespace Ionic.Zip.Forms -{ - public static class Extensions - { - public static string XmlEscapeIexcl(this String s) - { - while (s.Contains("")) - { - s = s.Replace("", "¡"); - } - return s; - } - public static string XmlUnescapeIexcl(this String s) - { - while (s.Contains("¡")) - { - s = s.Replace("¡", ""); - } - return s; - } - - public static List ToList(this System.Windows.Forms.AutoCompleteStringCollection coll) - { - var list = new List(); - foreach (string item in coll) - { - list.Add(item); - } - return list; - } - - } - - +// Extensions.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009 Dino Chiesa +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// + +using System; +using System.Collections.Generic; + +namespace Ionic.Zip.Forms +{ + public static class Extensions + { + public static string XmlEscapeIexcl(this String s) + { + while (s.Contains("")) + { + s = s.Replace("", "¡"); + } + return s; + } + public static string XmlUnescapeIexcl(this String s) + { + while (s.Contains("¡")) + { + s = s.Replace("¡", ""); + } + return s; + } + + public static List ToList(this System.Windows.Forms.AutoCompleteStringCollection coll) + { + var list = new List(); + foreach (string item in coll) + { + list.Add(item); + } + return list; + } + + } + + } \ No newline at end of file diff --git a/src/Tools/WinFormsApp/Form.DragDrop.cs b/old/src/Tools/WinFormsApp/Form.DragDrop.cs similarity index 96% rename from src/Tools/WinFormsApp/Form.DragDrop.cs rename to old/src/Tools/WinFormsApp/Form.DragDrop.cs index a9e2d39..bacef0c 100644 --- a/src/Tools/WinFormsApp/Form.DragDrop.cs +++ b/old/src/Tools/WinFormsApp/Form.DragDrop.cs @@ -1,175 +1,175 @@ -// Form.DragDrop.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009 Dino Chiesa -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// - - -namespace Ionic.Zip.Forms -{ - using System; - using System.Drawing; - using System.Windows.Forms; - using DragDropLib; - using ComIDataObject = System.Runtime.InteropServices.ComTypes.IDataObject; - - public partial class ZipForm : System.Windows.Forms.Form - { - partial void SetDragDrop() - { - this.listView2.DragDrop += new System.Windows.Forms.DragEventHandler(this.control_OnDragDrop); - this.listView2.DragEnter += new System.Windows.Forms.DragEventHandler(this.control_OnDragEnter); - this.listView2.DragOver += new System.Windows.Forms.DragEventHandler(this.control_OnDragOver); - this.listView2.DragLeave += new System.EventHandler(this.control_OnDragLeave); - - this.listView1.DragDrop += new System.Windows.Forms.DragEventHandler(this.control_OnDragDrop); - this.listView1.DragEnter += new System.Windows.Forms.DragEventHandler(this.control_OnDragEnter); - this.listView1.DragOver += new System.Windows.Forms.DragEventHandler(this.control_OnDragOver); - this.listView1.DragLeave += new System.EventHandler(this.control_OnDragLeave); - } - - protected void control_OnDragEnter(object sender, DragEventArgs e) - { - e.Effect = DragDropEffects.Copy; - Point p = Cursor.Position; - Win32Point wp; - wp.x = p.X; - wp.y = p.Y; - IDropTargetHelper dropHelper = (IDropTargetHelper)new DragDropHelper(); - dropHelper.DragEnter(IntPtr.Zero, (ComIDataObject)e.Data, ref wp, (int)e.Effect); - } - - protected void control_OnDragOver(object sender, DragEventArgs e) - { - e.Effect = DragDropEffects.Copy; - Point p = Cursor.Position; - Win32Point wp; - wp.x = p.X; - wp.y = p.Y; - IDropTargetHelper dropHelper = (IDropTargetHelper)new DragDropHelper(); - dropHelper.DragOver(ref wp, (int)e.Effect); - } - - protected void control_OnDragLeave(object sender, EventArgs e) - { - IDropTargetHelper dropHelper = (IDropTargetHelper)new DragDropHelper(); - dropHelper.DragLeave(); - } - - protected void control_OnDragDrop(object sender, DragEventArgs e) - { - e.Effect = DragDropEffects.Copy; - Point p = Cursor.Position; - Win32Point wp; - wp.x = p.X; - wp.y = p.Y; - IDropTargetHelper dropHelper = (IDropTargetHelper)new DragDropHelper(); - dropHelper.Drop((ComIDataObject)e.Data, ref wp, (int)e.Effect); - } - - } - -} - - - - - -namespace DragDropLib -{ - - using System; - using System.Runtime.InteropServices; - using System.Runtime.InteropServices.ComTypes; - using System.Collections.Generic; - - [ComImport] - [Guid("4657278A-411B-11d2-839A-00C04FD918D0")] - public class DragDropHelper { } - - - - [ComVisible(true)] - [ComImport] - [Guid("4657278B-411B-11D2-839A-00C04FD918D0")] - [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] - public interface IDropTargetHelper - { - void DragEnter( - [In] IntPtr hwndTarget, - [In, MarshalAs(UnmanagedType.Interface)] IDataObject dataObject, - [In] ref Win32Point pt, - [In] int effect); - - void DragLeave(); - - void DragOver( - [In] ref Win32Point pt, - [In] int effect); - - void Drop( - [In, MarshalAs(UnmanagedType.Interface)] IDataObject dataObject, - [In] ref Win32Point pt, - [In] int effect); - - void Show( - [In] bool show); - } - - - - [StructLayout(LayoutKind.Sequential)] - public struct Win32Point - { - public int x; - public int y; - } - - [StructLayout(LayoutKind.Sequential)] - public struct Win32Size - { - public int cx; - public int cy; - } - - [StructLayout(LayoutKind.Sequential)] - public struct ShDragImage - { - public Win32Size sizeDragImage; - public Win32Point ptOffset; - public IntPtr hbmpDragImage; - public int crColorKey; - } - - - - [ComVisible(true)] - [ComImport] - [Guid("DE5BF786-477A-11D2-839D-00C04FD918D0")] - [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] - public interface IDragSourceHelper - { - void InitializeFromBitmap( - [In, MarshalAs(UnmanagedType.Struct)] ref ShDragImage dragImage, - [In, MarshalAs(UnmanagedType.Interface)] IDataObject dataObject); - - void InitializeFromWindow( - [In] IntPtr hwnd, - [In] ref Win32Point pt, - [In, MarshalAs(UnmanagedType.Interface)] IDataObject dataObject); - } - -} - - +// Form.DragDrop.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009 Dino Chiesa +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// + + +namespace Ionic.Zip.Forms +{ + using System; + using System.Drawing; + using System.Windows.Forms; + using DragDropLib; + using ComIDataObject = System.Runtime.InteropServices.ComTypes.IDataObject; + + public partial class ZipForm : System.Windows.Forms.Form + { + partial void SetDragDrop() + { + this.listView2.DragDrop += new System.Windows.Forms.DragEventHandler(this.control_OnDragDrop); + this.listView2.DragEnter += new System.Windows.Forms.DragEventHandler(this.control_OnDragEnter); + this.listView2.DragOver += new System.Windows.Forms.DragEventHandler(this.control_OnDragOver); + this.listView2.DragLeave += new System.EventHandler(this.control_OnDragLeave); + + this.listView1.DragDrop += new System.Windows.Forms.DragEventHandler(this.control_OnDragDrop); + this.listView1.DragEnter += new System.Windows.Forms.DragEventHandler(this.control_OnDragEnter); + this.listView1.DragOver += new System.Windows.Forms.DragEventHandler(this.control_OnDragOver); + this.listView1.DragLeave += new System.EventHandler(this.control_OnDragLeave); + } + + protected void control_OnDragEnter(object sender, DragEventArgs e) + { + e.Effect = DragDropEffects.Copy; + Point p = Cursor.Position; + Win32Point wp; + wp.x = p.X; + wp.y = p.Y; + IDropTargetHelper dropHelper = (IDropTargetHelper)new DragDropHelper(); + dropHelper.DragEnter(IntPtr.Zero, (ComIDataObject)e.Data, ref wp, (int)e.Effect); + } + + protected void control_OnDragOver(object sender, DragEventArgs e) + { + e.Effect = DragDropEffects.Copy; + Point p = Cursor.Position; + Win32Point wp; + wp.x = p.X; + wp.y = p.Y; + IDropTargetHelper dropHelper = (IDropTargetHelper)new DragDropHelper(); + dropHelper.DragOver(ref wp, (int)e.Effect); + } + + protected void control_OnDragLeave(object sender, EventArgs e) + { + IDropTargetHelper dropHelper = (IDropTargetHelper)new DragDropHelper(); + dropHelper.DragLeave(); + } + + protected void control_OnDragDrop(object sender, DragEventArgs e) + { + e.Effect = DragDropEffects.Copy; + Point p = Cursor.Position; + Win32Point wp; + wp.x = p.X; + wp.y = p.Y; + IDropTargetHelper dropHelper = (IDropTargetHelper)new DragDropHelper(); + dropHelper.Drop((ComIDataObject)e.Data, ref wp, (int)e.Effect); + } + + } + +} + + + + + +namespace DragDropLib +{ + + using System; + using System.Runtime.InteropServices; + using System.Runtime.InteropServices.ComTypes; + using System.Collections.Generic; + + [ComImport] + [Guid("4657278A-411B-11d2-839A-00C04FD918D0")] + public class DragDropHelper { } + + + + [ComVisible(true)] + [ComImport] + [Guid("4657278B-411B-11D2-839A-00C04FD918D0")] + [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] + public interface IDropTargetHelper + { + void DragEnter( + [In] IntPtr hwndTarget, + [In, MarshalAs(UnmanagedType.Interface)] IDataObject dataObject, + [In] ref Win32Point pt, + [In] int effect); + + void DragLeave(); + + void DragOver( + [In] ref Win32Point pt, + [In] int effect); + + void Drop( + [In, MarshalAs(UnmanagedType.Interface)] IDataObject dataObject, + [In] ref Win32Point pt, + [In] int effect); + + void Show( + [In] bool show); + } + + + + [StructLayout(LayoutKind.Sequential)] + public struct Win32Point + { + public int x; + public int y; + } + + [StructLayout(LayoutKind.Sequential)] + public struct Win32Size + { + public int cx; + public int cy; + } + + [StructLayout(LayoutKind.Sequential)] + public struct ShDragImage + { + public Win32Size sizeDragImage; + public Win32Point ptOffset; + public IntPtr hbmpDragImage; + public int crColorKey; + } + + + + [ComVisible(true)] + [ComImport] + [Guid("DE5BF786-477A-11D2-839D-00C04FD918D0")] + [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] + public interface IDragSourceHelper + { + void InitializeFromBitmap( + [In, MarshalAs(UnmanagedType.Struct)] ref ShDragImage dragImage, + [In, MarshalAs(UnmanagedType.Interface)] IDataObject dataObject); + + void InitializeFromWindow( + [In] IntPtr hwnd, + [In] ref Win32Point pt, + [In, MarshalAs(UnmanagedType.Interface)] IDataObject dataObject); + } + +} + + diff --git a/src/Tools/WinFormsApp/Form.State.cs b/old/src/Tools/WinFormsApp/Form.State.cs similarity index 97% rename from src/Tools/WinFormsApp/Form.State.cs rename to old/src/Tools/WinFormsApp/Form.State.cs index c1687d7..23d0c32 100644 --- a/src/Tools/WinFormsApp/Form.State.cs +++ b/old/src/Tools/WinFormsApp/Form.State.cs @@ -1,308 +1,308 @@ -// Form.State.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009-2011 Dino Chiesa -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// - -using System; -using System.Collections.Generic; -using System.Threading; -using System.Windows.Forms; -using Ionic.Zip; - -namespace Ionic.Zip.Forms -{ - public partial class ZipForm - { - /// This app uses the windows registry to store config data for itself. - /// - creates a registry key for this DotNetZip Winforms app, if one does not exist - /// - stores and retrieves the most recent settings. - /// - this is done on a per user basis. (HKEY_CURRENT_USER) - private void FillFormFromRegistry() - { - if (!stateLoaded) - { - if (AppCuKey != null) - { - var s = (string)AppCuKey.GetValue(_rvn_DirectoryToZip); - if (s != null) - { - this.tbDirectoryToZip.Text = s; - this.tbDirectoryInArchive.Text = System.IO.Path.GetFileName(this.tbDirectoryToZip.Text); - } - - s = (string)AppCuKey.GetValue(_rvn_SelectionToZip); - if (s != null) this.tbSelectionToZip.Text = s; - - s = (string)AppCuKey.GetValue(_rvn_SelectionToExtract); - if (s != null) this.tbSelectionToExtract.Text = s; - - s = (string)AppCuKey.GetValue(_rvn_ZipTarget); - if (s != null) this.tbZipToCreate.Text = s; - - s = (string)AppCuKey.GetValue(_rvn_ZipToOpen); - if (s != null) this.tbZipToOpen.Text = s; - - s = (string)AppCuKey.GetValue(_rvn_ExtractLoc); - if (s != null) this.tbExtractDir.Text = s; - else - this.tbExtractDir.Text = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); - - s = (string)AppCuKey.GetValue(_rvn_Encoding); - if (s != null) - SelectNamedEncoding(s); - - s = (string)AppCuKey.GetValue(_rvn_EncodingUsage); - if (s != null) - SelectNamedEncodingUsage(s); - - s = (string)AppCuKey.GetValue(_rvn_CompLevel); - if (s != null) - { - SelectNamedCompressionLevel(s); - } - else SelectNamedCompressionLevel("Default"); - - s = (string)AppCuKey.GetValue(_rvn_CompMethod); - if (s != null) - { - SelectNamedCompressionMethod(s); - } - else SelectNamedCompressionMethod("Deflate"); - - s = (string)AppCuKey.GetValue(_rvn_Encryption); - if (s != null) - { - SelectNamedEncryption(s); - this.tbPassword.Text = ""; - } - - int x = (Int32)AppCuKey.GetValue(_rvn_ZipFlavor, 0); - if (x >= 0 && x <= 2) - this.comboFlavor.SelectedIndex = x; - - x = (Int32)AppCuKey.GetValue(_rvn_Zip64Option, 0); - if (x >= 0 && x <= 2) - this.comboZip64.SelectedIndex = x; - - x = (Int32)AppCuKey.GetValue(_rvn_ExtractExistingFileAction, 0); - if (x >= 0 && x <= comboExistingFileAction.Items.Count) - this.comboExistingFileAction.SelectedIndex = x; - - x = (Int32)AppCuKey.GetValue(_rvn_FormTab, 1); - if (x == 0 || x == 1) - this.tabControl1.SelectedIndex = x; - - x = (Int32)AppCuKey.GetValue(_rvn_HidePassword, 1); - this.chkHidePassword.Checked = (x != 0); - - x = (Int32)AppCuKey.GetValue(_rvn_OpenExplorer, 1); - this.chkOpenExplorer.Checked = (x != 0); - - x = (Int32)AppCuKey.GetValue(_rvn_TraverseJunctions, 1); - this.chkTraverseJunctions.Checked = (x != 0); - - x = (Int32)AppCuKey.GetValue(_rvn_RecurseDirs, 1); - this.chkRecurse.Checked = (x != 0); - - x = (Int32)AppCuKey.GetValue(_rvn_RemoveFiles, 1); - this.chkRemoveFiles.Checked = (x != 0); - - numRuns = (Int32)AppCuKey.GetValue(_rvn_Runs, 0); - - // get the MRU list of selection expressions - _selectionCompletions = new System.Windows.Forms.AutoCompleteStringCollection(); - string history = (string)AppCuKey.GetValue(_rvn_SelectionCompletions, ""); - if (!String.IsNullOrEmpty(history)) - { - string[] items = history.Split(''); - if (items != null && items.Length > 0) - { - foreach (string item in items) - _selectionCompletions.Add(item.XmlUnescapeIexcl()); - } - } - - - - // set the geometry of the form - s = (string)AppCuKey.GetValue(_rvn_Geometry); - if (!String.IsNullOrEmpty(s)) - { - int[] p = Array.ConvertAll(s.Split(','), - new Converter((t) => { return Int32.Parse(t); })); - if (p != null && p.Length == 5) - { - this.Bounds = ConstrainToScreen(new System.Drawing.Rectangle(p[0], p[1], p[2], p[3])); - - // Starting a window minimized is confusing... - //this.WindowState = (FormWindowState)p[4]; - } - } - - AppCuKey.Close(); - AppCuKey = null; - - tbPassword_TextChanged(null, null); - - stateLoaded = true; - } - } - } - - - - private void SaveFormToRegistry() - { - if (this.tbExtractDir.InvokeRequired) return; // skip it - - if (AppCuKey != null) - { - AppCuKey.SetValue(_rvn_DirectoryToZip, this.tbDirectoryToZip.Text); - AppCuKey.SetValue(_rvn_SelectionToZip, this.tbSelectionToZip.Text); - AppCuKey.SetValue(_rvn_SelectionToExtract, this.tbSelectionToExtract.Text); - AppCuKey.SetValue(_rvn_ZipTarget, this.tbZipToCreate.Text); - AppCuKey.SetValue(_rvn_ZipToOpen, this.tbZipToOpen.Text); - AppCuKey.SetValue(_rvn_Encoding, this.comboEncoding.SelectedItem.ToString()); - AppCuKey.SetValue(_rvn_EncodingUsage, this.comboEncodingUsage.SelectedItem.ToString()); - AppCuKey.SetValue(_rvn_CompLevel, this.comboCompLevel.SelectedItem.ToString()); - AppCuKey.SetValue(_rvn_CompMethod, this.comboCompMethod.SelectedItem.ToString()); - if (this.tbPassword.Text == "") - { - if (!String.IsNullOrEmpty(_mostRecentEncryption)) - AppCuKey.SetValue(_rvn_Encryption, _mostRecentEncryption); - } - else - AppCuKey.SetValue(_rvn_Encryption, this.comboEncryption.SelectedItem.ToString()); - - AppCuKey.SetValue(_rvn_ExtractLoc, this.tbExtractDir.Text); - - int x = this.comboFlavor.SelectedIndex; - AppCuKey.SetValue(_rvn_ZipFlavor, x); - - x = this.comboZip64.SelectedIndex; - AppCuKey.SetValue(_rvn_Zip64Option, x); - - x = this.comboExistingFileAction.SelectedIndex; - AppCuKey.SetValue(_rvn_ExtractExistingFileAction, x); - - AppCuKey.SetValue(_rvn_FormTab, this.tabControl1.SelectedIndex); - - AppCuKey.SetValue(_rvn_LastRun, System.DateTime.Now.ToString("yyyy MMM dd HH:mm:ss")); - x = (Int32)AppCuKey.GetValue(_rvn_Runs, 0); - x++; - AppCuKey.SetValue(_rvn_Runs, x); - - AppCuKey.SetValue(_rvn_HidePassword, this.chkHidePassword.Checked ? 1 : 0); - AppCuKey.SetValue(_rvn_OpenExplorer, this.chkOpenExplorer.Checked ? 1 : 0); - AppCuKey.SetValue(_rvn_TraverseJunctions, this.chkTraverseJunctions.Checked ? 1 : 0); - AppCuKey.SetValue(_rvn_RecurseDirs, this.chkRecurse.Checked ? 1 : 0); - AppCuKey.SetValue(_rvn_RemoveFiles, this.chkRemoveFiles.Checked ? 1 : 0); - - // the selection completion list - var converted = _selectionCompletions.ToList().ConvertAll(z => z.XmlEscapeIexcl()); - string history = String.Join("", converted.ToArray()); - AppCuKey.SetValue(_rvn_SelectionCompletions, history); - - - // store the size of the form - int w = 0, h = 0, left = 0, top = 0; - if (this.Bounds.Width < this.MinimumSize.Width || this.Bounds.Height < this.MinimumSize.Height) - { - // RestoreBounds is the size of the window prior to last minimize action. - // But the form may have been resized since then! - w = this.RestoreBounds.Width; - h = this.RestoreBounds.Height; - left = this.RestoreBounds.Location.X; - top = this.RestoreBounds.Location.Y; - } - else - { - w = this.Bounds.Width; - h = this.Bounds.Height; - left = this.Location.X; - top = this.Location.Y; - } - AppCuKey.SetValue(_rvn_Geometry, - String.Format("{0},{1},{2},{3},{4}", - left, top, w, h, (int)this.WindowState)); - - AppCuKey.Close(); - } - } - - - private System.Drawing.Rectangle ConstrainToScreen(System.Drawing.Rectangle bounds) - { - Screen screen = Screen.FromRectangle(bounds); - System.Drawing.Rectangle workingArea = screen.WorkingArea; - int width = Math.Min(bounds.Width, workingArea.Width); - int height = Math.Min(bounds.Height, workingArea.Height); - // mmm....minimax - int left = Math.Min(workingArea.Right - width, Math.Max(bounds.Left, workingArea.Left)); - int top = Math.Min(workingArea.Bottom - height, Math.Max(bounds.Top, workingArea.Top)); - return new System.Drawing.Rectangle(left, top, width, height); - } - - - - public Microsoft.Win32.RegistryKey AppCuKey - { - get - { - if (_appCuKey == null) - { - _appCuKey = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(_AppRegyPath, true); - if (_appCuKey == null) - _appCuKey = Microsoft.Win32.Registry.CurrentUser.CreateSubKey(_AppRegyPath); - } - return _appCuKey; - } - set { _appCuKey = null; } - } - - private int numRuns; - - private Microsoft.Win32.RegistryKey _appCuKey; - private static string _AppRegyPath = "Software\\Dino Chiesa\\DotNetZip Winforms Tool"; - private static string _rvn_FormTab = "FormTab"; - private static string _rvn_Geometry = "Geometry"; - private static string _rvn_TraverseJunctions = "TraverseJunctions"; - private static string _rvn_RecurseDirs = "RecurseDirs"; - private static string _rvn_RemoveFiles = "RemoveFiles"; - private static string _rvn_HidePassword = "HidePassword"; - private static string _rvn_ExtractExistingFileAction = "ExtractExistingFileAction"; - private static string _rvn_OpenExplorer = "OpenExplorer"; - private static string _rvn_ExtractLoc = "ExtractLoc"; - private static string _rvn_DirectoryToZip = "DirectoryToZip"; - private static string _rvn_SelectionToZip = "SelectionToZip"; - private static string _rvn_SelectionToExtract = "SelectionToExtract"; - private static string _rvn_SelectionCompletions= "SelectionCompletions"; - private static string _rvn_ZipTarget = "ZipTarget"; - private static string _rvn_ZipToOpen = "ZipToOpen"; - private static string _rvn_Encoding = "Encoding"; - private static string _rvn_EncodingUsage = "EncodingUsage"; - private static string _rvn_CompLevel = "CompressionLevel"; - private static string _rvn_CompMethod = "CompressionMethod"; - private static string _rvn_Encryption = "Encryption"; - private static string _rvn_ZipFlavor = "ZipFlavor"; - private static string _rvn_Zip64Option = "Zip64Option"; - private static string _rvn_LastRun = "LastRun"; - private static string _rvn_Runs = "Runs"; - - private readonly int _MaxMruListSize = 14; - private System.Windows.Forms.AutoCompleteStringCollection _selectionCompletions; - private bool stateLoaded; - } +// Form.State.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009-2011 Dino Chiesa +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// + +using System; +using System.Collections.Generic; +using System.Threading; +using System.Windows.Forms; +using Ionic.Zip; + +namespace Ionic.Zip.Forms +{ + public partial class ZipForm + { + /// This app uses the windows registry to store config data for itself. + /// - creates a registry key for this DotNetZip Winforms app, if one does not exist + /// - stores and retrieves the most recent settings. + /// - this is done on a per user basis. (HKEY_CURRENT_USER) + private void FillFormFromRegistry() + { + if (!stateLoaded) + { + if (AppCuKey != null) + { + var s = (string)AppCuKey.GetValue(_rvn_DirectoryToZip); + if (s != null) + { + this.tbDirectoryToZip.Text = s; + this.tbDirectoryInArchive.Text = System.IO.Path.GetFileName(this.tbDirectoryToZip.Text); + } + + s = (string)AppCuKey.GetValue(_rvn_SelectionToZip); + if (s != null) this.tbSelectionToZip.Text = s; + + s = (string)AppCuKey.GetValue(_rvn_SelectionToExtract); + if (s != null) this.tbSelectionToExtract.Text = s; + + s = (string)AppCuKey.GetValue(_rvn_ZipTarget); + if (s != null) this.tbZipToCreate.Text = s; + + s = (string)AppCuKey.GetValue(_rvn_ZipToOpen); + if (s != null) this.tbZipToOpen.Text = s; + + s = (string)AppCuKey.GetValue(_rvn_ExtractLoc); + if (s != null) this.tbExtractDir.Text = s; + else + this.tbExtractDir.Text = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); + + s = (string)AppCuKey.GetValue(_rvn_Encoding); + if (s != null) + SelectNamedEncoding(s); + + s = (string)AppCuKey.GetValue(_rvn_EncodingUsage); + if (s != null) + SelectNamedEncodingUsage(s); + + s = (string)AppCuKey.GetValue(_rvn_CompLevel); + if (s != null) + { + SelectNamedCompressionLevel(s); + } + else SelectNamedCompressionLevel("Default"); + + s = (string)AppCuKey.GetValue(_rvn_CompMethod); + if (s != null) + { + SelectNamedCompressionMethod(s); + } + else SelectNamedCompressionMethod("Deflate"); + + s = (string)AppCuKey.GetValue(_rvn_Encryption); + if (s != null) + { + SelectNamedEncryption(s); + this.tbPassword.Text = ""; + } + + int x = (Int32)AppCuKey.GetValue(_rvn_ZipFlavor, 0); + if (x >= 0 && x <= 2) + this.comboFlavor.SelectedIndex = x; + + x = (Int32)AppCuKey.GetValue(_rvn_Zip64Option, 0); + if (x >= 0 && x <= 2) + this.comboZip64.SelectedIndex = x; + + x = (Int32)AppCuKey.GetValue(_rvn_ExtractExistingFileAction, 0); + if (x >= 0 && x <= comboExistingFileAction.Items.Count) + this.comboExistingFileAction.SelectedIndex = x; + + x = (Int32)AppCuKey.GetValue(_rvn_FormTab, 1); + if (x == 0 || x == 1) + this.tabControl1.SelectedIndex = x; + + x = (Int32)AppCuKey.GetValue(_rvn_HidePassword, 1); + this.chkHidePassword.Checked = (x != 0); + + x = (Int32)AppCuKey.GetValue(_rvn_OpenExplorer, 1); + this.chkOpenExplorer.Checked = (x != 0); + + x = (Int32)AppCuKey.GetValue(_rvn_TraverseJunctions, 1); + this.chkTraverseJunctions.Checked = (x != 0); + + x = (Int32)AppCuKey.GetValue(_rvn_RecurseDirs, 1); + this.chkRecurse.Checked = (x != 0); + + x = (Int32)AppCuKey.GetValue(_rvn_RemoveFiles, 1); + this.chkRemoveFiles.Checked = (x != 0); + + numRuns = (Int32)AppCuKey.GetValue(_rvn_Runs, 0); + + // get the MRU list of selection expressions + _selectionCompletions = new System.Windows.Forms.AutoCompleteStringCollection(); + string history = (string)AppCuKey.GetValue(_rvn_SelectionCompletions, ""); + if (!String.IsNullOrEmpty(history)) + { + string[] items = history.Split(''); + if (items != null && items.Length > 0) + { + foreach (string item in items) + _selectionCompletions.Add(item.XmlUnescapeIexcl()); + } + } + + + + // set the geometry of the form + s = (string)AppCuKey.GetValue(_rvn_Geometry); + if (!String.IsNullOrEmpty(s)) + { + int[] p = Array.ConvertAll(s.Split(','), + new Converter((t) => { return Int32.Parse(t); })); + if (p != null && p.Length == 5) + { + this.Bounds = ConstrainToScreen(new System.Drawing.Rectangle(p[0], p[1], p[2], p[3])); + + // Starting a window minimized is confusing... + //this.WindowState = (FormWindowState)p[4]; + } + } + + AppCuKey.Close(); + AppCuKey = null; + + tbPassword_TextChanged(null, null); + + stateLoaded = true; + } + } + } + + + + private void SaveFormToRegistry() + { + if (this.tbExtractDir.InvokeRequired) return; // skip it + + if (AppCuKey != null) + { + AppCuKey.SetValue(_rvn_DirectoryToZip, this.tbDirectoryToZip.Text); + AppCuKey.SetValue(_rvn_SelectionToZip, this.tbSelectionToZip.Text); + AppCuKey.SetValue(_rvn_SelectionToExtract, this.tbSelectionToExtract.Text); + AppCuKey.SetValue(_rvn_ZipTarget, this.tbZipToCreate.Text); + AppCuKey.SetValue(_rvn_ZipToOpen, this.tbZipToOpen.Text); + AppCuKey.SetValue(_rvn_Encoding, this.comboEncoding.SelectedItem.ToString()); + AppCuKey.SetValue(_rvn_EncodingUsage, this.comboEncodingUsage.SelectedItem.ToString()); + AppCuKey.SetValue(_rvn_CompLevel, this.comboCompLevel.SelectedItem.ToString()); + AppCuKey.SetValue(_rvn_CompMethod, this.comboCompMethod.SelectedItem.ToString()); + if (this.tbPassword.Text == "") + { + if (!String.IsNullOrEmpty(_mostRecentEncryption)) + AppCuKey.SetValue(_rvn_Encryption, _mostRecentEncryption); + } + else + AppCuKey.SetValue(_rvn_Encryption, this.comboEncryption.SelectedItem.ToString()); + + AppCuKey.SetValue(_rvn_ExtractLoc, this.tbExtractDir.Text); + + int x = this.comboFlavor.SelectedIndex; + AppCuKey.SetValue(_rvn_ZipFlavor, x); + + x = this.comboZip64.SelectedIndex; + AppCuKey.SetValue(_rvn_Zip64Option, x); + + x = this.comboExistingFileAction.SelectedIndex; + AppCuKey.SetValue(_rvn_ExtractExistingFileAction, x); + + AppCuKey.SetValue(_rvn_FormTab, this.tabControl1.SelectedIndex); + + AppCuKey.SetValue(_rvn_LastRun, System.DateTime.Now.ToString("yyyy MMM dd HH:mm:ss")); + x = (Int32)AppCuKey.GetValue(_rvn_Runs, 0); + x++; + AppCuKey.SetValue(_rvn_Runs, x); + + AppCuKey.SetValue(_rvn_HidePassword, this.chkHidePassword.Checked ? 1 : 0); + AppCuKey.SetValue(_rvn_OpenExplorer, this.chkOpenExplorer.Checked ? 1 : 0); + AppCuKey.SetValue(_rvn_TraverseJunctions, this.chkTraverseJunctions.Checked ? 1 : 0); + AppCuKey.SetValue(_rvn_RecurseDirs, this.chkRecurse.Checked ? 1 : 0); + AppCuKey.SetValue(_rvn_RemoveFiles, this.chkRemoveFiles.Checked ? 1 : 0); + + // the selection completion list + var converted = _selectionCompletions.ToList().ConvertAll(z => z.XmlEscapeIexcl()); + string history = String.Join("", converted.ToArray()); + AppCuKey.SetValue(_rvn_SelectionCompletions, history); + + + // store the size of the form + int w = 0, h = 0, left = 0, top = 0; + if (this.Bounds.Width < this.MinimumSize.Width || this.Bounds.Height < this.MinimumSize.Height) + { + // RestoreBounds is the size of the window prior to last minimize action. + // But the form may have been resized since then! + w = this.RestoreBounds.Width; + h = this.RestoreBounds.Height; + left = this.RestoreBounds.Location.X; + top = this.RestoreBounds.Location.Y; + } + else + { + w = this.Bounds.Width; + h = this.Bounds.Height; + left = this.Location.X; + top = this.Location.Y; + } + AppCuKey.SetValue(_rvn_Geometry, + String.Format("{0},{1},{2},{3},{4}", + left, top, w, h, (int)this.WindowState)); + + AppCuKey.Close(); + } + } + + + private System.Drawing.Rectangle ConstrainToScreen(System.Drawing.Rectangle bounds) + { + Screen screen = Screen.FromRectangle(bounds); + System.Drawing.Rectangle workingArea = screen.WorkingArea; + int width = Math.Min(bounds.Width, workingArea.Width); + int height = Math.Min(bounds.Height, workingArea.Height); + // mmm....minimax + int left = Math.Min(workingArea.Right - width, Math.Max(bounds.Left, workingArea.Left)); + int top = Math.Min(workingArea.Bottom - height, Math.Max(bounds.Top, workingArea.Top)); + return new System.Drawing.Rectangle(left, top, width, height); + } + + + + public Microsoft.Win32.RegistryKey AppCuKey + { + get + { + if (_appCuKey == null) + { + _appCuKey = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(_AppRegyPath, true); + if (_appCuKey == null) + _appCuKey = Microsoft.Win32.Registry.CurrentUser.CreateSubKey(_AppRegyPath); + } + return _appCuKey; + } + set { _appCuKey = null; } + } + + private int numRuns; + + private Microsoft.Win32.RegistryKey _appCuKey; + private static string _AppRegyPath = "Software\\Dino Chiesa\\DotNetZip Winforms Tool"; + private static string _rvn_FormTab = "FormTab"; + private static string _rvn_Geometry = "Geometry"; + private static string _rvn_TraverseJunctions = "TraverseJunctions"; + private static string _rvn_RecurseDirs = "RecurseDirs"; + private static string _rvn_RemoveFiles = "RemoveFiles"; + private static string _rvn_HidePassword = "HidePassword"; + private static string _rvn_ExtractExistingFileAction = "ExtractExistingFileAction"; + private static string _rvn_OpenExplorer = "OpenExplorer"; + private static string _rvn_ExtractLoc = "ExtractLoc"; + private static string _rvn_DirectoryToZip = "DirectoryToZip"; + private static string _rvn_SelectionToZip = "SelectionToZip"; + private static string _rvn_SelectionToExtract = "SelectionToExtract"; + private static string _rvn_SelectionCompletions= "SelectionCompletions"; + private static string _rvn_ZipTarget = "ZipTarget"; + private static string _rvn_ZipToOpen = "ZipToOpen"; + private static string _rvn_Encoding = "Encoding"; + private static string _rvn_EncodingUsage = "EncodingUsage"; + private static string _rvn_CompLevel = "CompressionLevel"; + private static string _rvn_CompMethod = "CompressionMethod"; + private static string _rvn_Encryption = "Encryption"; + private static string _rvn_ZipFlavor = "ZipFlavor"; + private static string _rvn_Zip64Option = "Zip64Option"; + private static string _rvn_LastRun = "LastRun"; + private static string _rvn_Runs = "Runs"; + + private readonly int _MaxMruListSize = 14; + private System.Windows.Forms.AutoCompleteStringCollection _selectionCompletions; + private bool stateLoaded; + } } \ No newline at end of file diff --git a/src/Tools/WinFormsApp/GetIcon.cmd b/old/src/Tools/WinFormsApp/GetIcon.cmd similarity index 95% rename from src/Tools/WinFormsApp/GetIcon.cmd rename to old/src/Tools/WinFormsApp/GetIcon.cmd index a8d2d2b..9e93e84 100644 --- a/src/Tools/WinFormsApp/GetIcon.cmd +++ b/old/src/Tools/WinFormsApp/GetIcon.cmd @@ -1,27 +1,27 @@ -REM @echo off -goto START - -------------------------------------------------------- - GetIcon.cmd - - Copy icon from "Zip Partial DLL\Resources" to this dir. - This script assumes it will be run by Visual Studio, as a prebuild script, starting with the - current directory of C:\dinoch\dev\dotnet\zip\DotNetZip\Tools\WinFormsApp\bin\Debug - - Sat, 07 Jun 2008 10:39 - -------------------------------------------------------- - - -:START -setlocal - -cd ..\..\..\.. -copy /y "Zip Partial DLL\Resources\zippedFile.ico" Tools\WinFormsApp\zippedFile.ico - - -endlocal -:END - - - +REM @echo off +goto START + +------------------------------------------------------- + GetIcon.cmd + + Copy icon from "Zip Partial DLL\Resources" to this dir. + This script assumes it will be run by Visual Studio, as a prebuild script, starting with the + current directory of C:\dinoch\dev\dotnet\zip\DotNetZip\Tools\WinFormsApp\bin\Debug + + Sat, 07 Jun 2008 10:39 + +------------------------------------------------------- + + +:START +setlocal + +cd ..\..\..\.. +copy /y "Zip Partial DLL\Resources\zippedFile.ico" Tools\WinFormsApp\zippedFile.ico + + +endlocal +:END + + + diff --git a/src/Tools/WinFormsApp/Icon2.res b/old/src/Tools/WinFormsApp/Icon2.res similarity index 100% rename from src/Tools/WinFormsApp/Icon2.res rename to old/src/Tools/WinFormsApp/Icon2.res diff --git a/src/Tools/WinFormsApp/ListViewEx.cs b/old/src/Tools/WinFormsApp/ListViewEx.cs similarity index 96% rename from src/Tools/WinFormsApp/ListViewEx.cs rename to old/src/Tools/WinFormsApp/ListViewEx.cs index 3f67186..f21d468 100644 --- a/src/Tools/WinFormsApp/ListViewEx.cs +++ b/old/src/Tools/WinFormsApp/ListViewEx.cs @@ -1,466 +1,466 @@ -using System; -using System.Collections; -using System.ComponentModel; -using System.Drawing; -using System.Data; -using System.Windows.Forms; -using System.Runtime.InteropServices; - -// A ListView that allows edit of subitems (items in columns beyond 0) - -// From http://www.codeproject.com/KB/list/ListViewCellEditors.aspx . - - - -// disable compile-time warning: "XXX is never is assigned and will always have its default value" -#pragma warning disable 649 - -namespace ListViewEx -{ - /// - /// Inherited ListView to allow in-place editing of subitems - /// - public class ListViewEx : System.Windows.Forms.ListView - { - #region Interop structs, imports and constants - /// - /// MessageHeader for WM_NOTIFY - /// - private struct NMHDR - { - public IntPtr hwndFrom; - public Int32 idFrom; - public Int32 code; - } - - - [DllImport("user32.dll")] - private static extern IntPtr SendMessage(IntPtr hWnd, int msg, IntPtr wPar, IntPtr lPar); - [DllImport("user32.dll", CharSet=CharSet.Ansi)] - private static extern IntPtr SendMessage(IntPtr hWnd, int msg, int len, ref int [] order); - - // ListView messages - private const int LVM_FIRST = 0x1000; - private const int LVM_GETCOLUMNORDERARRAY = (LVM_FIRST + 59); - - // Windows Messages that will abort editing - private const int WM_HSCROLL = 0x114; - private const int WM_VSCROLL = 0x115; - private const int WM_SIZE = 0x05; - private const int WM_NOTIFY = 0x4E; - - private const int HDN_FIRST = -300; - private const int HDN_BEGINDRAG = (HDN_FIRST-10); - private const int HDN_ITEMCHANGINGA = (HDN_FIRST-0); - private const int HDN_ITEMCHANGINGW = (HDN_FIRST-20); - #endregion - - /// - /// Required designer variable. - /// - private System.ComponentModel.Container components = null; - - public event SubItemEventHandler SubItemClicked; - public event SubItemEventHandler SubItemBeginEditing; - public event SubItemEndEditingEventHandler SubItemEndEditing; - - public ListViewEx() - { - // This call is required by the Windows.Forms Form Designer. - InitializeComponent(); - - base.FullRowSelect = true; - base.View = View.Details; - base.AllowColumnReorder = true; - } - - /// - /// Clean up any resources being used. - /// - protected override void Dispose( bool disposing ) - { - if( disposing ) - { - if( components != null ) - components.Dispose(); - } - base.Dispose( disposing ); - } - - #region Component Designer generated code - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - components = new System.ComponentModel.Container(); - } - #endregion - - private bool _doubleClickActivation = false; - /// - /// Is a double click required to start editing a cell? - /// - public bool DoubleClickActivation - { - get { return _doubleClickActivation; } - set { _doubleClickActivation = value; } - } - - - /// - /// Retrieve the order in which columns appear - /// - /// Current display order of column indices - public int[] GetColumnOrder() - { - IntPtr lPar = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(int)) * Columns.Count); - - IntPtr res = SendMessage(Handle, LVM_GETCOLUMNORDERARRAY, new IntPtr(Columns.Count), lPar); - if (res.ToInt32() == 0) // Something went wrong - { - Marshal.FreeHGlobal(lPar); - return null; - } - - int [] order = new int[Columns.Count]; - Marshal.Copy(lPar, order, 0, Columns.Count); - - Marshal.FreeHGlobal(lPar); - - return order; - } - - - /// - /// Find ListViewItem and SubItem Index at position (x,y) - /// - /// relative to ListView - /// relative to ListView - /// Item at position (x,y) - /// SubItem index - public int GetSubItemAt(int x, int y, out ListViewItem item) - { - item = this.GetItemAt(x, y); - - if (item != null) - { - int[] order = GetColumnOrder(); - Rectangle lviBounds; - int subItemX; - - lviBounds = item.GetBounds(ItemBoundsPortion.Entire); - subItemX = lviBounds.Left; - for (int i=0; i - /// Get bounds for a SubItem - /// - /// Target ListViewItem - /// Target SubItem index - /// Bounds of SubItem (relative to ListView) - public Rectangle GetSubItemBounds(ListViewItem Item, int SubItem) - { - int[] order = GetColumnOrder(); - - Rectangle subItemRect = Rectangle.Empty; - if (SubItem >= order.Length) - throw new IndexOutOfRangeException("SubItem "+SubItem+" out of range"); - - if (Item == null) - throw new ArgumentNullException("Item"); - - Rectangle lviBounds = Item.GetBounds(ItemBoundsPortion.Entire); - int subItemX = lviBounds.Left; - - ColumnHeader col; - int i; - for (i=0; i - /// Fire SubItemClicked - /// - ///Point of click/doubleclick - private void EditSubitemAt(Point p) - { - ListViewItem item; - int idx = GetSubItemAt(p.X, p.Y, out item); - if (idx >= 0) - { - OnSubItemClicked(new SubItemEventArgs(item, idx)); - } - } - - #endregion - - #region In-place editing functions - // The control performing the actual editing - private Control _editingControl; - // The LVI being edited - private ListViewItem _editItem; - // The SubItem being edited - private int _editSubItem; - - protected void OnSubItemBeginEditing(SubItemEventArgs e) - { - if (SubItemBeginEditing != null) - SubItemBeginEditing(this, e); - } - protected void OnSubItemEndEditing(SubItemEndEditingEventArgs e) - { - if (SubItemEndEditing != null) - SubItemEndEditing(this, e); - } - protected void OnSubItemClicked(SubItemEventArgs e) - { - if (SubItemClicked != null) - SubItemClicked(this, e); - } - - - /// - /// Begin in-place editing of given cell - /// - /// Control used as cell editor - /// ListViewItem to edit - /// SubItem index to edit - public void StartEditing(Control c, ListViewItem Item, int SubItem) - { - OnSubItemBeginEditing(new SubItemEventArgs(Item, SubItem)); - - Rectangle rcSubItem = GetSubItemBounds(Item, SubItem); - - if (rcSubItem.X < 0) - { - // Left edge of SubItem not visible - adjust rectangle position and width - rcSubItem.Width += rcSubItem.X; - rcSubItem.X=0; - } - if (rcSubItem.X+rcSubItem.Width > this.Width) - { - // Right edge of SubItem not visible - adjust rectangle width - rcSubItem.Width = this.Width-rcSubItem.Left; - } - - // Subitem bounds are relative to the location of the ListView! - rcSubItem.Offset(Left, Top); - - // In case the editing control and the listview are on different parents, - // account for different origins - Point origin = new Point(0,0); - Point lvOrigin = this.Parent.PointToScreen(origin); - Point ctlOrigin = c.Parent.PointToScreen(origin); - - rcSubItem.Offset(lvOrigin.X-ctlOrigin.X, lvOrigin.Y-ctlOrigin.Y); - - // Position and show editor - c.Bounds = rcSubItem; - c.Text = Item.SubItems[SubItem].Text; - c.Visible = true; - c.BringToFront(); - c.Focus(); - - _editingControl = c; - _editingControl.Leave += new EventHandler(_editControl_Leave); - _editingControl.KeyPress += new KeyPressEventHandler(_editControl_KeyPress); - - _editItem = Item; - _editSubItem = SubItem; - } - - - private void _editControl_Leave(object sender, EventArgs e) - { - // cell editor losing focus - EndEditing(true); - } - - private void _editControl_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e) - { - switch (e.KeyChar) - { - case (char)(int)Keys.Escape: - { - EndEditing(false); - break; - } - - case (char)(int)Keys.Enter: - { - EndEditing(true); - break; - } - } - } - - /// - /// Accept or discard current value of cell editor control - /// - /// Use the _editingControl's Text as new SubItem text or discard changes? - public void EndEditing(bool AcceptChanges) - { - if (_editingControl == null) - return; - - SubItemEndEditingEventArgs e = new SubItemEndEditingEventArgs( - _editItem, // The item being edited - _editSubItem, // The subitem index being edited - AcceptChanges ? - _editingControl.Text : // Use editControl text if changes are accepted - _editItem.SubItems[_editSubItem].Text, // or the original subitem's text, if changes are discarded - !AcceptChanges // Cancel? - ); - - OnSubItemEndEditing(e); - - if (_editItem != null && _editItem.SubItems[_editSubItem]!= null) - _editItem.SubItems[_editSubItem].Text = e.DisplayText; - - _editingControl.Leave -= new EventHandler(_editControl_Leave); - _editingControl.KeyPress -= new KeyPressEventHandler(_editControl_KeyPress); - - _editingControl.Visible = false; - - _editingControl = null; - _editItem = null; - _editSubItem = -1; - } - #endregion - } - - /// - /// Event Handler for SubItem events - /// - public delegate void SubItemEventHandler(object sender, SubItemEventArgs e); - /// - /// Event Handler for SubItemEndEditing events - /// - public delegate void SubItemEndEditingEventHandler(object sender, SubItemEndEditingEventArgs e); - - /// - /// Event Args for SubItemClicked event - /// - public class SubItemEventArgs : EventArgs - { - public SubItemEventArgs(ListViewItem item, int subItem) - { - _subItemIndex = subItem; - _item = item; - } - private int _subItemIndex = -1; - private ListViewItem _item = null; - public int SubItem - { - get { return _subItemIndex; } - } - public ListViewItem Item - { - get { return _item; } - } - } - - - /// - /// Event Args for SubItemEndEditingClicked event - /// - public class SubItemEndEditingEventArgs : SubItemEventArgs - { - private string _text = string.Empty; - private bool _cancel = true; - - public SubItemEndEditingEventArgs(ListViewItem item, int subItem, string display, bool cancel) : - base(item, subItem) - { - _text = display; - _cancel = cancel; - } - public string DisplayText - { - get { return _text; } - set { _text = value; } - } - public bool Cancel - { - get { return _cancel; } - set { _cancel = value; } - } - } - - -} +using System; +using System.Collections; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Windows.Forms; +using System.Runtime.InteropServices; + +// A ListView that allows edit of subitems (items in columns beyond 0) + +// From http://www.codeproject.com/KB/list/ListViewCellEditors.aspx . + + + +// disable compile-time warning: "XXX is never is assigned and will always have its default value" +#pragma warning disable 649 + +namespace ListViewEx +{ + /// + /// Inherited ListView to allow in-place editing of subitems + /// + public class ListViewEx : System.Windows.Forms.ListView + { + #region Interop structs, imports and constants + /// + /// MessageHeader for WM_NOTIFY + /// + private struct NMHDR + { + public IntPtr hwndFrom; + public Int32 idFrom; + public Int32 code; + } + + + [DllImport("user32.dll")] + private static extern IntPtr SendMessage(IntPtr hWnd, int msg, IntPtr wPar, IntPtr lPar); + [DllImport("user32.dll", CharSet=CharSet.Ansi)] + private static extern IntPtr SendMessage(IntPtr hWnd, int msg, int len, ref int [] order); + + // ListView messages + private const int LVM_FIRST = 0x1000; + private const int LVM_GETCOLUMNORDERARRAY = (LVM_FIRST + 59); + + // Windows Messages that will abort editing + private const int WM_HSCROLL = 0x114; + private const int WM_VSCROLL = 0x115; + private const int WM_SIZE = 0x05; + private const int WM_NOTIFY = 0x4E; + + private const int HDN_FIRST = -300; + private const int HDN_BEGINDRAG = (HDN_FIRST-10); + private const int HDN_ITEMCHANGINGA = (HDN_FIRST-0); + private const int HDN_ITEMCHANGINGW = (HDN_FIRST-20); + #endregion + + /// + /// Required designer variable. + /// + private System.ComponentModel.Container components = null; + + public event SubItemEventHandler SubItemClicked; + public event SubItemEventHandler SubItemBeginEditing; + public event SubItemEndEditingEventHandler SubItemEndEditing; + + public ListViewEx() + { + // This call is required by the Windows.Forms Form Designer. + InitializeComponent(); + + base.FullRowSelect = true; + base.View = View.Details; + base.AllowColumnReorder = true; + } + + /// + /// Clean up any resources being used. + /// + protected override void Dispose( bool disposing ) + { + if( disposing ) + { + if( components != null ) + components.Dispose(); + } + base.Dispose( disposing ); + } + + #region Component Designer generated code + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + components = new System.ComponentModel.Container(); + } + #endregion + + private bool _doubleClickActivation = false; + /// + /// Is a double click required to start editing a cell? + /// + public bool DoubleClickActivation + { + get { return _doubleClickActivation; } + set { _doubleClickActivation = value; } + } + + + /// + /// Retrieve the order in which columns appear + /// + /// Current display order of column indices + public int[] GetColumnOrder() + { + IntPtr lPar = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(int)) * Columns.Count); + + IntPtr res = SendMessage(Handle, LVM_GETCOLUMNORDERARRAY, new IntPtr(Columns.Count), lPar); + if (res.ToInt32() == 0) // Something went wrong + { + Marshal.FreeHGlobal(lPar); + return null; + } + + int [] order = new int[Columns.Count]; + Marshal.Copy(lPar, order, 0, Columns.Count); + + Marshal.FreeHGlobal(lPar); + + return order; + } + + + /// + /// Find ListViewItem and SubItem Index at position (x,y) + /// + /// relative to ListView + /// relative to ListView + /// Item at position (x,y) + /// SubItem index + public int GetSubItemAt(int x, int y, out ListViewItem item) + { + item = this.GetItemAt(x, y); + + if (item != null) + { + int[] order = GetColumnOrder(); + Rectangle lviBounds; + int subItemX; + + lviBounds = item.GetBounds(ItemBoundsPortion.Entire); + subItemX = lviBounds.Left; + for (int i=0; i + /// Get bounds for a SubItem + /// + /// Target ListViewItem + /// Target SubItem index + /// Bounds of SubItem (relative to ListView) + public Rectangle GetSubItemBounds(ListViewItem Item, int SubItem) + { + int[] order = GetColumnOrder(); + + Rectangle subItemRect = Rectangle.Empty; + if (SubItem >= order.Length) + throw new IndexOutOfRangeException("SubItem "+SubItem+" out of range"); + + if (Item == null) + throw new ArgumentNullException("Item"); + + Rectangle lviBounds = Item.GetBounds(ItemBoundsPortion.Entire); + int subItemX = lviBounds.Left; + + ColumnHeader col; + int i; + for (i=0; i + /// Fire SubItemClicked + /// + ///Point of click/doubleclick + private void EditSubitemAt(Point p) + { + ListViewItem item; + int idx = GetSubItemAt(p.X, p.Y, out item); + if (idx >= 0) + { + OnSubItemClicked(new SubItemEventArgs(item, idx)); + } + } + + #endregion + + #region In-place editing functions + // The control performing the actual editing + private Control _editingControl; + // The LVI being edited + private ListViewItem _editItem; + // The SubItem being edited + private int _editSubItem; + + protected void OnSubItemBeginEditing(SubItemEventArgs e) + { + if (SubItemBeginEditing != null) + SubItemBeginEditing(this, e); + } + protected void OnSubItemEndEditing(SubItemEndEditingEventArgs e) + { + if (SubItemEndEditing != null) + SubItemEndEditing(this, e); + } + protected void OnSubItemClicked(SubItemEventArgs e) + { + if (SubItemClicked != null) + SubItemClicked(this, e); + } + + + /// + /// Begin in-place editing of given cell + /// + /// Control used as cell editor + /// ListViewItem to edit + /// SubItem index to edit + public void StartEditing(Control c, ListViewItem Item, int SubItem) + { + OnSubItemBeginEditing(new SubItemEventArgs(Item, SubItem)); + + Rectangle rcSubItem = GetSubItemBounds(Item, SubItem); + + if (rcSubItem.X < 0) + { + // Left edge of SubItem not visible - adjust rectangle position and width + rcSubItem.Width += rcSubItem.X; + rcSubItem.X=0; + } + if (rcSubItem.X+rcSubItem.Width > this.Width) + { + // Right edge of SubItem not visible - adjust rectangle width + rcSubItem.Width = this.Width-rcSubItem.Left; + } + + // Subitem bounds are relative to the location of the ListView! + rcSubItem.Offset(Left, Top); + + // In case the editing control and the listview are on different parents, + // account for different origins + Point origin = new Point(0,0); + Point lvOrigin = this.Parent.PointToScreen(origin); + Point ctlOrigin = c.Parent.PointToScreen(origin); + + rcSubItem.Offset(lvOrigin.X-ctlOrigin.X, lvOrigin.Y-ctlOrigin.Y); + + // Position and show editor + c.Bounds = rcSubItem; + c.Text = Item.SubItems[SubItem].Text; + c.Visible = true; + c.BringToFront(); + c.Focus(); + + _editingControl = c; + _editingControl.Leave += new EventHandler(_editControl_Leave); + _editingControl.KeyPress += new KeyPressEventHandler(_editControl_KeyPress); + + _editItem = Item; + _editSubItem = SubItem; + } + + + private void _editControl_Leave(object sender, EventArgs e) + { + // cell editor losing focus + EndEditing(true); + } + + private void _editControl_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e) + { + switch (e.KeyChar) + { + case (char)(int)Keys.Escape: + { + EndEditing(false); + break; + } + + case (char)(int)Keys.Enter: + { + EndEditing(true); + break; + } + } + } + + /// + /// Accept or discard current value of cell editor control + /// + /// Use the _editingControl's Text as new SubItem text or discard changes? + public void EndEditing(bool AcceptChanges) + { + if (_editingControl == null) + return; + + SubItemEndEditingEventArgs e = new SubItemEndEditingEventArgs( + _editItem, // The item being edited + _editSubItem, // The subitem index being edited + AcceptChanges ? + _editingControl.Text : // Use editControl text if changes are accepted + _editItem.SubItems[_editSubItem].Text, // or the original subitem's text, if changes are discarded + !AcceptChanges // Cancel? + ); + + OnSubItemEndEditing(e); + + if (_editItem != null && _editItem.SubItems[_editSubItem]!= null) + _editItem.SubItems[_editSubItem].Text = e.DisplayText; + + _editingControl.Leave -= new EventHandler(_editControl_Leave); + _editingControl.KeyPress -= new KeyPressEventHandler(_editControl_KeyPress); + + _editingControl.Visible = false; + + _editingControl = null; + _editItem = null; + _editSubItem = -1; + } + #endregion + } + + /// + /// Event Handler for SubItem events + /// + public delegate void SubItemEventHandler(object sender, SubItemEventArgs e); + /// + /// Event Handler for SubItemEndEditing events + /// + public delegate void SubItemEndEditingEventHandler(object sender, SubItemEndEditingEventArgs e); + + /// + /// Event Args for SubItemClicked event + /// + public class SubItemEventArgs : EventArgs + { + public SubItemEventArgs(ListViewItem item, int subItem) + { + _subItemIndex = subItem; + _item = item; + } + private int _subItemIndex = -1; + private ListViewItem _item = null; + public int SubItem + { + get { return _subItemIndex; } + } + public ListViewItem Item + { + get { return _item; } + } + } + + + /// + /// Event Args for SubItemEndEditingClicked event + /// + public class SubItemEndEditingEventArgs : SubItemEventArgs + { + private string _text = string.Empty; + private bool _cancel = true; + + public SubItemEndEditingEventArgs(ListViewItem item, int subItem, string display, bool cancel) : + base(item, subItem) + { + _text = display; + _cancel = cancel; + } + public string DisplayText + { + get { return _text; } + set { _text = value; } + } + public bool Cancel + { + get { return _cancel; } + set { _cancel = value; } + } + } + + +} diff --git a/src/Tools/WinFormsApp/ListViewEx.resx b/old/src/Tools/WinFormsApp/ListViewEx.resx similarity index 97% rename from src/Tools/WinFormsApp/ListViewEx.resx rename to old/src/Tools/WinFormsApp/ListViewEx.resx index 6b3c4ce..7e32396 100644 --- a/src/Tools/WinFormsApp/ListViewEx.resx +++ b/old/src/Tools/WinFormsApp/ListViewEx.resx @@ -1,42 +1,42 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 1.0.0.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.3102.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.3102.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 1.0.0.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.3102.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.3102.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + diff --git a/src/Tools/WinFormsApp/Program.cs b/old/src/Tools/WinFormsApp/Program.cs similarity index 95% rename from src/Tools/WinFormsApp/Program.cs rename to old/src/Tools/WinFormsApp/Program.cs index 7f08318..62e5a55 100644 --- a/src/Tools/WinFormsApp/Program.cs +++ b/old/src/Tools/WinFormsApp/Program.cs @@ -1,19 +1,19 @@ -using System; -using System.Windows.Forms; - -namespace Ionic.Zip.Forms -{ - static class Program - { - /// - /// The main entry point for the application. - /// - [STAThread] - static void Main(string[] args) - { - Application.EnableVisualStyles(); - Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new ZipForm(args)); - } - } -} +using System; +using System.Windows.Forms; + +namespace Ionic.Zip.Forms +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main(string[] args) + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new ZipForm(args)); + } + } +} diff --git a/src/Tools/WinFormsApp/Properties/AssemblyInfo.cs b/old/src/Tools/WinFormsApp/Properties/AssemblyInfo.cs similarity index 100% rename from src/Tools/WinFormsApp/Properties/AssemblyInfo.cs rename to old/src/Tools/WinFormsApp/Properties/AssemblyInfo.cs diff --git a/src/Tools/WinFormsApp/Properties/Resources.Designer.cs b/old/src/Tools/WinFormsApp/Properties/Resources.Designer.cs similarity index 97% rename from src/Tools/WinFormsApp/Properties/Resources.Designer.cs rename to old/src/Tools/WinFormsApp/Properties/Resources.Designer.cs index 9beb5be..699615e 100644 --- a/src/Tools/WinFormsApp/Properties/Resources.Designer.cs +++ b/old/src/Tools/WinFormsApp/Properties/Resources.Designer.cs @@ -1,77 +1,77 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.225 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace Ionic.Zip.Forms.Properties { - using System; - - - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() { - } - - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { - get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Ionic.Zip.Forms.Properties.Resources", typeof(Resources).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - - internal static System.Drawing.Icon ZIP_Folder { - get { - object obj = ResourceManager.GetObject("ZIP_Folder", resourceCulture); - return ((System.Drawing.Icon)(obj)); - } - } - - internal static System.Drawing.Bitmap zippedFile { - get { - object obj = ResourceManager.GetObject("zippedFile", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - } -} +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.225 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Ionic.Zip.Forms.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Ionic.Zip.Forms.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static System.Drawing.Icon ZIP_Folder { + get { + object obj = ResourceManager.GetObject("ZIP_Folder", resourceCulture); + return ((System.Drawing.Icon)(obj)); + } + } + + internal static System.Drawing.Bitmap zippedFile { + get { + object obj = ResourceManager.GetObject("zippedFile", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/src/Tools/WinFormsApp/Properties/Resources.resx b/old/src/Tools/WinFormsApp/Properties/Resources.resx similarity index 98% rename from src/Tools/WinFormsApp/Properties/Resources.resx rename to old/src/Tools/WinFormsApp/Properties/Resources.resx index d07bc2a..77b7afc 100644 --- a/src/Tools/WinFormsApp/Properties/Resources.resx +++ b/old/src/Tools/WinFormsApp/Properties/Resources.resx @@ -1,1415 +1,1415 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - AAABAAkAMDAAAAAACACoDgAAlgAAACAgAAAAAAgAqAgAAD4PAAAYGAAAAAAIAMgGAADmFwAAEBAAAAAA - CABoBQAArh4AAA0NAAAAAAAN+MQAABYkAAAwMAAAAAAgAKglAAAO6QAAICAAAAAAIACoEAAAtg4BABgY - AAAAACAAiAkAAF4fAQAQEAAAAAAgAGgEAADmKAEAKAAAADAAAABgAAAAAQAIAAAAAAAACQAAAAAAAAAA - AAAAAQAAAAEAAAAAAAAuLy8AKC0xADk5OwBEQEAAT0dHAEZLTgBNTEoAUktMAFNVVQBcVFQAVFldAGVe - XQBUXmEAX2JhAFtlaQBUbHUAZWRkAGFpbgBrbG0AcG9vAGtydABveX0Ac3R0AHh0dQBxd3kAdHp8AHp6 - egCBfn8AhYJ+APaufwD/uX0AX32GAGN4gwBqgowAc4GFAHyChABzhI0Ae4aKAH2KjQBkhZUAbIiTAGeM - mwBsipgAcoqUAHqNlAB1jZgAf5CVAHeQnwB7kpwAW5CoAFyZswByk6QAf5ahAH+ZpAB8nbEAaqK6AHel - uAB6pLsAdLDJAHq1zABvudcAb7rYAHe51QB7udMAcr3bAHu+2QB0wN4AfcDaAHnA3QB+wt8AdcLiAHnF - 5QB/yOcAecfoAHvK6wB+zvAAftDyAIKCgwCChYkAgoqMAImJigCSkI8AgY2TAIWQlACLkZIAh5KaAIiV - mgCNmZwAlpSUAJebnQCcnJwAoI2MAKecnAConZ0AnqCeAIKWoQCDmaIAi52lAIWirQCboKAAkqOpAJql - qQCAqLcAja++AJGmsACdrLAAnrO0AJWyvgCYsLoAo6OkAKqmpgCkpqgApK2uAKusrACzpKQAu6WjALOs - rAC6qakAoayxAK2stwCisbQAo7W7AKe4vQCtuLsAsrKyALWxsQC1s7QAtbW1ALmzsgCwuLcAsba5ALa7 - vQC5uLgAvLq6ALq8vAC+vr0AwK2tAMK0tADDvLsAzLy8ANK8vADYvr4AzsC/AIy1xACHt8oAibzPAJS5 - xgCYussAi7rQAJ+/0ACpv8EAtL3CAILB2wCJxN0AlcbaAJrM3wCvwcsAvcLFALLEyQCgxdMAoczZALXN - 1AC1ztkAvdXZAITF4QCIxuEAhsrkAIvK5ACBzOsAis7qAJPM5ACcz+MAhNDuAI3S7ACd0eUAk9LtAJzU - 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 - AAAD/wAA+AAAAAP/AAD4AAAAA/8AAPgAAAAD/wAA+AAAAAP/AAD4AAAAA/8AAPgAAAAD/wAA+AAAAAP/ - AAD4AAAAB/8AAPgAAAAf/wAA+AAAAB//AAD4AAAAH/8AAPgAAAAf/wAA+AAAAA//AAD4AAAAD/8AAPgA - AAAP/wAA+AAAAA//AAD4AAAAD/8AAPgAAAAP/wAA+AAAAA//AAD4AAAAD/8AAPgAAAAP/wAA+AAAAA// - AAD4AAAAD/8AAPgAAAAP/wAA+AAAAA//AAD4AAAAD/8AAPgAAAAP/wAA+AAAAA//AAD4AAAAD/8AAPgA - AAAP/wAA+AAAAB//AAD4AAAAH/8AAPgAAAA//wAA+AAAP///AAD4AP////8AAPwf/////wAA//////// - AAAoAAAAIAAAAEAAAAABAAgAAAAAAAAEAAAAAAAAAAAAAAABAAAAAQAAAAAAABQWFwAcHRwAS0BAAEtQ - UgBTU1QAXm91AGZnZgBsY2MAZWdoAHdjYwBwbW4AeWxsAGdxdgBzcnMAcnZ2AHJzeABxdnsAdX1/AHt7 - fAB8f38Af4B+AGt+hgB2e4AAdn+EAGqEjwB2goIAfoKDAHqBhQB/hYcAcYKIAGeKmgByipIAd42WAHiN - lQB9jpUAc4qYAH2RlgB+kpoAf5WcAGGZsgByrMMAdbHJAHWyzABuuNYAc7fSAHe71wB4udQAf7vVAHC7 - 2QBxvNoAc77dAHS/3QB6vtkAdMDeAHzC3QBzwOAAdcLhAHbE4wB2xOQAfsThAHjG5gB5yOcAfcjnAHnH - 6AB6yeoAfMrrAHvL7AB8y+wAe83vAH3M7QB+zvAAf9DxAH7S9QCIgoIAioaHAIGGjACBiYsAh4mJAIOK - jgCCkZcAgpaeAI+anACRkZEAlpWVAJuXlACZmpkAnZqZAJmcnwCgl5cAopiZAKKdngCioZ8Ag5ihAIeZ - oQCIm6QAl56hAJWfpQCdn6AAjqCpAJKhpACYoqQAnKOmAJKkrACcqawAgae0AIijsgCCq7oAgKq/AJan - sACVqLAAnq6zAJaxvAChoqIApKGgAKalpQCgrK8AqqmoAK+urQC1r68AuKuqAKeusgCwrrMAqbS0AKa2 - vAC8tbMAurW1ALi5uQDFsbEAwbq6AM29vQDUvr4A/8OVAIqzxQCcuMIAmbfJAIO+1gCEv9cAgL/aAKW7 - wQCov8cAsL7AAJ/DzgCCwNkAhcPbAIPC3ACCxN0AiMXeAI7G3gCZw9MAmcLUALDExQC9xcQAscTJAKfI - 1QCiydkAps/eAILG4QCEx+IAhsniAILI5QCEyecAicvkAIXL6QCFzesAkcvkAJrN4ACZz+UAlM/oAIbQ - 7wCK0u4AndDiAJbT7QCY1e8AlNntAIDR8gCE0fEAgdL1AITT9QCC1PYAhdX2AIvV9ACN2vQAgtX4AITW - +gCK1/gAgtj7AIXY+gCG2fwAh9z/AIna+QCM2vsAit35AI3f+wCI2v0AjNr8AIrc/gCM3v4AkNr1AJfZ - 9gCd2vMAkd79AJ3e+ACr0+YAotnuALHX6AC02+sAot/4AI3h/QCS5PsAmeD8AJPq/QCZ6/4AmfH+AJz5 - /wCn4PcAoOH8AKrk+wCp6PwAs+j9ALzu/QDAw8MAxcPDAMPHxwDFx8cAzMPCAMLMzwDJyckAzc7OANfB - wQDRxcYA3cfFANDLywDUzs4AwM7SANHR0QDU1NMA0drfAODX1QDq09MA4d/fAP/v3ADE1uIA4ODgAObi - 4gDl5eUA7urqAP/o5gD76ekA9vn5APL//wD7+voA//v6APr//wD+/v4A////AAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACnKiopAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAKcuhYxtKCkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlCxsVVxycn0DPYgjAAAAAAAAAAAAAAAA - AAAAAADONzIyMnpTf+vz4AiVhCMAAAAAAAAAAAAAAAAAAACdNjk2MjIyh+Hg4H/+U6fxJgAAAAAAAAAA - AAAAyz03OTk5PTk9OTky5+P09PZOrPpRAAAAAAAAAAAAAC4tQUBAQUE9PT05OTn39+WA6A+t/l0AAAAA - AAAAAAAAii5BQUFBQUFBPkFBPfKCeoGCFMj+XQAAAAAAAAAAAACSNUlBR0FBQUFBQUE+k+R9gYNKz/5j - AAAAAAAAAAAAAJ01Sa9Hr6+vR0FHQUFB4uPr7wzK+mcAAAAAAAAAAAAAoDe3R0mvSUGvr0dBR0Ga43N4 - CK+9cAAAAAAAAAAAAACgnbdJr6+vr6+vr69Hku0FAgsKlb0AAAAAAAAAAAAAAEegt6+3t7evyKVsH2JX - 7ujgSllOAAAAAAAAAAAAAAAAqke8t6+chV4mEt0je1rl/v4B/hIAAAAAAAAAAAAAAACUaSRSEmAg4I0c - FA9gS+D061P6TAAAAAAAAAAAAAAAAAiXYm9RVxBTBG8Vam9a6+vg8P4QAAAAAAAAAAAAAAAAHQ8cFGAa - FplTIOIGnIYgYnZ1WpIAAAAAAAAAAAAAAABOGG1kDXwJi46o2bmvt7ediIqSkwAAAAAAAAAAAAAAACVo - HpzNxr28vLy8vLe3t6+vr6+iAAAAAAAAAAAAAAAAq9e9vb25vLy8vLy8vLy3t6+vr5MAAAAAAAAAAAAA - AAC2r729vb29vb28vLy8t7e3t6+vogAAAAAAAAAAAAAAAL22vcm9vb29vb25vLy8vLe3r6+iAAAAAAAA - AAAAAAAAwba9yb3Jvb29uby8vLy3t7e3t6IAAAAAAAAAAAAAAADBvdHRwdG9yb29vb28vLy3t7evogAA - AAAAAAAAAAAAAMHB08HRvcm9vcm5vby8vLy3t6+iAAAAAAAAAAAAAAAA0cHT09HRwdG9vb29uby8vLe3 - r6IAAAAAAAAAAAAAAADR0dXT09HBvcm9vbm8vLy8t73HogAAAAAAAAAAAAAAANPB1dXT0dHBwdHJvbnG - xq/Gr73MAAAAAAAAAAAAAAAA09PW1dXT0ba2r7m9vbe5yc/bAAAAAAAAAAAAAAAAAAC2qra8vb29vcnS - 3AAAAAAAAAAAAAAAAAAAAAAAAAAAAK6qttHa3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////////w//// - gP///AA//+AAP/+AAD/4AAA/8AAAP/AAAD/wAAA/8AAAP/AAAD/wAAB/8AAA//AAAP/wAAD/8AAA//AA - AP/wAAD/8AAA//AAAP/wAAD/8AAA//AAAP/wAAD/8AAA//AAAP/wAAD/8AAA//AAA//wAf//8D///ygA - AAAYAAAAMAAAAAEACAAAAAAAQAIAAAAAAAAAAAAAAAEAAAABAAAAAAAAU1VXAGlVUABpaWkAbWpqAHV5 - eQB3eHwAfHp6AHx+fgCKeHcAgX19AJN3dQB4fYAAXYueAG+FjQB3gIYAfoSGAHaEiQB7ipAAeZGdAGqQ - oABgmK0AdZ+wAGWlwgBgrswAc6rBAHqtwQB8sMAAc7DLAHe1zQBvvNkAerjTAH261ABwvdwAdL7dAHq9 - 2ABivOEAZr7hAGi+4AB2wd0AfsDdAG3A4wBqw+cAb8nsAHTB4QB3xeQAeMblAHnH6AB6yOkAfMrrAHzL - 7QB7zO0Afc3uAHvN8AB9z/EAbtz/AHXQ9gB90PIAf9H0AH/V+QB81fwAg4SEAIqHhwCPh4cAiIqIAJyS - jgCFjZIAgpCVAIaUmQCKmp8Al5STAJ6dmwCghYEAoZGLAKKVkgC7npwAoaGdAKGeoACDpK8AiqCoAJqh - oQCLrLcAkaqxAJestgCJsroAkrC8AKGnpQCkqagAqqupALCrqwCitLoAsrCwALaxsACytrgAt769AL6+ - vADAtrIAybe3AM++vgCHtcYAjLjEAJS8xACcxNQAusLMALjIzwCoyNQAo8/fAIbJ4QCDyOQAiszjAIvL - 5ACBzu8Al8/mAIvR7ACL1O8An9LmAIDR8gCE0fIAgdL1AIbT9ACB1fYAhdX2AIrU8wCJ1fUAitj2AI/Y - 9gCB1fgAhNb5AIHX/QCF2PoAgdj9AIbZ/ACD3v8Ahdz/AInd+ACI2v0Aid3+AIze/gCU1vQAkNn2AJXb - 9wCQ3PcAotLlAK/R4wCn1ukAqNvwAIfi/wCN4foAi+D+AI3h/gCO5f4AkOb9AJXl/ACS6P4AlOv+AJPs - /gCX7/8Al/H+AJn0/wCc+f8Ap+b9ALXk9QCz6f0Av+z/AMjLywDWxcUA0MzKANHOzADZyMgA1djLAM/R - 0QDJ1toA0NHRAN7Z1gDZ290A29zdAOTNxwDw0MoA4N7eAO3e3gDt4t0A/+HeAMrx/wDP//8A1P7/AOXn - 5wDo6OgA7eroAPHv7wD39vYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAABqZhcUAAAAAAAAAAAAAAAAAAAAAG4kSkFKXAKhGwAAAAAAAAAAAAAA - kCciIh4kS6Sssk2pUQAAAAAAAAAAHDAuLi4uLiImZ6a8vUajYwAAAAAAAAAAHDYwMC8uLi4mj7VhqAi2 - ZAAAAAAAAAAAIDYwMDAwMC8vKrBZYj+4ZQAAAAAAAAAAI3Z2Ojo2NjAwK2imswm3VAAAAAAAAAAAKH46 - djY2Njo6OHBcBEg3GAAAAAAAAAAAbDt2O36CgnYgFrQEAQtpAAAAAAAAAAAAdpKCchpSEkxER6X/Pa9K - AAAAAAAAAAAAThNXEEVfQggICKy5XLtSAAAAAAAAAACvWEJABQVQD1YRXUlgrbENAAAAAAAAAAC6BURA - Tz5aVXN+gjsZFBV8AAAAAAAAAACrXg6OipKSgoKCgn6CgjtsAAAAAAAAAAAAgpaCiIiIiIiIfn52djpu - AAAAAAAAAAAAeJKIiIiDfoODg4N+dn5sAAAAAAAAAAAAgpiIiIiIiIODfn5+dn5uAAAAAAAAAAAAfJmY - koiIiIODiIN+fn5sAAAAAAAAAAAAkpmZmJiIg4iDg36Dfn5uAAAAAAAAAAAAk52ZmZKIiIiDg4iDe3uR - AAAAAAAAAAAAmJ+dnZiMe4p7e3t7iIgAAAAAAAAAAAAAcnx8doygogAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA////AP/8PwD/wB8A/AAfAOAAHwDgAB8A4AAfAOAAHwDgAB8A4AA/AOAA - PwDgAD8AwAA/AMAAPwDAAD8A4AA/AOAAPwDgAD8A4AA/AOAAPwDgAD8A4AB/AOA//wD///8AKAAAABAA - AAAgAAAAAQAIAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAEAAAAAAAAEBAQANCgoADxCRwBCRUYAXVlZAGlZ - WQBRbn4AZGRkAGtlYwBtbW4AeWVnAHlzcQB7eXkAgnZ2AIF4eACFf38Ak319AE17jwBSd4gAdH6CAFyD - kQBzhYwAZoSRAGuIlQBnh5gAZYqaAGSPmgBwjJgAdpGcAF6WrQBvk6MAcpWjAH6XogBoorkAbqvGAHC7 - 3QBxvd4Ac8DfAH7H2gB2wOIAc8DkAHXC5AB2xOcAeMXmAHbE6AB4xugAesvsAHzL7AB+z/EAhoaGAI2J - iQCdk5MAn5eXAJubmwCfn58Ar5eXALKVlQC2n50An6GhAK2npwCgp6oAqamrAK2urgCxsrIAtra2AMCn - pwDOvLwAor7QALzAwACAz/EAjOL+AI7m/gCQ5v4Aken+AMDAwADEwsIAyMDAAN3CxADRzc0A3NDQAOPc - 3ADq6uoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAFxcXFxcXFwoJChADAAAAFyUlJSUl - JSUMOz8/GBcAABclJiYmJSUlOkBPTCAoFwAXKCgoKCgoKE5CODUaKBcAFygvLi8oLS1ENQ4RHygXABcv - Ly8vLy8vLzY8ORkoFwAXRkZGRjExMTE9DQsHLhcAGABMAEwATAAEPwACBhMAABwyMjIyMjIyDkNSAFAW - AAAdAEwATABMAAVFQAlRAAAAIUdHR0dHR0cUMztMDgAAACFJSUlJR0pHRycbFRIAAAAhSkpKSkpKSkpK - SkoeAAAAIUpKSkpKSkpKSkpKIgAAACFKSkpKSkpKSkpKSiMAAAAAISEhISEhISEhISEAAAAAgAcAAAAD - AAAAAQAAAAEAAAABAAAAAQAAAAEAAAADAAAAAwAAAAcAAAAHAAAABwAAAAcAAAAHAAAABwAAgA8AAIlQ - TkcNChoKAAAADUlIRFIAAAEAAAABAAgGAAAAXHKoZgAAIABJREFUeJzsvfmzJll63/U5JzPf7W51a++q - 6n3vnp7pkTSyZNnWoJBljAghIAJHQATYv4CRkMAQwfYHmIAIR4AiMIYfZLB/MMIC7ViyJM9oG80IzUyX - Zqant+raq24tt+76rpl5Hn7IPFtm3upBaDS3uu5TcevNN/PseZ7vs5znnBeO6IiO6IiO6IiO6IiO6IiO - 6IiO6IiO6IiO6IiO6IiO6IiO6IiO6IiO6IiO6IiO6IiO6IiO6IiO6IiO6IiO6IiO6BEk9Z1uwEFUXvuH - 6zpJXyj6uy8mveQl4AcbSX6n/vw8gF7925//c2zeER3Rx4IOLwBc/9l/ojLzV/c37/Y37z6YXr/1YHVp - 2OsvLw9YXxtx8uw6gkYNM1Aa+qnN+nlgG7hYf74FbOvVv/3Wd6YnR3REh5cOLQCYnf9F1GiZ3/6nv8Wv - //qXee7ZC5w+NmT12BoXzh3PB700Gaxd0KOlY+SzLbLEgEwYZQatQQ/6NTAkHiBEHCDQBIi1//AIII7o - saPDCwD7Pytq+BR3bu3Rmz9g++YVBEU/hcm8JBtk6HLB1taUrD/gxTd+EJX0UToBU2DKGaaYYcwcySdQ - TtHMSXVOkijIUkg0ZBrSBJIELCAY0wSIK3r9J69850bjiI7o20OHFwB2/5GgV1C9PlL0KafLlOWExWSL - spxQLibM97cp8xllviAbZCRZQtpPyQYpOtWkaQqLk+h0RJoOUUmtFUiBmDkmn4GZUxYzpJig1ZxULdCa - GiASSBT0ElAK4Erwd5VC3Hd96j+68p0YpyM6ov8/dHgBYOcfCMpQ3J8iWuidOovJhzAW1OpJUCOQBCQF - 0SymG5TFmDLfZTHdocznFIsZ+XQOCrJBRtavgCEbpCRpgkyWyIZrJMkQlfZR2gKEQcwczBwpp0g5xxRT - MjVFMa/AAV2Bg1bVp9LQBAh7LeaKPv3TV74jA3lER/QQOsQA8D+LSjTzm/dRgx6902uUu3vk98f0nzwO - UsA8hZ19WF2B0SqQAX2QIdCrr5cw5Yxi/oB8tkVZTMkXexSzCUW+oJjnpL2UJNNk/ZQ0S1CJQhd9er01 - kt4IlVTag0oGoBMwJZQzxMyRco6UlQaR6jmwgARAQ0+DUAFERVfqv7eAHbw/4i19+qe3/zzH94iOCCD9 - 6CTfYaokK6AQlWIqjoIkAzMDTPWpEpusYjqk+iKC1im9bEBvaQisgDwFDIA+MCCf36fMxxVIzPcop3Py - 2S7FYhNjDL1BRpJqkjQh6yeoQpHqIb3RMVQyRPfWUMMzoPuQ9sEsoKw0CGSOzKdQTlFq/gzl9BlS9VkA - srrNicbc/Rkw4gCBJkCc/Y+PAOKI/szp0AOAIKiKoyueri9RWLu8Agnlc/gEUn8UwD6ovfgZgAhZf0jW - 78PSCnAK6FUmBgPEQD67Q7HYpcwnLKbbFIsZZbFNfvdODQyaXj9DJYpEhH7aI8mWSPvLqGwJla3B4Ayk - wwokTA7ltAaJWQ0QE5RavEk5wQGE0s7EMBv/A1hAKCUCCH3+P/n8n+mgH9FjQ4ceAJCaUT/KWJEgjVI+ - n80r9YXUKCKAsmmm9Z94/DBVoYqEXn9Irz8AtQacAwageqCWKObblMUe+eQeRT6lyKdM9vYpi33K4hZZ - LyVJFUmiyWqASPt9sv4aOh02AGIEybDSHIpZpdmYGVJMwYxRMn+TcgqJ+WzVr+r1mZv/ve3p5+vPKkjK - yOcB9JN/x94/oiOK6ND7AGY376MHGb0z6xQ7Exb3thk+dbpawtufw+4+rAxhZYDrjuN9aX+XGg0krC3U - MMI8QSJDBRimUZbqAxmolRoU+qCW688ei/FNynxMudirtId8TlksWMzmaK1Is4Q01SQaUgVpokl7fdL+ - auV7yJZADypgSJdADyuNppxAUZkWUk7AzFBSaRIkBgi0ImdGNQDCRlEeAcRjS484AMxgd1wBwHIAACFD - B9p+CxhCIJAwfQMgpAEk0pVfHGiI1NaJSA0M/epPL/vrZIUyn1DOH7CYblIuJhT5mHw2oSwKiqIgTTU6 - UWRpQqqEJFGkiSbrD9DZSgAQQ0hGFUCkS2AKMFPI9z1AlBOUTKCcAUW4chHS5+kKknrqPzsKkvqY0uE3 - AQ6i0NQPL1QtmUUa8Gb9AeohwEBsOtBxvwUizTwKpSwYKJA9MHuxdlFnT1SPRPfpLS+DOl1Jer1c+Qn0 - kHxyhzLfp5htsZjtUhRz9mcz8q0dYJssTSofhBKyVJMkikQrsv4QlY5QyVJlYqQrMDwLyXIFEGKg2Idi - XP2VFVDA9LMUM5DFj6P88qa59vdA2KYsu6Mon/vPjwDiEaVHDgC8Bl6r413qfov5CXwE4qV8CwWUv2WB - xFIl0gPXQehnCJ2KzXqDdA0FBZlXjsBiN25PrUlkeoVMZ7A8grVTNTCMIFlCpCQf3yGfb1MuxuSzXaaz - GWWRk+dbJMk2Wit6ITDY66yPSkaodAmVLEG6An3rgxhVbSvHToOgHEM5PSZq8lklMzD5j4f+FvPhfwcB - ICASR1E+/19c4YgOJR16ADD8f7BTOvjRU8CInaq+qpnePrf+hNgcUNY3YMHBlhX6BqIGBaASOipbje1o - tNmrQe6Bz2OxRCX09BK9/giGx+D4+Yp5dR+SZYrZA8rFbuWcnE/Iixnj/QlFUWDMlCzbJdE1MGTaX6ca - lfZqgKhiIEhG0DuBSmt/BKoyMYpJABCzY1JOPqtkCjL/cdCue+bSfwvNICnhCsZcAa7ol/6rK823dUR/ - PnToAeCjyBhBmRAkGpLb3mvyl3UGOiBQTsp7DaGmpuQGDxZNbaLFx16iVyAUXIfrmp2gdUCbATElyuxA - sRM3sNZ+Uj0i0X36SyuweryOUVip/AUqY7F/o1raXExYTLeYzxeU5YLFYobWU9JklyzVlaMyUbWjsrom - 6dXBUdWqhUpHkK2j7DKnyipnZDkN/54RM3tGmUkdv+HJvPffwEFRlEcA8W2lRx4AKpKACUOJap/F6/5R - Gvvd2e0cwIiW4ZsOQoiY3xDwdhdyNAqPvnaASBjYFNyPIc73TVAokSrwqJzAYitqpl357KVrZOkAsiHq - 2Jl6paEP6RrlYo9yts1ifKeKnMwnjPcnlGVBWRrSdEai9wJgqFcvUoVWCnRamxeV9qDSIWRrVah10q+W - L83ML3VWYPGMVH9g5lZ/wAD5O38X2gDhgqSyV/7royCpPyU9GgAQCMpO5gQ6ucap8h0OPGfMh5I5rDA0 - GUL7vKVK4NV8y6ShTRD6EcK+SJCuUWbLEdlRb5fGoJRj8NpbgVLhqkRQYrENef1lZnNU46B1H530yZbW - QK9WIdDpam1eDFns36pAYr7LYrZDXswppnPyvCowSzVpMkaHfof6GqgAIhmhsiHopWqTVrqC0n1UOqgB - ooqF0GYO5QQp589IOX2GcowU86gzNUC8lZflW+9fuv1Ln/qxv/+LHNG3RIcfACLmF8QcgAChLR/dt2px - w9aO/H8dzNeUzM2lv+bqQ3QdmiG2vFB8h9pEo12hRuHq6fCCuCyNeqLu1RpBXVaVReqUHhzEqQf1c5lB - Pod8x1ssrhYhzdbIdB+WhiyvvYDoyqlIuowpFxST+9XSZjEhn+0xmUwpy5yiKEkTVQPDpO2c1HVfdFKt - YCTD2sQYoNLlWIMoFy7UmmKKlLM3e8Xem2urO3/z4i//xBXg7xwBwUfTIwAAboZGWBB/gUiSttRnYgYm - vK88I4rz5DXSWY6S+HEXgByoojRV/0AfDwEm5OdIanebBnZkQt9ixfS2KKkVHPHVEQJBUI/47toGqLBd - QlVysRuBiYRDoDNSPSIbLIM+BuvnUWm9tJkuk0/uUi72yaf3yef7LIo5+3tTyqLAiNCrHZJaT+lllQ8i - 0YpeFsQs6KTSIBxADFHJcVTS5/zZHZaXBs9s3Nv+hYu//BP/66d+7O//rQNeyBHxCABAi8/tTbukZwV8 - qMY7hoaIY7pUa1eJaacJGKFlFhDfdo7EsMqo+tCkaABVWFjIlQLOlGiGNzvp3h4Wr+778lSQsGk9RIpI - 0ClBosUQByhi9Qvl34Mlk4PZQYod1x5jNTABnS6RJH16o2XUyvHa77CCSpYQFIv9W+TzHczC7ruYY8qC - PJ9VKxVJrTHoWXBd3QdQ2QrHX/rrDJZ/myuXr/zNi7/8E9tnnnztP020UaVBKa3MmU/91EEo/dhRh255 - OMhGAo6v3yPpZwyeOE6+M2Z6Z5uVZ85UE2p/itmdwMoQvTwIcodMXHcxWuKjg9GDL9J1TUPUBd8dAITl - NTQICTgpal9TIwk+1UPaEtxzeBgUV6nyqmZjawhYyPAalaWqKtuXA5YkJFCYrCFRp5eO9GG9vo6mYuPv - iErR6TKSjip1P6vCodFDVLZKMduinO8yH9+lyCeU+Yx8PqE0BaY0tSmhyYYnyJaeoJjcZuPGB2id/tvH - Tp3/IC+KNE0zBfoDEbVI02TvzJs/WbY7+vjQ4dUAIkn7LeBUM33L81VPtIbJHRQQfFhpT3wvzNcCkMAR - GEjJzsoipg79BkFzVIOhPOcF7eso1yoSVmLX/zktKUgW5hPL+AdEQoZd9N2p0keKQ0cf3euzbXPjpAIt - QoEUmHwb8m1MpH3V5SQjkqTP0mgN9BlUMkBlxyAZoJIB893rFIs9isUei92riEpZO36GRVH849l0fw8k - n092t5TO7qfp8Gsw+KWNt/7Hf3H2zZ+cd3b6MaDDCwDQPRm/FeUt8t6H+QImM7SppX4H+UIVvbNdEff6 - j670kZ0fgk0DLA7STBrM4a2hKo0KVHObRdV6fq24E/kgQqne8CmGTVKIU+XtXgdpmS62QguYXvOJgaK6 - UHV5vhp7Hw+ONS5JOYFigiy2fH8dqAm6d4yeHtIbpuilZyHtgcpA95K8zNcoZ5KP7x7b3Lx2Ybp/7/X7 - 99MffOLCuZ+5/ZWf+dknvuunH0sQONwAYMmq1wfF6XfmqT/9ulhMkZ3c0DAeyuCeCWLHYpMROpgivO/a - FeY7SPX+6H57X6aXyrESEfTRPpQaGKhPXIj8DI7r3VdvUoAS1Wpu/LVeZajrc8pY8DpUPe5VUeI6IeJx - EalNmbp++7xpqijALHaAHRAwegOSBK2qQ1qywbrSS8uqv3xOj46P0gdX3h/kD3aXdnZ2/stjaysT4H/7 - yEH+GFJrO9ihIzdpAnUwWBlw+q5NaK+VxHY/jc+mQy6qCyKHX6TaNpk/bCgRnzkKNYFo8qo4X8ixIZAo - 1VGuchJfxHr4K699qwpbXF2+KBV0zV5LR5/a3WhKZRUMjoQNF5+25b8M2ieOyW0bos47jUCs49GCVjQn - VKCJVC9RTI7kc0wxQfI9ZHEPmd8C2UEPTqj18y/p46tDPd7ZPjWdl3/3oR3/GNOjoQE8jJrM3entx08Y - 54zrMFojs13a9+OKOr+2txL7ZnVK+Kabwn4221K33y74hfChQqkfaiLK51fi/QBVnpCHPLhWABKsMARD - 5i2bGnyCoa7ZE2fOBGV2k/jmeRvElx9mVa2KIg2gAgXV/dqlBBFMYYACjUFJgeqtsnRsWZtbe4P5dLxa - FqVK0uThCPgxpEceANw0iy4I+KwxEcOdgl02egQUduKF2oLNK8QgEjB+pO4qX2cTHMJ2tvYT1N8jVdex - r29PYGu7jUpBEyNTJxiPzkfKs6Xy3Bg31yokohAlcVejcVau+YhPFwwgtjbX/cagWMwUayrUYymBU9gC - oB3qsNlOQzICpcGwAAVaaUhSdG+JfqZlsrdTQp4ABY8ZHWITIJgR7n2b+H6URvxMtLM6krodEilk/i7A - CO3hlp+gYSK0miXxg6Z4ioAlaGcIHF39jFYXQgaqvkfCEVuk1RcUdmFOSYAxTtTHbQyHMYqaFluTHR2v - ldicEmotqqNLdV8kAre4RPd6VAh+ti1tOGm+AwsbiEHKEjEFUlR/pphB0ifrKTWeTkopFjyOdHgBQAQw - lToqACZgDhOkkUCy2u94Bo3W5+sLG07spK4KpIfqAIYmM9OagLGxXdd/kAocil+HN1ajCBOFz+11CHpW - Jw9j/2omd8E6EpRWjUeEV+KletNEcbcImmY9dBFe+TocZFqw+KgxoJLozmHoHgdqWqSmBNfKrmhIDYAB - qbCPUk2ZstIGTFkCCq0TBEVeloUx5mH2yseWDi8AQMB30n7/0ths05zVdOWxsx3P/NJMKzGTRe2gYzIS - M2jUkCZINNLbNM6+leCZCtqIfy5ODrq6LLN4rBC81LSSMw4Xbn7x/NNkPJ/OOv5V2MVW16TGPttOCRSx - YKCUByfvBHRfA5VBPDhFQKXcWBzQlNY7ExEwBspKsJRGU4jIYlZkhSkPNy98m+iR9wEYY1AiHskiEFDx - zdhgDaR8g9EcSfThKRB/rYcNidW5knBAefaZlfQOqAgYImByAPF+ASvznfS1S33eIo5kvN0M1GqDLT8A - Ca9R+HRtu74CKFXbF15p76qhVvmDpcKY4f09t0IQWF1RmY3X3E219iOmqrc0FLmiLEo9yxcL0xkY8vGn - Rw4AmhPKPwind23YWkZqSJS4tANmz0cF+0TXDQb+SA2gq00ds/ugkNyAocO6nBXtigrMgAAIHH7FnIYi - OIEpGE4XQKz8zsLu3oVeALxl5dI76HGvptHhuGIn+UPYCHscNbJRTjOxCsa91qS0UCxKM52YVJlvJdz0 - 40ePhtrTpeV3Ujgh6tThnGrPuDhNVwRhqEdGtvgB9noo+btwoJ58Vb8OAJRIPY+vIwteqEMEfJCvCu7b - spQFRCWtJb3qOvAdNNsQuTIk4LUmv9Tts11T1EuKQbro0rZFNR7VPakdhKFtL0H5rq+2QQ3+bb7p6NUg - YCqtpjRa58VcG60eSxXg8AJAg38j7rfXpovJpJ3WAkLktQ8ZP0zfYEoX+EM8q1pmg9DpoIMAOIJGudks - cRntisAxi0QYZPVfnz1YDkNc9J3XFZSLj4oGtjHA0ngWLidWWkAozeOmK9dKVaVtLbH6oWguW7rXInYZ - sl1HEyjsvaieDtDxy5oWqAQlmtLMJF/kJpH2GemPAx36TjfmSMfD4MtBEYIRE4cStEtEN251KQMR0zSf - BfU0Ga2lZNac5aSsBZQAWOq2t+Sk+Cy+qGB5r1adrRvQAUldpLW/wfsQXNlhe2zxdZl2P0ArOFGp4JhF - cf2XVsvDSvzhJLYFrm6ruYTda1lJTgdovME26LhXYsAuJ2sFphAWBlWaxy4EAHgEACAi/wajW/5929lj - mT7wA7QLI7IvI4ZtSGgI6uhg+q5AItucMEv42VCrfb7GLLex+s22WEyLVjZ8md4HUKdpsGDlLPQMFLZf - JEirqjV9pSqp7Ots52tgRpVHNcaiTuxhQUXvR4J356INCX0JTURudQ1p9dX3BQFMdWlUiSiDElEi+sgE - eCSoyzkHof4YMGUdONSpKUQcEzyLCuz+HmoBTSYH4hkpra+uDVG+QBuIqGIQv6iG5wZp5HH2d7gL39Zf - aQd+h3S4hz8Yi8DRJ1LH4Ft7HKhWHTooGk4VAFTdu4h5VRBMFL8D20anpUi9kCne33FwvR9BbuxLjAIt - AkYpU5QGis5ufdzp8K8CmCD6TwLL0wbzeO22m5rMDwS6anC7rTa6L80oQMcs0r7dFSD0rUzQaL8/gdir - y6CW2sGjLgVDBe1VxMt2YpvsxGlkP+AG0nXXi18vgUM2PgD3pBNaiJOKV3bCcpWKvwdA2w6mfAj3d1aq - KpGnIUFhTGXKaKUpC5N0F/TxpsOrARipnXyCGBM7/Oy1mz1dCNCU1uGsCsRSq4iOdFFZ4B1QqnH/II2i - Ke3rMj4SaGym6s/a96pRT3zSjg8UsgzkVwkInnQxf9xlCxaq1gZUnbeNmx2gpzrMi7BPDQzGtqh2APqA - Hz8scb8fgqoONA8AbnSlVShNqcQUCiNyFAl4uMjO+y4VOxLW0piI9V/ImM3PZj1d9VqGbDJ4FDnYUXDY - 3g67PeYwGuXYR03A8HMz2n4rVf9duTU4qEAzCV1tvheWozzzx74UvPCv21IJZgsBcbq4bPtGutx/ASg0 - u+hUhgpiJGiQP9KhWVbHC22AahNjLTgY2zql0AZTaZqPHx1eAPjTUCjRqxvxs0iih0wcS/0wRNU/qK+V - CvYkSVCkxN9V+LzxrFGkt+N9HULw3cbv+xA/1xRnErhHynfNld5Qqx3AeCZSbl9BNAIuWMir311IXOnn - 1hcJVLsFIQAjPwY+Dir0GNoPceaBqyH2E9b3Q+ngqwjOKeZgkjpOwaAMGIx6POX/IwgALRNbGjedc0z8 - s3DNvrWvIEjvpKiKn0Oc30l55etx34N2Edx3jrtA9XcgIq17Tk0Xnz3chx/W4yRt2Febse5DGEATfTpV - OyzXif+aGTviD5r9dfEBtrESD18Q/CR+nTHuSN1n+wMl+GLqfvv3pFCtoyLFd+gAqvOr+qhUpRERklIo - zeN5NughdwJa1TSc3DQkM4177UfuRsAb8Ym7xGcENlXwLqEXluce2Ikb5A+WniJPmk3QYeJER2855cBX - Jl3tU4DLZ6V6LCctqPiqpGOcaETwKQ8g4s8T9CcIBwDpxjToVKSph0ZB0zDxJxzZckKsbXsB2+q9qyo4 - ICV8XiGGBqr9CmWNLjORMjEHLS99vOnwagDNoJ6D9ecD8h+QrqvIiJGDhOHuvFaQUaijdlVAqOvSElch - SLSEskSfPnq44dBTHiBUzC2BKk5tOlCZB5Ek9W0Jcc0G+vi6VcRgMWuFEl8R4kbI/PHxCd3vzkl1cd88 - pjbrjKjxrjpRjehdGgPaiBhBEq21SR6qOnxs6fACwIEMLq1vodB1jBodEPIQMGlJ+TqtEP8BXrWmXUbz - SG13z2aTRh005rHQuQhgk0lw7l0AAlIzvjstB78B2De1lryhKdSY7/G3qtOulocIR+eXsAZAXbGT5nV5 - CtwuwepRu8bmuFrgCrUA/7pU4Bfw3N1cIWl0yfVHGYNBKxKlixKD6CMN4FGkWM2z31T8IESJFlOHzzq0 - hZbzsFlf8CetzC17PUoXFd0OsHH8oGJ2kZCRFW6Jrup56MBrlqceLiXdoyDwp2H/t9m2Yvzm0KlmGrGn - +Vrtwo9NzPy+Nq9x4JyUYeByVw+a2Nx+1yUiJUakAsRSjFJlmqimm/HxoEcAAPwbFIS2qWb1yqaEtcwe - zICmtG85DPG+gFC6dIFGs8zwftOp1wKbgGqp2MSnuub6pooeOgaqP2KM8ZpIJXXDervO5+la1qu95Fai - W/+d6mi+bYPCgwYhlgY2gbLgRcTBqm6FhM+pzwGowa0VUdiYB9XQxPfaVl2dwkgdbahRSlMKGp09Arzw - Z0+HvtNVOGqgFrYksPtS/dklOsc0tXrYYsQOad8lySO7v5m+eR2kaYkoJ8ta9UogFZVztIFV6aupXTOQ - CnDLkQqqrbgx3PpePajqbu8LCGIF6/9iRcWeJox3ygXPQNxQo6Tt6qjrCLcJxxaaRH6GyIHY6JsDpghf - xXcvUHkOFOe1Q9OUJdWPERcqVYpEPX4nAsMjAQBtXo0T1ImcSizxM58ILzkaaSKeUD5NS6896D7B5O1w - DjaBwLW5qjg8ZCPkRoHAk19HyAXJ7FmA4iqxtr/lsMae+SYABU0JQaDiRamfiwMe1xWnkIiryhZ24GJM - Y+XCviqnpYQF2z42sKCaCxLhhN0n0GT5LhPB+isUqmZ+AUEVZZmg1WO5DnjIlwG/BXISP5xgDe6Ljg+0 - WsEBM7W5xBaR6pjhAVN1mScVF8flNdTykAtdcrtTL2xP3WwF8Qyvnzn73zoFbXOViuvD1xPZ9zafK/7g - sbAmsxe8QUkuW51GfEUS/G/b6c8F8M5EvySofLujjUo2qRz4mwAhieuVVUFAo2vtSxlJk8cyFPCRBgBr - I1Zf6ptd0G/1V1FBgkbChnD0QAGtAlt8ftDss/rqQ+qx89Ext52qvn2hxIsFZb3dR/nr6HEIMI22q0Yb - 7DP7qzsVz4Yn8jQHtrGbUDx0SNiHWlPoUsyc4qYCthc7RsoPnyut3p1oUdCNATUISKuO5jVKQCu01acE - ShH9eLL/I2ACdFM1S6w6GL32yDMfJHczJtQn7a36IszmOKipWYQJuhi/ow6CWyqoq579sf/ZusRiaWyL - tTYwLpXnXsfTdb0q9ODFxXc2WZqO8Ci2oIulVAsXOtf4nQumcUhodA6A6tRuIo2hBUI+6Kl1LPgBr0fV - /hajFTrRqKTafJCmnc6Ljz0dcgDoePHBS42nQ2OyRwwrAcN3MW2gwoe/mBE1oRaLYShvq4ninzedbVZd - dYddVJl9RF1QDzVz2zVzhyPN5bb4BzScMmTDclsHALYnubWfvWqtgkWHsK8d4+YjlDpSWOde3WfVlcL/ - /FjYMXdugStVxWmC9inivF0UalUVACgSrRElGKMRYzAt9Hs86BADQAeXNVYEWslDqU7HJxCIo/hBK600 - rpsgQYw5hg4+k0Y5/r5LGikDcdroYAxFLP5du2JEbPNZF+Pi+2/N4jqzy68843QjXs2kypsgcR3KKtle - s2gqI1arwUKZ8jW4NnrNrdkTd95Bl/AONB0J7wEojdIalaSVk1WhJNGHmBe+fXToOy3SmOTfes7ow80q - J06tZIlEbExuJ4oTOXGZ9p5zhUdGa5DXFdhul+VpCezkSBoGOk4EXN1MZSW62PZHiBCDhd1z4IoROyoq - 6i5N5oxbgDS+ufLVARmcPgMS/GuWGPXLAmBQhYRfwrStOzZfDTXKfurqwBlB95pnzT0mdOgB4KEkNCZW - 87uVwE1J7DUKR6G/z4FCAyAO0hKtpzoCl6D8cEtsOHmj9qggSahW+6W9pvkeYEh3fyIpGuSqu1WL5+qu - CofAM3E4LNGFyAHDEUtxsYWHzaiHVEW6vmo0N5b61jMSdkth/Scqzk+QqKt5tns6QyklWhRG9f40UuaR - p0cTAITqpwJbjB8B21LfAAAgAElEQVQgQhMcmppAszzC/KG6T5sLWkweN0SiCV8BiVu/xj9yXm+bL2yQ - a4rfGhyc8lfxsfhuh7/t59V4RTjjA1lfXYmvVQVgFVowzSH2DxUSLSW0yW7mqZpmUYfYlAkCrXy9Hnlc - 6wVspGGE1THSReTvhkCsoF42VKJAK2VEEnX024CHkEImDn8YWOIkEdPTSBfydAswCLQDm7+RsDW3QhHe - MDLrSVot6XnZ5TbXunaIvxeRsvOzUW2w+adWz0PGcBLdAUXHOEDE2OD5zK3T1xpBzEo1m7mbKsBIicqz - 78BvBJL6YBCp++w3KYXLe64I9z5wWkPX6YJx9Q2UalEMmogBMWhM1RUjGCVKJ4ebFb5ddHh73fwl8JoO - fNfhZI/W3tuSJpgNPkmoBTQUgTgfbenlxHDNflFoXezssoE53ukVTtDGBLfn/Ies0hyAJld3oZ8K74Qs - JbiDPFyzJS420hgsIzfGKUyrgv2Iimhp0e1CVh7I4hY3Bj0E2Q4oiKCqCe4ebhqAKUBZ/zJQ1VZTmrD4 - x4oOLwDU1JpjnSmIU4XMHEn0Rkl14fKw55ahIWD88FldhVNxa2lqgkIsIyhfXsD20cSOpG0kJX2Un10d - 8G05eIQiPJPabrZn/Nd5Q7Zrjhj45bxKdfdaSssf4YZHnJrd+fJCf0YUyOX3RDigskuhWF3K34/iChrt - abbJgUA9eEqB0gohxUiCUdLM/ljQoQeAh5NUikLEkBJPumYUnr0X3O5885axwiD48M/GBTimDjJaKScS - +AWtKaDc/7Zu5SZnkLejOSooPzDFg4vwr75bc7M/htuXZLUQ9zuqztToYsqgnHC7cFB7cOqX03Rc+91w - WX9/AGgSYqhvSYU3QRlR+7wfIfohMfFpWxS9JruPQQQpuufAY0CPDgC45UAJrgOyemw8/4P8BIanauQP - Oa6uIzrMslFO/elWB7u4FfwkrqdjqM67mhxYUP9Sj7fxW3UG9Tqb3zFajFChYFWhbV9zu99l6MW071rA - ya0W2xQSAYMfiEg18e22/garPoRFqrBPQb9QUe22fOUG3kJYCFghxTpK9dMLVbtMPV9EaSVKl1IcaQCH - iw5a/39YIJBl5GjuBbBvAkZRAfc2g3sac9eXj59Tym9iCVkpkuBhFZGMraW/eMvBn+XXXBNXcdsCLSHg - KhwXYbtnr4OVhkriBZI4OMizThB323W2rk5FwBKPSb2+bhGnwU5W3Xc+EgcyjfENENz+BJl7Up+WHB5w - 2pT8dTWdpILxVSiMFGitRGtRBXl3po85HV4AsCTxel/r3TakoxerHelCKVPrpG7yRyf6dhUaXDqm8+mc - iR+q3LW0sdLfFhDa2J4XvCxzp96IlVghqSBj2A7xWovVhmqAsdt7LbNb6wVVs0Krv/7TNS/se2wo4ICj - Xt1oHVraoUM4YI7woAGAHWqQH9doNCL8a9bk7riuKYwYtMNSVUjZkeExoMMPAAE1lYLq2hAtGYRi1XnA - /EwLbcqKHeIJX5XhT6PxMyuYlBJI+zBvJG3D3ft4vqUxNZ2At44xDw+ilDsM1ApGZbUVVLu0jq6ECo8/ - HDQGjzZ7hsDmziduHy0eLHXaFYWoo676cMxjG61SGKykr/0j1lwJx7e2EQIYiLG+Bst4b4XXEHxRdUyG - CGIK93q1mEeKF/6s6NBvBw5/ESy66RhDgjcsxDMnlLU0ngXfQ9FdzUgni2OJ7z/DH69wAKFUPQmb09yT - cy3Ygz5c/8J4AevgssuAlec+BJdAHIeNCj6D50K91m+9/41x8a3rvOV8F9IYimAJUQVMF6ZyVnwknuP2 - Cj6fPcXYmSah9udWWrwbNTyXoGqrNci6SQKQNgKoRKVgCh7L80AOuQbQFPcNddggVQR3S6ziJ2PXWpTV - DBRWP/bSvjnpgnb4a3FlPGwPepdzMJREfruMB5/w8Ay30KBqpo1+UKOtAdhWipOYVT1iowmdoD2APYLi - qvZbjaHbPxaeZCR1zYoYXLxEl6B9vj4HeLa+ENMCDaNjd0BVlvjfibXtd2Pa9drtPCqtdqCNKC3afERY - 48eUDi8AhKK/g4dbMiyweyPhSLVk5csKYvCckym0q9sMZSdjGP/jd6HZye3j0p3NH85Br1zQPMWgqSBL - 41nktzhoQFw91lawBVgUCUrsBEvbEHHZIkdpI2lTiruY/NZuxVD4q7i/DmvrOuvOtt5t2O3AXxIWZkfE - LqWK6tICqgLs7w6qsqDS/o0yneuGH386vADgXvLD34tjhVBZ8NMBEOLfp7Nqo3j7OuYA/03EOcjcEVuB - zPaAEfwijzRKdFKpbkGLmYLYvIABA9wJUn/0HO06u8+OSNi7qCQljimsmu3GtMVFDhY9sKqgL+HLkGDd - XrXYOsDewF+iYsZ2jQg2Dbke1XU1R0Vq0Osarcr2F0xpbMxB1YvH8ziAwwwATVLtv/DEX5emsanEfQbx - flYatzaAeulnJ2frVJ5ADW+GHThnnr0vPqOfjAEbxrjk65VA0DXAKbp2YBOhH05qh9oOXhFoWckSYUWL - WWNGCsZDSc1sTSb0+b3/tNHGxkqBW4mwNnpgdkWlS2MfReAvcbXHRcf1un4KqBKtlRKDfkwXAR4lAKhI - RGLHf6gChNI14DCpJVMoQxyDNZjQluEFgkSPo+U8hZ/hgYBu+ruaMj9kQ0tRkJAKJmlsFPs21o+qkpR/ - rCqZ5v0LQbsl3DIbAKcKNukQainBoEUDFY5RHUnYOMLXxT40+cqBluuk77OolrnQrjvYu+DMqUayRp4o - nsDGIigw1SqLUYkq0gMONP+40+EGAAFMoI4esEGoSzUOhYI9az/g3c65EvkBCSWblbPSmnDe5my0LbSn - W5PZT8I4Twezt+BDvPLTaL/VOmw7q/32EmgyjcGLeLYGDbuZR0VFU6np9l49SM5cUC2Jjiujq874ng8L - jl+MAyoLFjXn2/dkf+pManBz13HhcR0IlJUfoDrESWkMSXnAzPq40+EFAMvsigO3AkfUFlDB/fDsfHDB - 6lZKOTXdqp/emJAgiysykLa21K6TuixshBLTM2lsIviCmn1sGg8RL7Q1D+XjCVxfQknbNW4qAItActum - hdW4U4QCRoyZvzYRwmXLsLpgQH09TVMu7JZ9c3YlJGgUti1+0DpEQWgEVR+66pyuDgEyoin0kQ/gkFJT - 6reFKSG+22+RCkgFAXEMeXDAhrgUQcHVpw9vDRg4MPwj7ULFGoOLVLdS2cbh+2Y0AIqIoTvQIHpsfzTE - JnUOR0W0DfehU7tWvauEymkhTqi68aPWKnybm349x/8SlIk3LyRWsVBBHW70lc8lwTuzKwRVHSGgK/d5 - 0Op/E09FKZTo2k2itBGFKczRkWCHkhqQ3lIeVchscUZxVx4rPDQEB3NiQ29jCKjmpjdB3AlhSBRQ4uCi - nvT2fx+3ZplTOlT3pspiv/qJ3RoOV6/yKxwibulLifJgFZUQNFgsTAaSPzpHIWyW14x8n4OQ36Cf1jaP - IiwtgEZvosrh8kgwHHYsJQRpgj1P7d0LzU2bHZ3w5WIQKQCN1lpESpQ+/EFx3w46/AAAge1n6klSnerS - JdvicJN65lnHHlY9thNaubQuPr7OFmq2fr+ub1CsQ9gJ76dftFnWcq2b7fa7ndW+9aH20aUB+C6JU8n9 - zboqd/RVkyFUXG8UB1ExXLcKXZ8hUCNZc9TD7bhKidtwFPbC4kCoAVjnbCfId/oK7H373gIIb9obtcbR - bKsDDqXBCCUiGFQpHGkAh45qR03EzE1yk9yqjIGKbIsJxHoc+xNv1Il8UIE4UqII1++D6V7JsGCieW3A - X1RYY00J5Sex2Lo7+hUVEmgvlofr8jwfW+CzfosuG1xcITZqrzqez5pQ0jgc1H5W9nenTW/Hw9ZpRzVA - nrgXbhCxZwZGiol/XF80UEzCWhpqQ7OQhv5T3apbLAY0KKWUpKVJD3wJH286vADQNdugJRBLPDRYm9Iu - +VnvtGdyz3+RU0/hbNGwEuXsYX8/DKl1qwIBx1gh7869jLRei0BWZoa2bItbAnva2/cOfAR3M5LbUcea - Y2ZtfB9LH50HaOsjDhyqGNWOYxefhFxsCwmYW1mNoJ0uPO3QNT9oQ2Q22W7TBPLGtOhoogPQeoJUw2BQ - RqMKrcvH80zQwwsAxlgbM5A8DbVQwMcE1DfCoL/woIhIiNggk9pTrVyYr5+gbvLZiWmNByd0vCobzkSr - 0lqAcORd/nX54cRvWekBiVtOU7WdIjUTV9I+nrjKmTXBeIURRq594g4r8dzR1J68n8Du0IudrQSc6PSh - um4JOqMCSV1rTPXYu/LE5vXlqzBv0LBmeITL4e43VIYW6WriK8FoqbYFaNOV8GNPh9LxoZRKdvdnFEZ4 - /9IGT5xep7+yUh0FDvj1L5vBM62q17G9FhAJt8Dj78EilHbhzAr2pHnJY1VwO1Xr5O7ILVeMOO21Ki6Q - fi3yCOd2t9VqhAumdSGyYfurNPGvJYUTX/m07onUgULWgdoYn7AkF2WngtHwxVc+AQvQgUckxjTH2C5e - IBrQWKo3WuprtCAjOADsHsoAxSIwt3eEaiIpNIIGlWjRj6cBcEgBQER6dzb3uHN/ny995QrnT5W8Vqxz - bC2jKDIWZUIvrcI4BI0xCYVAgpWQrhzPQPX//jS+8P/mEpI/5adTNge86NgtnJOOiaObwaeXpfFctTa4 - BzEn0RzTerMGV4ov1wOQl5wWKFTN0A78Al6J2KneQYhV20XaaWzxEffWgNlQy93SPx5MwgR2C7AfSNu2 - AGSlkbfZHve9o73hq6uXAJUotCjQWkrRRuvHEwEOpQmglEq3tsa888EG71ze4m5xjungM9wrXuH9+2v8 - wVt7zPIMQTEpltgcj7i3O2RnmrE7S5gtkqocmuzn//dCqOKEkNGjNWyhVRb1dcscdtykHMO2ybN9lL1u - lLL5FZ6RRNnfsKvMlfqgEMvsIcQ1C47YRdVlSQA+qslIEthR7T54/UJqXLJ6Q2OEOrteRxo2kynqpcvY - RHJgJvEbikEibnfYXgVRXTaZ1HsYSp0gRpRIqVCHUhZ+2+mw9lot8oKd3Snb+yUrJ8/yzKtvMh1PuPjN - m/ziL3yOf+tHX+eHv+88tx8sePvSNdKkzxNPHGfYz1gewoUTPYbpgjQxTk1NKMkS1WKQeOp6KWnVSQkT - ulwECBBIaBReA6BVeqhO19kijdhOULu6YM/tjzY0BWpuUy3H2vcNeetY2QvIQDW2OXz7EGITxo+Oq7ES - zLFG0+6xa5RTmeLRsKkkMgli5A3ejoCJvKs2f7gsG8dgNFritItqaTMB0SitCh5DOpQAICLaGMEYoSgN - y0urLA36jPoZg8GIu5u7/E//+Aso9VnW15a4fOUGG/en/MW/8td48aWX2FpMuPL19xnoCUtDRa+nGe/t - 8vRxOHN6hcEgRSdNTQA3Sd3cU4L9pR9v+9vrgOFDg8HNyy6ruqok9Ac6XcPeU7XDTXmQiJjLMkmsRftC - RNWHZ8YcXGFJ19Jg0A4JoUCcCdVp21v/QGPBvxXebMtqKQji7XmLEfW4KZfelh/ATq0F+WXPekyxUR7i - AKw5PqoeI9EgaNAKEiXK6FRKkwCPHQgcSgDIssyUpaGsDwXZ2LjNjWtXWVoeMZtMOL42Ymt7j8s3t1la - GrG3P2Zra58kG3H23PNkvYxfevsyX/qDi/R6sDyEkR7zwtl13vjEi5w9N2B1ZBj1Fb1EUNpgLCOLQP0t - DOwNBVnMD25FPZp4jUQ40ebnc/W4Vukd60nTQRlCDKGpTViBlfKxdK6va60g9L9FJEH9yufDXkeMj9Ny - mkeLRcFUvoCGrRNQhL5B+y1Y2d/wswxuBz+sowYR5+oUWj6IqKsi1WGg2tR1GmVUYdLHczPg4QSA9fX1 - stfL0EphBL70pT9itjCsra1y7do1dKJYXhrS72WIGNIkI8t6SFmQJrB+bBWdZNx5sMvOzi6ZzHjihJAN - zvLC8vewlS5z9dYH5Pt3+NSLS5xcyZnmPbbGCamGXlKQpQathH4qJBinvnryjOcldKDDOtEeJY+fhc9R - 0TkEsbT0NxsasdNQ4jb5uHpr83stxZfoVfMwZ9CwUA13uUMtRxrpmvI27kR4Jzo6THy7PIjY/oZWvcRl - BdVKo/Qm+/sh0FWra+GijTKIpCXJAbrRx5sOJQCUZbk4fmyJ9WMjkgS2dnf59X/+G4yGQ0aDHnlR1hs6 - QGmN1hoQkiRFJ5rJeB9NyaDfYzEcMB+P2d3PSYarPPXyG6ysrXP9zj7/xy/9Di+cz/hb/+angIw/vLjB - eDbn3NmTrK0M6aXC2XXFsWFOmpRoBWJAYcjSh0x2z1ctqW81ZhXl9PK7ClNWEV/VOYP/fcEqrAsIT/wN - FOIGgHkEktrkUA1+904+2w+rqXS0y1kasWi2TBcut9oyoxuKONrS4YoKv4SVxiDYYH9ppnXAoVCaaou5 - KBJKVJqBSkse00NBDysAFKdPLvPcUyc4d7LP1ftzygI2Nu4xHPZBafJCMS9KFFCUC0QJSZpQFiWFqgBB - AZnWLDDkeUF/MGR5NOL4sVXWVtfYH8/533/l6/QHy3zfdz3Lnbv3+ca713jx1e/he7//05Sq5CsfXkUv - tlhdUgz6mnwxZ0lPeP7JVXqDjCzt2G5KJNgjwaTcfLY7De2R2qF93hZGXaq7wxZxCrwzWlyVVguPFJha - 3lsnp1UXkAgIIlMlsuvbjXBLeYEKU0npxtKdCgDGVlLHdXhTRTkA871pbOl2V5XO32T6KE04rs6xKxhK - SjFKVS/jUK6IfbvpUALA9va2HF8b8ubr57n64QbLH+wwUafY2JqwvTdlluecPL7EsWMjdK0uap2Q5wvK - 0jAaZc70LMocYwwq1ezu7HD96lUApuM9RqOUQT/l6q1tXnx+zmy+4N7mFk+XmlNnn2F1dZV7WzN+5Vd/ - j3y+z/FjA3rs8+SJPju7L3D+qRMcW9GMeoZeqkhUpZlIFaLggnqajjvPb+J9aaHxHAa6BFaFpUji4+ux - qnQIPk1nodU1qvFRjkM8j4SquS0sZuxIuwnKDXdThasDbWvAOzpptM9HBNr7KnxIkIzw/AZxJpQEDW8M - HDig1dTxAGiUEsXjuRv4cAIAQJJoTp9Y5fWXzrLWG7Gy/iR38h537u8znS84dWKZl589w3g8rg4QLquX - nqapy5+kKYJG65QkUbz3/iV+9dd+lfMXzvPg/n2KImd1ZYnhoFdJUqXJskEla0zB6sqIpdGIzZ0xN27c - opeWrI8W5M8+zXNvfoLV4dPce3Cd2c41LpxMeO5sgjGae/spSmlSXTJIczSKNBMyXXgmcVuHA493dYNo - 4rr57FnbykLLAC5gL8gSXzSLkC6tuk7nGdiq/l5DwArcUH431PG6jeGuwQaTexMj0AUabfFuhi4AsUPk - QUZFmRQHkigUpor8VRpQShujTMcJkY8DHVoAyBemRmthkMCzZ0a8cu5pTDrAFAX9fsJ0NuP9SxNnAqRp - itYapSBJEorCkKYJw9UlEhkzm0/5wy9+EYViZXnEdDZDdFIxv1bopIoI1UqTZimLxZzFfMpwkDEc9imL - KePxnLmknHn2JZ555ZN8/U8yfu2ffZmtjSv81L/7F7hwZsRX393izr0djh9f49SJVTItnFhVnFpNyXSO - VpX6b4yQJdW1U3AjZgk1Akshx/tFutCuDnxo7qZb5ZcwmrCtVoc6vXj7ICrcbnYSByJWRfc7KmONI2yK - j+5zvwRcL+tJiCw2rWrx/8Ed7QLBVmZxZokkJUqQRSJlolTSquIxoMMKAHp7Z8LW3ozL1x+wd2/G6skF - J1ZnPPfCKUajIYhw5cZdxpMFRgStFbPFgiRJKQvDeDyhLAt6acaFs2fR+T3u7xi2ZwW7e2N2dnbp9XvM - Z4bpvEAEjCmrH4zMEkSgWFQ/GKmARGlUoinygkRnrK0eY3VpyIn1NfICPv+l91Bpn3/nx76bB9tjvnLx - XZbWzvFDP/KvsDQY8O69u7z94VVWR8KwD1oL8/EOrz45YjDq0+tpbDSqn7ORG8/dtz+l5WL5pZmeQHPw - 7C8EJ/p0a9a4MOAwziEQ8SKNPF5U2+yRVmC1CMusinrvlr0VaBiqycfBLy2FZD0MYTyArRsJ2ti0Aup2 - Vv0qKiDIEqXEaKXVgseQDiMAKKXU8N7mPldvbXPp2hZJ/xyy/glu7cy5+gfv8vwzZ3j6wikUGWnWo9fr - U5Rj+v0ew+GASx+8z61btyiKAk3Cm2+8zMiscO3qBpuTZe5PjrG5vc90Nmdpqc+JE8tkmUaMoHSCKUuK - fEFSaxTVzsSSIq/U+dl8yvWr11hbXWMyHpMow/HVEffu73F1Yx8phc2tbaR3grX1J3ji3Dlu3lrn537r - i9zduMGJ9SH9dM6pUc6Du0/x7PPnOHE8Y6lf0u9pMlUEji2NKEPAt+4zFHyxY82OZP3pJKmqnY82JqCh - piv7YQ/kalAgdJtA4KIeu2JvbSYF9kxBCRnTpmxoLdX/gZZjoUxC5T+uqll1+0bl/zBoQKERKY1CcqV5 - DJcCDiMAJMD6jY0drt/e4t6O4bt+4Hs489KnKYuCL/7+5/nN3/1N/tW/+ibPnD9NP80wRQHGsLaywmw2 - 5eLXLnLt2lWmswU6Sblw/gwXVjPOrvbALLOXHefm1oTdnTFLy31eee4Mo35CXpTVRjEjJElSLy9ClqUo - nVR2fZqxubnNb/zGb/Dh5cvM5lP29vZYWh6yPBqQaEVRClnaJ1EJpsgZ9nscP7bG/nTBh9fucPmaYak3 - 5bnzaxy/8AOcHn2G6XSX8e0PGSVzPvVcjyQp2ZoOKExKokr66QKNkKbQ0/YUBA8I7c2GlsPCTbqN5TL3 - v3KI8rCNdk5t7zgTwEUfNiSuhMsQvrbYTA/MCKsVhA/9N+VNiA7HgDVE2n30+a02pCrmR0hQSimyA/r8 - MafDCAB9rfX6/Qdjbm3ssXbyad789PczHAwYjoa88vqn+cVf/S1+/pf/gB/7kTfZuLPF9tYeiaqeX716 - la9/7Rtsbe2gk4T+MKMs5kBJL4FTawPWn7tAMVyhLEqyFEQM12/eoygXlFKSJClJ4p2JQjUpV5aHqHLB - PJ/z9jvvcvFrf8LK0hKCAZ0iuvIrKZ2gdcVUaZYiGCb7uwx6Kf1BHzEFk8k2e5OStTNP8sxr383mvXt8 - 4a2rfO43v8C//ze+i+994xSXbs157/JtBoMRZ0+vkCWa1ZHi7HHoq3m8z0GVJM2FLNWw8ZviO1AlbBRi - yHDOsu8EBL8a0NgwXT0VuzqhvA+ja5dehCU+dgCLM01wcA+DhBa8bPIuEAtNEiUoDCIGylKJKXTSGrzH - gw4jAAAs7Y3n3NjY5qmX3uD0mTNMpmOgQFNy8sQ633z/A9ZXv06aKjYf7LO0NmRzc4tLl69y69ZNytKQ - pRknj61y//49ZG+LrTsPWJweoU5NOX/yJCdPHgPg3uY20/lt5ouCJFEUZUFpBK004/GU+XxBmiScOnGM - 5azH3t6Yu5Mp++MZ21s7jEYj8gLGk5yyrGzMolygE41ONHme136KavtlkiUspKQ0wtraGiujIerEOr1s - wIfX7/L3/uEX+Kl/77NorXn33StsT4S/9Nl/mQvnL3Brtselr19mOcsZDYQs04z3d3n2pGJ9fUSvp0m0 - 54/op82aSnMtiq1TzzN/zWqOf9thvy5VuAQRbtqJVgHa5bq4AgkiF21ycCcqidMirMmiKSUBpPpRUANa - CVoZl68FNFHZ9RKkUZDWjt9SKW0etnTw8aXDCAALY0xe5CWTac7lK9e5dfsWx4+vM5ssuHjxLba27qOS - lPcuP2B5YLh5d4NTuo8Rw+b9Tfb29xCB0SBj2FNcvXKFzd6U+bzHEy+/zrY5wfWvXOXs6U1eev5C5UtI - +vR6fUChE1heGrGzs8Plyx8yn03RKuXC+bO89nTCvZtXuXYHdssT3Hmww2QyJ+tpTp1YYTjMmOxNqCwZ - mM8XKBRZllIUJUrBYlHdK0vDnY3bbNy6CUrIFzNOHFtiNl3w3tUHPPfkSbZ2d3mwa+gNVjn39MuUYvi/ - /un7fOPiVxkNE0YDWNb7vHz+BK+8+ixnziyxPDT0M8gSu7JVzW1vT7dEr/PIB7p0xEBe+uLKsg41J63D - 8gjX5X0LnAUhtj22/hBI4rpLk2DQlEYzzRMmua7GkhIxQj+t+psoRaKFRFftsoqHruP+BVXvfxdQBozB - YMRoER7THwY4jACQi8jGieNLnDg25P0bV7l48U/40R/967z//iW+9o1vsP1gk9W1Y5SiuHb7Dtdu3KNk - xNJwidOnTpGlGWUp9DLF5v0Nxg8mnFwf8tQLr3Pu9e9jbXWdi1/5I37ulz7H6y9d4S9//ycY9DMUVeDQ - cDBCa81777/LN99+m/FkSl4oVlaX+OTrT7B7UvPinRyzco7re3MePNgjSRTPPXmS0+tLvLe5CSikFLSq - YhNEhCxL0TpBUCQ6Ic9zfvf3/oCdvSnD4YCbN2/Q62f0sx69NEWkJEky0tRgioJUK9ZX10ElXN/YYjKZ - 0FNTLpzQpKMLnB9+N4oel29dgvkWbzw3YKWfM8l77C9SEg2Zykl0SaogTUwVvFRbxV5Pjm1rlHcXSv04 - PFTYCXNClx34gAEfdeiWCBSN8wVDCx4KoygkYzzX7EwKtveFe1sTprOS6bxExLCypDGlsDzSLA9T0kQY - ZJp+LyFNFFkiaK3RKiFNBE1JliqyrGSAQqNROlGmVIk5AoDDQ6dOnXrw1LnjXDm7xfuXP+SrX/kyn/nM - 9/DON7/JlQ8v0+sPGA1H7I/3uH5jg+3dnFMLRdbr8elPf5ov//GX+fDDy0zGe9y5c4N+UnLi1Kd449M/ - wKmTp+n3+7zy2hv89ue+wP/5a18iS2F5mPFgcwfJYWk0Yntnm4sX/4SbN28Biv4gQydgipxeCtJh4zkA - ACAASURBVKdWU5585TSfXD1BWRg0hjRV3N/cppSC0lQmQJpW3iWlqj0LZWkYDvrodIgRw+07d7j6K7/M - 8tISvSyhLKslzcqXYPc5GJI0Jck008keiTIMBj2MKZjt7bCzr+gtH+eZV96k3x/xezd2+YWf/13+8pun - +Td+5HnGM82X375LUcKZ02uMBn1GPTh7HEbpglQXlRNPAErSSsP2kNAwrFu/A4gHBu/xt74DuzU5fMMq - kPKCMQpRmrxIKESzPUvZH5ds7sy4fHOfO/fGbO/O2N0vyEtDloBSBYNeSpYl9FMYDTSDQcZomNLLEkb9 - Hv2+RmshzTL6WUaqhX7PsDpUnDtV0l8WdBUYJIf0bJxvOx1KAMiybH7m5Aonjy+xupxw4/olbt66xfsf - vMv+eJe1tePs7u9x7do1bt68C8Crr77K2uoazzz9NC+99CJXrl7h9q273L27haLktTf6nH3iAqkS9ve3 - EJNz8sQxLl6c8rnf/xrPPX2cze1dZrkwmc545513eP+D95kvFqRZn+XlEapc8OGV68x3NxnIEkt7C04c - gwvPPYECxuMpG3d3GE/n1fKhCPPFgiztMZvNmE7nKF2ZF6dWB+STTTb25szmJdtbt1laHmFEYYxikVdG - aVkuQGnSNKXIi0qI1tpyL02ZYcgLYTRaZmV5mZWVFdZWVtncGvMP/skfotMBLz9/lus37vDB5Tu89ub3 - 86k3P8m2LLj+/lUG7LE8UvQyxWI+51g25cLZJZIsrYCgJifBa0QIT+t2cFD7HLwZHqgIDflaSiXt52WP - /bliuoD72yW3N6fcvjfmzr0x83nB3rTAmJReb8jK2pAsSyufSrlAjDDNc8bTnO1xiWaG1qASRS/R9DON - 0ookUfTSFKU1/R4sjxLOnZjxidd6aKVEY7S2dsJjRocSAG7dumWGw5TlUY9elmLMgizRLC2tkKY9lBLm - 0wnXr11jsZjz9NPP8CN/7UdYXVtFac0rr77CWxcvcuXyJXZ2xyCGqzduc+36DU6cOg1G8d6773H1yiWU - Umzcn1Dkc27dvsPezJAXBeP9fR5s3qc0hlGaMeonPHhwl/f2xxS58NyLbzDpP8vN9za4cmOLV156kmGv - h0569LI+SZJipGRpaYiI4YMPPmB3d4eElNFgxF/5i8+xs/EuH1zeZ19OcWd7j/3xHFMYjq8vsbLcd04v - pTXzxRxTGgaDPsZUDJjni0oNF9jZ2eb2zRvIE08wn0xYW+5xTyveu7rJmbMnGE+n3N3c5GVJOXP+eUaj - JX7n9i7/4p9/AWTB+mqPPns8fXLIG688yxPn11lZhmEqpInx+xkIgnuaZM9jrB8ZKmfg/jyprH1VHVay - KGB/kbI/M9zfLrlyc5/d6ZzN+3PGk5LcCFplDEbLnFoZsLQ0YjjoMxotkaYJRVlS5CWmyDGU5IucxXyO - EUHKgul8gZgCYwry3KByYUKJMQValYhKuXZjl1v39nnxuQsYUSoxj+ehgIcSAAC0UoxGPUbDjPH2nMFg - wPd+71/gj//4/6EsS15//VVGA82ffONtfviHf4jv/cz3MhgMyPOcCxcu8NRTz/DOO+9iuMFsNufWrVu8 - 9dZX+MQbb1CWJW+//Q2uX79Ov5eS9ofcvv+Ay9fvkBcgBs6cOcNwOEJRnSg0He/w4d4up9Z6nDzzFE++ - /gOcee4lph+8x+d+7zf5/T96m3/9R7+PfpaQ6pSyKEgSzXAw4vbGLd5666vs7GwzL0tIFG+89hyLswvO - rTwgWT7Pxkxzb3uf2XTBE2dWefGZU+xs71ZMV1ZSNU2rTU5JUvsVUCRJQpLCN77xTQZL/4wzZ85wa+Mm - BsPqypBBr0e1lTchSfqIMWgR1o+tMhyO2Njc4+6du/SSgpPLOYvnn+OpT36SYe8MtzevU4xv8fTpjCeO - 5RSkbE961T4LtSDTBQrlfAlWndcKpnnCft6jKIUPb8+YzEp6iWK2EPZnhs3dgvFkwd64ZDotQWm0HrB8 - bEC/P2A0GjHoZwwGAwaDHgpBJ5UvResqUjPPc3ppSlEaimIBIhSlYMqSPM8pyxIjhmIxpyhKjJSYMscU - wu7eA/7o4lUWi1wVRaHg8fxloMMKAEpMpWAmiUbKHCkNL7/yCmfOnOH69Ru88cYnefWVl+n3R7zyysuc - PHWKrJeR5zkPHmwzn884efIkp0+d4tq1a2xv3uPiW1/lL//gv0SxyPnmO+9SFAWnTp1EgI17D7i1scPy - 0gpaJ7zwwvO8/vonuH3rNvPZhJ3tO0zG2wxffoHPvPzdPP/iq+hU8+zzL/C1t9/hF37+5xj0NG+8fI77 - mw+YTeYMe0PA8PWvf4MPPrjEIi/IsoxeP2GxmJKlipW+5tmnj/GJ0+coSBBTMuglTCYzdvd2KcoFqH6t - +ah6n0NKURiyLKO/PCJRU3b39/ntz3+OLE1ZHg2ZTueQpNWv32hFktR7JHRSLUMupphizrCf0e/3KBdz - 9sczSj3giedf46mnX+Ctryb84m//MT2zzX/wNz7NynKPL7+7w87+mFPrx1hbGdBL4MQqrA4WjCdzdsc5 - uSQ82IevfvMm0+mcrb1ZXXdGqVJQPUCTJClZb8j68QGDQZ9Bv8dg1CdNM/pZzexJWvlEVLXjs/qs7PU0 - TapyMuhJhjEGY6qIgbwwGFOS6IQizylNCWLI8xwlGp1m3Ll3m69+4zrDwiQq0UeRgIeIlBGhyA15XpL2 - R8wXC1ZX13jzzU9z6dIHFHnO+voJjp84zQcfXOLSh5d49dVXmUynfOUrX+HSpQ8wpuTFF55HK4PJ97l3 - 9wbXrl5lOp1w9+5GBRiF4fbGba5evklRGJ588imevPAkJ0+c4LXXXuWLX/wiN29cZfPePcbTCeeeKDl1 - 5ilWl0fcuXcHEFaWRuisz+/84dvMZ3vc29xid39BYYTLV67yta9/jb29PZIkpZdmrI36fPjhVbLFPfbu - z1g6OePE2oJnnn+yNnlKLl27w3gyr1RuDbP5jDTNyBdzJuMZpSnp93o8ceIsMr/Lvb2CvXnOg80ttnsZ - SZYymxkWiwIEjCmqVYWasRaLvGIwBb00YVEqFnlOkvY5trbOsWMrHF8/xmRW8n9//iIq6fGv/fAb3Nvc - 4a2L73P87HP8pR/8IfpZwsbGbbY3LrNxb5eNeztkaUmSLXHz3pyyFAb9AaPRkCTrs9Tvk/b79LIevV6P - fj9jOBigdbUyohKNVppEVz4CrbWLykySJIrQLMsSpeyv/BYYU/2gTFFAmoGYKlAq6/2/7L3Zj1zZnef3 - OXeNG3vknsxMMpncyWItZC1qLTMtabo9vbgxxhiGXwwY6Cf7yTb8Zxj2sw0Y8+KXmYakVkvdGkndUqlb - 06pSVVHFKiaXJJNk7pmRGft6t3P8cO6NiGTVzINhqNg1OgCZsdy4cSPi/Pbv7/vTsyTjWOJIhWUaSAHF - 4xWebn5MyYwMYRi/qwK8REsaQoM0DAOMZKMKAa++dpOf/uTHbDx6xO3br+JlHZ483eY73/kOX/u930MB - 9+59SqfbJgwipqamuH3rTY52H5F3BciAbDaH62YYDocEwYCD/T3a7RalUpFvfutbXLx8iSAMWVlZ5sKF - Nba2ntFs9+gPhuxXazzf2uFWt4NpGuzt7vFg/RPiOKQ7sPn04T7DfpvDWpXBcEgYBhwdHRLGIZbt4rkW - Kh7y8NETHCMi450lKl3jabXNztFDLl5YZH62glAWpq3zCZ1hTMZzyWQybD7Z4PjkCBVLEA5v3b4O3SzP - n1dpBUWOuzka7T7DICSfcymWcpim5igQhkkUhURhiGXqlmUpFTKOkHGMhcFwMOBwf49iIc9wOMA1oZBz - 2N5rsn3UI4okRyc13NIyU7MrzMzM8vixx69++gHDIMIUGfJZG0dkWFqaQxgG+XwOO0FXuq6tLb9r60qD - EIklFwhh6PAiEfJU6NPnUwWQMhNJqfRnUxDHmoRBSogipVF+ydKTnGWiIEhebzA/t8zR4R6HByfiX/z+ - 26/fev3yb+58vPGflSJ4WRWA0K6etgB+6GNaDoNBn3K5wtqFSzzeeMi1q+c5szjNyUmVjUeP2N3ewXad - ZIPbBCrANEyWzyxhqSbt5gkGkhuv3OS9997j/v17rK5epFLM8v4Hv+b8hSv8i29/i5mZGXzfp1KpcOnS - Je7e/YSdnV2CoMvxcY2H99c5+OrXWF5e4vHjJzzc2IA4IlepUG93Odo74mD/hHany9zsLMVCESUVjmWB - DNjePqaTV1TKZd587W3mLr1Bt9XiV//4c/72lz/hX/3RW1TKBVzLJo6161rIFej123x892P29vYZ+BGO - Elw4v0wRxUIxg2FUaIgCh40erXafYtHjlUuLOJYgiiXJpFVNnWboWQO2bYFhIgwDy7Q4ODzi3//7H/P4 - sU5aDoYDioU8ec/FSBqULNPBEAYqjslnPSrlEtdu3KTVbOL7AblcFsty8TzN62ha+q9tWmCOBV3/0GOB - 16VSgW3bI+zEuMVbjP6l95XSCkAIQRxrQZcSbBvi+HSNIu0v0Lwf+jXT09MsLKxSPdwWzUbtfzEt638C - Tr6A/f6FrZdVASQ/piSOJI6rM+kau28xPTPFe+81OTg84vKlZdrNJt1eQK3eBKUoFnIEQYxluaydX6aQ - d+nVBb2mJApjlpdXWFtbY339HouLy1z6xjfwvCy5QonllRWy2Rz9vm4Z7nZ75PN5zpw5Q6vVpNVssPFo - nfX1dSzL5v79+zQaDSrlMq5lcdzu8nz3iG4/RsUGs7OzvPnmmzxYf0AUBfQ6TWonB8Rnplm7cpHX3vgK - rutSXF7m4uXX+cvv/y1xHPKH/+w61eManXYX2y6Ry3k8e/qc9fV12q0WwjRwMhZRFGC5kHVMFqdyvHru - PIHtEUcxGddASsn2zhFhHCBVrDsczbFFTZmB8tksIo7oD31+c/djPvzoQ3K5LGEYJLkEob2xkQsusC0L - RYzr2KyeW+VxsIFtO+TzOVzXTUA4ApEIrGmYmnchse4v/pt08fW1aSCPbev4Pn3ccRxs2072iURKiVKC - KJJIGQEmcTx+XE6M/dMVFK18SqUiM3NzFEuL7Ozs/ZlU8jvA937rm/0LXC+rAlDaTRs3kQgDHMdhONQw - 0FjCk6e7vHP7Mm+8doUohmc7RwSDAD8I6HR73HxFP1c/3KTmKAzLJowVtm1z/cYN3v3Fz+h2WhQLRebm - l9jd22f9wTpzC/MIw+DRow3u3r3LcDjgzJkFlAw52Num3Trm6eYTpqam2Np6qi2V7XBYPWLr+TaNRpfp - 6WmuXrtG1vO4ceMGC4vzPNl8TO34iEa9iWm65EoLzM7OUm/UUTLAtQ2mZip8+MkzchlFFEXU6j1m5qc4 - qp6ws7vL4eEhUoJrW8xWihwdHjAQJ9QP6whRwpgdsnJhnmIpj1CKo+MGfT8kDGMM0yAIw1EFbzAYEgQB - lmUyPzuNqwwanYBmb0Cv16NWr+N5WaJQ0vfDhKZdEssQ09Jeg+8H9Ps97tz5ENt2KJVKZDIZLMvENK1T - VnvyX2rZJ4VfCHEqxk9fZ1nWSOgdx8E0Te0ZkSoAbelTVi/N7aCSf5I41oCgKIqI46SkiSCXKzA9Nc3S - 8jk2N58UDg/3/oDfKYCXYgnQpUDbNokjH8t2AY2jR8UIQ1BvtDCR3Lq5SqWYYWv3mFZnwEm9S7vd46tv - 3+Ta2gK/qT/Ay5iYaCsmleTC2hrnzq2yu7PHcfWAfMGl0Wrwox/9mG5bu+537tyhWj0kiiI8L8uNG68w - Vcph0Yeoj5vJ4GVyCcIvpF47YX9/H8dxeOutt/nq175KGEWUy2Wu37jO02fPaXf6NNoDnEyH51t7nNRO - sCyTbqfHxx/fod9tI5XJ/cdHeLZkv3qAnS8TxxHV6hG9QQ+JwHNtMjY8efKUvN3HD7Is3bjGUT/HzodP - WVmqsHZuAbAxDS042qU2yOey1GsNtre2CPwAgcmF82dZKk1zuLvLQcOhGRY5aXYY+gG2YzJVzuG4lo6t - hYFSkiD0MYRBGGpClUKhgOd5iVBb2LZ9Srg/T9Aty/qMe59aecuyRp6EZVnEcUwcxzQaDdrtNmEYUigU - cJwMwESoYCRWXt92XQMpNUuU5naQKGWSzeaYnqqwtLTE+bWLNJr13y8qiu1Ou/1Fbfzf9nppFUDq/keR - xHIyyDgmCIIkdtS4bsOAMI6Zq2Qpeotcv7TIMFIMBjEKg/m5KbrtBrbwyTgGQRwihEEQBDiuw8ULl3i2 - +Yyd7W2WlueYny2xs7vP97//V+RyWaIoHrmfALMz8+Rcycn+E2Tks7K8zI1XXmVzc5NcLsdX3r6NLSSB - VPzJH/8RFy5cJAwDPM/j8uUrLCzcYWdnhyCo0mx2eLb5hPv37/P1r3+NZ3c/ZX19nU67Rak8RT+IqFZP - 2Nk7IZOrUSyWqJSndIbcNHBMwfHxPr3GgKmix+q1N1i8+g6el+OjX/+Sd//iP/B7t8/z2o01Mm4GFMQy - IutlAcWjjQdsPN6gNxwSxwYzs2VeuzrH2RmLfsvA9+bZaw1ptrpYlsHltXmmihkOdjWvoYpVwo9gIQxB - Pp8fCa0WcGPkvluWdcq1T61+msxLn09f7zjOSOillAwGA05OTmi1WnQ6Hfr9PlJKcrkctu0SRePhKlEU - jUIUHfebupScEMdmMllc18VxTDwvSz5fZG5ugZWVs2xtPb18fHz0tWln+ie1Wu0/i5Lgy6oAkunYAqkU - UgniOBq5lVEkMU0bYVi0Oi2qJ1XCMMDNZKiUS6wuTWPm8hDFNGvbSKkRc5blYBgmcRRiCEGlXCGIJFs7 - e1y9cparl87RbvU5rDZpNFvksxkMwyKOBGfOzXN2eZrd5/v0M4IojCgUSly/cY0f//hHeF6Wb3/7W8zO - zLL57BkXLl6kUCjQajXp9/ujMuDS0hlOTo7pD/rs7Tzjww8/4tq1azx8eJ/tnR3cjEfWy9BsN9naPaLZ - Dgl8ScZ1uX37Fh//5jccnxzT77c5PNqlkDGYmVvh1de/RmVqimw2x7Wbt/ibH/8D//YvfwkqIA4lzUYb - YkEhn6dWr3H37iccHBwC4LgWQugBKJ5rMjXlMn95GT9bJAp1b4BtCqrHDaI4JJYRhmViWzYyjvEHLWIZ - E8UxhmliJbG8ZVlYlvYEbNseWX8hxOh+Kvyu62LbdpKxV3Q6HTqdDq1Wi16vR7/fHymU2dlZ8vk8+Xwe - z/OSPRESRVpRaxCQTCoCcVIhUAyHPXI5XQFSyk8YpDymp2eZmZmjUCiYoP5UCPFerVZrfIH7/7e2Xl4F - gAa9OJaJjEMc14Mk5jQMAzNpsjk6rPGhHJIrzpDNm5RaPXJen6XFMoWCRxwGyGQD6OBXA2h0FlkiY8ne - wQlB4PP6zYsMhiHmxja97pA4imi1u0xPV7j1xjWKnqS2G+h6pKmnEq2unmftwiq1kxqe5zE3f4ZnW3vc - W7/H5StXyLguOzs7fPDBhzSbdQqFPDeuX+Hhw0cEfodnTzfY29tjY+Mh/X6P6ekZmu02W1s77B8cA3D5 - ylXyuTwLZxZZW1vjqHpE9ajKUbVB0zK4eavA8soqhtJ9DqYBCwszvPfeBj//5SfMzxY4qbeJIoNOt8f6 - /ftsPn1CEITYlkO5lCccdnm2NaDfqFF2y2R7Q2ZnZlhYmAElaXf67B7WNcuSAVJK/CDEsW38QUtTfSUE - q4ZhjKz5pAJIhd227ZHAO45DFEVEUTRy7TudDr1eD9/3EULgOA4LCwuUSqVRjsHzPHzfT+L9CMtyEUIT - weZyuswXhhGa61MRxxLf98nlcuRyBaIoRimHTCZLPh+zsLBIqVQmDIO3K5Wptfv31z/6gvb+b3W9rApA - SCmTZJ/Ey+RwXQfTMPCyLgYg4wgh4PnWLsfHLjdvrbKw+goCxa/v/ZrmL+7wz3/vBhnbwLJMDf5QEYZh - Ypg24aBPHIcYJnS7PQb9PpfOXyWXtTm7NE2j2aPZHlCvdzh/bpG3X7/E7vP7FLO6h91I3NfK1BSvvHKT - v/nhD9l88phcPkMsA/7xV+8RhhGvXL/Ok81NNjc3NVwVwbnVNQr5PH5nH4chpmWScbMJC5Gi122z9fw5 - YRCytnaBP/jDP8D1Mkny8hr3H9zn2dPHtFp9LBO2dw7ZPzzkQi6HlPDw/jqHB7sIw+TZXpt2u8d+tYoS - GaI4otVoUK/XiZUi49hkMyZHh4f0ax1CH65cv01bLLF3/4jp/QaXLixjCBvD0ByMoz6HbIYwkvjDED1P - MaHsUiqp72t3Pk3cua6L53nkcjmiKML3fU5OTmi323S7XTqdThLmmWSz2ZGln56exnE0EjKK9PzOfn+Q - 1Pp1sjit9WuFIEfXkCYJtfKxEvCQ1DMlOzG2bZHJeExPz7C8fI7hsH/esqzbt269de/OnQ/8L2T3/xbX - y6oAVEoeEUaSIIw4Oa4yMzuD6+hmGENod7LT6xPGYDtFpqfnyBUKfHT3Ht/96w/Y2Nznv/kvb49CCcOw - QQiCQP+uwhAJTl4RS0nes3nl0jxnF0pEyqA/jIgiQblcwDYlu5tdchmdSIrjWPfJxyErK2fJFUqs37vP - N7/5Dmfmp3j8dId3f/4udz76CJl4HqZpEQQh+Vyemaki+0/bxJFPMZ/nrbff4eO7dxECbr5yHYuIjWfP - +Jf/xR9y+9btUTx8/vx5VlbO8uTJE6J4l6EfcbC3x92Pf8OlS5fo9XrcW19nb2+PrOsgDJe9oxrb20eY - tnaXZ2ZmcWwbA0HGNul1GjxtdZgumcwsXGDpla8zv7JKc/1TfvB3P2f+48f8y2/eJuM4WKZFFGlIcybj - sbe/w8PHz0E4KCmTz8qpEl6qBHK5HJZl0W63qVartFot+v3+KG7P5/MsLS1RLBYpl8uj/EscxyPB1wKs - LbxO9jGBA9DYhnEFSf+2mtg1RlcKFL1ej1yuwGBgjioFnpfl3LlVVasdFTud3humafzw1q23qnfufPCl - nhj8sioABLqUY1sG7WqDn/3879h89oypSoXBcIDj2iAVURCBZ1KqlKlUCpgm5HM2Bgbvf/iY168tkEUm - FFmCWEoMoRtrpG5Xw7IdBsMBJ7VjMrZBKCWVSpml+RmcfB6Eyf7Wc8KwD+gsuO04xFGEYQjy2RzZbJbt - vT3CMOD6lTUazQ7bezV29w9wbZtcNos/jKhMlVhbXaLdOqRcsOj7IWBw48YNpqYqDAYD3nr7HS6unefd - X/w9N165wdz8PHGsLWar1UFKydzcPNPTBxweHlI92uejjz7ka1//BtWjKhsbG0glKRbzRFJyWK2xd9Rm - ekp/L1evXuHypSvU6+/j+z0a9QPCYZfctUtcuv42q6sXsF2XS1ev8+GdT/nOD3+MawtWl2do1FqEfkTO - yxLLiE8/vccnn9zn+o2bWNZnR3Sl8X42myWTyXB8fMynn35Kq9VienqaqakpSqUS5XJ5FBZIKTFNTZgC - KcpPsyvpHggH29bJvTRBaxhj6kEdoqTXopIEoO6gNAydQ4pjiWXZCAFRFGGaFtPTc2J5eVWur3+ybFnW - xTgO2kD3t7Ddv7D1UiqAxcVFkSaM/CAmiAQffXSXj+7cpVTMJzGlHgQqTIP+cECtdkyn0yaKfIbDHp5n - E8UO3d4ANyN1CBBHWIaBaTsMhi2k1PmAOFY0mx0+WX9CJlsgm5um0e5RyAVMT/eYmy2i4og4sULpDDvT - FNi2A4CMY9qdIQcHx3z9K9fpDQYI4yn1RgcZxfSHPrGU3LxxmasXF1n/+BmmAaaTIQgCziyv8Oprr/K3 - P/1bTCGYmVtkamqWx0+esH+wx/LyCu12i48++oitreeYpuDqlYsYQmKZIXs7z9ja3mZ7e4vj4yoZ18UP - Yw4O9tna2kcpOHvuHPPzC5w5c4Zr165y95O7HB7scnx8QjAYcm7VYGnlAoVclpP6MUrJZO6B4O/+/hNu - 31zmpN6g148II8nm06es37/HSa1xqsSnvyMxgdYzyWQyNJtN1tfXOTo6Ynl5mVu3biVJvDHoJwgC4qSb - zzB0HN/va1xCs9lkMBiiJzg5WJarKyKORjZqcJOuQJRK5aQ8KBLUo4UQEiEMfD8mDH0sy6RQKNDv9xkM - 4oSxSRjDob+klFwCHt269Vb/zp0PvrSdgi+lAjg4OFA5z2V1eYqzi2WavS6d2KDT6dKoNchks2TcDIYw - MfM2g+GQX/zi5+zt7lEqldja3iKSMZ7r6LJfGBPFEtdx8LIelmHgOja2ZRInmeOTWp2P77Y5e+EmN29f - wcnk2Hj6gOd//49cuzzP1bV5bNtKuuo0ft52PKJwSBj6oBRhFNJoNFmYLfCtr99kfrZI9bhNt+dz0ujg - 2ib//Cs3sY2A7UyEZQpMqbEJlmXxxutv8It3f8HGw0dcuXYBx7XY2HjMv/t3f8FXv/IVeoMB6+vr9Hod - wjBiZnaeYqHI8f5jco5ExSEZ18W2Hc09OOyxs71Fp9OhWCzxrW99i5VzZ4njmNW1VZZXVth6/oxms8vQ - 99k7rLG7f8jV632EMNjZ3uHxxgNAUmuFfPpgj2bzhGrjmGHgM+j3OTzUfQ5RFI3AN+lKlYFpamaR58+f - s7Ozw/nz57l9+zalUokgCAiC4JTnkJYIgyBkf3+XRqM5wvZrYY4Jwx5B0B0RjxgJE3Ov12Nj4wmzs7P8 - 4R/+Ma7rQVIy1rgAheeZDAY9LCuvuxAzGep1rcT6/a4Zx9GsUqoM5IAaX+JW4ZdSAQBkPYurF2bp9S6x - ulJn98ThwXaHVmeIjCVhpCf+2o5HrCT31x/y5PFzHNvCcWxkFAN6irC0dYwfRjH1RoNut00m42EaJiiJ - aQoGQ5+a9FnCZao8z8zcLAfHNX7xq+/x7i9/w3//3/6+5hqUEiUFlu0SBkHirlqQMNMiwDTh8uo0UyUH - pSy6fkAYKBzHZbqSZ+PRPbIZLSBB0ufg+z3mZmdZPXee9QcPuHBhdeq5hwAAIABJREFUiTMLU9TrNe5+ - fJdnm5sYloU/GGCaFsNhgGU5LJ1fxFYN+r0+jgmvvfYG77//a/b391lbO4djC+785jfcfPU23/rmt6iU - K/i+z/zcPJcvXWL93jrbOzuEoaRaPWb900948803KZVKPHq4wcbjDVCKbDZHtdlmb+uQw2qNQX/A7Mws - WS9LLpsjjrVbnZbx0iRcKvyGYdDr9RBCsLq6SrlcHtXzJ5F/wKhbcT9p0tJVm4QJaQTySbH9MsEVmLRa - LZ4+3WJ7e4uDg31u3nyd8+fXkh6DsQwLYeB5LmEYIaUgimKiKCQMQ4rFMkBXKZWDZHrIl3i9tApACEU+ - 63B+ucKFczNEkcn6sz5H7Zi+r9irdhn0I2anbOqNJocnPVrtAUrpfoEwkmTcDEGoCITCMk2iMODOhx8S - xjA3O8tR9YiM5+L7EVEQIy2TbK7A9HSFfNYimzFwbZtPHh7w/oePuX0lk7Sp6vyEklESAhhEsdSglDim - Xq/hmj69/pBypcT5mQrZXB4cl1atRjhoI9C04I7rIWVMHEks22Z6doZ79+5xclLjwuoSzWaLjc09Dqu6 - JFgq5BkOA1w3w/nVJTI29AoWg25IFMVcuHCBlZUVdna2uXDhIl95601yuRwr59Y4e+4sXjaL7w9ptzsM - hz6VSpn5+QXa7cfU6yfc+/QTHj16zNmzyzx4eJ92p8PU1BS2bXF41GVr95ggkMhYcObMIm+8/gZRGGPb - DoOBTybjQVLCnczGp4lAy7LwPO+UgkhDgNQLCIKQavWIKAoplSoASayvRpwAaXiRNgwNBgOePHnC/fvr - nDmzSD6f59mzTVZWlnGcz0790KhDsG2PwWCIlIogCLBtM80ruIDzW9jqX+h6aRUApBZB4NoWZ1cqFPIZ - Dut9iqUyx42IfiAxDMVJc0CxVOTx0zphrIjCiON6m5npPFOVPLJXY+iHhLHgyeYWm1sH5DyXXC4LCBzH - QhjahW+1GnS6TaR0abeaOK5JLucShiHDoYFp6BZlpWIczyP0dcuvRsSZDAY+j5/ssH/g4uVmqbUHVAqK - fL7LmcUKKg4IJ/D4gO7JT9BvMooIIsWTZ7u8fnOVN169TCRhb79GFEa6z6E35PZr13j9lYvsb93HtRWm - 7RCEMZ7ncfPVm3zw4a/xh0OmZ+ZYWDjL8XGdJ5ubzMzOghA8ePCA9fV1giDk3NlllAyp16rUjvd48uQx - UsZsbz8flfMOj6psPd+h3RmwsLDA2oWLFAsFXrn5Cuvr64nwa6Ops/Ep2s8Y1f9TwdWfX406/oCRFxCG - Ie12G9u28LxpgBHuP+3uSz0FYJQsfPDgPg8fblAqlbhw4QKdTodqtUqv18Vxyp+7vwzDQCndgajLzhFh - GMHY6od8/niBL816iRWAGP1JfwHbAceImC8Lpgsu7Z5Pf+hzdqHEpbN5dg/67B716A0UQRiwNJ/lxoUS - J8dzGHGXrf0+B22TfhDQaNRwbYeMpzEGSjooGfHJpx/T74csLMxzcnJCvz/Ay2gMQhgpokgiMMhl89im - RWxauK4DUqGkZDAcsn5/k9LUArfeuU1uap5q7ZB33/uISlHwtXeuYdk6XrUsQdQbYLseUirCwEcpiRCK - k5MGGdvg7VsXqZSy7Owf0+kGnNTb9Lp9vvnP3uDSuVma+wEZ19AU10IhleLa1esszC/w/OkzVs+eIZd3 - 2Nis8lc/+AHtZpNiqcRvPr7LcfWIKA7J5wu89trr7G5t4NkSGfWwHRvbdjENgygMODrSFQfXdXjnna9w - +83bBGHIzMwMs3Mz1Ot9KhWDONatuGnfvWVpAYvjeAQBTkt5k5Y8Feput4dpgucVx8SiE0tKeSpUME2T - o6Mj7t27j+e5XL58mTAMOT6uUqlM4fs+n8tKqs8wEX4wUk7JSilRfxcCfHErHSeh+7iVMkaP25bAtSV+ - GJK1AmZnYbni0j5n0fMNMq5FIaPw7IDFUoXZ4ipLcwUePA95uBdxWMsho5gokoRBjGEIMhmX57sHPN08 - oJD3MExTTwO2bIIIYgVKaCXQ7/doNusaA++6yQbX8WSt1cHOLVAozjE3v4ywPB7+8Cd8evcOzc6A62ez - GksQKSwnQxxFmqrK0Kg1Q0iEoevTK/NFyjmTN26cox9GDAcxCJPFhVma9UNcKyDjmIRRgDAtfN8nn89y - 8dIl3vvHX3F0dMD8bInpSo7t58/4i6MqXlaj6GzbIoojBAaLi0tkTJ96dRsVhaydX+Pq1Wvs7e1TLBZ5 - 69ZrqMjHyxf5kz/6I1bPrRIEAdlslosXL/P++79J2Hh0OKAVgUApI+ExNEctvCk+IG35Hif9ApSSFIsl - JuVuUkGkHkMq/O12mwcPHlCvN1hbO08Yhuzv79NutymXywnmQ/J5cjw5KDXdVwneQKDpwb70I8NfWgWg - QI9+Ip1vl/I2pi5gyiqvqaMsEWFZkC1DLCVChKNhL8WsIH+2wqVzU7x+tc+zw4jdhqLZkxwc92m2fEoF - C9SQaq1Ho9NjUPMxDT1CEsPAD2P8wNTjJAzJk80n/OCHP2R2dpZBr4dtW3rjR7qJyXY9pmemKBYzdLoK - z3U5Oenys7+/x9KfXcdKmGwUJnEUJBUGizCKsSwHhEmz3aTeyDEYDsjmcizOlCjkChi5HDIMOD7ooGSo - 8RK2q5FyYYhhCGZmZun1h+zs7vPVd25y6fwy7faAk3oDVauRz+rwRymTM2fmWFooE3WhZymiMGRmZpar - V67yi1+8S6lc4au/9zbTUxVOGi0uXb1CoVik2WzQ6/UIAu0pa7BNysBD8pjGYKRIvjHJhzkKL1KrHkUx - pVIRz8uNwFraTU92gBCjvELqTTx9+pQnTzbxvAymKdje3qZWqyGEwWDg0+/3RriCz1tpclGDhkY4hlRj - TLKefynXy6sAlEbvjYR/pKbTv0miCYGS6tRPpclmxkMrDKEwTAMULC7kmJmCm7FJP4CTVkTXF2Rch1Z3 - SLFY4P7GMd2BbiBqNHvYtsHCXBHLiuj5EX0/pt1u8KMf/QTThFJRY8s9zwWh0XCdbpt2u06xkKF2coJh - SPJ53dLc7vRRSmBbBvHAx/WyKCAMfN0tZ1pIqdjfPyYKuni5abI5g0pBkM/1OLNYwXVtotDXCSuVgFyU - wrE1nFj37Su2dg75xldf5fVXL9Mfhjx+usdwEBBHEc12jzOL89x6/Rqm6lF9HunvKUFZrl28yNKSJkIp - FUssLq1yXPuUR48ecvnyZdxMhmdPn/Hw4YOREI+7/LT1l5KRsEOaxdfKPGV9EsIctSpPTVVQatxNOJns - S0E/qRLp9Xpsbm7SbrdYXFyg0Wiyv7+vh694GQYDPbk5DMP/qAJIwUIvPjzx93cK4ItZ6ZgpQKXeWFKV - Sa3LaLSUSDjpEw9h4izp2CpgNJDSdgQ2MQVPMZ2HMNa15Ui5nF04z+0bC+wddWm0I8IoplI0uX5hFlP2 - uC9rnJktMjwyNET5pEntuIaXLWh23VAiMiZ7uzt873vf5ezyMmEUUW80sB0Lz7WJYohi3eeQzeZwbG0d - HddBqNSSKjafbnF4mOXmm2vMTV0jiAL+4YOPCPxP+ObXbmCYujXYsk2iyEfYFsKwCYIucRRimoJmo0M4 - HPLmq+fIZW3OrczSag9otHrU621uXF3j9s01njz4iLynvz0DrXwXFxe5cvUqv/7Vr9jeekY2azIY9vnZ - u78gCiMurK3x6b17NBp1CoXZREgVcTx2qzWFt0EUyRdyAJrePDkKw1DYtkM2myeKIlzXPeXuTyoA0LiJ - nZ0dNjYej4hH9vf36ff75HL5JJ4PaLfbDIdDXNcjnVYsEnuiwUOTJX4xkXD8j400+XKtl1cBJO6/UDH6 - MvUPFaOSRNnEKKek/p5OqJwcOZcOqBQjxaF/03SAhWnqgZKImAwRmbJgLm9zbaVEu6c3ZcFTeE6MjD08 - a4Xl+Rzrj7s8OjTZOnCIggipII5iosjCcW1Oqh3effcfKBdzCENXDyzLxg8ksdKWLYolQRzSaNTI53N4 - nkccS02jBTTbXfzYxHXLTM8uYrsuv3z/N3zvL/+BrZ1j/uT3r6A3rcS0HFCMXGfEGAsfxTGVokfl2iIX - z84QxNAdhMQxzM6UMUTEE9kj65mEcUycNNUYBqytrvHhrz/k4YOH3H7zFeZnyzzf3uev//pvKJeKBFHE - /Owc+XyROBaJ8KsRQ6+us4OUBkLYCVYATNNOjpGkY8l0VWDs6qdeQxoGTCIGAQ4ODjg5OcZxbJrNFvV6 - PUEIWiglEuh0m16vT7k8pZuYkp4AIdSotTz9utRof2AAdrLxfqcAvpiVuH4YpJNoxz9Q6gkoPf7agFjJ - pENvwmtLY0d08u7UMEqVegdJmJGMqrIMMO0Yz9begSLQjMQolAkXVopcXCnwygWf7aOIJ0eLtAdw0hxy - dKK5/ksF6PR8jmp9justhNKQ40hCGEb4IRBrePLB8TE/+clPWD57lkIuSxRHmr1HQhTGGIZFeWqaSjmP - VBGFvEsUxLz7y3WuX6wwDnXMZBgJ2LZLLFPCDpP+oE+9XsM0JBKYKldYXZrGzufBMNh5skkUDnRCTphY - tiZWRcUUCkVsN8PWzi5vv3WD61dWaTbbHFRbNFotvIxLLptjKRm9lSIBlVLEsabpimOFaTpJSCARwgLM - hL8vLf/FWJYiDMMkETcGE02SgqZJwzAMODw80jwQrk2z2UBKyGS8keIIw4h6vUGr1WVxUSR5CJkYEO2d - BMFp3o+EldiI49gibTX8Eq+XVgFo6KeBIp1N/zlLCv2cTGFiaHmYKLKriRvqBWX+4j2VeAnp44Y4fZQA - LEMgEExPe5TLikvnTQaRoNWV1NoSy3F0s85MgbxX5ajewzRMur0B/aHP4nwJz3XotCT9YUh/IPgP//ge - 4le/olwuYQoDx9HINwT0BwPa7Qa+P6DdbhKGQ/J5lyCKabf6eCrtcwiwbBvDtAl6PVAqybRDrd7i43uP - yWTzZLwypVaHUmHI7OyQSjlPFAXEUax3u9CBly7fZUaAnlqjQ63e5Ob183R6A7j/nE6nD4nbH8UBjqmr - GOnXrwVWC5oWeIlSBnEsCENJFJFYf0Ech9i2g+8HxHE4/s4nyoWTq9FoJPyIijCMqdcbE16C9hClhF6v - R6vVIgxjPC9lB1Kk1GFwutnPNC1hmqYbx3EWDQT6UlcCXloFMLbiaUUGxshMbeUVaA9AJHbkP+Gs/Sez - OQpUsvEncoyjF43SiZOlKKUTWLmMJAdM5+DMlIEwJAqD5bllbl6cZfeoR7U+JAzBNCMur05xZtrhIWXO - LbY46fQYSEW73aZ+UieTzeE6LmEQYuYdur0Of/d3P2Hr+XOy2Sw7u3tIJcl5DiqZgBNLhetk8BLrZzua - bUfGEsMyOTys4ncbnL/yBtduXsN0HD7ZWKf6D3d54+ZZFqZzWLaFZZkIJFLF2I6LP+wThgECxXDo02q2 - OXtmitw3XmNhtsxJvUW3G1CozBNHmifQGI3YEwkgyESI1NU2dW9GEBNF+jldOoyIohBwCMNgVE0ATnkA - k4nGk5MatdoxQgg6nQ61WoNsNofvD4njMGn77WMYguPjY3q9HsViCcPQXn2qT7QnMN5vCVORLYThKCVf - Yvn4/2f9E/mANqcrATpmFCN5TQY8C/W5gj7Ck4jJB8b3U3Wi408t3CJ5kRq9bvwYYqLtNck9CAGeo9DK - KsbNhZRXDS6fydPoeEjDoeiB50gcIyZrLXNuPsPZMzU2Dmye7Gfo94LEmiqCIMZ2PEQQ8dFHd3n04DGm - bSZU3CBjiKWBCaNmp1a7SRgM8TKeDoeUxDQsev0BURRwFo9KZZ6pmRme7hzw1z/9Hu99cJ//7r/+Orap - 4cxKGNqLSFpvdbyti61SacqwV67MszDjESmT7iBEUuaX7z+k19eWezKeTlt2lRJYlkMUpbV/kyjSiMog - iPD9vkZkCuNUsi9NHMIYD6Apw7qaoMSyqdVOKJUKvPPO1ygUihweHtDv9+l2OwyHQ/b396lWD5meniGT - yYzyR5orQCQKQC/HcYVpmrZpGpkokh7/ZGTk/9v6p/HhVJyAgMb93UKclmIj0QYjGX9RCySWPJHviXOf - rhSMTH/imupjUh9g0iUYewMiDVOEGr2/EALXkmQsRcmDWIW6Zz3xMpZnXRanF7i8OsP+YcDGQURjAI1O - yH61RxhI5mZszGqdg+Me9VYHJZM+h1ihPIEfKogljmUQBgPef+89uv2A2ZlpGs0GmYyrvYQgwrZNCsUS - 0zMVclmLfNbGNAzu3H3OtUuLnJ+JMUUKulKgYhxH9zlIKXEcmzAKqTdqGMrDD4ZUKmWWF+dp+zmGvp+U - 78REbX3cD2BZxki4DcNOSn9a+PuDAYE/JJ/X2IQXOwon3X/Hcej3BwwGfRzHTcaFR5w7t8af//mfs7S0 - xNHRIc1mk1arxYMH6xwcVDk8PGBubp75+YWkW1LHWJpAJH0vhes6ytAax+ZL3AWYrpdXASSWVY1MsJx8 - gjQEUKgkDhUjD+DUSl4+9hYY3RDJ8eOR1mLkZIzfN3k8rSSkYcKoGil0gnHsRyT6Izl3cnJzdAH6DUxD - YRoGjuVw4bzN8pKBL006A8VxI0IKC8c2eLo3RS6b5/luEyUEvh9Ra7aZmclRKngMG4L+UCcW1x9scH/j - GcV8lozrYqT4e0NDo9udFsNhjyjs0+u28DybbNah1x8yDHT8nH6rtpthOOwTRSGWZYNh0esNebSxzXbW - xfEq1NsdpksKXKUh014O0wTLEpgmSc8ECflnWnrTIXUcM6oCdLs9bDNOePoYe1cwgR8Ye11hGNBqtWk2 - GziOQzbrEQRDnj/fwnWdZJDLIrZtcePGNX76059zeHjAgwf3GQwGnDlzBs/LJaFFuqfGtOTJ+1hoJfC7 - KsAXsZRiohlTt/YqpTneSCyMFjGJRMcDp1J/EyU/neEfPTP+Pz1mJJinvYrJe6NHUr2gxmU2lWqYtF5x - qnr84jtP4hT0yUxD4LkSD0nJg/miIFYKw5CszE5z8WyJ3YMe+8cDhr7CD3xWl4pcWyuytztNMGyzdTCk - 4Qt6vT6142O8TAYnk004EWyiKOSjjz6g2x0wNzPL/uE+w8DH81xN8xX7RLHENExy2bwGJAkDOxkmqpSi - 2+3xyb3HTM2t8Nqbt3BL02wd7zIMqliWgWWNXWvL0nX28Ww/EgIVEynjJGcbYdsWxXyBZqtBr9/Dtpzk - t0mCuxd6BkA3Bw0GupU4m82Ry+Wo1+t897vfZWpqGtu2OHt2lW9/+1usrCxw8+YNDg72efToAdVqlWvX - rnPhwiXy+VzCJKRGXoseHhIrqUsUMb9TAF/0UqAs0tg6jcv1lJrPs/gTccBnAn9x6u+EzR6LZZpcSGBI - I4/ghbcRaZgwCks+c9Wn74jTSmj8vqeKFgjAsRQIbQ0dMyI7b3JuJkuz4+JHJtmMSc5VeJbPTHaWuZJg - firPxh5sHoTUmllkLIlihe9HGIaLbTo83XzO081dctkMhmngD31MwyIIFVEyWy+MJf1Bj36vq/nzXVdT - spsCPwg4rg/xSgal0jwLZ87gR4Jndz9KLLtEI/y04JomIwIVwwDXTbkBwHEMwIEwxM04RLVIE4Iath5H - xrhD8MUKQBiGOI7D1NQMQTDENA1yuTzXrt1gdnaejz++w09/+mN8P+Rf/+t/xeXL13jw4Al///c/p93u - 4vshmYzH+fPnMM3UM9EKIAh8oiiKpZR+suF+Vwb8YtakYOl5b3ocCCiZJIMY29WR3ItJgZ/4OyH/Kj1s - 8rE0p5DGg0qDhcSkg3AaRjBWNp9zwIv5BjGpESbymSqtLkyEKAJICW8F4JgxjqnIT0MsQRBr8hEElbyg - 6E1x+ewUB9UBTw9iDlrQHkYcVPt0ugEzZYcg6HN00uW40afT7WkUnjIwTAs/lASh1DP8kDx88IC//pu/ - YWZmhtpxFcdysCybKBnU4no5ZmanKRRcPM9g6A8QQiUNUWNh0kxHSUhhq2Qyj6besiwIQ5kMCgGwGA6G - 5LIFHMclisKR5zHpAQRBgBB6CpFSkk6nQzabJwiaFAoF/vRP/4zXXnuNf/Nv/m8++OB9lpaW+eM//jaV - yjSNRgshBINBwOzsHPPz8xQKGUCNlNZw6KOU8tFcgIOJjfSlXC+xAtCAH4HQdkUmhBGpnCpQhj6CBM+t - RGrJ1Wl5nEzaJSnqsXpIEoqTOYIJoZ30G0679RMlBFLnP60mpCFBmlAc5wv0wZ/1QhgffcozGF+6PsoU - KlEajKoW2vUWnF3KMz+r8KVFL4CTZkw/0J2RtdYAL5fl0ZM6fhgjpaLR7JLNOsxO5xFGC9+P8H1J66DK - 9//qBzi2STGfR6FwXQeBIlaSTrdDv98jn3NoNk4IggFRFI8guSkvnw4LtLVPy3igiGNt7aOoj+vmaDYH - mlosHFCvNygWi4B29VNW4XSQSBiGCWQ4SxgO6XRazMzM0Ot1+dnP/j2Li8t8/evf4Gtf+xbf//6/ZWdn - m14Put0B9XqTMIzo9Ybs7u7R6/XJ509zfgSBL6WUA6AHBMm/L+16eRWA0pY+luPOMtTE3PckLyhlGlcL - bbUT4ZiMAsbR90QycKQB1GcrBpPKgNO3P+cykxyBFvxJHTHKBZxKDKTZBHXqJKesP4lHMnJVOB2KTFw7 - yanTj+A64IiIQgamc4IoVhhmTDifZfXMRZ7d6LFf7dPtxQyDkOmyw81Ls4R9k/WgzlQly14TBgOf6mET - 2zLJ5fO6zyHW+Y7nzzf53ve+w/LSmYTPXwOPsllvAmevME0D2zZwHIMgkEmtX+H7PYZDf8TvV63uUa0e - kctluXPnDr4/JJPxcF13NAQkm82OBoratjMiYdEVBpvl5bM8evSAH/zgu8zNLXH+/AVmZuYIgoB+P6Tf - 9+n3+3q2JNBsNhkOh/o7F6m3qYjjWEop+2gPIGBiK30Z10urADT3f/LDAKNU3GQ8KBRSxchYfaa8d8or - T4XnhfunDx7f/Kw+SMHIIjHoYmyBGcv2uLdcjd4vxbkzOoc6pZxGIUZyXyWfS3++5BUvKI+RR4FIhF99 - RqEIwDYVtqlQSFwjwi0bzOUdumdtOgNwHJtCRpGxQqI4h2cvM1txebTl8/zYZj9jEyeTmH0/RmYkruOy - f1Tjx89/SqWsm24uX76C67rJZ06JQSVCyIQJSBHHAUppfv8g8JHSx7ZdgmBAtVplfn5OTz06OkxmBrSJ - 4mgU7mkPIJ0bqO93u12iKCYIfJaXVxgOBxwc7LG19ZRz5y4CJr4fMRj4RJFMKgy657/f7yfkH4kPliSY - wzBUaMFPcwC/CwG+uDXOv49+B6k3WYz+ayQ+su4FOH3o5O2R+ExIm35sXMB7UfSTAYWja0mFfSzjanx7 - QtBPa53k1cnDY0WimDjNxEH6TcYf4YVzpScaeS4vJiC1JlQiwUsw7qq0RYxlQ9bW3oEwfBBaeTomXDpX - 4eJKiTeuDdk5Ujw9PkMnUNQaA07qQ3KuSdaTNJp9Dmsdhkc+hoC5uUWmpsrJCDYS+DBIqUlSUuINw5BI - GSQhV4BpejRbHer1OrduvUE269FqtSiXK8zMTDP0BwwHw2S+nx7tHQR+MhJMJfkDwdHRUVLjn6PRaDIc - RnQ6PXx/mECO4+R4C8uKUUowHGoqt/FPrBJIciyUBp0ItHz8zgP4Ytc4upZKgYpPCbMa1YlPu9Gnz5Ae - PyGFiRkdew1iJIyjxF2aq1eJSz7OGH7eZU54Cuk1T+QaJl8yGml16upGln6scsZqajIGGJ11UvJHH36c - fxCkXY+nlY0CDDO5MfpOFJYpwDSYn80xPaW4dslmEAnqnZhmV+E6NsMwpljwcDM1mp0BlmnQ6/cpl8uE - kZzo49cjwlPyFiklw+FgAkFpYAhoNhr4/pC5uTk++OAD3nvvfebn5hkOBkxNTXP27HmCwGc4HGBZNnEc - IaUkDPX8gFKpyM7OLgcHe0lHZQbDEIRhTBzrPJJSJkql3AP67cMwZDBIc3xjQzPRDvyC2/XlXC+xAtAu - mWJi7htjqycQKIMRaYg4JX6T4jWRmRdifEQaX4/i6Ikknn7ghTBinNBLz3w6bh8L2amkoXjxweQVaeJR - iYlDRkXFca5CcOrsk0WOF0+pVNLxmNweK47xkZPhxviLmThZ0lRlWWCaIVkXyp4gmBIIQyKVwcrcKq9c - XmC/2qPe8omkwdLKPLsHfdqd/oj1N+msGwm/7/sEgU8YDBHCJAhDqtUqxWIRx3FZX39ArVZHKjg4POLy - 5WtYdo7Dwz2CYEA+X8C2HTzPxXEcvExuNFGoelRld3dHh46GiW27WJadCL0eDGIY1ghaHAQhg0GfOI4T - D2UEOxboslP4Od/Ul269tApAouf/KRmjlMlIzEYw0VSAtGKQY8Onnz2108U4AT9pwU9ZUO0LTgquhvny - ggc+VjWjhN3IMxif7nSqYeyOj1WVmHzlxD19LWryJGLivV64ZFAjxTY696ktOw5uPpsDSZVfqo8mwovR - V6kwDfBspX8VARkrpLxmcnWpQLOXxbAcXMen7Aoe7tSQUjA3J8hkelQqZZRyE6KOHKVSCcfRA1oHgwFH - R0csLS3RbrfY3HyM53lkXIcwiBgMe9x/cI+t59vEcUShkMe2Mziug5dxyOfyFEpFHNsik8lTb7SSkV8u - rutppmZhYpp2Uno0iSIrwRdoCrJeb4hl6fHihiEo5LPW2nJhvtkOgnrbH/AlXy+tAhhvv8Q1nnDbk/m8 - epNKNHmgZCKG/pzTnYL2JiI4oQe0gEzg9FQaO09Kv75xysIz8b4jAT/9EiXEC5eW0Jilj6coxgkL/CKe - 6bQ+S91o/Z849eT4Ciev/fMs/6hcqcQ4VEiFf+QkjeKhpNqqz54xQzJZKHsgVQBCUboomC/b3Nv36bQb - xGFILE1Wz50hk7GZm5vl9u1bLC8tY1l+ojEdAAAgAElEQVQG9VqLTqfN4uKb7OzssLe3Tzab0QLt2Kiw - xu5ujefPj4hi8DK2HiVmOZiGieNmyGWz5PJ5Mp6HMAyKuQKel8eynGRcmTOa6GQYZkINpnMHjuNhmgVK - JQPPO+H4uEaxkGUxXz5/aSX3P/7v/8/D7zFuRf1SrpdYASRLjYUGNYEHQNeUU1uc5gBOW7/xScaiMbbb - qZk9hcqbtMqTUjjRTHC6vDf5Pi8oGBiHGOm1pYKW4hFSEFDK4DOJURjJ+cSbTR6v1Kl3/JwLOn1pp+KS - Fw5/0XtJnZrUy0i/pyTBOLocA4ykNJsxFRfmAgrZLkdNn0E4oNuIeSZ9lpaWMS2Hubl5MpkcSkYcHx9j - mhaVSpn33nuf4dCnXC4gpcC0BLlMBGpAEAwZ+AHtVpjAi3V+wbIdCnmXbNbDdbMEvs/U1BxKRXiek+AS - LMazCvRe0TkKE9fN0OlodmfLytDvtZiZrrC2OMNiqf3q//Y/u//V//p/3P2/Pv8L/XKsl14BjOL1FAOg - JrawIqEOVp8hfj5t7/X6TGIu/T+xhKcET0wI+gvnHd9JBEONzyUmEkrqlBlPE4rpyccfQp8jjf9fvPrJ - 0GDi/imP4rSSmcRCjN3+Sad+0iWYzGCc/myf+1DS8ThSDBPaUAndlTmfHzKfG4AQVPsB2/U2H398xOzs - LNMzUxSKFfwgYG9vj5mZGaSUPHjwACljTNPGskzOLeXJOkMaLZ9r16ZptZrU6w16vX6S3R/iDwfYRgZL - BMigy/buEfuHNWLZpVg0cRwb2zYSSLIYxf+mqRmFTk70tKVut0cQ+KycPY88/hFnZ9cQUUggg//hzp0P - /s/PfBFfovVSKwClBEpORtsmMpUpAcSQUjxNVuxeFORJefrsRueUdT+lNSasvz5sLFUjz+O0zzBh1V90 - F8bKIBWk8QW90Mg08XeSDUkw4aq/mOwYKZPxy0fpUTX+YGLi9mSYMPocIwWbhjJq/B2ldyeU2kgJCDUR - NjC6zplsh7zdA1Gj7R/iR29jmQbdbpvDwyq3br3O/v4BT59uopRMhnQKrl/Mk8tYFIo5cuUKxWKRfL5A - r9fl4OCAfl/3ANiWjZNMZTJti0I+R9bzMAyFYSgsS/f7m6bCsrTr77ounU6Tvb0dbNtJehAiHJqsrZUo - um16YZ//t703C7Y1Pe+7fu83rnnvfabuc9SDhlZLLcVWiAEbF8SSEklglwlUcUHIbShS8UUrVhgqlfgC - kqIItuOuIlwQijJQVMCEipFJkZZk2cJCcmyiyI6jltzqeTp9+gx77zV+0/ty8c7fXvv06eG0drfWc2qf - tb55WO/zf+bnnc+Xn+gPl/canVkAUAFDKmeGtYQjXKFozbLtCKRCBraf4pRtIjzIS/MTN6GsZ0BF/Kbc - 4A/WCMIdcIzvSpsNs8WqhFOxLcO6WgV3usBPYB/CKy8uLTgMRIqgR4EFsJNAEyxZjcadAfd/pHGE2oR1 - bqr4jPaaiZCM8g4UlOOGxShByZZbN29SFDkPPfQQh4dHfOYzn2E+n3N4eMTx8RGbpuPwuKJqU5KkNV2U - 9UQuUkqk7JCqo2khz3Vx08H+Pve97wp5PqSulWlKKk1OgtcAiiKnroXOKVjfokzXXBituDA6ZH9UUmQJ - bZ3x+99+ivc6nVkA0GRTf03LFmVKgpGozkKA/ieV0IlAfTvXUsBQkQnhJF3g8lOBT4E+M2AYz2wNESPo - DXDSiecZscf7Xl2n7yz0O8ier8JcLtpXKes9NGaJSxrSe8kAHvrXj4Al+qbwGBCfL9SqQgMjSmRSHuxk - ckBWDmmalqeeeZobN27y3HPPsbe3z2c/+1m9j9SzPh8dHnHj5i0W82MWi2MOj464ceMGr7xyjUuXLnJ4 - eMR8sSJRFQqoqg0JinI4QCTCZf3pT6PTiIQ815mJg8GQMpccDG5w/7kl50Yb8kyRmjkMJuMBN27Nea/T - GQcAAOMxR2lNQHQoqZtcIJUtwwfCsRzPDWAlVji0/YDt2drhGEe4bED9GYs5GyZ0tT89MRjBUKQ6BytE - cF2rQbhnCvL4Qmlvb7sPdpEED589vievAXkN54TiY19FT7L79xO0SAveR7iT9zXo5Sq5B5Wcp6krXn7p - Kk899STXrr3KbDbj4OCAvb09xuMJ0+mUCxfO8/DDHyLPC9MLELpOstnULBZLDg+PuH7jJrdu3uLGjetc - v/YqL7/8MtO9A9Ikp227oEOxvgeboASC4aDgkfet+cQDG4a51TD9DzQY5Drx7D1OZxoAhFGHldAqnyIx - GoF1+QkkCTaM5e3xk+qoH/T4QRwxgpWedrtfdmr/7Zg7WI6YyX3anIK4A4HNSzip4uPAJzhJEK6zMX/h - mFU/XmBeBF7MaCi75zUefRWgk/Xwg0cCB0AhvCofeRUGpsLEKnNMqDnJdB9Ux2az4cEHH2Ay0V74+fyI - V155meeee86o7AqRJJRFwd7eHufPn2cymTAeTzg4OM+5c+f5wAc+yIc//FGkTGhb3c/g6OiQWzdvMp2e - Zz5f03W6vbiOHFkTQEv483sZH31fyzAPGgL2SHY7APgBktK9fpQMONVnbTmJbueKk2KLI4CAOUJpp73u - waWcWmwTfQLNN/o/ErwEPGJYPFSFNX70uhEF2oIy92P39YtBz0NlHXUiPom9l8hmiMuCRHj3Tpy7uwsv - GIv64H14bBDBM8fZl8IBSah54K6jEHRihEgnVG2DbFsefvjDJMlHEEKD+mq15OjomMViwWKxZL5YcHR4 - yNHRMU899X1TD6BQqiNJUkajKdPpPtPplMlkymSyz8WLl7jvvvsYj6ccHy/ouhalpOlD6Hr+k2UpqajJ - 0sC87NN7vhugpjMLAEqZrD/nYLMpwcKDgEpQrhJQBfazYeZIzJvTOHFunXIq2hzL7GgxkrRusIfNSQOe - EqqnigfnUuEWK+VtJaEFh/BCYVQh0HM8Twe+iAjXDPf2nJ0xmIRaj7/MCTOq9yJ83wOdjm0VCf8ilTsP - KDZcos3uoa5rpFJkJmSjp0kfMJvtcfnyfUipKwbtb7PZ2Nl95sznC46P5xwdzblx45DDwyNee+0aXdey - Xm8QQvBTP/UZPv3pf8u1J3P1FQIX/9ezF6+RrXQFTNtoS3D0PUdnFgAsKWn7y1sJ04Ge5xOFLheV1sMu - Thzt/nfqt8vBVycZFM8Tsd1AwDNG+gZ+Ap+Q41Fi6+AJ8g2ipsaqv7fXNfT9GHa05xV+YPvKwnh/29XY - tjmPLmeX3DPF923f1QkQdM8bAqGKMIVgf6clKGjTPZSApq5RStA0javn7zpd0pumWTC5qG4murc34/z5 - cwDUdUfTdLQtpsxXt/5eLpemC/Ccg4ML1HVjKhExmpSOBOi0YJ0QlGUF7Q+Bjf96dKYBQAg7Q7C2+ZUQ - phzYDuwMaWZ97Y9Buy7+7kdu5CV36q61gw0jWAHqvPu9UN2J6/a9AD2I6ZfyGokfgQdevcaYKtq5by9o - GV71rhUwvzMRetGICDB6+QrRi4pgIlbrRfhYyisQEXL6cyoFHQUiHdMYx5zm74S2bUmSxMTnU7quczP5 - pmlK27ZsNmuSJCVJMgMcCqUShsOS6XTCpUv3IKVuVdZ1grquzfRi1lz0k4raLkVdJxmNx+TZ7Ye/az7z - HqYzDADCaa/atvbM6VlGIqSdEXgbmvf09oA/VbRaxIxitW7LcKEUjRxddvdw0IfsrLzmHdxTaInYfb23 - XzgA6qvnfu/eU0Z8J9wDhkE/r3UELsjoVE6f8d2IgieKAMiBoH9pto4ijIxYvK3Ypxs8SL2xdfmJa9+t - Z/FtjMdetw3rupa2bY3armcP0r0ABVImrhwY/DTieh5CPVGq+w2U/9MTgCRGC0hASV3+fBuSJ1/1e47O - LAAo0NIe80Xr7eheDWClMEmHSxEOMQIv0R1LBp5u393HyzoVHq0Mk+DTXe0Ad6AiYmltWdnxhZGWQbQN - G6qzF4nKlS2XWkYO6w96g9ExpV9yd+Jvx95IzNBeW8AB2hYsiP0Q7sNqSx6crNPU5SX0FJ9O7KEnBanc - ulu3Dlmv1xwcHJhJO4VJ001JkoS27aiqSkd/VEKeK+q6MbMLC+M8VC4xSIjENCKJX1TXKTc5iT13WZZ0 - 3TGJGHKqE9DTMHiazevt/G6jMwsAIOykbYH0VyhaUBJFikIizfRtWlAHYjwQu1biqWgg2699mFe9bYGJ - 4DYo5zBz0ULXDiy4fCS57WEivmbglPTaSnyf/jRBpp8BCSffQ66zTB9o+GHfo/A6qo8sBKfrqSon9oxW - BEDiVCPz5gvdprzr/JTfx8eHPPPMDYRIGI1GDIcjhsOB6wM4Hk8py8JMlJqa8F1K1ymqqqGuW2yyT123 - Big0QEvZuXCiTQTSHYoT2jYlz1PXwux2ZByEdopwBYyC7+8JMDjDAABYG8xJJKVrA0Ti1ycmP4CuJ+xi - 7tvK6G6VsfGdrY9jAgsqKjzG8JqzBhyjBddU/iThJudbCHV740IP5Xn/jp1HHxU1NrG6yQm0iIR+DByu - giFS6XvvLrZb/MmcOaSIXSih2mDvE2q1Tzd4iLrRWZ12ZqD9/QPKcshms6GqNhwdHXHr1i3n/ddTm2cG - DEbkeUlRDBiNhqZhaGG6DqUoNeD4eM1qVdF1kq5TJmSofQBCmIlIRGLmKUgopg9w5ScfJZOv0h0/y/LG - H7O88cdsIasiqN7fewIMzi4ACKUZXfpiH4SNjwdSU0qUahAq8Rl5W+zlUFt2+xg93avs3j6P5qIIBKsC - X7kX+Af8rv4GvCC2arNe6ZxvwqjSKvateVPAaz6O6bDVh9YkwYGW08oDRShAMr/GRUKCh3MAFD94gJHm - 5np5DQQYovxR9tmb9DxJPkGa3hq6bXjKuXPnsDa/9QNU1Zq6bmnbjs2mYrXasNlsWCyWdJ0NA+tzWCDI - 84KiKCmKCXk+RKkuCBebuzE/vgafxJgYelpwUd5HdvE+9i7+64xe+zrXnvgNlwJgjkuDpwsf/T0BBmcX - AEjcD+6lqgBpxHECSnUgdZ78CWEkAvNX+FOEYtUOkF6YPdgWsoBX3X3Cj/UPhNe2dQQqAIjgsYLr9B2P - 2zQXK7WxDB+IdiXUCXs7uhdzP46xnVbin825T91LUH6/6J35u3P+F3CJg0rZqEJ8QyIbIqVu6mkn90iS - hPF4bCYb6ZCyIUlGCLFP20o2m4a61vMdKKVbeq/XlQGJjqqywHBMXbdkWcJ99z3IwYE2131XYs/8QsQl - wUWeRW/ZUuj3N+4EOyutffz3FBicWQDQcwDqvG1XhotCCjvQLCNasao/onG8lfG9A9Bfi9CHR7gnWGcg - qOhkVrVXQetvzfAeTEJmCxlDIaS5ZKhymGeKo3MiuJ7y+KCiw9yZJWFZ7kl0CAHSplCHwODuMwLCQIsI - tIkofTm8lgldNswQo/fTSjsrcIKUildeeYWrV68ymcyYTqcMBqXJ0kuMRNcFQ1rzGzCZ7NF1HVXV0Lba - yy8lVFXNfL6i6yTj8Yi2tVPHKRPCsw9qIwPaCZgmKYPBoKfmsRUQ2A4A4fd3NRicWQCwSrHL1hM6rCWV - MkkdoTyWCJMdFA33OD7Gtp/YsXIQF+yn11rbXYNRL37uthEMqIBZDZO6qcbspSJ9P7wXAsdcoH0E+9n8 - e5QID8cyqk8WioFDYM2Xk9qAA0xk8C5CDcFrBvZeoru06+w7U4omPUDkF2iWVeCpFywWC27cuGlmDxYU - RcFkMqIsh5TlgOFwxGQyoSxLn7qb5sxmE5SSxukH0+mIg4MDNpuG5XJpbH/fNUqaFvJSamCwzUDyPCUv - 8hNjoU+m/+Q2HwCnfL8TMLDbzgQgnGEAwPBrgkTHeKUSKDIcogvprW1hFVrPSGHmXWiXe63ByHQ7+44I - OvpYD7Zl8PBcAWNF/QOkUcn7UlcFfoD+TCBWuzC+ALfd7WZ7+2Pu3GoeIrov+7xb+waYjxOJT+FS9MUe - YlWN6Ew4E0B4YHFnDJQkkc9QEuq6Mc46rS3dc8897O3t03UNdV2zXK45Pl7StnNsuzcd+ssZDrXjrygG - 5vuY4XBkOv7q2v7xOKOu0yCfIP7rOkz2X4qUqZuh+EQEpKcRGHqjAPB6y3bdmdAOzjAAaKnXgZF0lh2s - aYARWWkgSAOGErg02JDpPRgoz+chk9j9rNQOGSlgBJ9ms4WJHBOYBaHTlbUWEEhVx2AiPiYQ0LYoKASx - UDOw2X7qNMY29+qBRTkTyYOMwvsK/FHWMXjizCp4Efh7dVmTKDrGMHiA1kwQYm1/IRL29g7Y25M0jTQJ - OoL1umGzqUzr8IamaWiaDavVhvlc9+/3nZ9SBoOh7iA8KAw4TCmKEV3X9UKy+jghMPUBWqPwJsLpZDIB - X88JyB1uOw0MFD9AMDizACCVIlHG/HIDLiFskeU4P2gaEko5hbdX45HcE2nRONA7OTs62BIyFIAthumz - nev1bw72GXjB/IUEO1jYCW1793jheQMIOGHeqxNY4tcFzGyGmXAmQvRE/h04wLXMlJilwE0WvUZ9LWk+ - u/yAZHAv7brFzvLbdR3TqVbv7eQddV2hlCTLdGZg02hbHxRCZG7qr6apaNuGzUYDxXq95saNI7quoyxL - 7r8/pyhG6Lx/GTC4LR+HLBMIUgSKIi/oKwB9shMdEfwcwZO/HgD097vTY99RMDizABCqZ9qmTcw3Zdyz - PukjUuVCBu+x5jZ7O2aaWOJFgtxyDcoxvkUJyypgdwk4I/AV2PN7xvVe/DhY4PdzmghO3ptdvF4TPZGy - mwJmdlWV+FBkAHDxFGjhsSbcKUBsyYtX2HcgovcFCpFNEGmClJ0L/S2XS1arFcvlkvF4xGAwZDweA5gk - IdA1AhhtoKMoCvb2RkjZUdctTaP3UaqjrhtWK60dDIdjk/+P+5N28liFuYeERKQkWUJnkoXiB/I/gvRA - 91Y0gDsFjtOW7zoYnFkAsKQHmTBOPivJjN3rSnptspY5JpCg/d7/gXnfYzjrmbPX9CAUgkVos58Qwlje - CRhVgHL3HZoLBjYM88QS2J8nFlO97wqj0gfMKwJNQeEdmu6kBiTM3XhAUfSeNrpc6A+IQEeG4VG7tkSM - 7kOSo9TSzOib0XUdTz31FHVdU5YlZVkyHA6ZTmcmG3DAYFBSliMmkxHTKbStJE0xHYEUm01D03RAzmw2 - om0nbDY6PGgZ2vpo7R/YBqEZbdtSlgWr1foEACgFMgA6o+3YKMCdMPyb3RauO+24UW/d2wIIZxYAdLFK - 4hp3KNmZH8RLMy82db64G7x2AEQms7GD9cljiWUYxVfAW9FrL9dL3z3Brv31lrlxy8KscOZBJMH99Zzb - QJitKmCwQFI79lX+PWinZOjxCG5S+bvzpcgxQ3vF4eTzqei/0DnY6zOooM0vIsr3U206ug5T9guz2YzL - ly9zfHxMXddUVcXR0REvvPCiCwFmWU6WFQwGI6bTCePxmNFoYLL/hoxGA9JUuIafQugZgG/cOKKq2igL - MEmU8aF0pKn2AUiVuFyAJHndOgCIAYDg+50s304DOG3bad/7696WGoUzCwAYT7OdbloZU0yG2xEoEiAJ - /GmWCQg89H5whozv4waW82KV2jW5cA6BSCTqD+dm8Ex30lVnD7cdewIfhRXXgQ0QafDBeX2EITie+Ljw - IWOxohx2KuwjxzuqyOEYUKg+2XuKXkWQPg3I4jKCKW2zQKnEVPF1FEXOBz7wAcf8uqqvYb3eGPNgzWbT - sFrV3Lo154UXXkYIyHOdElwUBaPRgOl0zGg0ZjAYMhqNSFMb0rPVhDYXwACxwIQgE7I0p2kaLl26tAUA - 4ic3ysBpABB+vxNAuN2xt9t2J2bEmwaDMwsAthuwHnKJG3p0OEeaVIlmDxPvdSaCGY0GBvT59EnR+QQh - myu3lwo9a739PK8Zjg9N5uhsgQfBgIYy5/ZKhZeengED5uvjjQiPCSW8BzZ7GivB43qD+F7tNZxmY5OQ - epzvTSmhMzCFdBpKCEz21pQAmZxDlR9AdtB2EiEyhJDkeU6eCzNxZ0ae25l+YX9/HykVq1XDZlOb7EBJ - VTUsl2uqamUcgDWrlZ4XQEqtWWRZxmg05p577mc02kepDqHni8PWAhhYAnS1oVKSsnz9PADpvZ9vlInf - KJOftu3N7DcMll8XDM4sAOjYtkJKgRIm+0spbEgNUs0hSYIUHVoLCBkL49NRzrse68QxKXPNE6M6MMMj - hnPn6ct7w5pqW7jPPZwzKpz0xDKcMsU+ATRt8UUI0bsNd4+aYe0R/ccJn/iEv0LZY4J5EJyWYgDWnEjv - ajosWctKQZteokuvoDppZurVUjbLMmazCVmm8zgsg1dVTV3XKKUoy4Q0zWga3flnMJhw7tx5uq4zDj6d - Hdg02vm3Xq9ZLle0rQbY1jUcsX+QJArokFL3BFBKkGU5m011Ig/glO5gbwYA+tveKHiIU77f7hzb9rOa - walAcHYBwDjllBbv2mFjEN2nwwjdGlzYsmECZtfb+0U9dh9rTodjQPT2A6LmodG3sMDG2eY21KYCG94y - dXheqxV41d4nCukNcVzfsrVAz9AbqO32vq12syW2FWGfUf3Ds/tn9i/Fgo+t+xcKOqVDaIjOg0F0CoVK - 9xHJgK5dm2o97bx79dXXuHXrOuPxhPF4ZEp9C8bjMVIq2rY1lXwt63VjCoEqpNQz+mRZCmRIqRgOJ+zv - n6dpdGmwzvPPzFTf0sT9zdyR5n2kqa4ub1tFnufM53PjEDy9LNg4BN8OALhb+4o7PMcQ2DrT8RkGgCRg - MMMeidLOPmU3a4CQKpRmAMp398VXzzlzIIyFBbp8uE+4Rn/T/7l8GutAc978gGkCBIkuFZ7DgJTL8evx - bXi2kMHs+cOcR3doT1MIT2kZOYyQxNs04IZDyzZfVQaQhFSoxICvPUmgobXpvcjyw4AN6yUuBHj9+g2u - XXuZJMkZjQaUZU5ZDhmPdV7AaDSiKAqKImM0GjCZjJ3kt7X9UuocgaZpqGtpOguVtG1LXXdG21DR0+lH - sw5B4WoSbMuwmMIIACg9XcBZBYDbnaP/YAoYsEUTOLMAIJWkI0XbcgAC1Qnr0TH7tK5ZkGPcUChFUrdv - tPtwold5w4zDYPdQ2Nmx39P8/a8Q1griNRB33jCNNrTne9cIGC+8beH8GOYmnE3QB5EABkIw8o8fwFv4 - HDFCOOZXCpKu97DKYIbRGrJzyPRehNJTcdlZeZNEcOXKfeR5yWKxoGlWHB8vaJpDuq41kYKENM0py4yy - HDKZTJhMJgyHNuOvZDgcsL+/Z1qEWY1Bcny84ebNubH/9fi3sX/N+BLfZwCapmE0Gpqpwj1JpU7mBrx1 - ALjdfm8VHE4zFRQezexxW82AMwsANo4nVYJKbO6/MuFABSpBSKHV4SSMsVu132oFNgSH4wVhBy3KtO+2 - mXjCXMYzpr6XWNOSgBF6hPBBtD/uHH7GYJ8F6Ox9y+zh8QEzhylA+ubAS/pwfgP/BnSiUqzKh2PIzecX - Humcp+GjBrBmAEmvDoEj+J4MSdICKRsj+TOUkrQt7O9f4ODggpHWKzabjcvoOz6eM58fs1zquQHa1uf0 - Z1nGcDhkNBozmYyZTmfMZlOGwxFlqZuFTKcDVqs1q1XnpH2aKjNBKNjJZESQOyKVRPR+tj7zS//ytqna - p31/KwDwRvY9bdlSHxC20tkFAHSPN5UEA9s9hzAuApNEY1RX6/33TjtNVuLFwtgM5qjvXhzT1lc2EiVQ - ucMPAlNDX1ThIgjmvNLfhSd3v3aBLZ49v93ec/hrimC2P+/ME4TvwB2PASKzwc01GD2L9WEE92bNhp65 - 5N+jecbiInLwUWyvPht20xNztM4kSNOc8XiPspwymejmHxcv1iYUuGC9XlHXG6pKO/g2G10PsFqtuX79 - NaQU7jw6k3DAZDJhb+8cg4EuIwYt9a02YJ2CoCsF8zzntWuv8fzzz/Pwwx8JHoJtFCSY3Fbqxij7gwEA - uWWd4t3pBDSjsAOlOi1yVWpUS4DOsWZ4SO8MJ5ZPDGPH/Jr/ZLBdC1ujKQj7XR9kW5Or4ERKhP6GgFED - +3vbDTqjwUlYo430DlBub3OMAwux/T2ElZDKgoepLnQgqZ8lNjaCcxhNTDn/Qfhs/plFMoTiCsqo/dYx - m2Up0+mIPBc0TU3TSOxsPV2nM/30upSiGJAkia7VZ8Y99wjj9dddgnWzkJb1uma9XrPZrDk6OmI2WzAe - 75EkgjT10t/OCaCvZ6cI05J/NBoipeIb3/gGP/mTPwlE6b/m0RVs7wfwRjWCuwEO4Tp74wJvFNv1W51/ - ls4sACiUZnylQOlCFITEF6PoAeaSdQLOdrPBmmHte1UYZjFe7VglCFpIOUa2x7hdgi82xd6PBZ841LPp - /aUdI3oynKX8L2odcMHVzWrhGd9oQChFWJkIyps7zrzxJ3eVci6H3/tOTow4RfBS7a9CsL9wFZMi3yPN - Z6imdaE/y3h5njAel8AArWVLU+TTsl6vWa83rNcVm02HlC11LZGyIc91ue9gMKDrUqTUSV9JkgOSut6w - 2SxJ05TRaIRSkjQVZJky4T/9FyYH6ZTijsPDI5IkccwfvGa/6PsB3I7xt6273XpO+f5GwSFcv83+91VQ - t6GzCwBSQEpge5rBaouCTDMMhd6uQkM/YksLAtY29umyYZpt+OvH7bbx2x1D29/XOxbstVweugUb4lOc - mK7MMqylLZstosjgHral+OtHUgF40YcG92mzFwM7xL4pw+s+dBmOZHe98PayGWL4CEmaoat1dMJPlhW8 - 8MJzPPXUdZO9NzE1/boGoCgysmzCdDoyvoGaum7YbNZsNkvj1NOnrCpl+gImZBmkacFgUDCbTRBm8tgs - k87paCcE0Y7Czj61axailOJb3/oWDz/8cPT8WyhSCLd82tcQrrvT9eH3223r7xcyerjdMn1n/t7FiUCA - 9iKjQ390RtX8wUsAACAASURBVJpJfMaeVun015hZI++5Coa2Y04/4PV5/NGugMiBibICMLqGs50h0D5i - WA4jAtEQC4aP11gwakX/WezlPGBJvxnH5g6PRMDAMcC5KIZTg8KHCpjfSnf7ph0QeEjxODmF/AESIUyy - TWpUbd3z75VXrvH887UBhdR59AeDgfteFIUJDRZMp2P29qakqb5S22pHYtNoc0FnEGrG1vMESIpCN/yw - PQZAeIeftFEAnyE4Ho/55Cc/SUQ9/u90HkDoBHy9z9OA4Y1+vxMACK3VUOLfMfPDmQcAM9ANk0tlGEzZ - FFNQUpEEjHFSntl1XgpGjXFEjynpSWDRZ34V7ezsYnVyFxdS8yv83UWSVSOJtM1CgkQd4a6lXCakPY+P - HlhtyCxZmygYOr6NWQBGym3092nP7YDHXsEnBcnoQQWQo/IRAkhEgjRzHEgpuXTpCkmSsljMTa7/ktVq - w9HRgqapzRTekjTNKMuCwUB7/WezqZsSXIcBh8xmI/LcDlnN/DorcMV6vUQIadqHJQ5DhRAu/h9GMYQQ - fOtb3+Knf/qn3W8i8YlDAZ3mBLwTENi27k5A4rTl8MXbT8v4rfm7Y+aHMw4AFrSlHaRSQRiqUdq+lUhX - VuuksmXu/usOtwORuh8yqD0skLDWDLGAoqSRiVFDzO3n6LkP7Bm2HOOByj52GNaI1HvlJflJnBH+fJHv - IRw7VkfxTkE3QlUfUlX8Ht3aAjX8IEIMQEGSJmTG3JJSMRpNuO++EUp1Rs3fmJDd0kzsOWexmLNeLzk6 - mnP9eoUew5AkmakKnDKdjpnNZuzt7TGbTQxYFMaUyJFSmw4639/PMGQBwHVWCn73w8PD+Fl6PQ+UG1F3 - zPx36iPYtr3/PdzH/oUqv5X2LTHz39bp16ezCwAKJ+19nX6YOWclogYG/Ya8lNP7mOEdxvqdx9ubdqEf - IP4lRbTO3Zrl6EBK9jHAsY2y+wlUxKiijznx8Sr89BtOyCfTxNM/QZzJf+ICCmdixE1XghsW5v6MxhFt - Q8+rpx9BQL4Pox8xxUKta7zhVW5lCnC0ij4cjpjNOpqmNW2/NOPqEOCC5XLBarVyE4ZsNhXXr9/i5s1D - 8vyqKRvOGQ4LRqOhyQ0Ysb8/oygG1HWFnWbM/mlTIHHmAMB6vWE6ncavsosXjRNQxGvfMBi83jqCdad9 - D738dvktMz+cYQCQTgTqT+0AFEhj8yES4/03MwcHXOdTW6Pxjj/TdpPBS1z/if2IpGgsid01A1Xa2eGR - 7hCcL3g2iwQ+yugtbXfa4Fn6o8c/qP2q4u8B3DnGDg4FonwIe5xrrxZGSZRA52GbVjvpEJFMUEhkp4uy - sszG6hOSRLoJO3WHHqvyJyilh5/t8SflOZpGOwKVkkbFr2jb2uQGVNT1mqpas15XLBZzXnqp5ty5Az7+ - 8R9hNivousZJfyCYb1BrAva3krJjuVwCPgFIbXea9wGgv+3NggBbtoXrwuEliO18y/RN8PmmegKcWQAA - tPQRGAmvUFK6qIDNxXddYIVnmEB3BwJA8Kzn+a7H7FHpv2suqXdyOsOJqAO4NmFOG+hDzRbp7ZGlF3q0 - t+9j9o75HSC6l+QlecjX7kTCfXiNCCfZXb6BCp8lLqV2J3TeUfOZDJCDhyDNoWuQXUeSpDSNbuU1naYU - RWoYv6NpCBhbL3cd1LXO5VcK8jw3HYSlKxu28xvotOGGtq2o64qqWrNYHDMaTSiKIW3bmQKkzEwpjskM - TMycBDh/QFEWPPzww5FvoP8Dye0awGn0ZkDgNI0glPQhIFip3/A2MD+caQBQetDJzvgAdAqw6qQZiJbh - dWxYKZsujMtks+qzCJgkUI59KM0wBnhGdiARahbmSMfYfUYJBpIyyzY7UZqT+mS//mhTWou2FzJJBQoP - LL6LUKymBLcYQlysGLhV9nirofiXYEuYw2cVwXn09s5oXwqVjGjTh0kkKKln7tUhupTl8piqkkynI0aj - QvfizxVC6Px7KW0SUGt6/ZXGJGhNAZBtCCON9NaTg6apYDAYkOcJQnQmbTgx04l3htkFaSpMNqLuP2AL - hZIkoZOSLM946qnv84lPfMKNje4kRIf0ekCgbrPP7aT+adI/XGelfgPU5s8CwFtqDXaGAUAXBCkFiSkB - dh53JIjW9KOT6IQhzxS+pPakqmydZqrHtFpC+lAhACJIGiKMi3tmNFuin9/H64X/DM0T8CK9p7VYmPIS - 3Koq9uJWDQjGkbKOSPeY/nZU+GrCHAj/YlR8KDbLMdzNA4FfoxCQpAanW1PWq239V1+9yiuvvGAq+ybs - 7U2ZTEYMBgWjkS4H1k4+7cyznZ/0dN86869plKsCbJrO+H9ThFCG4RVJkrpJR7LMVvtZB2BiTIDMgIh+ - jiTV8wLMpjNst2L38AGdDAg42sbo2yR4PPzibaeBQHgnfan/tjI/nGEAkKpFZwIpOht3ErZLizCRQRO2 - kZafDDMoqzxb5vYcYQdy+ObB/tjKMYMWwHag251iMPH/EwCFpVgmR118I+ZWgYT24yBKuQ0PCr3zzmHn - 1/tEnliMRKFK+zpscpRjbGdjEOHUiYgAKJGi8kuodIzqGtquNVK7Nba9ZLmcc3R0kzTNyDI9I89wqEt9 - dX+/MePxxE0DXhSl+V4CJba1t5TKxPw7Yypoc0Gva0wTEMgyaNvEhAIz5wDUWkGGEFr6j7KM9WLF8Xxu - egiYZ5bSNAXRy1Jt9Qn0aRsYbNMG+kx+O+bfJvUrPPMv7uTG7oTOLAA4BlP4wLMyg1EpMzeITQTqqeCh - be5P5RZC1o3h2WgQ2w50LcJEfClwjgPPJL4YyN1J32vozhUAVYg0ItzLOKkcOvmdY29A+HT2brT5408d - aEYBEAmIOwjb7YHyYcemQqIY0A4+RiJS6rqmaRqjZgvaVnDhwgXS9BEWi2OqqgIa2rahrjdcuzZHSuul - T00ZsG74ORqVjMe6P8BgkBtgyMnzgjzP0f07JHYWYN1KTE8WKoQiTTvjfPS9CPSyMdaENhfKQUFV6a5A - HgC0n+kt0J36C06jPvNbiV8F35dv8RoRnV0AcMwqvdQncNiYnVRn152s27Nn8ONauDfstYFQNfDLnplV - sN6d0SnBWkIGu5lUXNsRSDOPCJ4nlvLKcZjd7pkz9FfoA0xIM2Bif3sBOAVahY0I9EHN9iiMHtOpB8Id - F4JWhK+yQ8oc1UFd10YN130AqqqhLHMuX76CEPcAHUnSUlW16fO3YrPRLb2qSvsA5vMjjo9vmJmCtBQv - isK0CR+aBqC6Q/BwWJJlGWWZURSFyRiUNE2NUqnxFyQuAmCnEdNaQkpdN+ztzXjggQe8+s/JxPktvQHu - lF4PCPp2v/204b0GzfT2z0r+t5X54SwDAOppUB+QIZ+ibHqmjgwYH4EULajcef/iuvZepZzdEAnkvnR2 - B0c6mvsM/Abu3gImUmiGdMAQ+hwcx8Y6SIhDoY7iIpqBduD4NNAU3JYwIUpEF8IigWtBpqA/7CPfRjg0 - hQcWlEKS0TFF1g1NU5MkIKW2vbtOUVUtkFGWCUWh03+zbI+u0914rDq/XtfU9Zqm0Z795XLNZrMylYMV - 8/mxCyNah95oVDKd6kYhZTliPB4xHo8py5LNRmcD5nkWdSSy2gnodOW6rrl27VrM5Lcx+t8C3YnzsC/1 - q95fA6zuxs2dZQD4jFTpp5QUP4VIfkzJ9hHdDdSocmiElkitutmRrUJmDRJvzJcTktMyXcBotszX9ru0 - DBUzs4qupb/3HHGOoYP9BS46EZ7WHWMvIzwzOp+fi8sHl4lKlPVnDBiW6c1JQh+geWbYDjD+5gLQMvdV - q3touIBsViadNzHXTo1DLiVJOtP6G5Rq0U06M+MTECRJyWQyJssumCo9HQFo29pUCa5YrzcsFmvm8znr - 9Yq2bVkujzk6uoHONpRcvHieH/3RTzAYDKnr2jB86sJ/WZYF3X8UZTlgvV5x5coVtiZD2eW3ZA1spZ4U - cN+t1LfMvyGW/HeF+eEMA8D9P/E3nn7ln/7tlxH8QwX3CpE+Uubyf55NyqEfpIrEZKaBZyqzCat9Rxgc - MSYBY3lm6k9/7Y7DHxQytVexT1ObQ+CxNxA6BUO5b46T/r78ynC/2GzQq4wG0IuARIBn/hPmFL4oKAQi - +1B2vYj8MIqEOr0XhKStN3RdZ4qAdIy/LAdMJiVFgYmz43ryJYmibSsT20+oKkHbJpSltvXLMiNNS5Jk - z2gTktWqMt2DNqzXS5P7v2K5XHB4eMzBwR7DYYkQyoT8MmMCaOmvcwvs/AQ6FNg2LX/wB9/m0qVLXLhw - QT+bjFMBtzVYfRso1KtClb/GM/4Gz/xvOLvvjdCZBQCAyz/2n2zQL+Pm9X/2Xz+5qcX5W4fLc6qTmUjU - v5El3a8KpdKiKOIfS8Wee//FMm1oFggvRQOvujJcbRtghpI2EPnuMHcp891JeSvOrYQWIirrdUdu49jw - kU71+hODTviYwSq3r1njNIDg/kMjPwptKhXggaJjymbwcQpZUdcbPZJN3L4oMvb2SiaTklQHcZyarf0E - giSRLrlHx/qVKwwKZ+wRQvcDmE6HjMdDc4uSqmrZbJYsl0vquna9AJTqTG9BHXHQWoj1A/ioQNd1DIdD - sixzjkC4g+L5t48s84de/k3wZ5n/h3dy0D5d+Jf+Y5v99BLAi7/7n7+0ruRvpHl6eTjK3992m42SPC4S - USSJIBFJPHADdfxk/xs92N1cgwFXhB5wzw8qOFck3925wlpNVJw81KeYz1QANqEur4grE/U+MryY1WZC - hg6iF8ofHCsrDjCCBiLReuv3EEDKWr0PxISmrmja1qT16p78i8USpVas12NGoyHD4YA0zY2jLjV2uVGE - lDReePN+lTKOxM7sp8wkoTVZliGE7ipUVVqDGI9HDIcj0y2opShS0xBEGKDxAKDrEZQpWU6QacqnPvVp - xuOx/01CjQd8+PntI4vFYS6/lfjvOPPDuwgA+nTfT/xCCxwBR0/+P3/jyQf/9C92gGvy/uzX/uqjCn4x - ESJLEhG0CbdM7X9cwx4RrzkmkKE9TqBECCeFLffGJUY9JlMynhsgah8W3JvbX/8XVi34ZqVhvh7BRfyn - 1TbcFcLntRq+vccwASk4WRyJsN8Klt0VUgHr5QopO9dzH1qefvopjo8P2d+fMplMmU4nTCZjM8ffkDwf - mF4AhWkbZqv1vMptm3YALqQHiqrSjsGmadlsNjRN46S7nn9QlxXb8wGuB4GtA5DodOPVao1SuumojQR0 - StE5h0s0RN5O2qb6W9vfCrl3hPnhXQwAIX34T/8XXX/d+3/qFx8DHrPLz/z2F/4uiL+kBUCCIGgVZluD - q8C2D9Rxz5qiJy2cR8/tE0UETC2BT701JoU5nRtfoc0eGuyW+ZUgnLcvAqt4T3/oNl+ECPZ2zG0bq3pz - JwRAu81euelKmuw8omuoKu2bEgLyvCPLdD++zWbJ1atz4+wryPOMosgZDodMJlPT8ntsZgUeUpalmTpM - 5/4XRUrXSRdaFELXBujcfmE8+4Ku03MOSpmaZ9T3GCYApWni1iVJ4rhaRy36YeV3jEIQsJrAG2rk8XbR - ewIA7oQ+8Mlf+jng5+zyM7/1V7+I4Gd0ExsNBrHaTgAKPqrgNkKfqzzvRZpEuCVmeu9vCD4Dc8OeyzG/ - 2+ZLmv35wCOaubY1CfBmgLMQFFGY0GU2KL8OiB2mKGo1RmUTmmpN09SkWWYKejZkWc6FC5dIEkFVVSaU - 19J1HZtNx2Kx4LXXrpFlPvNvNBoyHo/d5CA6pDdhOByRphl5nrq8/jwv9DMYB1+eFxFQ+GYgwlg/iZP8 - thpQKdslyL7T4LfpzQ32DkCDCP7MLLenz+JzN+iHBgD69IFP/eK/HS4//dUvfBPBjydJoqcHiPrqm2Ke - iGzdgGFF14svdjB6Fdx8swqG8Pn+fY8Edn9BbDZgj1XBvCLBtVTfoIgbkvnnwYNPX5Mwdngc6jROQynY - yH2yZEC1ueXi/5hKu7pWTKczJpMRTdMiZUtVVazXK+PkkyYbsKHrOlarJcvlgldfvWZShQvKUrcI0ybD - hMlkxHCoZwIuCu/NF0JQFAVZlpneAq3z+gMm5Gi1AYzPARNulJDv80fX9/hwmnNxfHKewLtMluH1fGdQ - EOtu8A6BwA8tAPTpg5/+pX8tXH7qq1/4jhB8NBFCkAjnbRfqhB6AU/3DtZEkD1jccLS0UlfhBmifwvi/ - 43XRN0PspSy4KFf6CyqKJHog0uTrDYS739Db759NmzqyESzVJcpMUNUVXaeLdEBPt2V78g8GKcPhhLAT - j5SKzWYTNP+sqaoNVVW7acLrumaxWLJcrrh586az0ctyYMwEDRBFUTAcDkzrsBmDwcA4GWMYtWCBfm0I - oX0Kq9WGyfkH+CcvjfjGKzOUgsvjin+5FNwbHP/2+wDNa/fMn+MMTbfOZizBOwACOwA4hT706V/6WLj8 - /a9+4TkB9yeJEIkQnIyd2//6sjyw28HNERC5/dSWY4wk1l78IJ9fhWAQffGaQtABKTYRogvo8uMes4fd - l6xGYwFqXWU05XlyKWkqLdHTtKNthZmNR3fnXa00sydJajr/6ok89vZsbL9zocGmqdlsKgMMFZuNbhGu - 99FtxFarFUdHx4Dt7y+DGYNG3HPPPTz00IfI88kJu94DQGKciwlVVbOflyiZoAS0LTx/WHKpyLh3Eryi - 7q4gQMjs/WXL/NZHcNdpBwB3SA99+pceDJef/M2fP0wEM5EIkZhJMMDzWRhH1+p6YFJEqr9wUjvsW4Bj - +qBNmTULeszfT3V25xBWMbA1BzbEGOouPXKRDWurGEemVCzXGfnBjK6pqOoKqTqktAk2LULoGX9BN/pQ - qqOqato2RYiGqqqizLwkSRgOtTNQA0Pr5guoa+1D0GXBuvHnarU0vgW9brFYcPPmTYqiIElShIC2bZxX - 305AYpuAKqXTlCFlsdhQT6QzDbq2QxZvcFC8cQpcy6TEPoCQ8W257133B+wA4E3Sh//ML+/b79//6s8/ - pJT650KIMgljUBBIZTuZoFWzvaS1v7202sE2qWxTkK1pobk02m7tdSf/naUQ9CNE+dyGQHuIfAMquG9z - 27KTrNucPMtpNyvqRtfjd12LUoKyzNjf32cyGZu4vJ6qWzN1616Hlf7WS4/RMLKsoCwL8lyXAyfJ1PUW - 1LMEt2aasLWZPqymqnTy0P33P0iaZiwWC+q6pixLlFJuZmGwPgDdRyDPh1y7do22bElSw/xKodoOGTgC - 76IJENr7tuuwdQKetGXuIu0A4G2ghz79y99HozUAT/7mX/nzSvGrIhFF4hyK3myw4twLah+Wi2YEVnYr - MeMLv2x3dOdS7jDs2SPzwBzmOiSJHpgE/7sIhAKpBA1jsk7RVBVdV5NliUmtFZw/f56LF88DwjC4n5jD - Mp6focf387cSWEv7JkrcSRJBlmVm2nDdSOTCBQ0KWitYkyQJo9GQ5XKBlNrJWFUj0z+wDpKLJFIKuk5R - lhmbaq3voe2Qqo1yD95hslK/C/5s77+7fkM7ALgL9OE/83f+PvD37fIff+Wv/E3gPxVCZD7CoLdFiXsm - ESDO5CeSF6EjL9Qh7ArTItU57vpOSwsy7mh3QhXuYM/i7qNVBZU4z0B2xnHXoFRmuvgo1us18/mCLMtN - Nl5mGnsQqeG2MWjbSmfnK4X5VOa7QhcPCVM1WDuTwX9mzGZTmqZjvV47LUNKxXqt6wbqWjsW21bRtrjQ - YNdJxqMhG5HQdo05rqNv8t8lDUAFf9u6/dhMwHckJ2AHAO8APfxn/85fB/66Xf7elz//d4G/JIQwk9gk - mh2jvALPkI4de0VDPngYxwqdHLdptsb/YPDFHW153x3Tbz1s8gIEUMuCVTvjXKKr9dq2IU11Qs7R0S1e - euk5ZrOxMQMmTKdjJpOpa/9lm3tmme7OAzgtwE7caZ181kyw8X0gmuZLKWjb1uUA6IliBHq+wNZUBTZ0 - nQ5DVlVHVXWu3uD4eE46vkCSQKsUXSuRqkP1i4HeXgQIcTjs7muZ3qYC2yrAt732fxvtAOAHQB/5zK9E - SUnf+/Lnv6hQP5MgEpJET3vqapEt05/sMOyTlPpuQIjsehsAVzFIeEvCLplrqQBazCFZNmRVJSB14w3L - eCBZrRa89NJLvPqqrv3XfftHTKczptMJ0+mEvb09xmMdzx8MBm46MDvJK9jcCGk0gNCJ573/2pzQ67R0 - b4xGo5ypsV7rhiNd17ocgaqquHXrkPV6ozMIlx2b6QqZ59g24XdR4+4zv00DDht/hMz/trX8ej3aAcAZ - oI985leipKTvfunz3wR+3OS7aMYIQACIbHo/bONtgT/PaAAGLqwPQscjiUJ/wfGhmTEYZBRFyqaq2WyW - RoXHpOhmpuuOJE1TmqZhvb7B4eGhCQNm5HnBYDAw2sE0+tOz+5SuN2Cep8Z5p31j2jSQzlxomoYs02bG - YrFgPl/Qto0J9UmXhdi2LVXVUNeS1WrNzZs3WSwWZNmA4/qY8QM1SdLq88vuhMR/m/oB2JOGc/eFtf/9 - zj/viOS3tAOAM0gf/eyvRElJT3zp0e8I+KgIIgxW8kfOPR9CAHxqs3UyhgDiw4MxOf9Az2fZ1BumEx26 - 1sxVU9cJSVIwGEy5ePEe2nYVSW3thVeu1fdqteL69evOqTcY6ASf0chO/7XnNIbxeGzCe3omoCwbANr5 - Zyv9BoMhQggWiyWbzcY5QnUI0U8gqpuIrDk8PGS1WiLlEdOL91PkBXXX0hkH4B02AX0j1Lf3T2v8cVe7 - /tyOdgDwLqBHPvtYlJT0xJcefRnFvVpDiLJ7YhXfpSn77X6S0CCQELodbJWi26g/mnpDmdWUZcFsb8Z6 - s3a19HmecPHieZLkHEp1pklobRhfx+ylsa+1p741/QBrV4KdJIlJA9bJPaPRyBQNWUDQBUSDwSCq9pvN - ZhwfH3P9+mt0nSLPc1ceLISuBFQKk114g6bZcHy85JGPP0I+vM4z88vY7sOd7FxTUMlbcgKeZu+fpvLf - 9cYfp9EOAN6F9MhnH7sSLn/n8UfnAsaA0AVvXkuIKxLDqICX9CGzR/MGuLQVoZt6rm8w3Hs/ly5doapq - bt68SdfpIiDQHX7zfMhkotPpfD5A51J9LSDYP+uesKnCVVUxn8/dzD5pmgW1AUOGwxGDwcC1E9fXshEN - 6zRMqGutKcxme0gpuHr1Fa5efYkkERwfz9kcv8h/cOFXyS81PLe8j2dXV7gnvxal373JnqDb7P2+s6/f - 7PMdrQAMaQcA7wH62Ocec7NcfvdLjz4klfojUKXANiyxzB+YCzYzMawgjBOUgwxERSJgtbxJ8+pLXH7f - +7l8+X3UdcV8fmSiATmgPe+6DVfmavV1YY7NGNSmQdM0JmZfOWDQxUKtCw9CQtfV5jrHpKmPHqRpYoBA - zzFg24npRxOs1xukVBwcXKBtW55//lnm8yPKckgiEq6/9gp1PSQfCB4cv8iD4xffjp/iNHvfSv6+yv+O - OftOox0AvMfoo5997PvAwC4/8aVH/7xS8n8CsqiDkQnzhZEBUEHYMRZlAolSBU+/8CzlcMjFi5e5cuUB - Xnj+SdbrBdBSFJnr42eBwHbysZl/urhHF/XYEl3tJ2icV1/PGFy5LEI7q69N8ZVSstlsODo6oqoqLl++ - wgc/+CGSxCYhCZbLJVJKxuMJx8fHHM+PGQ7HDEcT2mbNvfdeIM9STku5f+7F195oTOBO7X2rCbzj9v42 - 2gHAe5we+exjUVLSE48/+jeV4j8DUtcAJOjPJwj8iIGTQAjJKJ2TcJlnnn2OLMs5d+4CXXc/L7/yHHW1 - QqnOdeRtW0hT3f7bgoCeoFMGTT18cs9wqNt8a5NA81HXSaqqNk49rS1YM8Gr/YrRaGzShiVFkQPaMZim - BUUx5ubNm9RNw8HBBcrBgK4dMB4OSJPTWfzajSNWG/XtO3jFd2Lv91t8/0Ds/W20A4AfMnrkc49FSUlP - PP7o/yKV+vexAXnl+T6cJi1NJPfOroGY8u1nGp5OM4os49y5S4zGJU29NEk3G5cn0LadYeCaPM8dw1vm - B0wpcEuatmZW38Q0ABEu/ddmBIY1AbpseEmeZ1y4cJEk0dPFF4VuErJYrBkOx5TliNdee5Gubdnb2yfP - c2CIkGuCDnIn6P/79lO8fL17/HVe5+3s/W0hvh+ovb+NdgDwQ06PfO6xvwD8Bbv8nccf/QpKfRqUEIFp - oIC9aULaPcPLxR6v3sxJn/o+Vy7fw97+gIODPbIsN8k42hdQ142T2FVVOXXeMrJN6bX1A2namanBdfsu - 683XtQGZmyJsOByzt7dvgEaYLkDamknTnKpqWa3WjEZ7NI3g8PAYgW4immUFi8UtLu5BckrJzfeefnnx - j7/27NUa/vFtXt3t4vt9Z9+ZsPe30Q4AdhTRxz732J8Nl7/z+KPfUkr9SZQSiYDJTPGvfmjOt17b45mX - Xua1m6+xtz9iMiqZjIemtdeYQVkymUzYP9hHKD2pqwUCXclXmSafPpOv61rTtCNzbbzt3H1dJ4OW4dpk - SdMMrUjYyVBSkqSkrpe65n9/RF3XHB7epOtak17c8eAD7+PcdPHyqzeOr4XPenS8uvrVr//z//e//wdP - Tlr4+m1e07vS3t9GOwDY0W3pY5977E+Fy995/NEnZ+fUh/6VyVoIMg4XG44ON9y4DnkiKIucfFAyHAyY - jEeMxwMGg6FJAx6wt7dHlqbgCn20lmAdgLpbUONaf+d5Ttd1QZPPzAGB7vkngTRyAC4WC6pqw2g0oW1b - jo5u0HWt6WDU8Kd+7NNX/97/+D88+vWv/44FgG26wLZ1r5fPf2bi+3dKOwDY0Ruij33usQ8DvPi1v1f+ - RN7+aNe+/Nuruhwdq/PcWMB8vqKqG46PNly/cUiWpwzynKIsKPOc8WTEZDxmPBm5iT8P8NXGBAAABHdJ - REFUDg5cQpDuIdCx2Wxc628bGrR5BbZcWIOCaegqbagRlsslXScYjYZU1Yqjo0PTPViSJGlT19WXn332 - mZvEIQDR+9xGVupb5t+Wzx9W9J0pe38b7QBgR2+K7vup/7ACfh8Y/94X/7u9P/HR932kLYr3Hb/03V87 - PJTZui1I8opbh5Jb65yb84Z1W7NaL3nplWuURclgUDAcFCYd2GsJZVmwtzfj3LkDpILWgEA4H4B1Ckqp - EKIjz3NmsxnD4R5FUXLvvZeYzUYsFnPm8yVJktI0a3nu3OTL/+gf/cY/ePHFF61NHjJ+2JCjDwgh87+e - s+8dzed/K/SOdR7Z0Xufrj//lfTo5lx96E/+u/LW97505frVr/0I5L9xcy7zYaFYygNuHGekieJwVbJY - S5YbSZoISEx+v5sSvGAwGJquwCMzb0Busg6VaR2mU44B05RUslrVHB0taBrJdHqO5194ga997SvMj2/K - 733vu18ZDrNf+aM/+oOXiUv/LPP3//r8cVol3w80n/+t0A4AdnRXqb3+m+lXvvGiOH9u0I1Xv/cFKbv/ - EpFlGzmjbSXlaMKrxzPWmwapUuZVxqqSoOysQIK8KBmUQ4aDnMGgoBwMGY90sdBmoxuR1NWGum5pWlAq - Z7GoWK4WvPzSkzz91B/w0rPffeLrv/e9vwhc52S3nZDpU3yDzhAErPTvx/hDlf9M2/vbaAcAO7prtH7t - t8Xw4idPzbb5zpc+/98qJf4jKWUCCaLY53CVU2RQi3NcnQ+ha6jahKoWNJ0gL3JSIcmShLwoSNPETCCS - IyXMj49Zzg8ZFop7zidcf/X7/O+/9n/wh3/4/M99/1r7fxG33LLUZ/7wLwSAfl6/ZfyWd4G9v412ALCj - M0NPPP7oF6VSP6OUSJTIQLWIdMRKnWNTKUQ+4erhhEYK0kTRtS2SnEQIlsdX6davceVSyeVLY15+5Rq0 - Nf/iO3/I//l//y7/5InqI8ANPAD0NQDBSeYPfQL9LD/7+a5S+fu0A4AdnVn6zuOPflMp9ePKljemY1bd - BLJ98jShlZL58Zzl4UtMhy37k4w8TWjahl/4r/4hX/jL/ya/8Lf/V66+0vy1713r/hs8E29T1QfEmsBp - JkDYvPNdKfVD2gHAjt419C8e//wTUoqPCDqhk38EWaqdf1JKEpNi/MUv/377zd978uGf+LEPfeRvPfbN - 5+aKZ3nj9vmQky26rebwrmd8S7sw4I7eNfTi/NLHP/fv/TUJ8L/98p8Tf+JjDz5343B93/6sFIMyZ7Vu - /vj4ePHw7/6zp//cr//OtWd+/XeuPfMWLveuc+jtaEc/dPS3vvBZcd+9s+LZ3/75h//pr//lH//Gr/3F - 7N/51L07zXZHO9rRjna0ox3taEc72tGOdrSjHe1oRzva0Y52tKMd/ZDTLlyyox9K+tmf/dm0rqu8rtv6 - t37rq2/7lEA72tGOdrSjHe1oRzva0Y52tKMd7WhHO9rRjna0ox3taEc72tGOdrSjHe1oRzva0Y529I7R - /w/PB9wb4VO4MAAAAABJRU5ErkJggigAAAAwAAAAYAAAAAEAIAAAAAAAgCUAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+x+UbVIabIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAbrjVLXC612Rwutevcbza71mXsvp0uNT5XZq06gAAABQAAAANAAAAJwAA - ACsAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAG641QFuuNUcbrjVYnW507l/s8fvjq+9/6e4vf++vr3/tbO0/4eSmv9bkKj/crzc/zVe - b6EhP0yCAAABUAAAADUAAAA1AAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAHnC4D15wd6ndb7c6nC61+d5pLv9pqSi/6qmpf+3trX/u7i4/7a1tf+ura3/vr69/6CN - jP9haW7/esjp/4nT8f+P2vj/HjxKnQAAAEEAAABBAAAAPAAAAB4AAAADAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAcbzaHXC72T5xvNqPc77c/3G82v9vutj/b7rX/2+51/+7paP/l5KS/5SVlf+Kiov/iIiI/5eW - lv+oqan/qqqq/7qysv84ODr/fMHj//auf//LzcL/H01jpwAAAD4AAAA+AAAAQgAAAEMAAAAuAAAACgAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AABzv90bc7/dUnTA3oR0wN7edL/d+nO+3f9yvtz/cr3c/3G92/9xvNr/cbvZ/3C72f+2oqP/m5qa/7m5 - uf/W2Nj/6ejo/+zu7v/s6ur/zc7O/8nGxv90cHP/fsLf//+5ff/Q0cf/G0lfowAAADwAAAA8AAAAQAAA - AEQAAAA9AAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHXE - 4wt4w+JkesPjtnnE4vJ2wuH7dcLh/3XC4f91wuH/dcHg/3TA3/9zwN//c7/e/3O/3f9yvtz/cr3b/3G9 - 2/+trLf/x728/8fIyP+5ubn/r6+v/7Kysv+rq6v/7Ozs/9vc3P+Dg4b/fsXk///r2//H7fv/HEVWoQAA - ADwAAAA8AAAAPwAAAEMAAAArAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHu7 - 1TF2ttDBeL7b7nnG5v54xeX/eMXl/3fF5f93xeT/d8Tk/3fE5P93xOP/dsPi/3bC4v91wuH/dcLg/3TB - 3/90wN7/c7/e/3O/3f+fv9D/zLy7/8DCwv/f4OD/+fr6//7+///y8vL/6+zs/9bU1P90e33/gMnp/+fp - 6//B8P//HkVVoQAAADsAAAA7AAAAPgAAAEEAAAA7AAAAHAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAHy91+t0sMn/drvY/3rJ6v95x+j/ecfo/3nH5/95x+f/ecfm/3jG5v94xuX/eMXl/3fF - 5P93xOT/dsPj/3bD4v91wuH/dMHg/3TA3/94wN3/6tDP/9nOzv/MyMj/08jI/9HMzP/Uzc3/6uXl/8PA - wP+BiIr/gMrq/+nl5P/F8///H0ZXoAAAADsAAAA7AAAAPAAAAD0AAAA8AAAAOAAAACEAAAAFAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAIG/2u94tMz/eL7b/3vK7P97yer/esnp/3rJ6f96yOn/esjp/3rI - 6P95yOj/ecfn/3nG5/94xub/eMXl/3fE5f93xOT/dsPi/3XC4v91weD//ODe//Xi4v//8PD/69bW/8+5 - uf/DtLT/2M/P/7S0tP91fH7/gcvr/+zp5v/L9///HkZXnwAAADMAAAAzAAAANAAAADQAAAAyAAAAMAAA - ACwAAAAdAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAILC3O16t8//esDd/3zM7v98y+z/fMvs/3vK - 6/98yuv/e8rr/3vK6v97yer/esnp/3rI6f96yOj/ecfn/3nH5/94xub/eMXl/3fE5P92w+L/xtTh/+fP - zv/NwMD/wbW1/8K/v//ayMj/z8jI/62urv9yeXz/gszq//bz8f/O/f//HkVXnAAAACsAAAArAAAAKwAA - ACoAAAAnAAAAJAAAACIAAAAfAAAAFAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAIPE3+17uNH/e8Lf/33N - 8P99zO3/fczt/33M7f98zOz/fMzs/3zL7P98y+v/fMvr/3vK6/97yer/e8nq/3rI6P95yOj/ecfn/3jG - 5v94xeX/ksng/+XT0//Evb3/wbm5/7Wurv/Bubn/0bq6/7Strf99hIf/gc3s///////V////HkZYlwAA - AB8AAAAfAAAAHwAAAB4AAAAbAAAAGAAAABQAAAASAAAADwAAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAITF - 4e17udP/fMPh/37P8v9+zu//fs7v/37N7/99ze7/fc3u/33N7v99zO7/fczt/3zM7f98y+z/e8vr/3vK - 6/97yer/esnp/3rI6P95x+f/eMbm/9zX1v/Fxsb/uri4/8C2tv/CvLz/0MDA/7qpqf+CiYv/gczt//// - ///X////HkVYkgAAABQAAAAUAAAAFAAAABMAAAAQAAAADQAAAAkAAAAFAAAAAgAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAITH4+17u9X/fMXj/3/Q8/9/z/H/f8/x/3/P8P9+z/D/fs7w/37O7/9+zu//fs3v/33N - 7v99zO7/fczt/3zL7P98y+v/e8rr/3vJ6v96yen/ecjo/7XO2f/GxcX/xcLC/8XAwP/JwcH/1sTE/8Ct - rf90eHv/hM7u///////e////HUZYjQAAAAkAAAAJAAAABwAAAAYAAAADAAAAAQAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAIPI5O18vdj/fsfl/4DR9P9/0PL/f9Dy/3/Q8v9/0PL/f9Dx/3/P - 8f9/z/D/fs7w/37O7/9+zu//fc3v/33N7v99zO3/fMvs/3zL6/97yur/e8nq/4/K4v/Jycn/zM3N/87O - zv/QyMj/4M/P/8aysv9sbG//g9Dv/9n2//+z9f//JUpbiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAITJ5u1+v9r/f8jn/4HT9v+A0fT/gNHz/4DR - 8/+A0fP/gNHz/3/Q8/+A0PL/f9Dy/3/P8f9+z/D/fs/w/37O7/9+ze//fc3u/3zM7f98y+z/fMrr/3vK - 6v/U1NT/2tnZ/8vKyv/Evb3/zsC//9S+vv9UWV3/f87u/3jL7v+I3///L1dphgAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIXK6O2Awd3/gMvp/4HU - 9/+B0vX/gdL1/4HS9f+B0vX/gdL0/4DS9P+A0fT/gNHz/4DQ8/+A0PL/f9Dy/3/P8f9+z/D/fs7v/37N - 7/99ze7/fczs/3zK7P+yxMz/iomI/4SLj/9PTkz/KC0x/+vX1v9PR0f/gMro/3/P8P+E1vX/WZmykQAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIbM - 6u2DxOD/gs3r/4HV+P+C1Pb/gtT2/4LT9v+B0/b/gdP1/4HS9f+B0vX/gdL1/4DS9P+A0fT/gNHz/4DQ - 8v9/0PL/htHx/4LQ8P+Byef/gsDZ/6+4u//f3d7/goGD/zs7PP9EQED/U1VV/9i+vv9USUn/uLGx/4XW - 9v+H2frTdsDiRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIfO7e2Fx+P/g8/t/4LW+f+C1Pf/gtX3/4LU9/+C1Pf/gtT3/4LU9v+C0/b/gtP2/4XU - 9f+K1PT/idX0/4bK5v+Ht8v/fbTL/36Sm/+Omp7/gomO/+Df3//Nycf/xcTE/56gnv+np6j/cG9v/86/ - v/9cVFT/tbGx/2uesm0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAIfQ7+2HyOX/hNDu/4PX+f+D1fn/gtX4/4PV+P+F1vj/idb3/4rX - 9v+O1/b/hcPd/4q1xP+TuMf/Y3iD/3yKjf+LkpX/aION/5ebnf/L29//l5WW/9LHxv/XyMj/5uDg/+rs - 7P/R0ND/ZWRk/6yrrP/u5uf/sqqq/zMwMDkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIjR8O2Hyub/hdHv/4va+v+K2fn/j9n4/4jO - 7P99utX/lbrG/3+Qlf9sipn/iZCT/6Wws/95jJL/maaq/4OLjv/R3t3/cYuW/7e8vv+GjI3/jIiJ/9PH - x//Kx8f/+ff3//7/////////Li8v/3Z2dv//////p5yc/0A9PSkAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8vHzB4zU8u6IxuH/ibzP/4nF - 3v93kJ//kqKo/3SAhv97j5f/b3l9/9DY3P9ffYb/t7a3/6m/wf+zw8j/gY2T/6Strv9rbGv/fYaK/3F3 - ef+6trX/eHR1/9DPz//Hxsb/6+3t/8zLy//a2tr/g4KC/6Skpf/z9/f/qJ2d/3OfsGyIzOYFAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9vf2CG2Q - ofZ7hYn/mqWo/1Rsdf+ytrj/lqSo/8fX2/90hY7/sLi3/3yHiP+ClqH/qq+v/6WnqP9ucnL/gYmL/01L - Sv+xt7v/cHR0/5ykqf+FkJT/gX5//83Ozv+3t7f/3d3d/9rb2//CwcH/zMnJ/9zY2P/w6+v/saam/4C7 - 0taIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAA5eTmEXyUn/mOkZD/ytzc/4eirP+oqqz/nKao/36Bg/+IlZr/b3Nz/8DCxP9QTk//iY6O/3p6 - ef9SXmL/vcLF/4OZov+Fgn7/fJ2x/7HGyP+hrLH/o6Ok/7S0tP/Q0dH/yMjI/8HCwv/FxcX/1dbW/9PP - z//s4eH/ZV5d/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA6+vrEnaRnPi2u77/d3t7/21zdv+Ei47/kpCP/3uDhf+enp7/XGZo/3+B - gf9tgoz/yNbZ/5GjqP+Wk5T/ZIWV/56ztP+3vsP/X2Jh/3uHjv+0zNX/mKaq/3t7e/+Wk5L/qqen/7y6 - uv/Ly8v/y8rK/8i+vf/DtbT/Z4yb/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+7uFoKYovpMTEn/t7q9/0ZLTv+6vLz/dYOH/3V3 - dP+Nr7//vdXZ/5ugoP9xg4z/aHN1/6/By/9+io3/oaao/4Sir//A1dn/i7rQ/4vS7/+J0vD/jtj3/4PO - 7/+Cwdv/gKi3/3qDhv97enr/cHR2/3KBhP9qiJL/hsvl/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6errDpyrr/ujtbv/fYOE/3qR - mv+YsLr/oLO3/6Ckpv9oc3f/domS/8XQ1/9bZWr/tc/Z/6HM2f+d0eX/iNHw/5Hc+/+M2vr/idj6/4TW - +f+D1fj/gtX4/4LU9/+B0/b/gdL1/4DS9P+Bz+//f9Dy/37P8P99z/H/h8rk/4jM5tGIzOYNAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8O/uHHOi - tvahsrT/sr3B/1dfYf+ChYn/lbK+/6u4u/+Yusv/lc/n/5PO5f+T3f3/j9v8/43b/P+J2vz/htn8/4XY - +/+F2Pv/hdf6/4TX+v+D1vn/g9X5/4LV+P+C1Pf/gdT2/4HS9f+A0fT/gNDy/3/P8f9+0PP/h8rk/4jM - 5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAA5ejqBYuXmfuSpa7/ts7U/462xP+T0u3/j9j2/5Ld/P+P3f3/jdv9/4fa/f+H2v3/h9r9/4fa - /f+G2fz/htn8/4bZ/P+F2Pv/hdj7/4XY+/+E1/r/hNb5/4PV+P+C1fj/gtT2/4HT9v+B0vX/gNHz/3/Q - 8v9/0PP/h8rk/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA9fTzEInP5/CS1/H/kNr4/5De//+K2/7/idv+/4jb/v+I2/3/iNv9/4jb - /f+I2v3/h9r9/4fa/f+H2v3/h9n9/4bZ/P+G2fz/hdj8/4XY+/+E1/r/hNf6/4PW+f+D1fj/gtT3/4LT - 9v+B0/X/gNL0/4DQ8/+A0vT/hsrk/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIvb9+2F1PP/h9j5/4rd/v+K3P7/idz+/4nc - /v+J3P7/idv+/4nb/v+I2/3/iNr9/4ja/f+H2v3/h9r9/4bZ/f+G2fz/htn8/4XY+/+F2Pv/hNf6/4TW - +v+D1vn/gtX4/4LV9/+B0/b/gdL1/4DR8/+A0vX/hsrk/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIvd9+2F1vP/h9n6/4ve - //+L3f7/it3+/4rd/v+K3P7/idz+/4nb/v+J2/7/iNv9/4ja/v+I2v3/h9r9/4fa/f+G2fz/htn8/4bZ - /P+F2Pv/hdj7/4TX+v+D1vn/g9b5/4LV+P+C1Pf/gdP1/4DS9P+B0/b/h8rl/4jM5tGIzOYNAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIvf - +O2G2PT/iNv6/4zf//+L3/7/i97+/4ve/v+L3f7/it3+/4rd/v+J3P7/idv+/4jb/v+I2/3/iNr9/4fa - /f+H2f3/htn8/4bZ/P+F2fz/hdj7/4XX+/+E1/r/g9b5/4PV+P+C1Pf/gdP2/4HS9f+C1Pf/iM7n/4jM - 5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIzh+O2H2fX/itz7/43h/v+N4P7/jOD+/4zf/v+L3/7/i97+/4rd/v+K3P7/idz+/4nb - /v+I2/3/iNr9/4ja/f+H2v3/h9n9/4bZ/P+G2fz/hdn7/4XY+/+E1/r/g9b5/4PV+P+C1ff/gtP2/4HT - 9f+C1ff/ic/o/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAIzi+O2H2vb/i977/4/j/v+O4v7/juL+/43h/v+N4P7/jN/+/4ve - /v+L3f7/it3+/4nc/v+J3P7/iNv+/4ja/f+H2v3/h9r9/4bZ/P+G2fz/hdn7/4XY+/+E1/r/hNf6/4PW - +f+D1fj/gtT3/4HT9v+D1fj/h83m/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI3i+e2I2/b/jOD8/5Dl/v+P5P7/j+T+/47j - /v+O4v7/jeH+/4zf/v+L3v7/it3+/4rc/v+J3P7/idv+/4jb/f+I2v3/h9r9/4fa/f+G2fz/htn8/4XZ - +/+F2Pv/hNf6/4PW+f+D1fj/gtT3/4HT9v+D1fj/hcrl/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI7j+e2J3Pf/jeL8/5Lo - /v+R5/7/kOb+/5Dl/v+P4/7/juL+/43h/v+M3/7/i97+/4vd/v+K3P7/idz+/4nb/v+I2v3/iNr9/4fa - /f+G2fz/htn8/4XZ/P+F2Pv/hNf6/4TX+v+D1vn/g9X4/4HT9v+D1vj/hszl/4jM5tGIzOYNAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJDl - +e2L3fj/j+P9/5Pq/v+S6f7/kuj+/5Hn/v+Q5v7/j+T+/47i/v+N4f7/jN/+/4ve/v+K3f7/idz+/4nb - /v+I2/3/iNr9/4fa/f+H2f3/htn8/4bZ/P+F2Pv/hNj7/4TX+v+D1vn/g9X4/4LU9/+D1vj/hszm/4jM - 5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAJHn+u2M3/n/kOX9/5Xt/v+U6/7/k+r+/5Lp/v+R5/7/kOX+/4/k/v+O4v7/jeD+/4zf - /v+L3f7/itz+/4nc/v+I2/3/iNr9/4fa/f+H2f3/htn8/4bZ/P+F2Pv/hdj7/4TX+v+D1vn/g9X4/4LU - 9/+C1vj/iM/p/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAJLo++2N4fn/kej9/5bv/v+V7v7/lOz+/5Pr/v+S6f7/kef+/5Dl - /v+O4/7/jeH+/4zf/v+L3v7/it3+/4nc/v+I2/7/iNr9/4fa/f+H2v3/htn8/4XZ/P+E2Pv/hNj7/4PX - +/+D1vr/gtb5/4LV+P+M3Pv/jtXs/4jM5qeIzOYKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJPp++2O4fn/kun+/5jx/v+W8P7/le7+/5Ts - /v+T6v7/kuj+/5Dm/v+P5P7/jeL+/4zg/v+L3v7/it3+/4jc/v+H2/7/h9v+/4fb/v+H2///iNv//4rb - /v+M3P3/i9r7/4rX+P+J1fb/jdf1/4/V8/+T1/H/ic/r/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJTq++2P4vr/lOv+/5nz - /v+Y8f7/lvD+/5Xu/v+T6/7/ken+/5Dn//+P5f//j+T//4/i//+N4P//jt///5Hf//+U3f3/kNr5/4zV - 9v+K1fX/jdXz/43V8/+K0/H/h9Py/4bV9f+H2Pj/iNn6/4ja+/+I2vv/ecTkuwAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJTq - /O2O5Pv/k+3//5r3//+Z9P//mfP//5jw//+Z7v//mur+/5rm/P+Z4fn/k9r2/4vV8/+K1fP/idT0/4nV - 8/+H1PT/htb2/4fY+f+I2vv/h9r7/4fZ+/+H2fv/h9r7/4fZ+vaH2fvpiNr61Ync/beAz++WcLfUFAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAJfs/fmZ5vz/nur8/5/p+P+X4/b/kN30/43a9f+M2PT/itf1/43X9f+N2Pf/h9j6/4bY - +v+G2Pr/htj6/4ba/PqG2vzmiNv9xoba/OaI2/3GiNz9nonc/m2I2/1Iidz+KIja/QMAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAIjM35h9xOH/h9X0/4jZ+f+I2fr/iNr7/4ja+/+I2vv/iNr7/53l - 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 - if+W0+3/8v///z5daqUAAAA+AAAAPgAAAD4AAAAjAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAd7vX/3O3 - 0v96yuv/ecfo/3nH5/95x+f/eMfn/3nH5/95xub/eMXl/3bE5P92xOP/dsHg///o5v/76en/18HB/8Wx - sf/Qy8v/c3d3/5jV7//6////P19tpAAAADQAAAA0AAAAMwAAADEAAAAfAAAAAAAAAAAAAAAAAAAAAAAA - AACAv9r/eLnU/3vN7/97yuv/esrq/3vJ6/97yev/esrq/3rJ6f96yOj/ecfn/3nH5v94xeT/xNbi/8y9 - vf+1r6//w7q6/869vf98f3//ndrz//////8/X22eAAAAJAAAACQAAAAiAAAAHwAAAB0AAAAAAAAAAAAA - AAAAAAAAAAAAAILE3f96vtj/fc/y/33M7f99zO3/fM3s/3zM7f99zO3/fMvs/3zL6/97yur/e8jp/3nI - 5/+Ixd7/zc/P/7q1tf/Au7v/1L6+/4iCgv+i3/j//////z9ebJUAAAAUAAAAFAAAABIAAAANAAAACAAA - AAAAAAAAAAAAAAAAAAAAAAAAg8bi/3u/2/9+0vX/f8/w/3/O8P9+z/D/fs7v/37O8P99ze//fczt/33L - 7P97y+z/e8rq/33I5//CzM//zc7O/9TOzv/q09P/eWxs/53e+P/y////OltpjQAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCyOT/fcPe/4DT9v9/0PL/f9Dy/4DR8v9/0PH/f9Dx/3/P - 8P9+zvH/fs3v/33N7v99zOz/fcrr/6fI1f/Gx8f/pqWl/7irqv9tY2P/gdLy/4fc//9CcoeNAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAITJ5/9/xeL/gdX5/4DS9P+B0vX/gdL0/4DR - 9P+B0fP/gNDy/4DR8/9+z/L/f8/w/37O7v+Dwtz/0drf/1NTVP8cHRz/cG1u/3djY/+ZwtT/id3+/3S+ - 3mcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhcvp/4LJ5v+B1/r/gtT2/4LT - 9v+C1Pb/gdL2/4TQ8f+X2fb/kcvk/4Kruv9nipr/mKKk/52amf/g19X/zs3N/8DDw/+Jg4P/oJeX/4KJ - jfuC1fIlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACG0O//hc3r/4LY - +/+C1vj/gtHy/6bP3v+Ls8X/h5mh/3+VnP91fX//vcXE/3eNlv+ptLT/opiZ/9HFxv/+/////v///xQW - F//7+vr/dXp//IjM5gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAy87NDI/G - 3v+Bp7T/c4qY/4+anP92f4T/l56h/3KKkv/Dx8f/sL7A/3uDhf99f3//cXV2/52foP+Khof/yMjI/+Xl - 5f/S09P/l5SU//b5+f+Bhoz/iMzmDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AADQztE0Zmdm/7DExf+co6b/oKyv/4KRl/+Zmpn/cnN4/5GTkf9LUFL/p66y/3+Afv+Io7L/nq6z/6Gd - nv/R0ND/1NTT/8XDw//h39////v6/3F2e/6IzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAANHPzjV/hYf/c3Jz/36Cg/97e3z/lZ+l/3aCgv9rfob/scTJ/5WWl/9qhI//wM7S/15v - df+iydn/nLjC/3iNlf+ZnJ//r66t/6qpqP+jnZ7/hMPb/IjM5g0AAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAA5uPiQYGJi/96gIX/laiw/5KhpP9ncXb/pra8/2VnaP+lu8H/n8PO/5TP - 6P+q5Pv/itf4/4PV+P+C1fj/gdP1/4TH4v9/u9X/hL/X/4LA2f+GyOP8iMzmDQAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC2urw3fZGW/5yprP9xgoj/p8/e/7HX6P+P1/X/iNr9/4bZ - /f+G2fz/htn8/4XY+/+F2Pr/hNb6/4PV+P+C1fj/gdP2/4HS9P9/0PL/gdDx/4bJ4fyIzOYNAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMnKzCad0OL/p+D3/4za+/+I2v7/h9r+/4jb - /f+I2v3/h9r9/4fa/f+H2f3/htn8/4XY+/+E1/r/g9f6/4PU9/+C0/b/gdP1/4DR8/+B0fL/hsni/IjM - 5g0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIvb9v+G1vb/idz//4nb - /v+I2/7/idv+/4jb/f+I2v3/h9r9/4fa/f+G2fz/htn8/4XY+/+F1/v/g9b5/4LW+P+C0/b/gNL0/4LS - 8/+HyeL7iMzmDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAi9z4/4bX - 9/+L3v//it3+/4rd/v+K3P7/idz+/4nb/v+I2/3/iNr9/4fZ/f+G2fz/hdn8/4XX+/+E1/r/g9X4/4LU - 9/+B0vX/g9P0/4fK4/uIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AACM4Pj/h9n4/4zg/v+L3/7/jN7+/4ve/v+K3P7/idz+/4jb/f+I2v3/h9r9/4fZ/f+G2fz/hdn7/4TX - +v+D1vn/g9X4/4HT9v+E1PX/h8zk+4jM5g0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAIzi+f+J3Pn/j+P+/47i/v+N4f7/jd/+/4ve/v+K3f7/idz+/4nb/v+I2v3/h9r9/4bZ - /P+F2fv/hdj7/4PW+f+D1fj/gdP2/4TT9f+FyeP7iMzmDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAjeL5/4vf+v+R5/7/kOX+/4/i/v+N4P7/jN/+/4vd/v+K3P7/idv+/4ja - /f+I2v3/htn8/4XZ/P+F2Pv/hNf6/4PV+f+C0/f/g9X1/4bK4/uIzOYNAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQ5Pn/jd/7/5Ts/v+S6P7/kub+/4/j/v+O4f7/jN/+/4vc - /v+J3P7/iNv9/4ja/f+H2f3/htn8/4XY+/+F2Pv/g9X4/4LU9/+C1PX/iMzl+4jM5g0AAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJHn+/+P5Pv/lu/+/5Tr/v+T6f7/kOb+/47j - /v+M3/7/i97+/4nc/v+I2/7/iNr9/4ba/v+F2v3/hdn8/4TY+/+F1vn/h9f3/5Da9f+HzObziMzmBwAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAk+n7/5Hm/f+Z8v7/le7+/5Pr - /v+Q6P7/juX//43j//+M4f//juH//5Hf//+M2/v/i9X2/43V9v+J0/L/hdLy/4XV9f+G1vf/itr6/3zK - 6LUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACT6fz/ker//5z5 - //+Z8f//mO7//5ro/f+W4Pj/jdb0/4nV9P+I1fX/htb3/4ba+/+H2/3/htr8/oba/PSH2/3kh9r8yIjc - /aGG1vlvbrTSDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI/c - 8P+K0+3/jNv3/4rb+f+I2vr/h9r7/4fb/f+K2vz6jNz89o7d/OSJ3v6LiN/+XYrg/yWK3v8QAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAkdjt+IrR7/6M2Pb5kN757pXj/M2V5v2jl+f9eJ3n/leY6P48kOT+JI3k/g0AAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP// - /v///8B///wAD//gAAf/wAAD/gAAA/gAAAHwAAAB8AAAAfAAAAHwAAA/8AAAP/AAAD/wAAB/8AAAf+AA - AH/gAAB/4AAAf+AAAH/gAAB/4AAAf/AAAH/wAAB/8AAAf/AAAH/wAAB/8AAAf/AAAH/wAAD/8AAA//AA - P//wAf//KAAAABgAAAAwAAAAAQAgAAAAAABgCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAACFu9BleLnRrZzE1P9lpcL/LmR6tQAAACcAAAAsAAAAAAAAAAAAAAAAAAAAAAAA - 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 - - - - - ..\Resources\zippedFile.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAkAMDAAAAAACACoDgAAlgAAACAgAAAAAAgAqAgAAD4PAAAYGAAAAAAIAMgGAADmFwAAEBAAAAAA + CABoBQAArh4AAA0NAAAAAAAN+MQAABYkAAAwMAAAAAAgAKglAAAO6QAAICAAAAAAIACoEAAAtg4BABgY + AAAAACAAiAkAAF4fAQAQEAAAAAAgAGgEAADmKAEAKAAAADAAAABgAAAAAQAIAAAAAAAACQAAAAAAAAAA + AAAAAQAAAAEAAAAAAAAuLy8AKC0xADk5OwBEQEAAT0dHAEZLTgBNTEoAUktMAFNVVQBcVFQAVFldAGVe + XQBUXmEAX2JhAFtlaQBUbHUAZWRkAGFpbgBrbG0AcG9vAGtydABveX0Ac3R0AHh0dQBxd3kAdHp8AHp6 + egCBfn8AhYJ+APaufwD/uX0AX32GAGN4gwBqgowAc4GFAHyChABzhI0Ae4aKAH2KjQBkhZUAbIiTAGeM + mwBsipgAcoqUAHqNlAB1jZgAf5CVAHeQnwB7kpwAW5CoAFyZswByk6QAf5ahAH+ZpAB8nbEAaqK6AHel + uAB6pLsAdLDJAHq1zABvudcAb7rYAHe51QB7udMAcr3bAHu+2QB0wN4AfcDaAHnA3QB+wt8AdcLiAHnF + 5QB/yOcAecfoAHvK6wB+zvAAftDyAIKCgwCChYkAgoqMAImJigCSkI8AgY2TAIWQlACLkZIAh5KaAIiV + mgCNmZwAlpSUAJebnQCcnJwAoI2MAKecnAConZ0AnqCeAIKWoQCDmaIAi52lAIWirQCboKAAkqOpAJql + qQCAqLcAja++AJGmsACdrLAAnrO0AJWyvgCYsLoAo6OkAKqmpgCkpqgApK2uAKusrACzpKQAu6WjALOs + rAC6qakAoayxAK2stwCisbQAo7W7AKe4vQCtuLsAsrKyALWxsQC1s7QAtbW1ALmzsgCwuLcAsba5ALa7 + vQC5uLgAvLq6ALq8vAC+vr0AwK2tAMK0tADDvLsAzLy8ANK8vADYvr4AzsC/AIy1xACHt8oAibzPAJS5 + xgCYussAi7rQAJ+/0ACpv8EAtL3CAILB2wCJxN0AlcbaAJrM3wCvwcsAvcLFALLEyQCgxdMAoczZALXN + 1AC1ztkAvdXZAITF4QCIxuEAhsrkAIvK5ACBzOsAis7qAJPM5ACcz+MAhNDuAI3S7ACd0eUAk9LtAJzU + 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 + AAAD/wAA+AAAAAP/AAD4AAAAA/8AAPgAAAAD/wAA+AAAAAP/AAD4AAAAA/8AAPgAAAAD/wAA+AAAAAP/ + AAD4AAAAB/8AAPgAAAAf/wAA+AAAAB//AAD4AAAAH/8AAPgAAAAf/wAA+AAAAA//AAD4AAAAD/8AAPgA + AAAP/wAA+AAAAA//AAD4AAAAD/8AAPgAAAAP/wAA+AAAAA//AAD4AAAAD/8AAPgAAAAP/wAA+AAAAA// + AAD4AAAAD/8AAPgAAAAP/wAA+AAAAA//AAD4AAAAD/8AAPgAAAAP/wAA+AAAAA//AAD4AAAAD/8AAPgA + AAAP/wAA+AAAAB//AAD4AAAAH/8AAPgAAAA//wAA+AAAP///AAD4AP////8AAPwf/////wAA//////// + AAAoAAAAIAAAAEAAAAABAAgAAAAAAAAEAAAAAAAAAAAAAAABAAAAAQAAAAAAABQWFwAcHRwAS0BAAEtQ + UgBTU1QAXm91AGZnZgBsY2MAZWdoAHdjYwBwbW4AeWxsAGdxdgBzcnMAcnZ2AHJzeABxdnsAdX1/AHt7 + fAB8f38Af4B+AGt+hgB2e4AAdn+EAGqEjwB2goIAfoKDAHqBhQB/hYcAcYKIAGeKmgByipIAd42WAHiN + lQB9jpUAc4qYAH2RlgB+kpoAf5WcAGGZsgByrMMAdbHJAHWyzABuuNYAc7fSAHe71wB4udQAf7vVAHC7 + 2QBxvNoAc77dAHS/3QB6vtkAdMDeAHzC3QBzwOAAdcLhAHbE4wB2xOQAfsThAHjG5gB5yOcAfcjnAHnH + 6AB6yeoAfMrrAHvL7AB8y+wAe83vAH3M7QB+zvAAf9DxAH7S9QCIgoIAioaHAIGGjACBiYsAh4mJAIOK + jgCCkZcAgpaeAI+anACRkZEAlpWVAJuXlACZmpkAnZqZAJmcnwCgl5cAopiZAKKdngCioZ8Ag5ihAIeZ + oQCIm6QAl56hAJWfpQCdn6AAjqCpAJKhpACYoqQAnKOmAJKkrACcqawAgae0AIijsgCCq7oAgKq/AJan + sACVqLAAnq6zAJaxvAChoqIApKGgAKalpQCgrK8AqqmoAK+urQC1r68AuKuqAKeusgCwrrMAqbS0AKa2 + vAC8tbMAurW1ALi5uQDFsbEAwbq6AM29vQDUvr4A/8OVAIqzxQCcuMIAmbfJAIO+1gCEv9cAgL/aAKW7 + wQCov8cAsL7AAJ/DzgCCwNkAhcPbAIPC3ACCxN0AiMXeAI7G3gCZw9MAmcLUALDExQC9xcQAscTJAKfI + 1QCiydkAps/eAILG4QCEx+IAhsniAILI5QCEyecAicvkAIXL6QCFzesAkcvkAJrN4ACZz+UAlM/oAIbQ + 7wCK0u4AndDiAJbT7QCY1e8AlNntAIDR8gCE0fEAgdL1AITT9QCC1PYAhdX2AIvV9ACN2vQAgtX4AITW + +gCK1/gAgtj7AIXY+gCG2fwAh9z/AIna+QCM2vsAit35AI3f+wCI2v0AjNr8AIrc/gCM3v4AkNr1AJfZ + 9gCd2vMAkd79AJ3e+ACr0+YAotnuALHX6AC02+sAot/4AI3h/QCS5PsAmeD8AJPq/QCZ6/4AmfH+AJz5 + /wCn4PcAoOH8AKrk+wCp6PwAs+j9ALzu/QDAw8MAxcPDAMPHxwDFx8cAzMPCAMLMzwDJyckAzc7OANfB + wQDRxcYA3cfFANDLywDUzs4AwM7SANHR0QDU1NMA0drfAODX1QDq09MA4d/fAP/v3ADE1uIA4ODgAObi + 4gDl5eUA7urqAP/o5gD76ekA9vn5APL//wD7+voA//v6APr//wD+/v4A////AAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACnKiopAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAKcuhYxtKCkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlCxsVVxycn0DPYgjAAAAAAAAAAAAAAAA + AAAAAADONzIyMnpTf+vz4AiVhCMAAAAAAAAAAAAAAAAAAACdNjk2MjIyh+Hg4H/+U6fxJgAAAAAAAAAA + AAAAyz03OTk5PTk9OTky5+P09PZOrPpRAAAAAAAAAAAAAC4tQUBAQUE9PT05OTn39+WA6A+t/l0AAAAA + AAAAAAAAii5BQUFBQUFBPkFBPfKCeoGCFMj+XQAAAAAAAAAAAACSNUlBR0FBQUFBQUE+k+R9gYNKz/5j + AAAAAAAAAAAAAJ01Sa9Hr6+vR0FHQUFB4uPr7wzK+mcAAAAAAAAAAAAAoDe3R0mvSUGvr0dBR0Ga43N4 + CK+9cAAAAAAAAAAAAACgnbdJr6+vr6+vr69Hku0FAgsKlb0AAAAAAAAAAAAAAEegt6+3t7evyKVsH2JX + 7ujgSllOAAAAAAAAAAAAAAAAqke8t6+chV4mEt0je1rl/v4B/hIAAAAAAAAAAAAAAACUaSRSEmAg4I0c + FA9gS+D061P6TAAAAAAAAAAAAAAAAAiXYm9RVxBTBG8Vam9a6+vg8P4QAAAAAAAAAAAAAAAAHQ8cFGAa + FplTIOIGnIYgYnZ1WpIAAAAAAAAAAAAAAABOGG1kDXwJi46o2bmvt7ediIqSkwAAAAAAAAAAAAAAACVo + HpzNxr28vLy8vLe3t6+vr6+iAAAAAAAAAAAAAAAAq9e9vb25vLy8vLy8vLy3t6+vr5MAAAAAAAAAAAAA + AAC2r729vb29vb28vLy8t7e3t6+vogAAAAAAAAAAAAAAAL22vcm9vb29vb25vLy8vLe3r6+iAAAAAAAA + AAAAAAAAwba9yb3Jvb29uby8vLy3t7e3t6IAAAAAAAAAAAAAAADBvdHRwdG9yb29vb28vLy3t7evogAA + AAAAAAAAAAAAAMHB08HRvcm9vcm5vby8vLy3t6+iAAAAAAAAAAAAAAAA0cHT09HRwdG9vb29uby8vLe3 + r6IAAAAAAAAAAAAAAADR0dXT09HBvcm9vbm8vLy8t73HogAAAAAAAAAAAAAAANPB1dXT0dHBwdHJvbnG + xq/Gr73MAAAAAAAAAAAAAAAA09PW1dXT0ba2r7m9vbe5yc/bAAAAAAAAAAAAAAAAAAC2qra8vb29vcnS + 3AAAAAAAAAAAAAAAAAAAAAAAAAAAAK6qttHa3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////////w//// + gP///AA//+AAP/+AAD/4AAA/8AAAP/AAAD/wAAA/8AAAP/AAAD/wAAB/8AAA//AAAP/wAAD/8AAA//AA + AP/wAAD/8AAA//AAAP/wAAD/8AAA//AAAP/wAAD/8AAA//AAAP/wAAD/8AAA//AAA//wAf//8D///ygA + AAAYAAAAMAAAAAEACAAAAAAAQAIAAAAAAAAAAAAAAAEAAAABAAAAAAAAU1VXAGlVUABpaWkAbWpqAHV5 + eQB3eHwAfHp6AHx+fgCKeHcAgX19AJN3dQB4fYAAXYueAG+FjQB3gIYAfoSGAHaEiQB7ipAAeZGdAGqQ + oABgmK0AdZ+wAGWlwgBgrswAc6rBAHqtwQB8sMAAc7DLAHe1zQBvvNkAerjTAH261ABwvdwAdL7dAHq9 + 2ABivOEAZr7hAGi+4AB2wd0AfsDdAG3A4wBqw+cAb8nsAHTB4QB3xeQAeMblAHnH6AB6yOkAfMrrAHzL + 7QB7zO0Afc3uAHvN8AB9z/EAbtz/AHXQ9gB90PIAf9H0AH/V+QB81fwAg4SEAIqHhwCPh4cAiIqIAJyS + jgCFjZIAgpCVAIaUmQCKmp8Al5STAJ6dmwCghYEAoZGLAKKVkgC7npwAoaGdAKGeoACDpK8AiqCoAJqh + oQCLrLcAkaqxAJestgCJsroAkrC8AKGnpQCkqagAqqupALCrqwCitLoAsrCwALaxsACytrgAt769AL6+ + vADAtrIAybe3AM++vgCHtcYAjLjEAJS8xACcxNQAusLMALjIzwCoyNQAo8/fAIbJ4QCDyOQAiszjAIvL + 5ACBzu8Al8/mAIvR7ACL1O8An9LmAIDR8gCE0fIAgdL1AIbT9ACB1fYAhdX2AIrU8wCJ1fUAitj2AI/Y + 9gCB1fgAhNb5AIHX/QCF2PoAgdj9AIbZ/ACD3v8Ahdz/AInd+ACI2v0Aid3+AIze/gCU1vQAkNn2AJXb + 9wCQ3PcAotLlAK/R4wCn1ukAqNvwAIfi/wCN4foAi+D+AI3h/gCO5f4AkOb9AJXl/ACS6P4AlOv+AJPs + /gCX7/8Al/H+AJn0/wCc+f8Ap+b9ALXk9QCz6f0Av+z/AMjLywDWxcUA0MzKANHOzADZyMgA1djLAM/R + 0QDJ1toA0NHRAN7Z1gDZ290A29zdAOTNxwDw0MoA4N7eAO3e3gDt4t0A/+HeAMrx/wDP//8A1P7/AOXn + 5wDo6OgA7eroAPHv7wD39vYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAABqZhcUAAAAAAAAAAAAAAAAAAAAAG4kSkFKXAKhGwAAAAAAAAAAAAAA + kCciIh4kS6Sssk2pUQAAAAAAAAAAHDAuLi4uLiImZ6a8vUajYwAAAAAAAAAAHDYwMC8uLi4mj7VhqAi2 + ZAAAAAAAAAAAIDYwMDAwMC8vKrBZYj+4ZQAAAAAAAAAAI3Z2Ojo2NjAwK2imswm3VAAAAAAAAAAAKH46 + djY2Njo6OHBcBEg3GAAAAAAAAAAAbDt2O36CgnYgFrQEAQtpAAAAAAAAAAAAdpKCchpSEkxER6X/Pa9K + AAAAAAAAAAAAThNXEEVfQggICKy5XLtSAAAAAAAAAACvWEJABQVQD1YRXUlgrbENAAAAAAAAAAC6BURA + Tz5aVXN+gjsZFBV8AAAAAAAAAACrXg6OipKSgoKCgn6CgjtsAAAAAAAAAAAAgpaCiIiIiIiIfn52djpu + AAAAAAAAAAAAeJKIiIiDfoODg4N+dn5sAAAAAAAAAAAAgpiIiIiIiIODfn5+dn5uAAAAAAAAAAAAfJmY + koiIiIODiIN+fn5sAAAAAAAAAAAAkpmZmJiIg4iDg36Dfn5uAAAAAAAAAAAAk52ZmZKIiIiDg4iDe3uR + AAAAAAAAAAAAmJ+dnZiMe4p7e3t7iIgAAAAAAAAAAAAAcnx8doygogAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA////AP/8PwD/wB8A/AAfAOAAHwDgAB8A4AAfAOAAHwDgAB8A4AA/AOAA + PwDgAD8AwAA/AMAAPwDAAD8A4AA/AOAAPwDgAD8A4AA/AOAAPwDgAD8A4AB/AOA//wD///8AKAAAABAA + AAAgAAAAAQAIAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAEAAAAAAAAEBAQANCgoADxCRwBCRUYAXVlZAGlZ + WQBRbn4AZGRkAGtlYwBtbW4AeWVnAHlzcQB7eXkAgnZ2AIF4eACFf38Ak319AE17jwBSd4gAdH6CAFyD + kQBzhYwAZoSRAGuIlQBnh5gAZYqaAGSPmgBwjJgAdpGcAF6WrQBvk6MAcpWjAH6XogBoorkAbqvGAHC7 + 3QBxvd4Ac8DfAH7H2gB2wOIAc8DkAHXC5AB2xOcAeMXmAHbE6AB4xugAesvsAHzL7AB+z/EAhoaGAI2J + iQCdk5MAn5eXAJubmwCfn58Ar5eXALKVlQC2n50An6GhAK2npwCgp6oAqamrAK2urgCxsrIAtra2AMCn + pwDOvLwAor7QALzAwACAz/EAjOL+AI7m/gCQ5v4Aken+AMDAwADEwsIAyMDAAN3CxADRzc0A3NDQAOPc + 3ADq6uoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAFxcXFxcXFwoJChADAAAAFyUlJSUl + JSUMOz8/GBcAABclJiYmJSUlOkBPTCAoFwAXKCgoKCgoKE5CODUaKBcAFygvLi8oLS1ENQ4RHygXABcv + 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 + 5+aKZ3nj9vmQky26rebwrmd8S7sw4I7eNfTi/NLHP/fv/TUJ8L/98p8Tf+JjDz5343B93/6sFIMyZ7Vu + /vj4ePHw7/6zp//cr//OtWd+/XeuPfMWLveuc+jtaEc/dPS3vvBZcd+9s+LZ3/75h//pr//lH//Gr/3F + 7N/51L07zXZHO9rRjna0ox3taEc72tGOdrSjHe1oRzva0Y52tKMd/ZDTLlyyox9K+tmf/dm0rqu8rtv6 + t37rq2/7lEA72tGOdrSjHe1oRzva0Y52tKMd7WhHO9rRjna0ox3taEc72tGOdrSjHe1oRzva0Y529I7R + /w/PB9wb4VO4MAAAAABJRU5ErkJggigAAAAwAAAAYAAAAAEAIAAAAAAAgCUAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+x+UbVIabIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAbrjVLXC612Rwutevcbza71mXsvp0uNT5XZq06gAAABQAAAANAAAAJwAA + ACsAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAG641QFuuNUcbrjVYnW507l/s8fvjq+9/6e4vf++vr3/tbO0/4eSmv9bkKj/crzc/zVe + b6EhP0yCAAABUAAAADUAAAA1AAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAHnC4D15wd6ndb7c6nC61+d5pLv9pqSi/6qmpf+3trX/u7i4/7a1tf+ura3/vr69/6CN + jP9haW7/esjp/4nT8f+P2vj/HjxKnQAAAEEAAABBAAAAPAAAAB4AAAADAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAcbzaHXC72T5xvNqPc77c/3G82v9vutj/b7rX/2+51/+7paP/l5KS/5SVlf+Kiov/iIiI/5eW + lv+oqan/qqqq/7qysv84ODr/fMHj//auf//LzcL/H01jpwAAAD4AAAA+AAAAQgAAAEMAAAAuAAAACgAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AABzv90bc7/dUnTA3oR0wN7edL/d+nO+3f9yvtz/cr3c/3G92/9xvNr/cbvZ/3C72f+2oqP/m5qa/7m5 + uf/W2Nj/6ejo/+zu7v/s6ur/zc7O/8nGxv90cHP/fsLf//+5ff/Q0cf/G0lfowAAADwAAAA8AAAAQAAA + AEQAAAA9AAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHXE + 4wt4w+JkesPjtnnE4vJ2wuH7dcLh/3XC4f91wuH/dcHg/3TA3/9zwN//c7/e/3O/3f9yvtz/cr3b/3G9 + 2/+trLf/x728/8fIyP+5ubn/r6+v/7Kysv+rq6v/7Ozs/9vc3P+Dg4b/fsXk///r2//H7fv/HEVWoQAA + ADwAAAA8AAAAPwAAAEMAAAArAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHu7 + 1TF2ttDBeL7b7nnG5v54xeX/eMXl/3fF5f93xeT/d8Tk/3fE5P93xOP/dsPi/3bC4v91wuH/dcLg/3TB + 3/90wN7/c7/e/3O/3f+fv9D/zLy7/8DCwv/f4OD/+fr6//7+///y8vL/6+zs/9bU1P90e33/gMnp/+fp + 6//B8P//HkVVoQAAADsAAAA7AAAAPgAAAEEAAAA7AAAAHAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAHy91+t0sMn/drvY/3rJ6v95x+j/ecfo/3nH5/95x+f/ecfm/3jG5v94xuX/eMXl/3fF + 5P93xOT/dsPj/3bD4v91wuH/dMHg/3TA3/94wN3/6tDP/9nOzv/MyMj/08jI/9HMzP/Uzc3/6uXl/8PA + wP+BiIr/gMrq/+nl5P/F8///H0ZXoAAAADsAAAA7AAAAPAAAAD0AAAA8AAAAOAAAACEAAAAFAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAIG/2u94tMz/eL7b/3vK7P97yer/esnp/3rJ6f96yOn/esjp/3rI + 6P95yOj/ecfn/3nG5/94xub/eMXl/3fE5f93xOT/dsPi/3XC4v91weD//ODe//Xi4v//8PD/69bW/8+5 + uf/DtLT/2M/P/7S0tP91fH7/gcvr/+zp5v/L9///HkZXnwAAADMAAAAzAAAANAAAADQAAAAyAAAAMAAA + ACwAAAAdAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAILC3O16t8//esDd/3zM7v98y+z/fMvs/3vK + 6/98yuv/e8rr/3vK6v97yer/esnp/3rI6f96yOj/ecfn/3nH5/94xub/eMXl/3fE5P92w+L/xtTh/+fP + zv/NwMD/wbW1/8K/v//ayMj/z8jI/62urv9yeXz/gszq//bz8f/O/f//HkVXnAAAACsAAAArAAAAKwAA + ACoAAAAnAAAAJAAAACIAAAAfAAAAFAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAIPE3+17uNH/e8Lf/33N + 8P99zO3/fczt/33M7f98zOz/fMzs/3zL7P98y+v/fMvr/3vK6/97yer/e8nq/3rI6P95yOj/ecfn/3jG + 5v94xeX/ksng/+XT0//Evb3/wbm5/7Wurv/Bubn/0bq6/7Strf99hIf/gc3s///////V////HkZYlwAA + AB8AAAAfAAAAHwAAAB4AAAAbAAAAGAAAABQAAAASAAAADwAAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAITF + 4e17udP/fMPh/37P8v9+zu//fs7v/37N7/99ze7/fc3u/33N7v99zO7/fczt/3zM7f98y+z/e8vr/3vK + 6/97yer/esnp/3rI6P95x+f/eMbm/9zX1v/Fxsb/uri4/8C2tv/CvLz/0MDA/7qpqf+CiYv/gczt//// + ///X////HkVYkgAAABQAAAAUAAAAFAAAABMAAAAQAAAADQAAAAkAAAAFAAAAAgAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAITH4+17u9X/fMXj/3/Q8/9/z/H/f8/x/3/P8P9+z/D/fs7w/37O7/9+zu//fs3v/33N + 7v99zO7/fczt/3zL7P98y+v/e8rr/3vJ6v96yen/ecjo/7XO2f/GxcX/xcLC/8XAwP/JwcH/1sTE/8Ct + rf90eHv/hM7u///////e////HUZYjQAAAAkAAAAJAAAABwAAAAYAAAADAAAAAQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAIPI5O18vdj/fsfl/4DR9P9/0PL/f9Dy/3/Q8v9/0PL/f9Dx/3/P + 8f9/z/D/fs7w/37O7/9+zu//fc3v/33N7v99zO3/fMvs/3zL6/97yur/e8nq/4/K4v/Jycn/zM3N/87O + zv/QyMj/4M/P/8aysv9sbG//g9Dv/9n2//+z9f//JUpbiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAITJ5u1+v9r/f8jn/4HT9v+A0fT/gNHz/4DR + 8/+A0fP/gNHz/3/Q8/+A0PL/f9Dy/3/P8f9+z/D/fs/w/37O7/9+ze//fc3u/3zM7f98y+z/fMrr/3vK + 6v/U1NT/2tnZ/8vKyv/Evb3/zsC//9S+vv9UWV3/f87u/3jL7v+I3///L1dphgAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIXK6O2Awd3/gMvp/4HU + 9/+B0vX/gdL1/4HS9f+B0vX/gdL0/4DS9P+A0fT/gNHz/4DQ8/+A0PL/f9Dy/3/P8f9+z/D/fs7v/37N + 7/99ze7/fczs/3zK7P+yxMz/iomI/4SLj/9PTkz/KC0x/+vX1v9PR0f/gMro/3/P8P+E1vX/WZmykQAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIbM + 6u2DxOD/gs3r/4HV+P+C1Pb/gtT2/4LT9v+B0/b/gdP1/4HS9f+B0vX/gdL1/4DS9P+A0fT/gNHz/4DQ + 8v9/0PL/htHx/4LQ8P+Byef/gsDZ/6+4u//f3d7/goGD/zs7PP9EQED/U1VV/9i+vv9USUn/uLGx/4XW + 9v+H2frTdsDiRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAIfO7e2Fx+P/g8/t/4LW+f+C1Pf/gtX3/4LU9/+C1Pf/gtT3/4LU9v+C0/b/gtP2/4XU + 9f+K1PT/idX0/4bK5v+Ht8v/fbTL/36Sm/+Omp7/gomO/+Df3//Nycf/xcTE/56gnv+np6j/cG9v/86/ + v/9cVFT/tbGx/2uesm0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAIfQ7+2HyOX/hNDu/4PX+f+D1fn/gtX4/4PV+P+F1vj/idb3/4rX + 9v+O1/b/hcPd/4q1xP+TuMf/Y3iD/3yKjf+LkpX/aION/5ebnf/L29//l5WW/9LHxv/XyMj/5uDg/+rs + 7P/R0ND/ZWRk/6yrrP/u5uf/sqqq/zMwMDkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIjR8O2Hyub/hdHv/4va+v+K2fn/j9n4/4jO + 7P99utX/lbrG/3+Qlf9sipn/iZCT/6Wws/95jJL/maaq/4OLjv/R3t3/cYuW/7e8vv+GjI3/jIiJ/9PH + x//Kx8f/+ff3//7/////////Li8v/3Z2dv//////p5yc/0A9PSkAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8vHzB4zU8u6IxuH/ibzP/4nF + 3v93kJ//kqKo/3SAhv97j5f/b3l9/9DY3P9ffYb/t7a3/6m/wf+zw8j/gY2T/6Strv9rbGv/fYaK/3F3 + ef+6trX/eHR1/9DPz//Hxsb/6+3t/8zLy//a2tr/g4KC/6Skpf/z9/f/qJ2d/3OfsGyIzOYFAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9vf2CG2Q + ofZ7hYn/mqWo/1Rsdf+ytrj/lqSo/8fX2/90hY7/sLi3/3yHiP+ClqH/qq+v/6WnqP9ucnL/gYmL/01L + Sv+xt7v/cHR0/5ykqf+FkJT/gX5//83Ozv+3t7f/3d3d/9rb2//CwcH/zMnJ/9zY2P/w6+v/saam/4C7 + 0taIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA5eTmEXyUn/mOkZD/ytzc/4eirP+oqqz/nKao/36Bg/+IlZr/b3Nz/8DCxP9QTk//iY6O/3p6 + ef9SXmL/vcLF/4OZov+Fgn7/fJ2x/7HGyP+hrLH/o6Ok/7S0tP/Q0dH/yMjI/8HCwv/FxcX/1dbW/9PP + z//s4eH/ZV5d/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA6+vrEnaRnPi2u77/d3t7/21zdv+Ei47/kpCP/3uDhf+enp7/XGZo/3+B + gf9tgoz/yNbZ/5GjqP+Wk5T/ZIWV/56ztP+3vsP/X2Jh/3uHjv+0zNX/mKaq/3t7e/+Wk5L/qqen/7y6 + uv/Ly8v/y8rK/8i+vf/DtbT/Z4yb/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7+7uFoKYovpMTEn/t7q9/0ZLTv+6vLz/dYOH/3V3 + dP+Nr7//vdXZ/5ugoP9xg4z/aHN1/6/By/9+io3/oaao/4Sir//A1dn/i7rQ/4vS7/+J0vD/jtj3/4PO + 7/+Cwdv/gKi3/3qDhv97enr/cHR2/3KBhP9qiJL/hsvl/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6errDpyrr/ujtbv/fYOE/3qR + mv+YsLr/oLO3/6Ckpv9oc3f/domS/8XQ1/9bZWr/tc/Z/6HM2f+d0eX/iNHw/5Hc+/+M2vr/idj6/4TW + +f+D1fj/gtX4/4LU9/+B0/b/gdL1/4DS9P+Bz+//f9Dy/37P8P99z/H/h8rk/4jM5tGIzOYNAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8O/uHHOi + tvahsrT/sr3B/1dfYf+ChYn/lbK+/6u4u/+Yusv/lc/n/5PO5f+T3f3/j9v8/43b/P+J2vz/htn8/4XY + +/+F2Pv/hdf6/4TX+v+D1vn/g9X5/4LV+P+C1Pf/gdT2/4HS9f+A0fT/gNDy/3/P8f9+0PP/h8rk/4jM + 5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAA5ejqBYuXmfuSpa7/ts7U/462xP+T0u3/j9j2/5Ld/P+P3f3/jdv9/4fa/f+H2v3/h9r9/4fa + /f+G2fz/htn8/4bZ/P+F2Pv/hdj7/4XY+/+E1/r/hNb5/4PV+P+C1fj/gtT2/4HT9v+B0vX/gNHz/3/Q + 8v9/0PP/h8rk/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA9fTzEInP5/CS1/H/kNr4/5De//+K2/7/idv+/4jb/v+I2/3/iNv9/4jb + /f+I2v3/h9r9/4fa/f+H2v3/h9n9/4bZ/P+G2fz/hdj8/4XY+/+E1/r/hNf6/4PW+f+D1fj/gtT3/4LT + 9v+B0/X/gNL0/4DQ8/+A0vT/hsrk/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIvb9+2F1PP/h9j5/4rd/v+K3P7/idz+/4nc + /v+J3P7/idv+/4nb/v+I2/3/iNr9/4ja/f+H2v3/h9r9/4bZ/f+G2fz/htn8/4XY+/+F2Pv/hNf6/4TW + +v+D1vn/gtX4/4LV9/+B0/b/gdL1/4DR8/+A0vX/hsrk/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIvd9+2F1vP/h9n6/4ve + //+L3f7/it3+/4rd/v+K3P7/idz+/4nb/v+J2/7/iNv9/4ja/v+I2v3/h9r9/4fa/f+G2fz/htn8/4bZ + /P+F2Pv/hdj7/4TX+v+D1vn/g9b5/4LV+P+C1Pf/gdP1/4DS9P+B0/b/h8rl/4jM5tGIzOYNAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIvf + +O2G2PT/iNv6/4zf//+L3/7/i97+/4ve/v+L3f7/it3+/4rd/v+J3P7/idv+/4jb/v+I2/3/iNr9/4fa + /f+H2f3/htn8/4bZ/P+F2fz/hdj7/4XX+/+E1/r/g9b5/4PV+P+C1Pf/gdP2/4HS9f+C1Pf/iM7n/4jM + 5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAIzh+O2H2fX/itz7/43h/v+N4P7/jOD+/4zf/v+L3/7/i97+/4rd/v+K3P7/idz+/4nb + /v+I2/3/iNr9/4ja/f+H2v3/h9n9/4bZ/P+G2fz/hdn7/4XY+/+E1/r/g9b5/4PV+P+C1ff/gtP2/4HT + 9f+C1ff/ic/o/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAIzi+O2H2vb/i977/4/j/v+O4v7/juL+/43h/v+N4P7/jN/+/4ve + /v+L3f7/it3+/4nc/v+J3P7/iNv+/4ja/f+H2v3/h9r9/4bZ/P+G2fz/hdn7/4XY+/+E1/r/hNf6/4PW + +f+D1fj/gtT3/4HT9v+D1fj/h83m/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI3i+e2I2/b/jOD8/5Dl/v+P5P7/j+T+/47j + /v+O4v7/jeH+/4zf/v+L3v7/it3+/4rc/v+J3P7/idv+/4jb/f+I2v3/h9r9/4fa/f+G2fz/htn8/4XZ + +/+F2Pv/hNf6/4PW+f+D1fj/gtT3/4HT9v+D1fj/hcrl/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI7j+e2J3Pf/jeL8/5Lo + /v+R5/7/kOb+/5Dl/v+P4/7/juL+/43h/v+M3/7/i97+/4vd/v+K3P7/idz+/4nb/v+I2v3/iNr9/4fa + /f+G2fz/htn8/4XZ/P+F2Pv/hNf6/4TX+v+D1vn/g9X4/4HT9v+D1vj/hszl/4jM5tGIzOYNAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJDl + +e2L3fj/j+P9/5Pq/v+S6f7/kuj+/5Hn/v+Q5v7/j+T+/47i/v+N4f7/jN/+/4ve/v+K3f7/idz+/4nb + /v+I2/3/iNr9/4fa/f+H2f3/htn8/4bZ/P+F2Pv/hNj7/4TX+v+D1vn/g9X4/4LU9/+D1vj/hszm/4jM + 5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAJHn+u2M3/n/kOX9/5Xt/v+U6/7/k+r+/5Lp/v+R5/7/kOX+/4/k/v+O4v7/jeD+/4zf + /v+L3f7/itz+/4nc/v+I2/3/iNr9/4fa/f+H2f3/htn8/4bZ/P+F2Pv/hdj7/4TX+v+D1vn/g9X4/4LU + 9/+C1vj/iM/p/4jM5tGIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAJLo++2N4fn/kej9/5bv/v+V7v7/lOz+/5Pr/v+S6f7/kef+/5Dl + /v+O4/7/jeH+/4zf/v+L3v7/it3+/4nc/v+I2/7/iNr9/4fa/f+H2v3/htn8/4XZ/P+E2Pv/hNj7/4PX + +/+D1vr/gtb5/4LV+P+M3Pv/jtXs/4jM5qeIzOYKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJPp++2O4fn/kun+/5jx/v+W8P7/le7+/5Ts + /v+T6v7/kuj+/5Dm/v+P5P7/jeL+/4zg/v+L3v7/it3+/4jc/v+H2/7/h9v+/4fb/v+H2///iNv//4rb + /v+M3P3/i9r7/4rX+P+J1fb/jdf1/4/V8/+T1/H/ic/r/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJTq++2P4vr/lOv+/5nz + /v+Y8f7/lvD+/5Xu/v+T6/7/ken+/5Dn//+P5f//j+T//4/i//+N4P//jt///5Hf//+U3f3/kNr5/4zV + 9v+K1fX/jdXz/43V8/+K0/H/h9Py/4bV9f+H2Pj/iNn6/4ja+/+I2vv/ecTkuwAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJTq + /O2O5Pv/k+3//5r3//+Z9P//mfP//5jw//+Z7v//mur+/5rm/P+Z4fn/k9r2/4vV8/+K1fP/idT0/4nV + 8/+H1PT/htb2/4fY+f+I2vv/h9r7/4fZ+/+H2fv/h9r7/4fZ+vaH2fvpiNr61Ync/beAz++WcLfUFAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAJfs/fmZ5vz/nur8/5/p+P+X4/b/kN30/43a9f+M2PT/itf1/43X9f+N2Pf/h9j6/4bY + +v+G2Pr/htj6/4ba/PqG2vzmiNv9xoba/OaI2/3GiNz9nonc/m2I2/1Iidz+KIja/QMAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAIjM35h9xOH/h9X0/4jZ+f+I2fr/iNr7/4ja+/+I2vv/iNr7/53l + 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 + if+W0+3/8v///z5daqUAAAA+AAAAPgAAAD4AAAAjAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAd7vX/3O3 + 0v96yuv/ecfo/3nH5/95x+f/eMfn/3nH5/95xub/eMXl/3bE5P92xOP/dsHg///o5v/76en/18HB/8Wx + sf/Qy8v/c3d3/5jV7//6////P19tpAAAADQAAAA0AAAAMwAAADEAAAAfAAAAAAAAAAAAAAAAAAAAAAAA + AACAv9r/eLnU/3vN7/97yuv/esrq/3vJ6/97yev/esrq/3rJ6f96yOj/ecfn/3nH5v94xeT/xNbi/8y9 + vf+1r6//w7q6/869vf98f3//ndrz//////8/X22eAAAAJAAAACQAAAAiAAAAHwAAAB0AAAAAAAAAAAAA + AAAAAAAAAAAAAILE3f96vtj/fc/y/33M7f99zO3/fM3s/3zM7f99zO3/fMvs/3zL6/97yur/e8jp/3nI + 5/+Ixd7/zc/P/7q1tf/Au7v/1L6+/4iCgv+i3/j//////z9ebJUAAAAUAAAAFAAAABIAAAANAAAACAAA + AAAAAAAAAAAAAAAAAAAAAAAAg8bi/3u/2/9+0vX/f8/w/3/O8P9+z/D/fs7v/37O8P99ze//fczt/33L + 7P97y+z/e8rq/33I5//CzM//zc7O/9TOzv/q09P/eWxs/53e+P/y////OltpjQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCyOT/fcPe/4DT9v9/0PL/f9Dy/4DR8v9/0PH/f9Dx/3/P + 8P9+zvH/fs3v/33N7v99zOz/fcrr/6fI1f/Gx8f/pqWl/7irqv9tY2P/gdLy/4fc//9CcoeNAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAITJ5/9/xeL/gdX5/4DS9P+B0vX/gdL0/4DR + 9P+B0fP/gNDy/4DR8/9+z/L/f8/w/37O7v+Dwtz/0drf/1NTVP8cHRz/cG1u/3djY/+ZwtT/id3+/3S+ + 3mcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhcvp/4LJ5v+B1/r/gtT2/4LT + 9v+C1Pb/gdL2/4TQ8f+X2fb/kcvk/4Kruv9nipr/mKKk/52amf/g19X/zs3N/8DDw/+Jg4P/oJeX/4KJ + jfuC1fIlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACG0O//hc3r/4LY + +/+C1vj/gtHy/6bP3v+Ls8X/h5mh/3+VnP91fX//vcXE/3eNlv+ptLT/opiZ/9HFxv/+/////v///xQW + F//7+vr/dXp//IjM5gQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAy87NDI/G + 3v+Bp7T/c4qY/4+anP92f4T/l56h/3KKkv/Dx8f/sL7A/3uDhf99f3//cXV2/52foP+Khof/yMjI/+Xl + 5f/S09P/l5SU//b5+f+Bhoz/iMzmDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AADQztE0Zmdm/7DExf+co6b/oKyv/4KRl/+Zmpn/cnN4/5GTkf9LUFL/p66y/3+Afv+Io7L/nq6z/6Gd + nv/R0ND/1NTT/8XDw//h39////v6/3F2e/6IzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAANHPzjV/hYf/c3Jz/36Cg/97e3z/lZ+l/3aCgv9rfob/scTJ/5WWl/9qhI//wM7S/15v + df+iydn/nLjC/3iNlf+ZnJ//r66t/6qpqP+jnZ7/hMPb/IjM5g0AAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAA5uPiQYGJi/96gIX/laiw/5KhpP9ncXb/pra8/2VnaP+lu8H/n8PO/5TP + 6P+q5Pv/itf4/4PV+P+C1fj/gdP1/4TH4v9/u9X/hL/X/4LA2f+GyOP8iMzmDQAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC2urw3fZGW/5yprP9xgoj/p8/e/7HX6P+P1/X/iNr9/4bZ + /f+G2fz/htn8/4XY+/+F2Pr/hNb6/4PV+P+C1fj/gdP2/4HS9P9/0PL/gdDx/4bJ4fyIzOYNAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMnKzCad0OL/p+D3/4za+/+I2v7/h9r+/4jb + /f+I2v3/h9r9/4fa/f+H2f3/htn8/4XY+/+E1/r/g9f6/4PU9/+C0/b/gdP1/4DR8/+B0fL/hsni/IjM + 5g0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIvb9v+G1vb/idz//4nb + /v+I2/7/idv+/4jb/f+I2v3/h9r9/4fa/f+G2fz/htn8/4XY+/+F1/v/g9b5/4LW+P+C0/b/gNL0/4LS + 8/+HyeL7iMzmDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAi9z4/4bX + 9/+L3v//it3+/4rd/v+K3P7/idz+/4nb/v+I2/3/iNr9/4fZ/f+G2fz/hdn8/4XX+/+E1/r/g9X4/4LU + 9/+B0vX/g9P0/4fK4/uIzOYNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AACM4Pj/h9n4/4zg/v+L3/7/jN7+/4ve/v+K3P7/idz+/4jb/f+I2v3/h9r9/4fZ/f+G2fz/hdn7/4TX + +v+D1vn/g9X4/4HT9v+E1PX/h8zk+4jM5g0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAIzi+f+J3Pn/j+P+/47i/v+N4f7/jd/+/4ve/v+K3f7/idz+/4nb/v+I2v3/h9r9/4bZ + /P+F2fv/hdj7/4PW+f+D1fj/gdP2/4TT9f+FyeP7iMzmDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAjeL5/4vf+v+R5/7/kOX+/4/i/v+N4P7/jN/+/4vd/v+K3P7/idv+/4ja + /f+I2v3/htn8/4XZ/P+F2Pv/hNf6/4PV+f+C0/f/g9X1/4bK4/uIzOYNAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQ5Pn/jd/7/5Ts/v+S6P7/kub+/4/j/v+O4f7/jN/+/4vc + /v+J3P7/iNv9/4ja/f+H2f3/htn8/4XY+/+F2Pv/g9X4/4LU9/+C1PX/iMzl+4jM5g0AAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJHn+/+P5Pv/lu/+/5Tr/v+T6f7/kOb+/47j + /v+M3/7/i97+/4nc/v+I2/7/iNr9/4ba/v+F2v3/hdn8/4TY+/+F1vn/h9f3/5Da9f+HzObziMzmBwAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAk+n7/5Hm/f+Z8v7/le7+/5Pr + /v+Q6P7/juX//43j//+M4f//juH//5Hf//+M2/v/i9X2/43V9v+J0/L/hdLy/4XV9f+G1vf/itr6/3zK + 6LUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACT6fz/ker//5z5 + //+Z8f//mO7//5ro/f+W4Pj/jdb0/4nV9P+I1fX/htb3/4ba+/+H2/3/htr8/oba/PSH2/3kh9r8yIjc + /aGG1vlvbrTSDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI/c + 8P+K0+3/jNv3/4rb+f+I2vr/h9r7/4fb/f+K2vz6jNz89o7d/OSJ3v6LiN/+XYrg/yWK3v8QAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAkdjt+IrR7/6M2Pb5kN757pXj/M2V5v2jl+f9eJ3n/leY6P48kOT+JI3k/g0AAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP// + /v///8B///wAD//gAAf/wAAD/gAAA/gAAAHwAAAB8AAAAfAAAAHwAAA/8AAAP/AAAD/wAAB/8AAAf+AA + AH/gAAB/4AAAf+AAAH/gAAB/4AAAf/AAAH/wAAB/8AAAf/AAAH/wAAB/8AAAf/AAAH/wAAD/8AAA//AA + P//wAf//KAAAABgAAAAwAAAAAQAgAAAAAABgCQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAACFu9BleLnRrZzE1P9lpcL/LmR6tQAAACcAAAAsAAAAAAAAAAAAAAAAAAAAAAAA + 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 + + + + + ..\Resources\zippedFile.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + \ No newline at end of file diff --git a/src/Tools/WinFormsApp/Properties/Settings.Designer.cs b/old/src/Tools/WinFormsApp/Properties/Settings.Designer.cs similarity index 97% rename from src/Tools/WinFormsApp/Properties/Settings.Designer.cs rename to old/src/Tools/WinFormsApp/Properties/Settings.Designer.cs index 9f0efbe..5ab7228 100644 --- a/src/Tools/WinFormsApp/Properties/Settings.Designer.cs +++ b/old/src/Tools/WinFormsApp/Properties/Settings.Designer.cs @@ -1,26 +1,26 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.225 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace Ionic.Zip.Forms.Properties { - - - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] - internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { - - private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); - - public static Settings Default { - get { - return defaultInstance; - } - } - } -} +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.225 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Ionic.Zip.Forms.Properties { + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default { + get { + return defaultInstance; + } + } + } +} diff --git a/src/Tools/WinFormsApp/Properties/Settings.settings b/old/src/Tools/WinFormsApp/Properties/Settings.settings similarity index 97% rename from src/Tools/WinFormsApp/Properties/Settings.settings rename to old/src/Tools/WinFormsApp/Properties/Settings.settings index abf36c5..3964565 100644 --- a/src/Tools/WinFormsApp/Properties/Settings.settings +++ b/old/src/Tools/WinFormsApp/Properties/Settings.settings @@ -1,7 +1,7 @@ - - - - - - - + + + + + + + diff --git a/src/Tools/WinFormsApp/Resources/zippedFile.png b/old/src/Tools/WinFormsApp/Resources/zippedFile.png similarity index 100% rename from src/Tools/WinFormsApp/Resources/zippedFile.png rename to old/src/Tools/WinFormsApp/Resources/zippedFile.png diff --git a/src/Tools/WinFormsApp/Win Forms App.csproj b/old/src/Tools/WinFormsApp/Win Forms App.csproj similarity index 97% rename from src/Tools/WinFormsApp/Win Forms App.csproj rename to old/src/Tools/WinFormsApp/Win Forms App.csproj index 4ff35fe..416a724 100644 --- a/src/Tools/WinFormsApp/Win Forms App.csproj +++ b/old/src/Tools/WinFormsApp/Win Forms App.csproj @@ -1,162 +1,162 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {6BCCF138-2EFB-464C-B872-E3079F0A4708} - WinExe - Properties - Ionic.Zip.Forms - DotNetZip-WinFormsTool - v4.0 - 512 - - - - - - - - - - - Icon2.res - - - 3.5 - - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - AllRules.ruleset - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - AllRules.ruleset - - - - - - - - - - - - - FolderBrowserDialogEx.cs - Component - - - PasswordDialog.cs - Form - - - PasswordDialog.designer.cs - PasswordDialog.cs - - - Form - - - ZipForm.cs - - - - Form - - - Form - - - Component - - - - - Properties\SolutionInfo.cs - - - PasswordDialog.resx - PasswordDialog.cs - - - ZipForm.cs - Designer - - - ListViewEx.cs - - - ResXFileCodeGenerator - Resources.Designer.cs - Designer - - - - True - Resources.resx - True - - - SettingsSingleFileGenerator - Settings.Designer.cs - - - True - Settings.settings - True - - - - - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} - Zip DLL - - - - - - - - - - - ..\..\GetIcon.cmd - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {6BCCF138-2EFB-464C-B872-E3079F0A4708} + WinExe + Properties + Ionic.Zip.Forms + DotNetZip-WinFormsTool + v4.0 + 512 + + + + + + + + + + + Icon2.res + + + 3.5 + + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + AllRules.ruleset + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + AllRules.ruleset + + + + + + + + + + + + + FolderBrowserDialogEx.cs + Component + + + PasswordDialog.cs + Form + + + PasswordDialog.designer.cs + PasswordDialog.cs + + + Form + + + ZipForm.cs + + + + Form + + + Form + + + Component + + + + + Properties\SolutionInfo.cs + + + PasswordDialog.resx + PasswordDialog.cs + + + ZipForm.cs + Designer + + + ListViewEx.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + + True + Resources.resx + True + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} + Zip DLL + + + + + + + + + + + ..\..\GetIcon.cmd + + + \ No newline at end of file diff --git a/src/Tools/WinFormsApp/ZipForm.Designer.cs b/old/src/Tools/WinFormsApp/ZipForm.Designer.cs similarity index 98% rename from src/Tools/WinFormsApp/ZipForm.Designer.cs rename to old/src/Tools/WinFormsApp/ZipForm.Designer.cs index 92e1234..254c77f 100644 --- a/src/Tools/WinFormsApp/ZipForm.Designer.cs +++ b/old/src/Tools/WinFormsApp/ZipForm.Designer.cs @@ -1,1215 +1,1215 @@ -namespace Ionic.Zip.Forms -{ - partial class ZipForm - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ZipForm)); - this.tbDirectoryToZip = new System.Windows.Forms.TextBox(); - this.tbZipToCreate = new System.Windows.Forms.TextBox(); - this.btnZipupDirBrowse = new System.Windows.Forms.Button(); - this.btnZipUp = new System.Windows.Forms.Button(); - this.btnCancel = new System.Windows.Forms.Button(); - this.progressBar1 = new System.Windows.Forms.ProgressBar(); - this.progressBar2 = new System.Windows.Forms.ProgressBar(); - this.label1 = new System.Windows.Forms.Label(); - this.label2 = new System.Windows.Forms.Label(); - this.label3 = new System.Windows.Forms.Label(); - this.label4 = new System.Windows.Forms.Label(); - this.label5 = new System.Windows.Forms.Label(); - this.label6 = new System.Windows.Forms.Label(); - this.label7 = new System.Windows.Forms.Label(); - this.label8 = new System.Windows.Forms.Label(); - this.label9 = new System.Windows.Forms.Label(); - this.label22 = new System.Windows.Forms.Label(); - this.comboEncoding = new System.Windows.Forms.ComboBox(); - this.tbComment = new System.Windows.Forms.TextBox(); - this.lblStatus = new System.Windows.Forms.Label(); - this.comboCompLevel = new System.Windows.Forms.ComboBox(); - this.comboEncryption = new System.Windows.Forms.ComboBox(); - this.tbPassword = new System.Windows.Forms.TextBox(); - this.chkHidePassword = new System.Windows.Forms.CheckBox(); - this.listView1 = new System.Windows.Forms.ListView(); - this.btnOpenZip = new System.Windows.Forms.Button(); - this.tabControl1 = new System.Windows.Forms.TabControl(); - this.tabPage1 = new System.Windows.Forms.TabPage(); - this.label20 = new System.Windows.Forms.Label(); - this.label19 = new System.Windows.Forms.Label(); - this.comboExistingFileAction = new System.Windows.Forms.ComboBox(); - this.tbSelectionToExtract = new System.Windows.Forms.TextBox(); - this.label13 = new System.Windows.Forms.Label(); - this.chkOpenExplorer = new System.Windows.Forms.CheckBox(); - this.btnExtractDirBrowse = new System.Windows.Forms.Button(); - this.tbExtractDir = new System.Windows.Forms.TextBox(); - this.label11 = new System.Windows.Forms.Label(); - this.label10 = new System.Windows.Forms.Label(); - this.btnExtract = new System.Windows.Forms.Button(); - this.btnReadZipBrowse = new System.Windows.Forms.Button(); - this.tbZipToOpen = new System.Windows.Forms.TextBox(); - this.tabPage2 = new System.Windows.Forms.TabPage(); - this.groupBox2 = new System.Windows.Forms.GroupBox(); - this.label21 = new System.Windows.Forms.Label(); - this.comboEncodingUsage = new System.Windows.Forms.ComboBox(); - this.label18 = new System.Windows.Forms.Label(); - this.chkRemoveFiles = new System.Windows.Forms.CheckBox(); - this.label17 = new System.Windows.Forms.Label(); - this.comboSplit = new System.Windows.Forms.ComboBox(); - this.chkUnixTime = new System.Windows.Forms.CheckBox(); - this.chkWindowsTime = new System.Windows.Forms.CheckBox(); - this.label16 = new System.Windows.Forms.Label(); - this.tbExeOnUnpack = new System.Windows.Forms.TextBox(); - this.label15 = new System.Windows.Forms.Label(); - this.tbDefaultExtractDirectory = new System.Windows.Forms.TextBox(); - this.comboZip64 = new System.Windows.Forms.ComboBox(); - this.comboCompMethod = new System.Windows.Forms.ComboBox(); - this.comboFlavor = new System.Windows.Forms.ComboBox(); - this.btnCreateZipBrowse = new System.Windows.Forms.Button(); - this.groupBox1 = new System.Windows.Forms.GroupBox(); - this.chkRecurse = new System.Windows.Forms.CheckBox(); - this.chkTraverseJunctions = new System.Windows.Forms.CheckBox(); - this.tbDirectoryInArchive = new System.Windows.Forms.TextBox(); - this.button1 = new System.Windows.Forms.Button(); - this.label14 = new System.Windows.Forms.Label(); - this.tbSelectionToZip = new System.Windows.Forms.TextBox(); - this.label12 = new System.Windows.Forms.Label(); - this.checkBox1 = new System.Windows.Forms.CheckBox(); - this.btnClearItemsToZip = new System.Windows.Forms.Button(); - this.textBox1 = new System.Windows.Forms.TextBox(); - this.listView2 = new ListViewEx.ListViewEx(); - this.chCheckbox = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); - this.tabPage3 = new System.Windows.Forms.TabPage(); - this.richTextBox1 = new System.Windows.Forms.RichTextBox(); - this.pictureBox1 = new System.Windows.Forms.PictureBox(); - this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); - this.tabControl1.SuspendLayout(); - this.tabPage1.SuspendLayout(); - this.tabPage2.SuspendLayout(); - this.groupBox2.SuspendLayout(); - this.groupBox1.SuspendLayout(); - this.tabPage3.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); - this.SuspendLayout(); - // - // tbDirectoryToZip - // - this.tbDirectoryToZip.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.tbDirectoryToZip.Location = new System.Drawing.Point(104, 13); - this.tbDirectoryToZip.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tbDirectoryToZip.Name = "tbDirectoryToZip"; - this.tbDirectoryToZip.Size = new System.Drawing.Size(289, 20); - this.tbDirectoryToZip.TabIndex = 10; - this.tbDirectoryToZip.Leave += new System.EventHandler(this.tbDirectoryToZip_Leave); - // - // tbZipToCreate - // - this.tbZipToCreate.AcceptsReturn = true; - this.tbZipToCreate.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.tbZipToCreate.Location = new System.Drawing.Point(104, 11); - this.tbZipToCreate.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tbZipToCreate.Name = "tbZipToCreate"; - this.tbZipToCreate.Size = new System.Drawing.Size(432, 20); - this.tbZipToCreate.TabIndex = 30; - // - // btnZipupDirBrowse - // - this.btnZipupDirBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.btnZipupDirBrowse.Location = new System.Drawing.Point(399, 13); - this.btnZipupDirBrowse.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.btnZipupDirBrowse.Name = "btnZipupDirBrowse"; - this.btnZipupDirBrowse.Size = new System.Drawing.Size(24, 20); - this.btnZipupDirBrowse.TabIndex = 11; - this.btnZipupDirBrowse.Text = "..."; - this.toolTip1.SetToolTip(this.btnZipupDirBrowse, "Browse for a directory to search in"); - this.btnZipupDirBrowse.UseVisualStyleBackColor = true; - this.btnZipupDirBrowse.Click += new System.EventHandler(this.btnDirBrowse_Click); - // - // btnZipUp - // - this.btnZipUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnZipUp.Location = new System.Drawing.Point(512, 460); - this.btnZipUp.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.btnZipUp.Name = "btnZipUp"; - this.btnZipUp.Size = new System.Drawing.Size(66, 26); - this.btnZipUp.TabIndex = 140; - this.btnZipUp.Text = "Zip All"; - this.toolTip1.SetToolTip(this.btnZipUp, "actually save the Zip file. "); - this.btnZipUp.UseVisualStyleBackColor = true; - this.btnZipUp.Click += new System.EventHandler(this.btnZipup_Click); - // - // btnCancel - // - this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnCancel.Enabled = false; - this.btnCancel.Location = new System.Drawing.Point(512, 489); - this.btnCancel.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.btnCancel.Name = "btnCancel"; - this.btnCancel.Size = new System.Drawing.Size(66, 26); - this.btnCancel.TabIndex = 90; - this.btnCancel.Text = "Cancel"; - this.toolTip1.SetToolTip(this.btnCancel, "cancel the currently running operation"); - this.btnCancel.UseVisualStyleBackColor = true; - this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); - // - // progressBar1 - // - this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.progressBar1.Location = new System.Drawing.Point(6, 490); - this.progressBar1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.progressBar1.Name = "progressBar1"; - this.progressBar1.Size = new System.Drawing.Size(496, 10); - this.progressBar1.TabIndex = 4; - // - // progressBar2 - // - this.progressBar2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.progressBar2.Location = new System.Drawing.Point(6, 503); - this.progressBar2.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.progressBar2.Name = "progressBar2"; - this.progressBar2.Size = new System.Drawing.Size(496, 10); - this.progressBar2.TabIndex = 17; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(6, 17); - this.label1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(86, 13); - this.label1.TabIndex = 0; - this.label1.Text = "directory to add: "; - // - // label2 - // - this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(6, 15); - this.label2.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(73, 13); - this.label2.TabIndex = 1; - this.label2.Text = "file to save to:"; - // - // label3 - // - this.label3.AutoSize = true; - this.label3.Location = new System.Drawing.Point(6, 39); - this.label3.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(36, 13); - this.label3.TabIndex = 2; - this.label3.Text = "flavor:"; - // - // label4 - // - this.label4.AutoSize = true; - this.label4.Location = new System.Drawing.Point(250, 64); - this.label4.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(45, 13); - this.label4.TabIndex = 3; - this.label4.Text = "level:"; - // - // label5 - // - this.label5.AutoSize = true; - this.label5.Location = new System.Drawing.Point(6, 89); - this.label5.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(54, 13); - this.label5.TabIndex = 4; - this.label5.Text = "encoding:"; - // - // label6 - // - this.label6.AutoSize = true; - this.label6.Location = new System.Drawing.Point(6, 139); - this.label6.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(53, 13); - this.label6.TabIndex = 6; - this.label6.Text = "comment:"; - // - // label7 - // - this.label7.AutoSize = true; - this.label7.Location = new System.Drawing.Point(6, 64); - this.label7.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(55, 13); - this.label7.TabIndex = 5; - this.label7.Text = "ZIP64?:"; - // - // label8 - // - this.label8.AutoSize = true; - this.label8.Location = new System.Drawing.Point(250, 89); - this.label8.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label8.Name = "label8"; - this.label8.Size = new System.Drawing.Size(59, 13); - this.label8.TabIndex = 91; - this.label8.Text = "encryption:"; - // - // label9 - // - this.label9.AutoSize = true; - this.label9.Location = new System.Drawing.Point(250, 114); - this.label9.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label9.Name = "label9"; - this.label9.Size = new System.Drawing.Size(55, 13); - this.label9.TabIndex = 93; - this.label9.Text = "password:"; - // - // label22 - // - this.label22.AutoSize = true; - this.label22.Location = new System.Drawing.Point(250, 39); - this.label22.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label22.Name = "label22"; - this.label22.Size = new System.Drawing.Size(59, 13); - this.label22.TabIndex = 94; - this.label22.Text = "method:"; - // - // comboEncoding - // - this.comboEncoding.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.comboEncoding.FormattingEnabled = true; - this.comboEncoding.Location = new System.Drawing.Point(104, 85); - this.comboEncoding.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.comboEncoding.Name = "comboEncoding"; - this.comboEncoding.Size = new System.Drawing.Size(128, 21); - this.comboEncoding.TabIndex = 60; - this.toolTip1.SetToolTip(this.comboEncoding, "use this encoding when saving the file"); - this.comboEncoding.SelectedIndexChanged += new System.EventHandler(this.comboEncoding_SelectedIndexChanged); - // - // tbComment - // - this.tbComment.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.tbComment.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.tbComment.ForeColor = System.Drawing.SystemColors.InactiveCaption; - this.tbComment.Location = new System.Drawing.Point(104, 133); - this.tbComment.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tbComment.Name = "tbComment"; - this.tbComment.Size = new System.Drawing.Size(432, 20); - this.tbComment.TabIndex = 100; - this.tbComment.Text = "-zip file comment here-"; - this.toolTip1.SetToolTip(this.tbComment, "a comment to embed in the zip file"); - this.tbComment.Enter += new System.EventHandler(this.tbComment_Enter); - this.tbComment.Leave += new System.EventHandler(this.tbComment_Leave); - // - // lblStatus - // - this.lblStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.lblStatus.AutoSize = true; - this.lblStatus.Location = new System.Drawing.Point(12, 471); - this.lblStatus.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.lblStatus.Name = "lblStatus"; - this.lblStatus.Size = new System.Drawing.Size(0, 13); - this.lblStatus.TabIndex = 8; - // - // comboCompLevel - // - this.comboCompLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.comboCompLevel.FormattingEnabled = true; - this.comboCompLevel.Location = new System.Drawing.Point(310, 60); - this.comboCompLevel.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.comboCompLevel.Name = "comboCompLevel"; - this.comboCompLevel.Size = new System.Drawing.Size(122, 21); - this.comboCompLevel.TabIndex = 50; - this.toolTip1.SetToolTip(this.comboCompLevel, "The compression level to use when creating the zip."); - // - // comboEncryption - // - this.comboEncryption.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.comboEncryption.FormattingEnabled = true; - this.comboEncryption.Location = new System.Drawing.Point(310, 85); - this.comboEncryption.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.comboEncryption.Name = "comboEncryption"; - this.comboEncryption.Size = new System.Drawing.Size(122, 21); - this.comboEncryption.TabIndex = 80; - this.toolTip1.SetToolTip(this.comboEncryption, "AES is not compatible with some other zip tools."); - this.comboEncryption.SelectedIndexChanged += new System.EventHandler(this.comboEncryption_SelectedIndexChanged); - // - // tbPassword - // - this.tbPassword.AcceptsReturn = true; - this.tbPassword.Location = new System.Drawing.Point(310, 110); - this.tbPassword.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tbPassword.Name = "tbPassword"; - this.tbPassword.PasswordChar = '*'; - this.tbPassword.Size = new System.Drawing.Size(104, 20); - this.tbPassword.TabIndex = 90; - this.tbPassword.Text = "c:\\dinoch\\dev\\dotnet\\zip\\test\\U.zip"; - this.tbPassword.TextChanged += new System.EventHandler(this.tbPassword_TextChanged); - // - // chkHidePassword - // - this.chkHidePassword.AutoSize = true; - this.chkHidePassword.Checked = true; - this.chkHidePassword.CheckState = System.Windows.Forms.CheckState.Checked; - this.chkHidePassword.Location = new System.Drawing.Point(418, 113); - this.chkHidePassword.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.chkHidePassword.Name = "chkHidePassword"; - this.chkHidePassword.Size = new System.Drawing.Size(15, 14); - this.chkHidePassword.TabIndex = 91; - this.toolTip1.SetToolTip(this.chkHidePassword, "check to hide password characters"); - this.chkHidePassword.UseVisualStyleBackColor = true; - this.chkHidePassword.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged); - // - // listView1 - // - this.listView1.AllowDrop = true; - this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.listView1.GridLines = true; - this.listView1.Location = new System.Drawing.Point(6, 137); - this.listView1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.listView1.Name = "listView1"; - this.listView1.Size = new System.Drawing.Size(572, 327); - this.listView1.TabIndex = 0; - this.listView1.UseCompatibleStateImageBehavior = false; - this.listView1.View = System.Windows.Forms.View.Details; - this.listView1.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listView1_ColumnClick); - this.listView1.DragDrop += new System.Windows.Forms.DragEventHandler(this.listView1_DragDrop); - this.listView1.DragEnter += new System.Windows.Forms.DragEventHandler(this.listView_DragEnter); - // - // btnOpenZip - // - this.btnOpenZip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.btnOpenZip.Location = new System.Drawing.Point(518, 27); - this.btnOpenZip.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.btnOpenZip.Name = "btnOpenZip"; - this.btnOpenZip.Size = new System.Drawing.Size(60, 24); - this.btnOpenZip.TabIndex = 14; - this.btnOpenZip.Text = "Open"; - this.toolTip1.SetToolTip(this.btnOpenZip, "open and read the zip file"); - this.btnOpenZip.UseVisualStyleBackColor = true; - this.btnOpenZip.Click += new System.EventHandler(this.btnOpen_Click); - // - // tabControl1 - // - this.tabControl1.AllowDrop = true; - this.tabControl1.Controls.Add(this.tabPage1); - this.tabControl1.Controls.Add(this.tabPage2); - this.tabControl1.Controls.Add(this.tabPage3); - this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControl1.Location = new System.Drawing.Point(0, 0); - this.tabControl1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tabControl1.Name = "tabControl1"; - this.tabControl1.SelectedIndex = 0; - this.tabControl1.Size = new System.Drawing.Size(592, 548); - this.tabControl1.TabIndex = 96; - this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged); - this.tabControl1.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.tabControl1_Selecting); - // - // tabPage1 - // - this.tabPage1.Controls.Add(this.label20); - this.tabPage1.Controls.Add(this.label19); - this.tabPage1.Controls.Add(this.comboExistingFileAction); - this.tabPage1.Controls.Add(this.tbSelectionToExtract); - this.tabPage1.Controls.Add(this.label13); - this.tabPage1.Controls.Add(this.chkOpenExplorer); - this.tabPage1.Controls.Add(this.btnExtractDirBrowse); - this.tabPage1.Controls.Add(this.tbExtractDir); - this.tabPage1.Controls.Add(this.label11); - this.tabPage1.Controls.Add(this.label10); - this.tabPage1.Controls.Add(this.btnExtract); - this.tabPage1.Controls.Add(this.btnReadZipBrowse); - this.tabPage1.Controls.Add(this.tbZipToOpen); - this.tabPage1.Controls.Add(this.listView1); - this.tabPage1.Controls.Add(this.btnOpenZip); - this.tabPage1.Location = new System.Drawing.Point(4, 22); - this.tabPage1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tabPage1.Name = "tabPage1"; - this.tabPage1.Padding = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tabPage1.Size = new System.Drawing.Size(584, 522); - this.tabPage1.TabIndex = 0; - this.tabPage1.Text = "Read/Extract"; - this.tabPage1.UseVisualStyleBackColor = true; - // - // label20 - // - this.label20.AutoSize = true; - this.label20.Location = new System.Drawing.Point(5, 33); - this.label20.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label20.Name = "label20"; - this.label20.Size = new System.Drawing.Size(54, 13); - this.label20.TabIndex = 43; - this.label20.Text = "encoding:"; - // - // label19 - // - this.label19.AutoSize = true; - this.label19.Location = new System.Drawing.Point(6, 114); - this.label19.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label19.Name = "label19"; - this.label19.Size = new System.Drawing.Size(108, 13); - this.label19.TabIndex = 42; - this.label19.Text = "action for existing file:"; - // - // comboExistingFileAction - // - this.comboExistingFileAction.FormattingEnabled = true; - this.comboExistingFileAction.Location = new System.Drawing.Point(114, 109); - this.comboExistingFileAction.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.comboExistingFileAction.Name = "comboExistingFileAction"; - this.comboExistingFileAction.Size = new System.Drawing.Size(104, 21); - this.comboExistingFileAction.TabIndex = 41; - this.toolTip1.SetToolTip(this.comboExistingFileAction, "What to do when extracting a file that already exists"); - // - // tbSelectionToExtract - // - this.tbSelectionToExtract.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.tbSelectionToExtract.Location = new System.Drawing.Point(60, 83); - this.tbSelectionToExtract.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tbSelectionToExtract.Name = "tbSelectionToExtract"; - this.tbSelectionToExtract.Size = new System.Drawing.Size(489, 20); - this.tbSelectionToExtract.TabIndex = 24; - this.tbSelectionToExtract.Text = "*.*"; - this.toolTip1.SetToolTip(this.tbSelectionToExtract, "Selection criteria. eg, (name = *.* and size> 1000) etc. Also use atime/mtime/c" + - "time and attributes. (HRSA)"); - // - // label13 - // - this.label13.AutoSize = true; - this.label13.Location = new System.Drawing.Point(6, 87); - this.label13.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label13.Name = "label13"; - this.label13.Size = new System.Drawing.Size(52, 13); - this.label13.TabIndex = 27; - this.label13.Text = "selection:"; - // - // chkOpenExplorer - // - this.chkOpenExplorer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.chkOpenExplorer.AutoSize = true; - this.chkOpenExplorer.Location = new System.Drawing.Point(236, 111); - this.chkOpenExplorer.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.chkOpenExplorer.Name = "chkOpenExplorer"; - this.chkOpenExplorer.Size = new System.Drawing.Size(91, 17); - this.chkOpenExplorer.TabIndex = 28; - this.chkOpenExplorer.Text = "open Explorer"; - this.toolTip1.SetToolTip(this.chkOpenExplorer, "open explorer after extraction"); - this.chkOpenExplorer.UseVisualStyleBackColor = true; - // - // btnExtractDirBrowse - // - this.btnExtractDirBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.btnExtractDirBrowse.Location = new System.Drawing.Point(554, 54); - this.btnExtractDirBrowse.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.btnExtractDirBrowse.Name = "btnExtractDirBrowse"; - this.btnExtractDirBrowse.Size = new System.Drawing.Size(24, 24); - this.btnExtractDirBrowse.TabIndex = 23; - this.btnExtractDirBrowse.Text = "..."; - this.btnExtractDirBrowse.UseVisualStyleBackColor = true; - this.btnExtractDirBrowse.Click += new System.EventHandler(this.btnExtractDirBrowse_Click); - // - // tbExtractDir - // - this.tbExtractDir.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.tbExtractDir.Location = new System.Drawing.Point(60, 57); - this.tbExtractDir.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tbExtractDir.Name = "tbExtractDir"; - this.tbExtractDir.Size = new System.Drawing.Size(489, 20); - this.tbExtractDir.TabIndex = 22; - // - // label11 - // - this.label11.AutoSize = true; - this.label11.Location = new System.Drawing.Point(6, 61); - this.label11.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label11.Name = "label11"; - this.label11.Size = new System.Drawing.Size(54, 13); - this.label11.TabIndex = 16; - this.label11.Text = "extract to:"; - // - // label10 - // - this.label10.AutoSize = true; - this.label10.Location = new System.Drawing.Point(6, 9); - this.label10.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label10.Name = "label10"; - this.label10.Size = new System.Drawing.Size(45, 13); - this.label10.TabIndex = 15; - this.label10.Text = "archive:"; - // - // btnExtract - // - this.btnExtract.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.btnExtract.Enabled = false; - this.btnExtract.Location = new System.Drawing.Point(518, 106); - this.btnExtract.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.btnExtract.Name = "btnExtract"; - this.btnExtract.Size = new System.Drawing.Size(60, 24); - this.btnExtract.TabIndex = 24; - this.btnExtract.Text = "Extract"; - this.btnExtract.UseVisualStyleBackColor = true; - this.btnExtract.Click += new System.EventHandler(this.btnExtract_Click); - // - // btnReadZipBrowse - // - this.btnReadZipBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.btnReadZipBrowse.Location = new System.Drawing.Point(554, 3); - this.btnReadZipBrowse.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.btnReadZipBrowse.Name = "btnReadZipBrowse"; - this.btnReadZipBrowse.Size = new System.Drawing.Size(24, 24); - this.btnReadZipBrowse.TabIndex = 13; - this.btnReadZipBrowse.Text = "..."; - this.btnReadZipBrowse.UseVisualStyleBackColor = true; - this.btnReadZipBrowse.Click += new System.EventHandler(this.btnZipBrowse_Click); - // - // tbZipToOpen - // - this.tbZipToOpen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.tbZipToOpen.Location = new System.Drawing.Point(60, 5); - this.tbZipToOpen.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tbZipToOpen.Name = "tbZipToOpen"; - this.tbZipToOpen.Size = new System.Drawing.Size(489, 20); - this.tbZipToOpen.TabIndex = 12; - // - // tabPage2 - // - this.tabPage2.Controls.Add(this.groupBox2); - this.tabPage2.Controls.Add(this.groupBox1); - this.tabPage2.Controls.Add(this.checkBox1); - this.tabPage2.Controls.Add(this.btnClearItemsToZip); - this.tabPage2.Controls.Add(this.textBox1); - this.tabPage2.Controls.Add(this.listView2); - this.tabPage2.Controls.Add(this.progressBar2); - this.tabPage2.Controls.Add(this.lblStatus); - this.tabPage2.Controls.Add(this.btnCancel); - this.tabPage2.Controls.Add(this.progressBar1); - this.tabPage2.Controls.Add(this.btnZipUp); - this.tabPage2.Location = new System.Drawing.Point(4, 22); - this.tabPage2.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tabPage2.Name = "tabPage2"; - this.tabPage2.Padding = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tabPage2.Size = new System.Drawing.Size(584, 522); - this.tabPage2.TabIndex = 1; - this.tabPage2.Text = "Create"; - this.tabPage2.UseVisualStyleBackColor = true; - // - // groupBox2 - // - this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.groupBox2.Controls.Add(this.label21); - this.groupBox2.Controls.Add(this.comboEncodingUsage); - this.groupBox2.Controls.Add(this.label18); - this.groupBox2.Controls.Add(this.chkRemoveFiles); - this.groupBox2.Controls.Add(this.label17); - this.groupBox2.Controls.Add(this.comboSplit); - this.groupBox2.Controls.Add(this.chkUnixTime); - this.groupBox2.Controls.Add(this.chkWindowsTime); - this.groupBox2.Controls.Add(this.label16); - this.groupBox2.Controls.Add(this.tbExeOnUnpack); - this.groupBox2.Controls.Add(this.label15); - this.groupBox2.Controls.Add(this.tbDefaultExtractDirectory); - this.groupBox2.Controls.Add(this.label2); - this.groupBox2.Controls.Add(this.tbZipToCreate); - this.groupBox2.Controls.Add(this.label4); - this.groupBox2.Controls.Add(this.comboEncoding); - this.groupBox2.Controls.Add(this.label5); - this.groupBox2.Controls.Add(this.tbComment); - this.groupBox2.Controls.Add(this.comboZip64); - this.groupBox2.Controls.Add(this.comboCompLevel); - this.groupBox2.Controls.Add(this.label3); - this.groupBox2.Controls.Add(this.comboFlavor); - this.groupBox2.Controls.Add(this.label6); - this.groupBox2.Controls.Add(this.btnCreateZipBrowse); - this.groupBox2.Controls.Add(this.label7); - this.groupBox2.Controls.Add(this.chkHidePassword); - this.groupBox2.Controls.Add(this.comboCompMethod); - this.groupBox2.Controls.Add(this.tbPassword); - this.groupBox2.Controls.Add(this.label8); - this.groupBox2.Controls.Add(this.label9); - this.groupBox2.Controls.Add(this.label22); - this.groupBox2.Controls.Add(this.comboEncryption); - this.groupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.groupBox2.Location = new System.Drawing.Point(6, 84); - this.groupBox2.Margin = new System.Windows.Forms.Padding(0); - this.groupBox2.Name = "groupBox2"; - this.groupBox2.Padding = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.groupBox2.Size = new System.Drawing.Size(572, 230); - this.groupBox2.TabIndex = 104; - this.groupBox2.TabStop = false; - // - // label21 - // - this.label21.AutoSize = true; - this.label21.Location = new System.Drawing.Point(6, 112); - this.label21.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label21.Name = "label21"; - this.label21.Size = new System.Drawing.Size(86, 13); - this.label21.TabIndex = 127; - this.label21.Text = "encoding usage:"; - // - // comboEncodingUsage - // - this.comboEncodingUsage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.comboEncodingUsage.FormattingEnabled = true; - this.comboEncodingUsage.Location = new System.Drawing.Point(104, 108); - this.comboEncodingUsage.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.comboEncodingUsage.Name = "comboEncodingUsage"; - this.comboEncodingUsage.Size = new System.Drawing.Size(128, 21); - this.comboEncodingUsage.TabIndex = 128; - this.toolTip1.SetToolTip(this.comboEncodingUsage, "use this encoding when saving the file"); - // - // label18 - // - this.label18.AutoSize = true; - this.label18.Location = new System.Drawing.Point(6, 209); - this.label18.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label18.Name = "label18"; - this.label18.Size = new System.Drawing.Size(66, 13); - this.label18.TabIndex = 126; - this.label18.Text = "remove files:"; - // - // chkRemoveFiles - // - this.chkRemoveFiles.AutoSize = true; - this.chkRemoveFiles.Location = new System.Drawing.Point(104, 208); - this.chkRemoveFiles.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.chkRemoveFiles.Name = "chkRemoveFiles"; - this.chkRemoveFiles.Size = new System.Drawing.Size(15, 14); - this.chkRemoveFiles.TabIndex = 125; - this.toolTip1.SetToolTip(this.chkRemoveFiles, "remove files after running post-extract command"); - this.chkRemoveFiles.UseVisualStyleBackColor = true; - // - // label17 - // - this.label17.AutoSize = true; - this.label17.Location = new System.Drawing.Point(447, 89); - this.label17.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label17.Name = "label17"; - this.label17.Size = new System.Drawing.Size(28, 13); - this.label17.TabIndex = 124; - this.label17.Text = "split:"; - // - // comboSplit - // - this.comboSplit.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.comboSplit.FormattingEnabled = true; - this.comboSplit.Location = new System.Drawing.Point(477, 85); - this.comboSplit.Name = "comboSplit"; - this.comboSplit.Size = new System.Drawing.Size(85, 21); - this.comboSplit.TabIndex = 123; - this.toolTip1.SetToolTip(this.comboSplit, "segment size when creating a spanned archive"); - this.comboSplit.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBox1_DrawItem); - // - // chkUnixTime - // - this.chkUnixTime.AutoSize = true; - this.chkUnixTime.Location = new System.Drawing.Point(450, 60); - this.chkUnixTime.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.chkUnixTime.Name = "chkUnixTime"; - this.chkUnixTime.Size = new System.Drawing.Size(77, 17); - this.chkUnixTime.TabIndex = 122; - this.chkUnixTime.Text = "times: Unix"; - this.toolTip1.SetToolTip(this.chkUnixTime, "store extended times in Unix format"); - this.chkUnixTime.UseVisualStyleBackColor = true; - // - // chkWindowsTime - // - this.chkWindowsTime.AutoSize = true; - this.chkWindowsTime.Checked = true; - this.chkWindowsTime.CheckState = System.Windows.Forms.CheckState.Checked; - this.chkWindowsTime.Location = new System.Drawing.Point(450, 39); - this.chkWindowsTime.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.chkWindowsTime.Name = "chkWindowsTime"; - this.chkWindowsTime.Size = new System.Drawing.Size(100, 17); - this.chkWindowsTime.TabIndex = 121; - this.chkWindowsTime.Text = "times: Windows"; - this.toolTip1.SetToolTip(this.chkWindowsTime, "store extended times in Windows format"); - this.chkWindowsTime.UseVisualStyleBackColor = true; - // - // label16 - // - this.label16.AutoSize = true; - this.label16.Location = new System.Drawing.Point(6, 185); - this.label16.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label16.Name = "label16"; - this.label16.Size = new System.Drawing.Size(81, 13); - this.label16.TabIndex = 100; - this.label16.Text = "exe on unpack:"; - // - // tbExeOnUnpack - // - this.tbExeOnUnpack.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.tbExeOnUnpack.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.tbExeOnUnpack.ForeColor = System.Drawing.SystemColors.InactiveCaption; - this.tbExeOnUnpack.Location = new System.Drawing.Point(104, 181); - this.tbExeOnUnpack.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tbExeOnUnpack.Name = "tbExeOnUnpack"; - this.tbExeOnUnpack.Size = new System.Drawing.Size(432, 20); - this.tbExeOnUnpack.TabIndex = 120; - this.tbExeOnUnpack.Text = "-command line to execute here-"; - this.toolTip1.SetToolTip(this.tbExeOnUnpack, "command to run upon successful extract of SFX"); - this.tbExeOnUnpack.TextChanged += new System.EventHandler(this.tbExeOnUnpack_TextChanged); - this.tbExeOnUnpack.Enter += new System.EventHandler(this.tbExeOnUnpack_Enter); - this.tbExeOnUnpack.Leave += new System.EventHandler(this.tbExeOnUnpack_Leave); - // - // label15 - // - this.label15.AutoSize = true; - this.label15.Location = new System.Drawing.Point(6, 161); - this.label15.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label15.Name = "label15"; - this.label15.Size = new System.Drawing.Size(91, 13); - this.label15.TabIndex = 98; - this.label15.Text = "default extract dir:"; - // - // tbDefaultExtractDirectory - // - this.tbDefaultExtractDirectory.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.tbDefaultExtractDirectory.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.tbDefaultExtractDirectory.ForeColor = System.Drawing.SystemColors.InactiveCaption; - this.tbDefaultExtractDirectory.Location = new System.Drawing.Point(104, 157); - this.tbDefaultExtractDirectory.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tbDefaultExtractDirectory.Name = "tbDefaultExtractDirectory"; - this.tbDefaultExtractDirectory.Size = new System.Drawing.Size(432, 20); - this.tbDefaultExtractDirectory.TabIndex = 110; - this.tbDefaultExtractDirectory.Tag = "b"; - this.tbDefaultExtractDirectory.Text = "-default extract directory-"; - this.toolTip1.SetToolTip(this.tbDefaultExtractDirectory, "optional default extraction directory for SFX"); - this.tbDefaultExtractDirectory.Enter += new System.EventHandler(this.tbDefaultExtractDirectory_Enter); - this.tbDefaultExtractDirectory.Leave += new System.EventHandler(this.tbDefaultExtractDirectory_Leave); - // - // comboZip64 - // - this.comboZip64.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.comboZip64.FormattingEnabled = true; - this.comboZip64.Location = new System.Drawing.Point(104, 60); - this.comboZip64.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.comboZip64.Name = "comboZip64"; - this.comboZip64.Size = new System.Drawing.Size(128, 21); - this.comboZip64.TabIndex = 70; - this.toolTip1.SetToolTip(this.comboZip64, "ZIP64 is not compatible with some other zip tools."); - // - // comboCompMethod - // - this.comboCompMethod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.comboCompMethod.FormattingEnabled = true; - this.comboCompMethod.Location = new System.Drawing.Point(310, 35); - this.comboCompMethod.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.comboCompMethod.Name = "comboCompMethod"; - this.comboCompMethod.Size = new System.Drawing.Size(122, 21); - this.comboCompMethod.TabIndex = 71; - this.comboCompMethod.SelectedIndexChanged += new System.EventHandler(this.comboCompMethod_SelectedIndexChanged); - - this.toolTip1.SetToolTip(this.comboCompMethod, "BZip2 is not compatible with some other zip tools."); - // - // comboFlavor - // - this.comboFlavor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.comboFlavor.FormattingEnabled = true; - this.comboFlavor.Location = new System.Drawing.Point(104, 35); - this.comboFlavor.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.comboFlavor.Name = "comboFlavor"; - this.comboFlavor.Size = new System.Drawing.Size(128, 21); - this.comboFlavor.TabIndex = 40; - this.comboFlavor.SelectedIndexChanged += new System.EventHandler(this.comboFlavor_SelectedIndexChanged); - // - // btnCreateZipBrowse - // - this.btnCreateZipBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.btnCreateZipBrowse.Location = new System.Drawing.Point(542, 10); - this.btnCreateZipBrowse.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.btnCreateZipBrowse.Name = "btnCreateZipBrowse"; - this.btnCreateZipBrowse.Size = new System.Drawing.Size(24, 20); - this.btnCreateZipBrowse.TabIndex = 31; - this.btnCreateZipBrowse.Text = "..."; - this.toolTip1.SetToolTip(this.btnCreateZipBrowse, "browse for a file to save to"); - this.btnCreateZipBrowse.UseVisualStyleBackColor = true; - this.btnCreateZipBrowse.Click += new System.EventHandler(this.btnCreateZipBrowse_Click); - // - // groupBox1 - // - this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.groupBox1.Controls.Add(this.chkRecurse); - this.groupBox1.Controls.Add(this.chkTraverseJunctions); - this.groupBox1.Controls.Add(this.tbDirectoryToZip); - this.groupBox1.Controls.Add(this.label1); - this.groupBox1.Controls.Add(this.btnZipupDirBrowse); - this.groupBox1.Controls.Add(this.tbDirectoryInArchive); - this.groupBox1.Controls.Add(this.button1); - this.groupBox1.Controls.Add(this.label14); - this.groupBox1.Controls.Add(this.tbSelectionToZip); - this.groupBox1.Controls.Add(this.label12); - this.groupBox1.Location = new System.Drawing.Point(6, -2); - this.groupBox1.Margin = new System.Windows.Forms.Padding(0); - this.groupBox1.Name = "groupBox1"; - this.groupBox1.Padding = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.groupBox1.Size = new System.Drawing.Size(572, 87); - this.groupBox1.TabIndex = 103; - this.groupBox1.TabStop = false; - // - // chkRecurse - // - this.chkRecurse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.chkRecurse.AutoSize = true; - this.chkRecurse.Checked = true; - this.chkRecurse.CheckState = System.Windows.Forms.CheckState.Checked; - this.chkRecurse.Location = new System.Drawing.Point(435, 15); - this.chkRecurse.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.chkRecurse.Name = "chkRecurse"; - this.chkRecurse.Size = new System.Drawing.Size(61, 17); - this.chkRecurse.TabIndex = 126; - this.chkRecurse.Text = "recurse"; - this.toolTip1.SetToolTip(this.chkRecurse, "recurse directories when adding"); - this.chkRecurse.UseVisualStyleBackColor = true; - // - // chkTraverseJunctions - // - this.chkTraverseJunctions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.chkTraverseJunctions.AutoSize = true; - this.chkTraverseJunctions.Checked = true; - this.chkTraverseJunctions.CheckState = System.Windows.Forms.CheckState.Checked; - this.chkTraverseJunctions.Location = new System.Drawing.Point(505, 15); - this.chkTraverseJunctions.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.chkTraverseJunctions.Name = "chkTraverseJunctions"; - this.chkTraverseJunctions.Size = new System.Drawing.Size(68, 18); - this.chkTraverseJunctions.TabIndex = 125; - this.chkTraverseJunctions.Text = "junctions"; - this.toolTip1.SetToolTip(this.chkTraverseJunctions, "traverse directory junctions and \r\nsymlinks when adding"); - this.chkTraverseJunctions.UseCompatibleTextRendering = true; - this.chkTraverseJunctions.UseVisualStyleBackColor = true; - // - // tbDirectoryInArchive - // - this.tbDirectoryInArchive.AcceptsReturn = true; - this.tbDirectoryInArchive.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.tbDirectoryInArchive.Location = new System.Drawing.Point(104, 38); - this.tbDirectoryInArchive.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tbDirectoryInArchive.Name = "tbDirectoryInArchive"; - this.tbDirectoryInArchive.Size = new System.Drawing.Size(432, 20); - this.tbDirectoryInArchive.TabIndex = 14; - this.toolTip1.SetToolTip(this.tbDirectoryInArchive, "the directory to use within the archive."); - // - // button1 - // - this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.button1.Location = new System.Drawing.Point(542, 63); - this.button1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.button1.Name = "button1"; - this.button1.Size = new System.Drawing.Size(24, 20); - this.button1.TabIndex = 21; - this.button1.Text = "+"; - this.toolTip1.SetToolTip(this.button1, "Add Selected files to the list of files to Save in the Zip"); - this.button1.UseVisualStyleBackColor = true; - this.button1.Click += new System.EventHandler(this.button1_Click); - // - // label14 - // - this.label14.AutoSize = true; - this.label14.Location = new System.Drawing.Point(6, 42); - this.label14.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label14.Name = "label14"; - this.label14.Size = new System.Drawing.Size(99, 13); - this.label14.TabIndex = 16; - this.label14.Text = "directory in archive:"; - // - // tbSelectionToZip - // - this.tbSelectionToZip.AcceptsReturn = true; - this.tbSelectionToZip.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.tbSelectionToZip.Location = new System.Drawing.Point(104, 63); - this.tbSelectionToZip.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tbSelectionToZip.Name = "tbSelectionToZip"; - this.tbSelectionToZip.Size = new System.Drawing.Size(432, 20); - this.tbSelectionToZip.TabIndex = 20; - this.tbSelectionToZip.Text = "*.*"; - this.toolTip1.SetToolTip(this.tbSelectionToZip, resources.GetString("tbSelectionToZip.ToolTip")); - // - // label12 - // - this.label12.AutoSize = true; - this.label12.Location = new System.Drawing.Point(6, 67); - this.label12.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.label12.Name = "label12"; - this.label12.Size = new System.Drawing.Size(52, 13); - this.label12.TabIndex = 95; - this.label12.Text = "selection:"; - // - // checkBox1 - // - this.checkBox1.AutoSize = true; - this.checkBox1.Location = new System.Drawing.Point(12, 322); - this.checkBox1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.checkBox1.Name = "checkBox1"; - this.checkBox1.Size = new System.Drawing.Size(15, 14); - this.checkBox1.TabIndex = 102; - this.checkBox1.TabStop = false; - this.toolTip1.SetToolTip(this.checkBox1, "select ALL"); - this.checkBox1.UseVisualStyleBackColor = true; - this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged_1); - // - // btnClearItemsToZip - // - this.btnClearItemsToZip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnClearItemsToZip.Location = new System.Drawing.Point(398, 460); - this.btnClearItemsToZip.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.btnClearItemsToZip.Name = "btnClearItemsToZip"; - this.btnClearItemsToZip.Size = new System.Drawing.Size(102, 26); - this.btnClearItemsToZip.TabIndex = 130; - this.btnClearItemsToZip.Text = "Remove Checked"; - this.toolTip1.SetToolTip(this.btnClearItemsToZip, "remove any checked files from the list of files to save in the zip"); - this.btnClearItemsToZip.UseVisualStyleBackColor = true; - this.btnClearItemsToZip.Click += new System.EventHandler(this.btnClearItemsToZip_Click); - // - // textBox1 - // - this.textBox1.AcceptsReturn = true; - this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.textBox1.Location = new System.Drawing.Point(362, 463); - this.textBox1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.textBox1.Name = "textBox1"; - this.textBox1.Size = new System.Drawing.Size(100, 20); - this.textBox1.TabIndex = 100; - this.toolTip1.SetToolTip(this.textBox1, "edit the value"); - this.textBox1.Visible = false; - this.textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress); - // - // listView2 - // - this.listView2.AllowColumnReorder = true; - this.listView2.AllowDrop = true; - this.listView2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.listView2.CheckBoxes = true; - this.listView2.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { - this.chCheckbox, - this.columnHeader1, - this.columnHeader2, - this.columnHeader3}); - this.listView2.DoubleClickActivation = false; - this.listView2.FullRowSelect = true; - this.listView2.GridLines = true; - this.listView2.Location = new System.Drawing.Point(6, 316); - this.listView2.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.listView2.MultiSelect = false; - this.listView2.Name = "listView2"; - this.listView2.Size = new System.Drawing.Size(572, 142); - this.listView2.TabIndex = 98; - this.listView2.UseCompatibleStateImageBehavior = false; - this.listView2.View = System.Windows.Forms.View.Details; - this.listView2.BeforeLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.listView2_BeforeLabelEdit); - this.listView2.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.listView2_ItemChecked); - this.listView2.DragDrop += new System.Windows.Forms.DragEventHandler(this.listView2_DragDrop); - this.listView2.DragEnter += new System.Windows.Forms.DragEventHandler(this.listView_DragEnter); - // - // chCheckbox - // - this.chCheckbox.Text = "?"; - this.chCheckbox.Width = 24; - // - // columnHeader1 - // - this.columnHeader1.Text = "File Name"; - // - // columnHeader2 - // - this.columnHeader2.Text = "Directory In Archive"; - // - // columnHeader3 - // - this.columnHeader3.Text = "File name in Archive"; - // - // tabPage3 - // - this.tabPage3.Controls.Add(this.richTextBox1); - this.tabPage3.Controls.Add(this.pictureBox1); - this.tabPage3.Location = new System.Drawing.Point(4, 22); - this.tabPage3.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tabPage3.Name = "tabPage3"; - this.tabPage3.Padding = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.tabPage3.Size = new System.Drawing.Size(584, 522); - this.tabPage3.TabIndex = 2; - this.tabPage3.Text = "About"; - this.tabPage3.UseVisualStyleBackColor = true; - // - // richTextBox1 - // - this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.richTextBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.richTextBox1.Location = new System.Drawing.Point(54, 20); - this.richTextBox1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.richTextBox1.Name = "richTextBox1"; - this.richTextBox1.Size = new System.Drawing.Size(518, 497); - this.richTextBox1.TabIndex = 2; - this.richTextBox1.Text = "Placeholder only. "; - this.richTextBox1.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.richTextBox1_LinkClicked); - // - // pictureBox1 - // - this.pictureBox1.Image = global::Ionic.Zip.Forms.Properties.Resources.zippedFile; - this.pictureBox1.Location = new System.Drawing.Point(6, 20); - this.pictureBox1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.pictureBox1.Name = "pictureBox1"; - this.pictureBox1.Size = new System.Drawing.Size(42, 52); - this.pictureBox1.TabIndex = 1; - this.pictureBox1.TabStop = false; - // - // ZipForm - // - this.AllowDrop = true; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(592, 548); - this.Controls.Add(this.tabControl1); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); - this.MinimumSize = new System.Drawing.Size(598, 458); - this.Name = "ZipForm"; - this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; - this.Text = "DotNetZip Tool"; - this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ZipForm_FormClosing); - this.Load += new System.EventHandler(this.ZipForm_Load); - this.tabControl1.ResumeLayout(false); - this.tabPage1.ResumeLayout(false); - this.tabPage1.PerformLayout(); - this.tabPage2.ResumeLayout(false); - this.tabPage2.PerformLayout(); - this.groupBox2.ResumeLayout(false); - this.groupBox2.PerformLayout(); - this.groupBox1.ResumeLayout(false); - this.groupBox1.PerformLayout(); - this.tabPage3.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.Label label1; - private System.Windows.Forms.Label label2; - private System.Windows.Forms.Label label3; - private System.Windows.Forms.Label label4; - private System.Windows.Forms.Label label5; - private System.Windows.Forms.Label label6; - private System.Windows.Forms.Label label7; - private System.Windows.Forms.Label label8; - private System.Windows.Forms.Label label9; - private System.Windows.Forms.Label label10; - private System.Windows.Forms.Label label11; - private System.Windows.Forms.Label label12; - private System.Windows.Forms.Label label13; - private System.Windows.Forms.Label label14; - private System.Windows.Forms.Label label15; - private System.Windows.Forms.Label label16; - private System.Windows.Forms.Label label17; - private System.Windows.Forms.Label label18; - private System.Windows.Forms.Label label19; - private System.Windows.Forms.Label label20; - private System.Windows.Forms.Label label21; - private System.Windows.Forms.Label label22; - private System.Windows.Forms.Button btnZipupDirBrowse; - private System.Windows.Forms.Button btnZipUp; - private System.Windows.Forms.Button btnOpenZip; - private System.Windows.Forms.Button btnCancel; - private System.Windows.Forms.ProgressBar progressBar1; - private System.Windows.Forms.ProgressBar progressBar2; - private System.Windows.Forms.Label lblStatus; - private System.Windows.Forms.TextBox tbDirectoryToZip; - private System.Windows.Forms.TextBox tbZipToCreate; - private System.Windows.Forms.TextBox tbComment; - private System.Windows.Forms.ComboBox comboEncoding; - private System.Windows.Forms.ComboBox comboCompLevel; - private System.Windows.Forms.ComboBox comboEncryption; - private System.Windows.Forms.TextBox tbPassword; - private System.Windows.Forms.CheckBox chkHidePassword; - private System.Windows.Forms.ListView listView1; - private System.Windows.Forms.TabControl tabControl1; - private System.Windows.Forms.TabPage tabPage1; - private System.Windows.Forms.TabPage tabPage2; - private System.Windows.Forms.Button btnReadZipBrowse; - private System.Windows.Forms.TextBox tbZipToOpen; - private System.Windows.Forms.Button btnExtract; - private System.Windows.Forms.Button btnCreateZipBrowse; - private System.Windows.Forms.Button btnExtractDirBrowse; - private System.Windows.Forms.TextBox tbExtractDir; - private System.Windows.Forms.TabPage tabPage3; - private System.Windows.Forms.PictureBox pictureBox1; - private System.Windows.Forms.RichTextBox richTextBox1; - private System.Windows.Forms.CheckBox chkOpenExplorer; - private System.Windows.Forms.TextBox tbSelectionToZip; - private System.Windows.Forms.ToolTip toolTip1; - private System.Windows.Forms.TextBox tbSelectionToExtract; - private System.Windows.Forms.TextBox tbDirectoryInArchive; - //private System.Windows.Forms.ListViewEx listView2; - //this.listView2 = new System.Windows.Forms.ListView(); - private ListViewEx.ListViewEx listView2; - private System.Windows.Forms.ComboBox comboZip64; - private System.Windows.Forms.ComboBox comboCompMethod; - private System.Windows.Forms.ComboBox comboFlavor; - private System.Windows.Forms.Button button1; - private System.Windows.Forms.ColumnHeader columnHeader1; - private System.Windows.Forms.ColumnHeader columnHeader2; - private System.Windows.Forms.TextBox textBox1; - private System.Windows.Forms.Button btnClearItemsToZip; - private System.Windows.Forms.ColumnHeader chCheckbox; - private System.Windows.Forms.CheckBox checkBox1; - private System.Windows.Forms.ColumnHeader columnHeader3; - private System.Windows.Forms.GroupBox groupBox1; - private System.Windows.Forms.GroupBox groupBox2; - private System.Windows.Forms.TextBox tbDefaultExtractDirectory; - private System.Windows.Forms.TextBox tbExeOnUnpack; - private System.Windows.Forms.CheckBox chkUnixTime; - private System.Windows.Forms.CheckBox chkWindowsTime; - private System.Windows.Forms.ComboBox comboSplit; - private System.Windows.Forms.CheckBox chkTraverseJunctions; - private System.Windows.Forms.CheckBox chkRecurse; - private System.Windows.Forms.CheckBox chkRemoveFiles; - private System.Windows.Forms.ComboBox comboExistingFileAction; - private System.Windows.Forms.ComboBox comboEncodingUsage; - } -} - +namespace Ionic.Zip.Forms +{ + partial class ZipForm + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ZipForm)); + this.tbDirectoryToZip = new System.Windows.Forms.TextBox(); + this.tbZipToCreate = new System.Windows.Forms.TextBox(); + this.btnZipupDirBrowse = new System.Windows.Forms.Button(); + this.btnZipUp = new System.Windows.Forms.Button(); + this.btnCancel = new System.Windows.Forms.Button(); + this.progressBar1 = new System.Windows.Forms.ProgressBar(); + this.progressBar2 = new System.Windows.Forms.ProgressBar(); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.label5 = new System.Windows.Forms.Label(); + this.label6 = new System.Windows.Forms.Label(); + this.label7 = new System.Windows.Forms.Label(); + this.label8 = new System.Windows.Forms.Label(); + this.label9 = new System.Windows.Forms.Label(); + this.label22 = new System.Windows.Forms.Label(); + this.comboEncoding = new System.Windows.Forms.ComboBox(); + this.tbComment = new System.Windows.Forms.TextBox(); + this.lblStatus = new System.Windows.Forms.Label(); + this.comboCompLevel = new System.Windows.Forms.ComboBox(); + this.comboEncryption = new System.Windows.Forms.ComboBox(); + this.tbPassword = new System.Windows.Forms.TextBox(); + this.chkHidePassword = new System.Windows.Forms.CheckBox(); + this.listView1 = new System.Windows.Forms.ListView(); + this.btnOpenZip = new System.Windows.Forms.Button(); + this.tabControl1 = new System.Windows.Forms.TabControl(); + this.tabPage1 = new System.Windows.Forms.TabPage(); + this.label20 = new System.Windows.Forms.Label(); + this.label19 = new System.Windows.Forms.Label(); + this.comboExistingFileAction = new System.Windows.Forms.ComboBox(); + this.tbSelectionToExtract = new System.Windows.Forms.TextBox(); + this.label13 = new System.Windows.Forms.Label(); + this.chkOpenExplorer = new System.Windows.Forms.CheckBox(); + this.btnExtractDirBrowse = new System.Windows.Forms.Button(); + this.tbExtractDir = new System.Windows.Forms.TextBox(); + this.label11 = new System.Windows.Forms.Label(); + this.label10 = new System.Windows.Forms.Label(); + this.btnExtract = new System.Windows.Forms.Button(); + this.btnReadZipBrowse = new System.Windows.Forms.Button(); + this.tbZipToOpen = new System.Windows.Forms.TextBox(); + this.tabPage2 = new System.Windows.Forms.TabPage(); + this.groupBox2 = new System.Windows.Forms.GroupBox(); + this.label21 = new System.Windows.Forms.Label(); + this.comboEncodingUsage = new System.Windows.Forms.ComboBox(); + this.label18 = new System.Windows.Forms.Label(); + this.chkRemoveFiles = new System.Windows.Forms.CheckBox(); + this.label17 = new System.Windows.Forms.Label(); + this.comboSplit = new System.Windows.Forms.ComboBox(); + this.chkUnixTime = new System.Windows.Forms.CheckBox(); + this.chkWindowsTime = new System.Windows.Forms.CheckBox(); + this.label16 = new System.Windows.Forms.Label(); + this.tbExeOnUnpack = new System.Windows.Forms.TextBox(); + this.label15 = new System.Windows.Forms.Label(); + this.tbDefaultExtractDirectory = new System.Windows.Forms.TextBox(); + this.comboZip64 = new System.Windows.Forms.ComboBox(); + this.comboCompMethod = new System.Windows.Forms.ComboBox(); + this.comboFlavor = new System.Windows.Forms.ComboBox(); + this.btnCreateZipBrowse = new System.Windows.Forms.Button(); + this.groupBox1 = new System.Windows.Forms.GroupBox(); + this.chkRecurse = new System.Windows.Forms.CheckBox(); + this.chkTraverseJunctions = new System.Windows.Forms.CheckBox(); + this.tbDirectoryInArchive = new System.Windows.Forms.TextBox(); + this.button1 = new System.Windows.Forms.Button(); + this.label14 = new System.Windows.Forms.Label(); + this.tbSelectionToZip = new System.Windows.Forms.TextBox(); + this.label12 = new System.Windows.Forms.Label(); + this.checkBox1 = new System.Windows.Forms.CheckBox(); + this.btnClearItemsToZip = new System.Windows.Forms.Button(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.listView2 = new ListViewEx.ListViewEx(); + this.chCheckbox = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); + this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); + this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); + this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); + this.tabPage3 = new System.Windows.Forms.TabPage(); + this.richTextBox1 = new System.Windows.Forms.RichTextBox(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); + this.tabControl1.SuspendLayout(); + this.tabPage1.SuspendLayout(); + this.tabPage2.SuspendLayout(); + this.groupBox2.SuspendLayout(); + this.groupBox1.SuspendLayout(); + this.tabPage3.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + this.SuspendLayout(); + // + // tbDirectoryToZip + // + this.tbDirectoryToZip.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.tbDirectoryToZip.Location = new System.Drawing.Point(104, 13); + this.tbDirectoryToZip.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tbDirectoryToZip.Name = "tbDirectoryToZip"; + this.tbDirectoryToZip.Size = new System.Drawing.Size(289, 20); + this.tbDirectoryToZip.TabIndex = 10; + this.tbDirectoryToZip.Leave += new System.EventHandler(this.tbDirectoryToZip_Leave); + // + // tbZipToCreate + // + this.tbZipToCreate.AcceptsReturn = true; + this.tbZipToCreate.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.tbZipToCreate.Location = new System.Drawing.Point(104, 11); + this.tbZipToCreate.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tbZipToCreate.Name = "tbZipToCreate"; + this.tbZipToCreate.Size = new System.Drawing.Size(432, 20); + this.tbZipToCreate.TabIndex = 30; + // + // btnZipupDirBrowse + // + this.btnZipupDirBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.btnZipupDirBrowse.Location = new System.Drawing.Point(399, 13); + this.btnZipupDirBrowse.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.btnZipupDirBrowse.Name = "btnZipupDirBrowse"; + this.btnZipupDirBrowse.Size = new System.Drawing.Size(24, 20); + this.btnZipupDirBrowse.TabIndex = 11; + this.btnZipupDirBrowse.Text = "..."; + this.toolTip1.SetToolTip(this.btnZipupDirBrowse, "Browse for a directory to search in"); + this.btnZipupDirBrowse.UseVisualStyleBackColor = true; + this.btnZipupDirBrowse.Click += new System.EventHandler(this.btnDirBrowse_Click); + // + // btnZipUp + // + this.btnZipUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnZipUp.Location = new System.Drawing.Point(512, 460); + this.btnZipUp.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.btnZipUp.Name = "btnZipUp"; + this.btnZipUp.Size = new System.Drawing.Size(66, 26); + this.btnZipUp.TabIndex = 140; + this.btnZipUp.Text = "Zip All"; + this.toolTip1.SetToolTip(this.btnZipUp, "actually save the Zip file. "); + this.btnZipUp.UseVisualStyleBackColor = true; + this.btnZipUp.Click += new System.EventHandler(this.btnZipup_Click); + // + // btnCancel + // + this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnCancel.Enabled = false; + this.btnCancel.Location = new System.Drawing.Point(512, 489); + this.btnCancel.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.btnCancel.Name = "btnCancel"; + this.btnCancel.Size = new System.Drawing.Size(66, 26); + this.btnCancel.TabIndex = 90; + this.btnCancel.Text = "Cancel"; + this.toolTip1.SetToolTip(this.btnCancel, "cancel the currently running operation"); + this.btnCancel.UseVisualStyleBackColor = true; + this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); + // + // progressBar1 + // + this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.progressBar1.Location = new System.Drawing.Point(6, 490); + this.progressBar1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.progressBar1.Name = "progressBar1"; + this.progressBar1.Size = new System.Drawing.Size(496, 10); + this.progressBar1.TabIndex = 4; + // + // progressBar2 + // + this.progressBar2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.progressBar2.Location = new System.Drawing.Point(6, 503); + this.progressBar2.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.progressBar2.Name = "progressBar2"; + this.progressBar2.Size = new System.Drawing.Size(496, 10); + this.progressBar2.TabIndex = 17; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(6, 17); + this.label1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(86, 13); + this.label1.TabIndex = 0; + this.label1.Text = "directory to add: "; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(6, 15); + this.label2.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(73, 13); + this.label2.TabIndex = 1; + this.label2.Text = "file to save to:"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(6, 39); + this.label3.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(36, 13); + this.label3.TabIndex = 2; + this.label3.Text = "flavor:"; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Location = new System.Drawing.Point(250, 64); + this.label4.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(45, 13); + this.label4.TabIndex = 3; + this.label4.Text = "level:"; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Location = new System.Drawing.Point(6, 89); + this.label5.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(54, 13); + this.label5.TabIndex = 4; + this.label5.Text = "encoding:"; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Location = new System.Drawing.Point(6, 139); + this.label6.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(53, 13); + this.label6.TabIndex = 6; + this.label6.Text = "comment:"; + // + // label7 + // + this.label7.AutoSize = true; + this.label7.Location = new System.Drawing.Point(6, 64); + this.label7.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(55, 13); + this.label7.TabIndex = 5; + this.label7.Text = "ZIP64?:"; + // + // label8 + // + this.label8.AutoSize = true; + this.label8.Location = new System.Drawing.Point(250, 89); + this.label8.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(59, 13); + this.label8.TabIndex = 91; + this.label8.Text = "encryption:"; + // + // label9 + // + this.label9.AutoSize = true; + this.label9.Location = new System.Drawing.Point(250, 114); + this.label9.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label9.Name = "label9"; + this.label9.Size = new System.Drawing.Size(55, 13); + this.label9.TabIndex = 93; + this.label9.Text = "password:"; + // + // label22 + // + this.label22.AutoSize = true; + this.label22.Location = new System.Drawing.Point(250, 39); + this.label22.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label22.Name = "label22"; + this.label22.Size = new System.Drawing.Size(59, 13); + this.label22.TabIndex = 94; + this.label22.Text = "method:"; + // + // comboEncoding + // + this.comboEncoding.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboEncoding.FormattingEnabled = true; + this.comboEncoding.Location = new System.Drawing.Point(104, 85); + this.comboEncoding.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.comboEncoding.Name = "comboEncoding"; + this.comboEncoding.Size = new System.Drawing.Size(128, 21); + this.comboEncoding.TabIndex = 60; + this.toolTip1.SetToolTip(this.comboEncoding, "use this encoding when saving the file"); + this.comboEncoding.SelectedIndexChanged += new System.EventHandler(this.comboEncoding_SelectedIndexChanged); + // + // tbComment + // + this.tbComment.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.tbComment.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.tbComment.ForeColor = System.Drawing.SystemColors.InactiveCaption; + this.tbComment.Location = new System.Drawing.Point(104, 133); + this.tbComment.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tbComment.Name = "tbComment"; + this.tbComment.Size = new System.Drawing.Size(432, 20); + this.tbComment.TabIndex = 100; + this.tbComment.Text = "-zip file comment here-"; + this.toolTip1.SetToolTip(this.tbComment, "a comment to embed in the zip file"); + this.tbComment.Enter += new System.EventHandler(this.tbComment_Enter); + this.tbComment.Leave += new System.EventHandler(this.tbComment_Leave); + // + // lblStatus + // + this.lblStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.lblStatus.AutoSize = true; + this.lblStatus.Location = new System.Drawing.Point(12, 471); + this.lblStatus.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.lblStatus.Name = "lblStatus"; + this.lblStatus.Size = new System.Drawing.Size(0, 13); + this.lblStatus.TabIndex = 8; + // + // comboCompLevel + // + this.comboCompLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboCompLevel.FormattingEnabled = true; + this.comboCompLevel.Location = new System.Drawing.Point(310, 60); + this.comboCompLevel.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.comboCompLevel.Name = "comboCompLevel"; + this.comboCompLevel.Size = new System.Drawing.Size(122, 21); + this.comboCompLevel.TabIndex = 50; + this.toolTip1.SetToolTip(this.comboCompLevel, "The compression level to use when creating the zip."); + // + // comboEncryption + // + this.comboEncryption.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboEncryption.FormattingEnabled = true; + this.comboEncryption.Location = new System.Drawing.Point(310, 85); + this.comboEncryption.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.comboEncryption.Name = "comboEncryption"; + this.comboEncryption.Size = new System.Drawing.Size(122, 21); + this.comboEncryption.TabIndex = 80; + this.toolTip1.SetToolTip(this.comboEncryption, "AES is not compatible with some other zip tools."); + this.comboEncryption.SelectedIndexChanged += new System.EventHandler(this.comboEncryption_SelectedIndexChanged); + // + // tbPassword + // + this.tbPassword.AcceptsReturn = true; + this.tbPassword.Location = new System.Drawing.Point(310, 110); + this.tbPassword.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tbPassword.Name = "tbPassword"; + this.tbPassword.PasswordChar = '*'; + this.tbPassword.Size = new System.Drawing.Size(104, 20); + this.tbPassword.TabIndex = 90; + this.tbPassword.Text = "c:\\dinoch\\dev\\dotnet\\zip\\test\\U.zip"; + this.tbPassword.TextChanged += new System.EventHandler(this.tbPassword_TextChanged); + // + // chkHidePassword + // + this.chkHidePassword.AutoSize = true; + this.chkHidePassword.Checked = true; + this.chkHidePassword.CheckState = System.Windows.Forms.CheckState.Checked; + this.chkHidePassword.Location = new System.Drawing.Point(418, 113); + this.chkHidePassword.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.chkHidePassword.Name = "chkHidePassword"; + this.chkHidePassword.Size = new System.Drawing.Size(15, 14); + this.chkHidePassword.TabIndex = 91; + this.toolTip1.SetToolTip(this.chkHidePassword, "check to hide password characters"); + this.chkHidePassword.UseVisualStyleBackColor = true; + this.chkHidePassword.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged); + // + // listView1 + // + this.listView1.AllowDrop = true; + this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.listView1.GridLines = true; + this.listView1.Location = new System.Drawing.Point(6, 137); + this.listView1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.listView1.Name = "listView1"; + this.listView1.Size = new System.Drawing.Size(572, 327); + this.listView1.TabIndex = 0; + this.listView1.UseCompatibleStateImageBehavior = false; + this.listView1.View = System.Windows.Forms.View.Details; + this.listView1.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listView1_ColumnClick); + this.listView1.DragDrop += new System.Windows.Forms.DragEventHandler(this.listView1_DragDrop); + this.listView1.DragEnter += new System.Windows.Forms.DragEventHandler(this.listView_DragEnter); + // + // btnOpenZip + // + this.btnOpenZip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.btnOpenZip.Location = new System.Drawing.Point(518, 27); + this.btnOpenZip.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.btnOpenZip.Name = "btnOpenZip"; + this.btnOpenZip.Size = new System.Drawing.Size(60, 24); + this.btnOpenZip.TabIndex = 14; + this.btnOpenZip.Text = "Open"; + this.toolTip1.SetToolTip(this.btnOpenZip, "open and read the zip file"); + this.btnOpenZip.UseVisualStyleBackColor = true; + this.btnOpenZip.Click += new System.EventHandler(this.btnOpen_Click); + // + // tabControl1 + // + this.tabControl1.AllowDrop = true; + this.tabControl1.Controls.Add(this.tabPage1); + this.tabControl1.Controls.Add(this.tabPage2); + this.tabControl1.Controls.Add(this.tabPage3); + this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControl1.Location = new System.Drawing.Point(0, 0); + this.tabControl1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tabControl1.Name = "tabControl1"; + this.tabControl1.SelectedIndex = 0; + this.tabControl1.Size = new System.Drawing.Size(592, 548); + this.tabControl1.TabIndex = 96; + this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged); + this.tabControl1.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.tabControl1_Selecting); + // + // tabPage1 + // + this.tabPage1.Controls.Add(this.label20); + this.tabPage1.Controls.Add(this.label19); + this.tabPage1.Controls.Add(this.comboExistingFileAction); + this.tabPage1.Controls.Add(this.tbSelectionToExtract); + this.tabPage1.Controls.Add(this.label13); + this.tabPage1.Controls.Add(this.chkOpenExplorer); + this.tabPage1.Controls.Add(this.btnExtractDirBrowse); + this.tabPage1.Controls.Add(this.tbExtractDir); + this.tabPage1.Controls.Add(this.label11); + this.tabPage1.Controls.Add(this.label10); + this.tabPage1.Controls.Add(this.btnExtract); + this.tabPage1.Controls.Add(this.btnReadZipBrowse); + this.tabPage1.Controls.Add(this.tbZipToOpen); + this.tabPage1.Controls.Add(this.listView1); + this.tabPage1.Controls.Add(this.btnOpenZip); + this.tabPage1.Location = new System.Drawing.Point(4, 22); + this.tabPage1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tabPage1.Name = "tabPage1"; + this.tabPage1.Padding = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tabPage1.Size = new System.Drawing.Size(584, 522); + this.tabPage1.TabIndex = 0; + this.tabPage1.Text = "Read/Extract"; + this.tabPage1.UseVisualStyleBackColor = true; + // + // label20 + // + this.label20.AutoSize = true; + this.label20.Location = new System.Drawing.Point(5, 33); + this.label20.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label20.Name = "label20"; + this.label20.Size = new System.Drawing.Size(54, 13); + this.label20.TabIndex = 43; + this.label20.Text = "encoding:"; + // + // label19 + // + this.label19.AutoSize = true; + this.label19.Location = new System.Drawing.Point(6, 114); + this.label19.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label19.Name = "label19"; + this.label19.Size = new System.Drawing.Size(108, 13); + this.label19.TabIndex = 42; + this.label19.Text = "action for existing file:"; + // + // comboExistingFileAction + // + this.comboExistingFileAction.FormattingEnabled = true; + this.comboExistingFileAction.Location = new System.Drawing.Point(114, 109); + this.comboExistingFileAction.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.comboExistingFileAction.Name = "comboExistingFileAction"; + this.comboExistingFileAction.Size = new System.Drawing.Size(104, 21); + this.comboExistingFileAction.TabIndex = 41; + this.toolTip1.SetToolTip(this.comboExistingFileAction, "What to do when extracting a file that already exists"); + // + // tbSelectionToExtract + // + this.tbSelectionToExtract.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.tbSelectionToExtract.Location = new System.Drawing.Point(60, 83); + this.tbSelectionToExtract.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tbSelectionToExtract.Name = "tbSelectionToExtract"; + this.tbSelectionToExtract.Size = new System.Drawing.Size(489, 20); + this.tbSelectionToExtract.TabIndex = 24; + this.tbSelectionToExtract.Text = "*.*"; + this.toolTip1.SetToolTip(this.tbSelectionToExtract, "Selection criteria. eg, (name = *.* and size> 1000) etc. Also use atime/mtime/c" + + "time and attributes. (HRSA)"); + // + // label13 + // + this.label13.AutoSize = true; + this.label13.Location = new System.Drawing.Point(6, 87); + this.label13.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label13.Name = "label13"; + this.label13.Size = new System.Drawing.Size(52, 13); + this.label13.TabIndex = 27; + this.label13.Text = "selection:"; + // + // chkOpenExplorer + // + this.chkOpenExplorer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.chkOpenExplorer.AutoSize = true; + this.chkOpenExplorer.Location = new System.Drawing.Point(236, 111); + this.chkOpenExplorer.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.chkOpenExplorer.Name = "chkOpenExplorer"; + this.chkOpenExplorer.Size = new System.Drawing.Size(91, 17); + this.chkOpenExplorer.TabIndex = 28; + this.chkOpenExplorer.Text = "open Explorer"; + this.toolTip1.SetToolTip(this.chkOpenExplorer, "open explorer after extraction"); + this.chkOpenExplorer.UseVisualStyleBackColor = true; + // + // btnExtractDirBrowse + // + this.btnExtractDirBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.btnExtractDirBrowse.Location = new System.Drawing.Point(554, 54); + this.btnExtractDirBrowse.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.btnExtractDirBrowse.Name = "btnExtractDirBrowse"; + this.btnExtractDirBrowse.Size = new System.Drawing.Size(24, 24); + this.btnExtractDirBrowse.TabIndex = 23; + this.btnExtractDirBrowse.Text = "..."; + this.btnExtractDirBrowse.UseVisualStyleBackColor = true; + this.btnExtractDirBrowse.Click += new System.EventHandler(this.btnExtractDirBrowse_Click); + // + // tbExtractDir + // + this.tbExtractDir.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.tbExtractDir.Location = new System.Drawing.Point(60, 57); + this.tbExtractDir.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tbExtractDir.Name = "tbExtractDir"; + this.tbExtractDir.Size = new System.Drawing.Size(489, 20); + this.tbExtractDir.TabIndex = 22; + // + // label11 + // + this.label11.AutoSize = true; + this.label11.Location = new System.Drawing.Point(6, 61); + this.label11.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label11.Name = "label11"; + this.label11.Size = new System.Drawing.Size(54, 13); + this.label11.TabIndex = 16; + this.label11.Text = "extract to:"; + // + // label10 + // + this.label10.AutoSize = true; + this.label10.Location = new System.Drawing.Point(6, 9); + this.label10.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label10.Name = "label10"; + this.label10.Size = new System.Drawing.Size(45, 13); + this.label10.TabIndex = 15; + this.label10.Text = "archive:"; + // + // btnExtract + // + this.btnExtract.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.btnExtract.Enabled = false; + this.btnExtract.Location = new System.Drawing.Point(518, 106); + this.btnExtract.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.btnExtract.Name = "btnExtract"; + this.btnExtract.Size = new System.Drawing.Size(60, 24); + this.btnExtract.TabIndex = 24; + this.btnExtract.Text = "Extract"; + this.btnExtract.UseVisualStyleBackColor = true; + this.btnExtract.Click += new System.EventHandler(this.btnExtract_Click); + // + // btnReadZipBrowse + // + this.btnReadZipBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.btnReadZipBrowse.Location = new System.Drawing.Point(554, 3); + this.btnReadZipBrowse.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.btnReadZipBrowse.Name = "btnReadZipBrowse"; + this.btnReadZipBrowse.Size = new System.Drawing.Size(24, 24); + this.btnReadZipBrowse.TabIndex = 13; + this.btnReadZipBrowse.Text = "..."; + this.btnReadZipBrowse.UseVisualStyleBackColor = true; + this.btnReadZipBrowse.Click += new System.EventHandler(this.btnZipBrowse_Click); + // + // tbZipToOpen + // + this.tbZipToOpen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.tbZipToOpen.Location = new System.Drawing.Point(60, 5); + this.tbZipToOpen.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tbZipToOpen.Name = "tbZipToOpen"; + this.tbZipToOpen.Size = new System.Drawing.Size(489, 20); + this.tbZipToOpen.TabIndex = 12; + // + // tabPage2 + // + this.tabPage2.Controls.Add(this.groupBox2); + this.tabPage2.Controls.Add(this.groupBox1); + this.tabPage2.Controls.Add(this.checkBox1); + this.tabPage2.Controls.Add(this.btnClearItemsToZip); + this.tabPage2.Controls.Add(this.textBox1); + this.tabPage2.Controls.Add(this.listView2); + this.tabPage2.Controls.Add(this.progressBar2); + this.tabPage2.Controls.Add(this.lblStatus); + this.tabPage2.Controls.Add(this.btnCancel); + this.tabPage2.Controls.Add(this.progressBar1); + this.tabPage2.Controls.Add(this.btnZipUp); + this.tabPage2.Location = new System.Drawing.Point(4, 22); + this.tabPage2.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tabPage2.Name = "tabPage2"; + this.tabPage2.Padding = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tabPage2.Size = new System.Drawing.Size(584, 522); + this.tabPage2.TabIndex = 1; + this.tabPage2.Text = "Create"; + this.tabPage2.UseVisualStyleBackColor = true; + // + // groupBox2 + // + this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.groupBox2.Controls.Add(this.label21); + this.groupBox2.Controls.Add(this.comboEncodingUsage); + this.groupBox2.Controls.Add(this.label18); + this.groupBox2.Controls.Add(this.chkRemoveFiles); + this.groupBox2.Controls.Add(this.label17); + this.groupBox2.Controls.Add(this.comboSplit); + this.groupBox2.Controls.Add(this.chkUnixTime); + this.groupBox2.Controls.Add(this.chkWindowsTime); + this.groupBox2.Controls.Add(this.label16); + this.groupBox2.Controls.Add(this.tbExeOnUnpack); + this.groupBox2.Controls.Add(this.label15); + this.groupBox2.Controls.Add(this.tbDefaultExtractDirectory); + this.groupBox2.Controls.Add(this.label2); + this.groupBox2.Controls.Add(this.tbZipToCreate); + this.groupBox2.Controls.Add(this.label4); + this.groupBox2.Controls.Add(this.comboEncoding); + this.groupBox2.Controls.Add(this.label5); + this.groupBox2.Controls.Add(this.tbComment); + this.groupBox2.Controls.Add(this.comboZip64); + this.groupBox2.Controls.Add(this.comboCompLevel); + this.groupBox2.Controls.Add(this.label3); + this.groupBox2.Controls.Add(this.comboFlavor); + this.groupBox2.Controls.Add(this.label6); + this.groupBox2.Controls.Add(this.btnCreateZipBrowse); + this.groupBox2.Controls.Add(this.label7); + this.groupBox2.Controls.Add(this.chkHidePassword); + this.groupBox2.Controls.Add(this.comboCompMethod); + this.groupBox2.Controls.Add(this.tbPassword); + this.groupBox2.Controls.Add(this.label8); + this.groupBox2.Controls.Add(this.label9); + this.groupBox2.Controls.Add(this.label22); + this.groupBox2.Controls.Add(this.comboEncryption); + this.groupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.groupBox2.Location = new System.Drawing.Point(6, 84); + this.groupBox2.Margin = new System.Windows.Forms.Padding(0); + this.groupBox2.Name = "groupBox2"; + this.groupBox2.Padding = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.groupBox2.Size = new System.Drawing.Size(572, 230); + this.groupBox2.TabIndex = 104; + this.groupBox2.TabStop = false; + // + // label21 + // + this.label21.AutoSize = true; + this.label21.Location = new System.Drawing.Point(6, 112); + this.label21.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label21.Name = "label21"; + this.label21.Size = new System.Drawing.Size(86, 13); + this.label21.TabIndex = 127; + this.label21.Text = "encoding usage:"; + // + // comboEncodingUsage + // + this.comboEncodingUsage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboEncodingUsage.FormattingEnabled = true; + this.comboEncodingUsage.Location = new System.Drawing.Point(104, 108); + this.comboEncodingUsage.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.comboEncodingUsage.Name = "comboEncodingUsage"; + this.comboEncodingUsage.Size = new System.Drawing.Size(128, 21); + this.comboEncodingUsage.TabIndex = 128; + this.toolTip1.SetToolTip(this.comboEncodingUsage, "use this encoding when saving the file"); + // + // label18 + // + this.label18.AutoSize = true; + this.label18.Location = new System.Drawing.Point(6, 209); + this.label18.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label18.Name = "label18"; + this.label18.Size = new System.Drawing.Size(66, 13); + this.label18.TabIndex = 126; + this.label18.Text = "remove files:"; + // + // chkRemoveFiles + // + this.chkRemoveFiles.AutoSize = true; + this.chkRemoveFiles.Location = new System.Drawing.Point(104, 208); + this.chkRemoveFiles.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.chkRemoveFiles.Name = "chkRemoveFiles"; + this.chkRemoveFiles.Size = new System.Drawing.Size(15, 14); + this.chkRemoveFiles.TabIndex = 125; + this.toolTip1.SetToolTip(this.chkRemoveFiles, "remove files after running post-extract command"); + this.chkRemoveFiles.UseVisualStyleBackColor = true; + // + // label17 + // + this.label17.AutoSize = true; + this.label17.Location = new System.Drawing.Point(447, 89); + this.label17.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label17.Name = "label17"; + this.label17.Size = new System.Drawing.Size(28, 13); + this.label17.TabIndex = 124; + this.label17.Text = "split:"; + // + // comboSplit + // + this.comboSplit.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboSplit.FormattingEnabled = true; + this.comboSplit.Location = new System.Drawing.Point(477, 85); + this.comboSplit.Name = "comboSplit"; + this.comboSplit.Size = new System.Drawing.Size(85, 21); + this.comboSplit.TabIndex = 123; + this.toolTip1.SetToolTip(this.comboSplit, "segment size when creating a spanned archive"); + this.comboSplit.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBox1_DrawItem); + // + // chkUnixTime + // + this.chkUnixTime.AutoSize = true; + this.chkUnixTime.Location = new System.Drawing.Point(450, 60); + this.chkUnixTime.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.chkUnixTime.Name = "chkUnixTime"; + this.chkUnixTime.Size = new System.Drawing.Size(77, 17); + this.chkUnixTime.TabIndex = 122; + this.chkUnixTime.Text = "times: Unix"; + this.toolTip1.SetToolTip(this.chkUnixTime, "store extended times in Unix format"); + this.chkUnixTime.UseVisualStyleBackColor = true; + // + // chkWindowsTime + // + this.chkWindowsTime.AutoSize = true; + this.chkWindowsTime.Checked = true; + this.chkWindowsTime.CheckState = System.Windows.Forms.CheckState.Checked; + this.chkWindowsTime.Location = new System.Drawing.Point(450, 39); + this.chkWindowsTime.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.chkWindowsTime.Name = "chkWindowsTime"; + this.chkWindowsTime.Size = new System.Drawing.Size(100, 17); + this.chkWindowsTime.TabIndex = 121; + this.chkWindowsTime.Text = "times: Windows"; + this.toolTip1.SetToolTip(this.chkWindowsTime, "store extended times in Windows format"); + this.chkWindowsTime.UseVisualStyleBackColor = true; + // + // label16 + // + this.label16.AutoSize = true; + this.label16.Location = new System.Drawing.Point(6, 185); + this.label16.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label16.Name = "label16"; + this.label16.Size = new System.Drawing.Size(81, 13); + this.label16.TabIndex = 100; + this.label16.Text = "exe on unpack:"; + // + // tbExeOnUnpack + // + this.tbExeOnUnpack.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.tbExeOnUnpack.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.tbExeOnUnpack.ForeColor = System.Drawing.SystemColors.InactiveCaption; + this.tbExeOnUnpack.Location = new System.Drawing.Point(104, 181); + this.tbExeOnUnpack.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tbExeOnUnpack.Name = "tbExeOnUnpack"; + this.tbExeOnUnpack.Size = new System.Drawing.Size(432, 20); + this.tbExeOnUnpack.TabIndex = 120; + this.tbExeOnUnpack.Text = "-command line to execute here-"; + this.toolTip1.SetToolTip(this.tbExeOnUnpack, "command to run upon successful extract of SFX"); + this.tbExeOnUnpack.TextChanged += new System.EventHandler(this.tbExeOnUnpack_TextChanged); + this.tbExeOnUnpack.Enter += new System.EventHandler(this.tbExeOnUnpack_Enter); + this.tbExeOnUnpack.Leave += new System.EventHandler(this.tbExeOnUnpack_Leave); + // + // label15 + // + this.label15.AutoSize = true; + this.label15.Location = new System.Drawing.Point(6, 161); + this.label15.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label15.Name = "label15"; + this.label15.Size = new System.Drawing.Size(91, 13); + this.label15.TabIndex = 98; + this.label15.Text = "default extract dir:"; + // + // tbDefaultExtractDirectory + // + this.tbDefaultExtractDirectory.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.tbDefaultExtractDirectory.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.tbDefaultExtractDirectory.ForeColor = System.Drawing.SystemColors.InactiveCaption; + this.tbDefaultExtractDirectory.Location = new System.Drawing.Point(104, 157); + this.tbDefaultExtractDirectory.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tbDefaultExtractDirectory.Name = "tbDefaultExtractDirectory"; + this.tbDefaultExtractDirectory.Size = new System.Drawing.Size(432, 20); + this.tbDefaultExtractDirectory.TabIndex = 110; + this.tbDefaultExtractDirectory.Tag = "b"; + this.tbDefaultExtractDirectory.Text = "-default extract directory-"; + this.toolTip1.SetToolTip(this.tbDefaultExtractDirectory, "optional default extraction directory for SFX"); + this.tbDefaultExtractDirectory.Enter += new System.EventHandler(this.tbDefaultExtractDirectory_Enter); + this.tbDefaultExtractDirectory.Leave += new System.EventHandler(this.tbDefaultExtractDirectory_Leave); + // + // comboZip64 + // + this.comboZip64.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboZip64.FormattingEnabled = true; + this.comboZip64.Location = new System.Drawing.Point(104, 60); + this.comboZip64.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.comboZip64.Name = "comboZip64"; + this.comboZip64.Size = new System.Drawing.Size(128, 21); + this.comboZip64.TabIndex = 70; + this.toolTip1.SetToolTip(this.comboZip64, "ZIP64 is not compatible with some other zip tools."); + // + // comboCompMethod + // + this.comboCompMethod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboCompMethod.FormattingEnabled = true; + this.comboCompMethod.Location = new System.Drawing.Point(310, 35); + this.comboCompMethod.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.comboCompMethod.Name = "comboCompMethod"; + this.comboCompMethod.Size = new System.Drawing.Size(122, 21); + this.comboCompMethod.TabIndex = 71; + this.comboCompMethod.SelectedIndexChanged += new System.EventHandler(this.comboCompMethod_SelectedIndexChanged); + + this.toolTip1.SetToolTip(this.comboCompMethod, "BZip2 is not compatible with some other zip tools."); + // + // comboFlavor + // + this.comboFlavor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.comboFlavor.FormattingEnabled = true; + this.comboFlavor.Location = new System.Drawing.Point(104, 35); + this.comboFlavor.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.comboFlavor.Name = "comboFlavor"; + this.comboFlavor.Size = new System.Drawing.Size(128, 21); + this.comboFlavor.TabIndex = 40; + this.comboFlavor.SelectedIndexChanged += new System.EventHandler(this.comboFlavor_SelectedIndexChanged); + // + // btnCreateZipBrowse + // + this.btnCreateZipBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.btnCreateZipBrowse.Location = new System.Drawing.Point(542, 10); + this.btnCreateZipBrowse.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.btnCreateZipBrowse.Name = "btnCreateZipBrowse"; + this.btnCreateZipBrowse.Size = new System.Drawing.Size(24, 20); + this.btnCreateZipBrowse.TabIndex = 31; + this.btnCreateZipBrowse.Text = "..."; + this.toolTip1.SetToolTip(this.btnCreateZipBrowse, "browse for a file to save to"); + this.btnCreateZipBrowse.UseVisualStyleBackColor = true; + this.btnCreateZipBrowse.Click += new System.EventHandler(this.btnCreateZipBrowse_Click); + // + // groupBox1 + // + this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.groupBox1.Controls.Add(this.chkRecurse); + this.groupBox1.Controls.Add(this.chkTraverseJunctions); + this.groupBox1.Controls.Add(this.tbDirectoryToZip); + this.groupBox1.Controls.Add(this.label1); + this.groupBox1.Controls.Add(this.btnZipupDirBrowse); + this.groupBox1.Controls.Add(this.tbDirectoryInArchive); + this.groupBox1.Controls.Add(this.button1); + this.groupBox1.Controls.Add(this.label14); + this.groupBox1.Controls.Add(this.tbSelectionToZip); + this.groupBox1.Controls.Add(this.label12); + this.groupBox1.Location = new System.Drawing.Point(6, -2); + this.groupBox1.Margin = new System.Windows.Forms.Padding(0); + this.groupBox1.Name = "groupBox1"; + this.groupBox1.Padding = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.groupBox1.Size = new System.Drawing.Size(572, 87); + this.groupBox1.TabIndex = 103; + this.groupBox1.TabStop = false; + // + // chkRecurse + // + this.chkRecurse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.chkRecurse.AutoSize = true; + this.chkRecurse.Checked = true; + this.chkRecurse.CheckState = System.Windows.Forms.CheckState.Checked; + this.chkRecurse.Location = new System.Drawing.Point(435, 15); + this.chkRecurse.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.chkRecurse.Name = "chkRecurse"; + this.chkRecurse.Size = new System.Drawing.Size(61, 17); + this.chkRecurse.TabIndex = 126; + this.chkRecurse.Text = "recurse"; + this.toolTip1.SetToolTip(this.chkRecurse, "recurse directories when adding"); + this.chkRecurse.UseVisualStyleBackColor = true; + // + // chkTraverseJunctions + // + this.chkTraverseJunctions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.chkTraverseJunctions.AutoSize = true; + this.chkTraverseJunctions.Checked = true; + this.chkTraverseJunctions.CheckState = System.Windows.Forms.CheckState.Checked; + this.chkTraverseJunctions.Location = new System.Drawing.Point(505, 15); + this.chkTraverseJunctions.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.chkTraverseJunctions.Name = "chkTraverseJunctions"; + this.chkTraverseJunctions.Size = new System.Drawing.Size(68, 18); + this.chkTraverseJunctions.TabIndex = 125; + this.chkTraverseJunctions.Text = "junctions"; + this.toolTip1.SetToolTip(this.chkTraverseJunctions, "traverse directory junctions and \r\nsymlinks when adding"); + this.chkTraverseJunctions.UseCompatibleTextRendering = true; + this.chkTraverseJunctions.UseVisualStyleBackColor = true; + // + // tbDirectoryInArchive + // + this.tbDirectoryInArchive.AcceptsReturn = true; + this.tbDirectoryInArchive.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.tbDirectoryInArchive.Location = new System.Drawing.Point(104, 38); + this.tbDirectoryInArchive.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tbDirectoryInArchive.Name = "tbDirectoryInArchive"; + this.tbDirectoryInArchive.Size = new System.Drawing.Size(432, 20); + this.tbDirectoryInArchive.TabIndex = 14; + this.toolTip1.SetToolTip(this.tbDirectoryInArchive, "the directory to use within the archive."); + // + // button1 + // + this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.button1.Location = new System.Drawing.Point(542, 63); + this.button1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(24, 20); + this.button1.TabIndex = 21; + this.button1.Text = "+"; + this.toolTip1.SetToolTip(this.button1, "Add Selected files to the list of files to Save in the Zip"); + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // label14 + // + this.label14.AutoSize = true; + this.label14.Location = new System.Drawing.Point(6, 42); + this.label14.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label14.Name = "label14"; + this.label14.Size = new System.Drawing.Size(99, 13); + this.label14.TabIndex = 16; + this.label14.Text = "directory in archive:"; + // + // tbSelectionToZip + // + this.tbSelectionToZip.AcceptsReturn = true; + this.tbSelectionToZip.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.tbSelectionToZip.Location = new System.Drawing.Point(104, 63); + this.tbSelectionToZip.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tbSelectionToZip.Name = "tbSelectionToZip"; + this.tbSelectionToZip.Size = new System.Drawing.Size(432, 20); + this.tbSelectionToZip.TabIndex = 20; + this.tbSelectionToZip.Text = "*.*"; + this.toolTip1.SetToolTip(this.tbSelectionToZip, resources.GetString("tbSelectionToZip.ToolTip")); + // + // label12 + // + this.label12.AutoSize = true; + this.label12.Location = new System.Drawing.Point(6, 67); + this.label12.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label12.Name = "label12"; + this.label12.Size = new System.Drawing.Size(52, 13); + this.label12.TabIndex = 95; + this.label12.Text = "selection:"; + // + // checkBox1 + // + this.checkBox1.AutoSize = true; + this.checkBox1.Location = new System.Drawing.Point(12, 322); + this.checkBox1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.checkBox1.Name = "checkBox1"; + this.checkBox1.Size = new System.Drawing.Size(15, 14); + this.checkBox1.TabIndex = 102; + this.checkBox1.TabStop = false; + this.toolTip1.SetToolTip(this.checkBox1, "select ALL"); + this.checkBox1.UseVisualStyleBackColor = true; + this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged_1); + // + // btnClearItemsToZip + // + this.btnClearItemsToZip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnClearItemsToZip.Location = new System.Drawing.Point(398, 460); + this.btnClearItemsToZip.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.btnClearItemsToZip.Name = "btnClearItemsToZip"; + this.btnClearItemsToZip.Size = new System.Drawing.Size(102, 26); + this.btnClearItemsToZip.TabIndex = 130; + this.btnClearItemsToZip.Text = "Remove Checked"; + this.toolTip1.SetToolTip(this.btnClearItemsToZip, "remove any checked files from the list of files to save in the zip"); + this.btnClearItemsToZip.UseVisualStyleBackColor = true; + this.btnClearItemsToZip.Click += new System.EventHandler(this.btnClearItemsToZip_Click); + // + // textBox1 + // + this.textBox1.AcceptsReturn = true; + this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.textBox1.Location = new System.Drawing.Point(362, 463); + this.textBox1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(100, 20); + this.textBox1.TabIndex = 100; + this.toolTip1.SetToolTip(this.textBox1, "edit the value"); + this.textBox1.Visible = false; + this.textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress); + // + // listView2 + // + this.listView2.AllowColumnReorder = true; + this.listView2.AllowDrop = true; + this.listView2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.listView2.CheckBoxes = true; + this.listView2.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { + this.chCheckbox, + this.columnHeader1, + this.columnHeader2, + this.columnHeader3}); + this.listView2.DoubleClickActivation = false; + this.listView2.FullRowSelect = true; + this.listView2.GridLines = true; + this.listView2.Location = new System.Drawing.Point(6, 316); + this.listView2.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.listView2.MultiSelect = false; + this.listView2.Name = "listView2"; + this.listView2.Size = new System.Drawing.Size(572, 142); + this.listView2.TabIndex = 98; + this.listView2.UseCompatibleStateImageBehavior = false; + this.listView2.View = System.Windows.Forms.View.Details; + this.listView2.BeforeLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.listView2_BeforeLabelEdit); + this.listView2.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.listView2_ItemChecked); + this.listView2.DragDrop += new System.Windows.Forms.DragEventHandler(this.listView2_DragDrop); + this.listView2.DragEnter += new System.Windows.Forms.DragEventHandler(this.listView_DragEnter); + // + // chCheckbox + // + this.chCheckbox.Text = "?"; + this.chCheckbox.Width = 24; + // + // columnHeader1 + // + this.columnHeader1.Text = "File Name"; + // + // columnHeader2 + // + this.columnHeader2.Text = "Directory In Archive"; + // + // columnHeader3 + // + this.columnHeader3.Text = "File name in Archive"; + // + // tabPage3 + // + this.tabPage3.Controls.Add(this.richTextBox1); + this.tabPage3.Controls.Add(this.pictureBox1); + this.tabPage3.Location = new System.Drawing.Point(4, 22); + this.tabPage3.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tabPage3.Name = "tabPage3"; + this.tabPage3.Padding = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.tabPage3.Size = new System.Drawing.Size(584, 522); + this.tabPage3.TabIndex = 2; + this.tabPage3.Text = "About"; + this.tabPage3.UseVisualStyleBackColor = true; + // + // richTextBox1 + // + this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.richTextBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.richTextBox1.Location = new System.Drawing.Point(54, 20); + this.richTextBox1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.richTextBox1.Name = "richTextBox1"; + this.richTextBox1.Size = new System.Drawing.Size(518, 497); + this.richTextBox1.TabIndex = 2; + this.richTextBox1.Text = "Placeholder only. "; + this.richTextBox1.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.richTextBox1_LinkClicked); + // + // pictureBox1 + // + this.pictureBox1.Image = global::Ionic.Zip.Forms.Properties.Resources.zippedFile; + this.pictureBox1.Location = new System.Drawing.Point(6, 20); + this.pictureBox1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(42, 52); + this.pictureBox1.TabIndex = 1; + this.pictureBox1.TabStop = false; + // + // ZipForm + // + this.AllowDrop = true; + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(592, 548); + this.Controls.Add(this.tabControl1); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.MinimumSize = new System.Drawing.Size(598, 458); + this.Name = "ZipForm"; + this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; + this.Text = "DotNetZip Tool"; + this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ZipForm_FormClosing); + this.Load += new System.EventHandler(this.ZipForm_Load); + this.tabControl1.ResumeLayout(false); + this.tabPage1.ResumeLayout(false); + this.tabPage1.PerformLayout(); + this.tabPage2.ResumeLayout(false); + this.tabPage2.PerformLayout(); + this.groupBox2.ResumeLayout(false); + this.groupBox2.PerformLayout(); + this.groupBox1.ResumeLayout(false); + this.groupBox1.PerformLayout(); + this.tabPage3.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.Label label6; + private System.Windows.Forms.Label label7; + private System.Windows.Forms.Label label8; + private System.Windows.Forms.Label label9; + private System.Windows.Forms.Label label10; + private System.Windows.Forms.Label label11; + private System.Windows.Forms.Label label12; + private System.Windows.Forms.Label label13; + private System.Windows.Forms.Label label14; + private System.Windows.Forms.Label label15; + private System.Windows.Forms.Label label16; + private System.Windows.Forms.Label label17; + private System.Windows.Forms.Label label18; + private System.Windows.Forms.Label label19; + private System.Windows.Forms.Label label20; + private System.Windows.Forms.Label label21; + private System.Windows.Forms.Label label22; + private System.Windows.Forms.Button btnZipupDirBrowse; + private System.Windows.Forms.Button btnZipUp; + private System.Windows.Forms.Button btnOpenZip; + private System.Windows.Forms.Button btnCancel; + private System.Windows.Forms.ProgressBar progressBar1; + private System.Windows.Forms.ProgressBar progressBar2; + private System.Windows.Forms.Label lblStatus; + private System.Windows.Forms.TextBox tbDirectoryToZip; + private System.Windows.Forms.TextBox tbZipToCreate; + private System.Windows.Forms.TextBox tbComment; + private System.Windows.Forms.ComboBox comboEncoding; + private System.Windows.Forms.ComboBox comboCompLevel; + private System.Windows.Forms.ComboBox comboEncryption; + private System.Windows.Forms.TextBox tbPassword; + private System.Windows.Forms.CheckBox chkHidePassword; + private System.Windows.Forms.ListView listView1; + private System.Windows.Forms.TabControl tabControl1; + private System.Windows.Forms.TabPage tabPage1; + private System.Windows.Forms.TabPage tabPage2; + private System.Windows.Forms.Button btnReadZipBrowse; + private System.Windows.Forms.TextBox tbZipToOpen; + private System.Windows.Forms.Button btnExtract; + private System.Windows.Forms.Button btnCreateZipBrowse; + private System.Windows.Forms.Button btnExtractDirBrowse; + private System.Windows.Forms.TextBox tbExtractDir; + private System.Windows.Forms.TabPage tabPage3; + private System.Windows.Forms.PictureBox pictureBox1; + private System.Windows.Forms.RichTextBox richTextBox1; + private System.Windows.Forms.CheckBox chkOpenExplorer; + private System.Windows.Forms.TextBox tbSelectionToZip; + private System.Windows.Forms.ToolTip toolTip1; + private System.Windows.Forms.TextBox tbSelectionToExtract; + private System.Windows.Forms.TextBox tbDirectoryInArchive; + //private System.Windows.Forms.ListViewEx listView2; + //this.listView2 = new System.Windows.Forms.ListView(); + private ListViewEx.ListViewEx listView2; + private System.Windows.Forms.ComboBox comboZip64; + private System.Windows.Forms.ComboBox comboCompMethod; + private System.Windows.Forms.ComboBox comboFlavor; + private System.Windows.Forms.Button button1; + private System.Windows.Forms.ColumnHeader columnHeader1; + private System.Windows.Forms.ColumnHeader columnHeader2; + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.Button btnClearItemsToZip; + private System.Windows.Forms.ColumnHeader chCheckbox; + private System.Windows.Forms.CheckBox checkBox1; + private System.Windows.Forms.ColumnHeader columnHeader3; + private System.Windows.Forms.GroupBox groupBox1; + private System.Windows.Forms.GroupBox groupBox2; + private System.Windows.Forms.TextBox tbDefaultExtractDirectory; + private System.Windows.Forms.TextBox tbExeOnUnpack; + private System.Windows.Forms.CheckBox chkUnixTime; + private System.Windows.Forms.CheckBox chkWindowsTime; + private System.Windows.Forms.ComboBox comboSplit; + private System.Windows.Forms.CheckBox chkTraverseJunctions; + private System.Windows.Forms.CheckBox chkRecurse; + private System.Windows.Forms.CheckBox chkRemoveFiles; + private System.Windows.Forms.ComboBox comboExistingFileAction; + private System.Windows.Forms.ComboBox comboEncodingUsage; + } +} + diff --git a/src/Tools/WinFormsApp/ZipForm.cs b/old/src/Tools/WinFormsApp/ZipForm.cs similarity index 97% rename from src/Tools/WinFormsApp/ZipForm.cs rename to old/src/Tools/WinFormsApp/ZipForm.cs index aacd73e..9bc1c19 100644 --- a/src/Tools/WinFormsApp/ZipForm.cs +++ b/old/src/Tools/WinFormsApp/ZipForm.cs @@ -1,2154 +1,2154 @@ -// ZipForm.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009-2011 Dino Chiesa -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// - -using System; -using System.Collections.Generic; -using System.Threading; -using System.Windows.Forms; -using Ionic.Zip; - -namespace Ionic.Zip.Forms -{ - public partial class ZipForm : Form - { - delegate void ZipProgress(ZipProgressEventArgs e); - delegate void ButtonClick(object sender, EventArgs e); - HiResTimer _hrt; - - public ZipForm() - { - InitializeComponent(); - - InitializeListboxes(); - FixTitle(); - FillFormFromRegistry(); - AdoptProgressBars(); - SetListView2(); - SetTextBoxes(); - - // first run only - if (numRuns == 0) - this.tabControl1.SelectedIndex = 2; // help/about tab - } - - // This constructor works to load zips from the command line. - // It also works to allow "open With..." from Windows Explorer. - public ZipForm(string[] args) - : this() - { - if (args != null && args.Length >= 1 && args[0] != null) - _initialFileToLoad = args[0]; - } - - // in ZipForm.DragDrop.cs - partial void SetDragDrop(); - - private void SetTextBoxes() - { - this.tbComment.Text= TB_COMMENT_NOTE; - this.tbDefaultExtractDirectory.Text= TB_EXTRACT_DIR_NOTE; - this.tbExeOnUnpack.Text= TB_EXE_ON_UNPACK_NOTE; - - // set autocomplete on a few textboxes - this.tbDirectoryToZip.AutoCompleteMode = AutoCompleteMode.Suggest; - this.tbDirectoryToZip.AutoCompleteSource = AutoCompleteSource.FileSystemDirectories; - - this.tbExtractDir.AutoCompleteMode = AutoCompleteMode.Suggest; - this.tbExtractDir.AutoCompleteSource = AutoCompleteSource.FileSystemDirectories; - - this.tbZipToOpen.AutoCompleteMode = AutoCompleteMode.Suggest; - this.tbZipToOpen.AutoCompleteSource = AutoCompleteSource.FileSystem; - - this.tbZipToCreate.AutoCompleteMode = AutoCompleteMode.Suggest; - this.tbZipToCreate.AutoCompleteSource = AutoCompleteSource.FileSystem; - - this.tbSelectionToExtract.AutoCompleteMode = AutoCompleteMode.Suggest; - this.tbSelectionToExtract.AutoCompleteSource = AutoCompleteSource.CustomSource; - this.tbSelectionToExtract.AutoCompleteCustomSource = _selectionCompletions; - - this.tbSelectionToZip.AutoCompleteMode = AutoCompleteMode.Suggest; - this.tbSelectionToZip.AutoCompleteSource = AutoCompleteSource.CustomSource; - this.tbSelectionToZip.AutoCompleteCustomSource = _selectionCompletions; - - tbExeOnUnpack_TextChanged(null, null); - } - - private void SetListView2() - { - // The listview2 is a ListViewEx control, an extension of - // System.Windows.Forms.ListView that allows editing of subitems using arbitrary - // controls. You can have a textbox, a datepicker, or other controls. - // I want the user to be able to modify the directory-in-archive value in the - // list, which is why ListViewEx is interesting. - - // I also want a checkbox associated to each list item, but I don't want the - // checkbox attached to the first subitem, as it normally is in a ListView. So I - // put an empty string as the main ListView item (subitem #0), and then the - // filename and directory-in-archive value in the 2nd and 3rd columns (subitems 1 - // and 2). This way, the checkbox gets its own column. - - // Next twist is I want the checkbox label to be uneditable, which is easy - // by just installing a listView2_BeforeLabelEdit method and always cancelling - // it. (e.CancelEdit = true). - - // And then there is a "master checkbox" at the column header that indicates - // whether the state of all checkboxes in the list is the same. With the "check - // change" of any item in the list I want to see if the master should be checked - // or unchecked. - - // The final thing is I want the checkbox for each item to change state only if I - // click on the checkbox itself, rather than "anywhere in the item row". - - this.listView2.SubItemClicked += new ListViewEx.SubItemEventHandler(listView2_SubItemClicked); - this.listView2.SubItemEndEditing += new ListViewEx.SubItemEndEditingEventHandler(listView2_SubItemEndEditing); - this.listView2.DoubleClickActivation = true; - SetDragDrop(); - } - - - - private void AdoptProgressBars() - { - tabControl1_SelectedIndexChanged(null, null); - } - - private void FixTitle() - { - this.Text = String.Format("DotNetZip Tool v{0}", - System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()); - } - - private void InitializeListboxes() - { - InitEncodingsList(); - InitFlavorList(); - InitZip64List(); - InitCompMethodList(); - InitCompressionLevelList(); - InitEncryptionList(); - InitSplitBox(); - InitExtractExistingFileList(); - } - - private void InitSplitBox() - { - string[] values = { "-none-", "64kb", "128kb", "256kb", "512kb", "1mb", "2mb", "4mb", "8mb", "16mb", "32mb", "64mb", "128mb", "256mb", "512mb", "1gb" }; - foreach (var value in values) - this.comboSplit.Items.Add(value); - this.comboSplit.SelectedIndex = 0; - - this.comboSplit.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - //this.comboSplit.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - } - - private void InitEncryptionList() - { - List _EncryptionNames = new List(Enum.GetNames(typeof(Ionic.Zip.EncryptionAlgorithm))); - foreach (var name in _EncryptionNames) - { - if (name != "Unsupported") - comboEncryption.Items.Add(name); - } - - // select the first item: - comboEncryption.SelectedIndex = 0; - this.tbPassword.Text = ""; - } - - - private void InitExtractExistingFileList() - { - List _ExtractActionNames = new List(Enum.GetNames(typeof(Ionic.Zip.ExtractExistingFileAction))); - foreach (var name in _ExtractActionNames) - { - if (!name.StartsWith("Invoke")) - { - if (name.StartsWith("Throw")) - comboExistingFileAction.Items.Add("Stop"); - else - comboExistingFileAction.Items.Add(name); - } - } - - // select the first item: - comboExistingFileAction.SelectedIndex = 0; - } - - - private void InitEncodingsList() - { - List _EncodingNames = new List(); - var e = System.Text.Encoding.GetEncodings(); - foreach (var e1 in e) - { - if (!_EncodingNames.Contains(e1.Name)) - if (!_EncodingNames.Contains(e1.Name.ToUpper())) - if (!_EncodingNames.Contains(e1.Name.ToLower())) - if (e1.Name != "IBM437" && e1.Name != "utf-8") - _EncodingNames.Add(e1.Name); - } - _EncodingNames.Sort(); - comboEncoding.Items.Add("zip default (IBM437)"); - comboEncoding.Items.Add("utf-8"); - foreach (var name in _EncodingNames) - { - comboEncoding.Items.Add(name); - } - - // select the first item: - comboEncoding.SelectedIndex = 0; - - // also set the encoding usage - List _UsageNames = new List(Enum.GetNames(typeof(Ionic.Zip.ZipOption))); - _UsageNames.Sort(); - foreach (var name in _UsageNames) - { - if (!name.StartsWith("Default")) - comboEncodingUsage.Items.Add(name); - } - - // select the first item: - comboEncodingUsage.SelectedIndex = 0; - } - - - private void InitCompressionLevelList() - { - List _CompressionLevelNames = new List(Enum.GetNames(typeof(Ionic.Zlib.CompressionLevel))); - _CompressionLevelNames.Sort(); - foreach (var name in _CompressionLevelNames) - { - if (!name.StartsWith("Level")) - { - comboCompLevel.Items.Add(name); - } - } - - // select the 2nd item, "Default": - comboCompLevel.SelectedIndex = 2; - } - - private void InitFlavorList() - { - this.comboFlavor.Items.Add("traditional Zip"); - this.comboFlavor.Items.Add("Self-extractor (GUI)"); - this.comboFlavor.Items.Add("Self-extractor (CMD)"); - // select the first item: - comboFlavor.SelectedIndex = 0; - } - - private void InitZip64List() - { - var _Names = new List(Enum.GetNames(typeof(Ionic.Zip.Zip64Option))); - _Names.Sort(); - foreach (var name in _Names) - { - if (!name.StartsWith("Default")) - comboZip64.Items.Add(name); - } - - // select the first item: - comboZip64.SelectedIndex = 0; - } - - - private void InitCompMethodList() - { - var _Names = new List(Enum.GetNames(typeof(Ionic.Zip.CompressionMethod))); - _Names.Sort(); - foreach (var name in _Names) - { - if (!name.StartsWith("Default")) - comboCompMethod.Items.Add(name); - } - - // select DEFLATE: - comboCompMethod.SelectedIndex = 1; - } - - - - private void KickoffZipup() - { - if (String.IsNullOrEmpty(this.tbDirectoryToZip.Text)) return; - if (!System.IO.Directory.Exists(this.tbDirectoryToZip.Text)) - { - var dlgResult = MessageBox.Show(String.Format("The directory you have specified ({0}) does not exist.", this.tbZipToCreate.Text), - "Not gonna happen", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); - return; - } - - if (this.tbZipToCreate.Text == null || this.tbZipToCreate.Text == "") return; - - // check for existence of the zip file: - if (System.IO.File.Exists(this.tbZipToCreate.Text)) - { - var dlgResult = MessageBox.Show(String.Format("The file you have specified ({0}) already exists. Do you want to overwrite this file?", this.tbZipToCreate.Text), "Confirmation is Required", MessageBoxButtons.YesNo, MessageBoxIcon.Question); - if (dlgResult != DialogResult.Yes) return; - System.IO.File.Delete(this.tbZipToCreate.Text); - } - - - // check for a valid zip file name: - string extension = System.IO.Path.GetExtension(this.tbZipToCreate.Text); - if ((extension != ".exe" && (this.comboFlavor.SelectedIndex == 1 || this.comboFlavor.SelectedIndex == 2)) || - (extension != ".zip" && this.comboFlavor.SelectedIndex == 0)) - { - var dlgResult = MessageBox.Show(String.Format("The file you have specified ({0}) has a non-standard extension ({1}) for this zip flavor. Do you want to continue anyway?", - this.tbZipToCreate.Text, extension), "Hold on there, pardner!", MessageBoxButtons.YesNo, MessageBoxIcon.Question); - if (dlgResult != DialogResult.Yes) return; - System.IO.File.Delete(this.tbZipToCreate.Text); - } - - _hrt = new HiResTimer(); - _hrt.Start(); - - _working = true; - _operationCanceled = false; - _nFilesCompleted = 0; - _totalBytesAfterCompress = 0; - _totalBytesBeforeCompress = 0; - PauseUI("Zipping..."); - lblStatus.Text = "Zipping..."; - - var options = new SaveWorkerOptions - { - ZipName = this.tbZipToCreate.Text, - Selection = this.tbSelectionToZip.Text, - TraverseJunctions = this.chkTraverseJunctions.Checked, - Encoding = "ibm437", - //EncodingUsage = ZipOption.Always, - ZipFlavor = this.comboFlavor.SelectedIndex, - Password = this.tbPassword.Text, - WindowsTimes = this.chkWindowsTime.Checked, - UnixTimes = this.chkUnixTime.Checked, - RemoveFilesAfterExe = this.chkRemoveFiles.Checked, - ExtractExistingFile = this.comboExistingFileAction.SelectedIndex, - }; - - if (this.comboEncoding.SelectedIndex != 0) - options.Encoding = this.comboEncoding.SelectedItem.ToString(); - - options.Encryption = (EncryptionAlgorithm) Enum.Parse(typeof(EncryptionAlgorithm), - this.comboEncryption.SelectedItem.ToString()); - - options.CompressionLevel = (Ionic.Zlib.CompressionLevel) Enum.Parse(typeof(Ionic.Zlib.CompressionLevel), - this.comboCompLevel.SelectedItem.ToString()); - options.CompressionMethod = (Ionic.Zip.CompressionMethod) Enum.Parse(typeof(Ionic.Zip.CompressionMethod), - this.comboCompMethod.SelectedItem.ToString()); - - options.EncodingUsage = (Ionic.Zip.ZipOption) Enum.Parse(typeof(Ionic.Zip.ZipOption), - this.comboEncodingUsage.SelectedItem.ToString()); - - string arg = this.comboSplit.SelectedItem.ToString().ToUpper(); - - try - { - int multiplier = 1; - int suffixLength = 0; - if (arg.EndsWith("KB")) - { - multiplier = 1024; suffixLength = 2; - } - else if (arg.EndsWith("K")) - { - multiplier = 1024; suffixLength = 1; - } - else if (arg.EndsWith("MB")) - { - multiplier = 1024*1024; suffixLength = 2; - } - else if (arg.EndsWith("M")) - { - multiplier = 1024*1024; suffixLength = 1; - } - else if (arg.EndsWith("GB")) - { - multiplier = 1024*1024*1024; suffixLength = 2; - } - else if (arg.EndsWith("G")) - { - multiplier = 1024*1024*1024; suffixLength = 1; - } - - if (suffixLength > 0) - { - options.MaxSegmentSize = - Int32.Parse(arg.Substring(0,arg.Length-suffixLength)) * multiplier; - } - else - options.MaxSegmentSize = Int32.Parse(arg); - } - catch - { - // just reset to "none" - this.comboSplit.SelectedIndex = 0; - options.MaxSegmentSize = 0; - } - - options.Zip64 = (Zip64Option)Enum.Parse(typeof(Zip64Option), - this.comboZip64.SelectedItem.ToString()); - - //this.listView2.Items.ToList(); - var entriesList = new System.Collections.ArrayList(this.listView2.Items); - options.Entries = System.Array.ConvertAll((ListViewItem[])entriesList.ToArray(typeof(ListViewItem)), (item) => - { - return new ItemToAdd - { - LocalFileName = item.SubItems[1].Text, - DirectoryInArchive = item.SubItems[2].Text, - FileNameInArchive = item.SubItems[3].Text, - }; - } - ); - - string compress = (options.CompressionMethod == Ionic.Zip.CompressionMethod.Deflate) - ? "Deflate level" + options.CompressionLevel.ToString() - : options.CompressionMethod.ToString(); - - options.Comment = String.Format("Encoding:{0} || Compression:{1} || Encrypt:{2} || ZIP64:{3}\r\nCreated at {4} || {5}\r\n", - options.Encoding, - compress, - (this.tbPassword.Text == "") ? "None" : options.Encryption.ToString(), - options.Zip64.ToString(), - System.DateTime.Now.ToString("yyyy-MMM-dd HH:mm:ss"), - this.Text); - - if (this.tbComment.Text != TB_COMMENT_NOTE) - options.Comment += this.tbComment.Text; - - if (this.tbExeOnUnpack.Text != TB_EXE_ON_UNPACK_NOTE) - options.ExeOnUnpack = this.tbExeOnUnpack.Text; - - if (this.tbDefaultExtractDirectory.Text != TB_EXTRACT_DIR_NOTE) - options.ExtractDirectory = this.tbDefaultExtractDirectory.Text; - - _workerThread = new Thread(this.DoSave); - _workerThread.Name = "Zip Saver thread"; - _workerThread.Start(options); - this.Cursor = Cursors.WaitCursor; - } - - - private string FlavorToString(int p) - { - if (p == 2) return "SFX-CMD"; - if (p == 1) return "SFX-GUI"; - return "ZIP"; - } - - - private bool _firstFocusInCommentTextBox = true; - private void tbComment_Enter(object sender, EventArgs e) - { - if (_firstFocusInCommentTextBox) - { - tbComment.Text = ""; - tbComment.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - tbComment.ForeColor = System.Drawing.SystemColors.WindowText; - _firstFocusInCommentTextBox = false; - } - } - - private void tbComment_Leave(object sender, EventArgs e) - { - string TextInTheBox = tbComment.Text; - - if ((TextInTheBox == null) || (TextInTheBox == "")) - { - this.tbComment.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.tbComment.ForeColor = System.Drawing.SystemColors.InactiveCaption; - _firstFocusInCommentTextBox = true; - this.tbComment.Text = TB_COMMENT_NOTE; - } - } - - - private bool _firstFocusInExtractDirTextBox = true; - private void tbDefaultExtractDirectory_Enter(object sender, EventArgs e) - { - if (_firstFocusInExtractDirTextBox) - { - tbDefaultExtractDirectory.Text = ""; - tbDefaultExtractDirectory.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - tbDefaultExtractDirectory.ForeColor = System.Drawing.SystemColors.WindowText; - _firstFocusInExtractDirTextBox = false; - } - } - - private void tbDefaultExtractDirectory_Leave(object sender, EventArgs e) - { - string TextInTheBox = tbDefaultExtractDirectory.Text; - - if ((TextInTheBox == null) || (TextInTheBox == "")) - { - this.tbDefaultExtractDirectory.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.tbDefaultExtractDirectory.ForeColor = System.Drawing.SystemColors.InactiveCaption; - _firstFocusInExtractDirTextBox = true; - this.tbDefaultExtractDirectory.Text = TB_EXTRACT_DIR_NOTE; - } - } - - - // I want the values in the combobox to be right-aligned. - private int delta = 0; - private void comboBox1_DrawItem(object sender, System.Windows.Forms.DrawItemEventArgs e) - { - var rc = new System.Drawing.Rectangle(e.Bounds.X + delta, e.Bounds.Y + delta, - e.Bounds.Width - delta, e.Bounds.Height - delta); - - var sf = new System.Drawing.StringFormat - { - Alignment = System.Drawing.StringAlignment.Far - }; - - string str = (string)comboSplit.Items[e.Index]; - - if (e.State == (DrawItemState.Selected | DrawItemState.NoAccelerator - | DrawItemState.NoFocusRect) || - e.State == DrawItemState.Selected) - { - e.Graphics.FillRectangle(new System.Drawing.SolidBrush(System.Drawing.Color.CornflowerBlue), rc); - e.Graphics.DrawString(str, this.comboSplit.Font, new System.Drawing.SolidBrush(System.Drawing.Color.Cyan), rc, sf); - } - else - { - e.Graphics.FillRectangle(new System.Drawing.SolidBrush(System.Drawing.Color.White), rc); - e.Graphics.DrawString(str, this.comboSplit.Font, new System.Drawing.SolidBrush(System.Drawing.Color.Black), rc, sf); - } - } - - - private bool _firstFocusInExeTextBox = true; - private void tbExeOnUnpack_Enter(object sender, EventArgs e) - { - if (_firstFocusInExeTextBox) - { - tbExeOnUnpack.Text = ""; - tbExeOnUnpack.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - tbExeOnUnpack.ForeColor = System.Drawing.SystemColors.WindowText; - _firstFocusInExeTextBox = false; - } - } - - private void tbExeOnUnpack_Leave(object sender, EventArgs e) - { - string TextInTheBox = tbExeOnUnpack.Text; - - if ((TextInTheBox == null) || (TextInTheBox == "")) - { - this.tbExeOnUnpack.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.tbExeOnUnpack.ForeColor = System.Drawing.SystemColors.InactiveCaption; - _firstFocusInExeTextBox = true; - this.tbExeOnUnpack.Text = TB_EXE_ON_UNPACK_NOTE; - this.label18.Enabled = false; - this.chkRemoveFiles.Enabled = false; - } - else - { - this.label18.Enabled = true; - this.chkRemoveFiles.Enabled = true; - } - } - - - private void tbExeOnUnpack_TextChanged(object sender, EventArgs e) - { - if (this.tbExeOnUnpack.Text != TB_EXE_ON_UNPACK_NOTE && this.tbExeOnUnpack.Text != "") - { - this.label18.Enabled = true; - this.chkRemoveFiles.Enabled = true; - } - else - { - this.label18.Enabled = false; - this.chkRemoveFiles.Enabled = false; - } - } - - - - private void SetProgressBars() - { - if (this.progressBar1.InvokeRequired) - { - this.progressBar1.Invoke(new MethodInvoker(this.SetProgressBars)); - //this.progressBar1.Invoke(new ProgressBarSetup(this.SetProgressBars), new object[] { count }); - } - else - { - this.progressBar1.Value = 0; - this.progressBar1.Maximum = _totalEntriesToProcess; - this.progressBar1.Minimum = 0; - this.progressBar1.Step = 1; - this.progressBar2.Value = 0; - this.progressBar2.Minimum = 0; - this.progressBar2.Maximum = 1; // will be set later, for each entry. - this.progressBar2.Step = 1; - } - } - - - private void DoSave(Object p) - { - SaveWorkerOptions options = p as SaveWorkerOptions; - try - { - using (var zip1 = new ZipFile()) - { - zip1.CompressionMethod = options.CompressionMethod; - zip1.CompressionLevel = options.CompressionLevel; - zip1.AlternateEncoding = System.Text.Encoding.GetEncoding(options.Encoding); - zip1.AlternateEncodingUsage = options.EncodingUsage; - zip1.Comment = options.Comment; - zip1.MaxOutputSegmentSize = options.MaxSegmentSize; - zip1.Password = (options.Password != "") ? options.Password : null; - zip1.Encryption = options.Encryption; - zip1.EmitTimesInWindowsFormatWhenSaving = options.WindowsTimes; - zip1.EmitTimesInUnixFormatWhenSaving = options.UnixTimes; - zip1.AddDirectoryWillTraverseReparsePoints = options.TraverseJunctions; - foreach (ItemToAdd item in options.Entries) - { - var e = zip1.AddItem(item.LocalFileName, item.DirectoryInArchive); - // use a different name in the archive if appropriate - if (!String.IsNullOrEmpty(item.FileNameInArchive) && item.FileNameInArchive != System.IO.Path.GetFileName(item.LocalFileName)) - e.FileName = item.FileNameInArchive; - } - - _totalEntriesToProcess = zip1.EntryFileNames.Count; - SetProgressBars(); - zip1.TempFileFolder = System.IO.Path.GetDirectoryName(options.ZipName); - zip1.SaveProgress += this.zip1_SaveProgress; - - zip1.UseZip64WhenSaving = options.Zip64; - - if (options.ZipFlavor == 2 || options.ZipFlavor == 1) - { - SelfExtractorSaveOptions sfxOptions = new SelfExtractorSaveOptions() - { - Flavor = (options.ZipFlavor == 1)?SelfExtractorFlavor.WinFormsApplication: - SelfExtractorFlavor.ConsoleApplication, - DefaultExtractDirectory = options.ExtractDirectory, - PostExtractCommandLine = options.ExeOnUnpack, - RemoveUnpackedFilesAfterExecute = options.RemoveFilesAfterExe, - ExtractExistingFile = (ExtractExistingFileAction) options.ExtractExistingFile, - }; - - zip1.SaveSelfExtractor(options.ZipName, sfxOptions); - } - else - zip1.Save(options.ZipName); - } - } - catch (System.Exception exc1) - { - MessageBox.Show(String.Format("Exception while zipping:\n{0}\n\n{1}", exc1.Message, exc1.StackTrace.ToString())); - btnCancel_Click(null, null); - } - } - - - - void zip1_SaveProgress(object sender, SaveProgressEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Saving_AfterWriteEntry: - StepArchiveProgress(e); - break; - case ZipProgressEventType.Saving_EntryBytesRead: - StepEntryProgress(e); - break; - case ZipProgressEventType.Saving_Completed: - SaveCompleted(); - break; - case ZipProgressEventType.Saving_AfterSaveTempArchive: - TempArchiveSaved(); - break; - } - if (_operationCanceled) - e.Cancel = true; - } - - private void TempArchiveSaved() - { - if (this.lblStatus.InvokeRequired) - { - this.lblStatus.Invoke(new MethodInvoker(this.TempArchiveSaved)); - } - else - { - System.TimeSpan ts = new System.TimeSpan(0, 0, (int)_hrt.Seconds); - - lblStatus.Text = String.Format("Temp archive saved ({0})...{1}...", - ts.ToString(), - (this.comboFlavor.SelectedIndex == 0) - ? "finishing" - : "compiling SFX"); - } - } - - - - private void SaveCompleted() - { - if (this.lblStatus.InvokeRequired) - { - this.lblStatus.Invoke(new MethodInvoker(this.SaveCompleted)); - } - else - { - _hrt.Stop(); - System.TimeSpan ts = new System.TimeSpan(0, 0, (int)_hrt.Seconds); - lblStatus.Text = String.Format("Done, Compressed {0} files, {1:N0}% of original, time: {2}", - _nFilesCompleted, (100.00 * _totalBytesAfterCompress) / _totalBytesBeforeCompress, - ts.ToString()); - ResetUiState(); - } - } - - - - private void StepArchiveProgress(ZipProgressEventArgs e) - { - if (this.progressBar1.InvokeRequired) - { - this.progressBar1.Invoke(new ZipProgress(this.StepArchiveProgress), new object[] { e }); - } - else - { - if (!_operationCanceled) - { - _nFilesCompleted++; - this.progressBar1.PerformStep(); - _totalBytesAfterCompress += e.CurrentEntry.CompressedSize; - _totalBytesBeforeCompress += e.CurrentEntry.UncompressedSize; - - // reset the progress bar for the entry: - this.progressBar2.Value = this.progressBar2.Maximum = 1; - - this.Update(); - -#if NOT_SPEEDY - // Sleep here just to show the progress bar, when the number of files is small, - // or when all done. - // You may not want this for actual use! - if (this.progressBar2.Value == this.progressBar2.Maximum) - Thread.Sleep(350); - else if (_entriesToZip < 10) - Thread.Sleep(350); - else if (_entriesToZip < 20) - Thread.Sleep(200); - else if (_entriesToZip < 30) - Thread.Sleep(100); - else if (_entriesToZip < 45) - Thread.Sleep(80); - else if (_entriesToZip < 75) - Thread.Sleep(40); - // more than 75 entries, don't sleep at all. -#endif - - } - } - } - - - private void StepEntryProgress(ZipProgressEventArgs e) - { - if (this.progressBar2.InvokeRequired) - { - this.progressBar2.Invoke(new ZipProgress(this.StepEntryProgress), new object[] { e }); - } - else - { - if (!_operationCanceled) - { - if (this.progressBar2.Maximum == 1) - { - // reset - Int64 entryMax = e.TotalBytesToTransfer; - Int64 absoluteMax = System.Int32.MaxValue; - _progress2MaxFactor = 0; - while (entryMax > absoluteMax) - { - entryMax /= 2; - _progress2MaxFactor++; - } - if ((int)entryMax < 0) entryMax *= -1; - this.progressBar2.Maximum = (int)entryMax; - lblStatus.Text = String.Format("{0} of {1} files...({2})", - _nFilesCompleted + 1, _totalEntriesToProcess, e.CurrentEntry.FileName); - } - - // downcast is safe here because we have shifted e.BytesTransferred - int xferred = (int)(e.BytesTransferred >> _progress2MaxFactor); - - this.progressBar2.Value = (xferred >= this.progressBar2.Maximum) - ? this.progressBar2.Maximum - : xferred; - - this.Update(); - } - } - } - - - - private void btnDirBrowse_Click(object sender, EventArgs e) - { - var dlg1 = new Ionic.Utils.FolderBrowserDialogEx - { - Description = "Select a folder to zip up:", - ShowNewFolderButton = false, - ShowEditBox = true, - //NewStyle = false, - SelectedPath = this.tbDirectoryToZip.Text, - ShowFullPathInEditBox = true, - }; - dlg1.RootFolder = System.Environment.SpecialFolder.MyComputer; - - var result = dlg1.ShowDialog(); - - if (result == DialogResult.OK) - { - this.tbDirectoryToZip.Text = dlg1.SelectedPath; - this.tbDirectoryInArchive.Text = System.IO.Path.GetFileName(this.tbDirectoryToZip.Text); - } - } - - private void btnCreateZipBrowse_Click(object sender, EventArgs e) - { - var dlg1 = new SaveFileDialog - { - OverwritePrompt = false, - Title = "Where would you like to save the generated Zip file?", - Filter = "ZIP files|*.zip", - }; - - try - { - dlg1.FileName = System.IO.Path.GetFileName(this.tbZipToCreate.Text); - } - catch - { - dlg1.FileName = ""; - } - - try - { - dlg1.InitialDirectory = System.IO.Path.GetDirectoryName(this.tbZipToCreate.Text); - } - catch - { - dlg1.InitialDirectory = ""; - } - - var result = dlg1.ShowDialog(); - if (result == DialogResult.OK) - { - this.tbZipToCreate.Text = dlg1.FileName; - } - } - - - private void btnZipup_Click(object sender, EventArgs e) - { - // Do not start zipping while editing a textbox - // in listView2. - if (!textBox1.Visible) - KickoffZipup(); - } - - private void btnCancel_Click(object sender, EventArgs e) - { - if (this.lblStatus.InvokeRequired) - { - this.lblStatus.Invoke(new ButtonClick(this.btnCancel_Click), new object[] { sender, e }); - } - else - { - _operationCanceled = true; - lblStatus.Text = "Canceled..."; - ResetUiState(); - } - } - - private void comboFlavor_SelectedIndexChanged(object sender, EventArgs e) - { - if (this.comboFlavor.SelectedIndex == 1 || this.comboFlavor.SelectedIndex == 2) - { - // intelligently change the name of the thing to create - // It's an SFX, swap out ZIP and insert EXE - if (this.tbZipToCreate.Text.ToUpper().EndsWith(".ZIP")) - { - tbZipToCreate.Text = System.Text.RegularExpressions.Regex.Replace(tbZipToCreate.Text, "(?i:)\\.zip$", ".exe"); - } - // enable/disable other dependent UI elements - this.label17.Enabled = false; - this.comboSplit.Enabled = false; - this.label15.Enabled = true; - this.tbDefaultExtractDirectory.Enabled = true; - this.label16.Enabled = true; - this.tbExeOnUnpack.Enabled = true; - - this.label18.Enabled = true; - this.chkRemoveFiles.Enabled = true; - - } - else if (this.comboFlavor.SelectedIndex == 0) - { - // intelligently change the name of the thing to create - // It's a regular ZIP, so swap out EXE and insert ZIP - if (this.tbZipToCreate.Text.ToUpper().EndsWith(".EXE")) - { - tbZipToCreate.Text = System.Text.RegularExpressions.Regex.Replace(tbZipToCreate.Text, "(?i:)\\.exe$", ".zip"); - } - - // enable/disable other dependent UI elements - this.label17.Enabled = true; - this.comboSplit.Enabled = true; - this.label15.Enabled = false; - this.tbDefaultExtractDirectory.Enabled = false; - this.label16.Enabled = false; - this.tbExeOnUnpack.Enabled = false; - this.label18.Enabled = false; - this.chkRemoveFiles.Enabled = false; - } - } - - - private void comboEncryption_SelectedIndexChanged(object sender, EventArgs e) - { - //this.tbPassword.Enabled = (this.comboBox3.SelectedItem.ToString() != "None"); - if (this.comboEncryption.SelectedIndex == 0) - { - this.label9.Enabled = false; - this.tbPassword.Enabled = false; - this.chkHidePassword.Enabled = false; - } - else - { - this.label9.Enabled = true; - this.tbPassword.Enabled = true; - this.chkHidePassword.Enabled = true; - } - } - - private void comboCompMethod_SelectedIndexChanged(object sender, EventArgs e) - { - if (this.comboCompMethod.SelectedIndex == 1) // DEFLATE - { - this.label4.Enabled = true; - this.comboCompLevel.Enabled = true; - } - else - { - this.label4.Enabled = false; - this.comboCompLevel.Enabled = false; - } - } - - private void comboEncoding_SelectedIndexChanged(object sender, EventArgs e) - { - this.comboEncodingUsage.Enabled = (this.comboEncoding.SelectedIndex != 0); - } - - private void checkBox1_CheckedChanged(object sender, EventArgs e) - { - this.tbPassword.PasswordChar = (this.chkHidePassword.Checked) ? '*' : '\0'; - } - - private void ResetUiState() - { - this.btnZipUp.Text = "Zip it!"; - this.btnZipUp.Enabled = true; - this.btnCancel.Text = "Cancel"; - this.btnCancel.Enabled = false; - this.btnExtract.Text = "Extract"; - this.btnExtractDirBrowse.Enabled = true; - this.btnZipupDirBrowse.Enabled = true; - this.btnReadZipBrowse.Enabled = true; - this.btnClearItemsToZip.Enabled = true; - this.btnCreateZipBrowse.Enabled = true; - - this.progressBar1.Value = 0; - this.progressBar2.Value = 0; - this.Cursor = Cursors.Default; - if (_workerThread != null) - if (!_workerThread.IsAlive) - _workerThread.Join(); - - _working = false; - } - - - private void SelectNamedEncoding(string s) - { - _SelectComboBoxItem(this.comboEncoding, s); - } - - private void SelectNamedEncodingUsage(string s) - { - _SelectComboBoxItem(this.comboEncodingUsage, s); - } - - private void SelectNamedCompressionLevel(string s) - { - _SelectComboBoxItem(this.comboCompLevel, s); - } - - private void SelectNamedCompressionMethod(string s) - { - _SelectComboBoxItem(this.comboCompMethod, s); - } - - private void SelectNamedEncryption(string s) - { - _SelectComboBoxItem(this.comboEncryption, s); - //tbPassword.Text = ""; - comboEncryption_SelectedIndexChanged(null, null); - } - - private void _SelectComboBoxItem(ComboBox c, string s) - { - for (int i = 0; i < c.Items.Count; i++) - { - if (c.Items[i].ToString() == s) - { - c.SelectedIndex = i; - break; - } - } - } - - - private void ZipForm_FormClosing(object sender, FormClosingEventArgs e) - { - SaveFormToRegistry(); - } - - - - private void btnZipBrowse_Click(object sender, EventArgs e) - { - OpenFileDialog openFileDialog1 = new OpenFileDialog(); - - openFileDialog1.InitialDirectory = (System.IO.File.Exists(this.tbZipToOpen.Text) ? System.IO.Path.GetDirectoryName(this.tbZipToOpen.Text) : this.tbZipToOpen.Text); - openFileDialog1.Filter = "zip files|*.zip|EXE files|*.exe|All Files|*.*"; - openFileDialog1.FilterIndex = 1; - openFileDialog1.RestoreDirectory = true; - - if (openFileDialog1.ShowDialog() == DialogResult.OK) - { - this.tbZipToOpen.Text = openFileDialog1.FileName; - if (System.IO.File.Exists(this.tbZipToOpen.Text)) - btnOpen_Click(sender, e); - } - } - - - - string _DisplayedZip = null; - - private void btnOpen_Click(object sender, EventArgs e) - { - if (!System.IO.File.Exists(this.tbZipToOpen.Text)) return; - DisplayZipFile(this.tbZipToOpen.Text); - } - - - private void DisplayZipFile(string zipFile) - { - try - { - listView1.Clear(); - listView1.BeginUpdate(); - - string[] columnHeaders = new string[] { "n", "name", "lastmod", "original", "ratio", "compressed", "enc?", "CRC" }; - foreach (string label in columnHeaders) - { - SortableColumnHeader ch = new SortableColumnHeader(label); - if (label != "name" && label != "lastmod") - ch.TextAlign = HorizontalAlignment.Right; - listView1.Columns.Add(ch); - } - - int n = 1; - var readOptions = new ReadOptions - { - Encoding = (comboEncoding.SelectedIndex > 0) - ? System.Text.Encoding.GetEncoding(comboEncoding.SelectedItem.ToString()) - : System.Text.Encoding.GetEncoding("IBM437") - }; - - using (ZipFile zip = ZipFile.Read(zipFile, readOptions)) - { - foreach (ZipEntry entry in zip.EntriesSorted) - { - ListViewItem item = new ListViewItem(n.ToString()); - n++; - string[] subitems = new string[] { - entry.FileName.Replace("/","\\"), - entry.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), - entry.UncompressedSize.ToString(), - String.Format("{0,5:F0}%", entry.CompressionRatio), - entry.CompressedSize.ToString(), - (entry.UsesEncryption) ? "Y" : "N", - String.Format("{0:X8}", entry.Crc)}; - - foreach (String s in subitems) - { - ListViewItem.ListViewSubItem subitem = new ListViewItem.ListViewSubItem(); - subitem.Text = s; - item.SubItems.Add(subitem); - } - - this.listView1.Items.Add(item); - } - } - - this.btnExtract.Enabled = true; - _DisplayedZip = zipFile; - this.listView1.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent); - this.listView1.EndUpdate(); - - } - catch (Exception exc1) - { - this.listView1.Clear(); - this.listView1.EndUpdate(); - MessageBox.Show(String.Format("There was a problem opening that file! [file={0}, problem={1}]", - zipFile, exc1.Message), "Whoops!", MessageBoxButtons.OK); - } - - } - - - private void btnExtractDirBrowse_Click(object sender, EventArgs e) - { - // pop a dialog to ask where to extract - // Configure the "select folder" dialog box - //_folderName = tbDirName.Text; - //_folderName = (System.IO.Directory.Exists(_folderName)) ? _folderName : ""; - var dlg1 = new Ionic.Utils.FolderBrowserDialogEx - { - Description = "Select a folder to extract to:", - ShowNewFolderButton = true, - ShowEditBox = true, - //NewStyle = false, - SelectedPath = tbExtractDir.Text, - ShowFullPathInEditBox = true, - }; - dlg1.RootFolder = System.Environment.SpecialFolder.MyComputer; - - var result = dlg1.ShowDialog(); - - if (result == DialogResult.OK) - { - this.tbExtractDir.Text = dlg1.SelectedPath; - // actually extract the files - } - - - } - - - - private void btnExtract_Click(object sender, EventArgs e) - { - if (!System.IO.File.Exists(_DisplayedZip)) return; - KickoffExtract(); - } - - - private void KickoffExtract() - { - if (String.IsNullOrEmpty(this.tbExtractDir.Text)) return; - - _hrt = new HiResTimer(); - _hrt.Start(); - - _working = true; - _operationCanceled = false; - _nFilesCompleted = 0; - _totalBytesAfterCompress = 0; - _totalBytesBeforeCompress = 0; - PauseUI(null); - lblStatus.Text = "Extracting..."; - - var options = new ExtractWorkerOptions - { - ExtractLocation = this.tbExtractDir.Text, - Selection = this.tbSelectionToExtract.Text, - OpenExplorer = this.chkOpenExplorer.Checked, - ExtractExisting = (ExtractExistingFileAction) comboExistingFileAction.SelectedIndex, - }; - - _workerThread = new Thread(this.DoExtract); - _workerThread.Name = "Zip Extractor thread"; - _workerThread.Start(options); - this.Cursor = Cursors.WaitCursor; - } - - - private void PauseUI(string msg) - { - // this set for Zipping - if (msg != null) - this.btnZipUp.Text = msg; - this.btnZipUp.Enabled = false; - this.btnZipupDirBrowse.Enabled = false; - this.btnCreateZipBrowse.Enabled = false; - this.btnClearItemsToZip.Enabled = false; - this.btnCancel.Enabled = true; - - // this for Extract - this.btnExtract.Enabled = false; - this.btnExtract.Text = "working..."; - this.btnExtractDirBrowse.Enabled = false; - this.btnCancel.Enabled = true; - this.btnReadZipBrowse.Enabled = false; - } - - - private void zip_ExtractProgress(object sender, ExtractProgressEventArgs e) - { - if (e.EventType == ZipProgressEventType.Extracting_EntryBytesWritten) - { - StepEntryProgress(e); - } - - else if (e.EventType == ZipProgressEventType.Extracting_AfterExtractEntry) - { - StepArchiveProgress(e); - } - if (_setCancel) - e.Cancel = true; - } - - - private void OnExtractDone() - { - if (this.lblStatus.InvokeRequired) - { - this.lblStatus.Invoke(new MethodInvoker(this.OnExtractDone)); - } - else - { - _hrt.Stop(); - System.TimeSpan ts = new System.TimeSpan(0, 0, (int)_hrt.Seconds); - lblStatus.Text = String.Format("Done, Extracted {0} files, time: {1}", - _nFilesCompleted, - ts.ToString()); - ResetUiState(); - - // remember the successful selection strings - if (!_selectionCompletions.Contains(this.tbSelectionToZip.Text)) - { - if (_selectionCompletions.Count >= _MaxMruListSize) - _selectionCompletions.RemoveAt(0); - _selectionCompletions.Add(this.tbSelectionToZip.Text); - } - } - } - - - bool _setCancel = false; - private void DoExtract(object p) - { - ExtractWorkerOptions options = p as ExtractWorkerOptions; - - bool extractCancelled = false; - _setCancel = false; - string currentPassword = ""; - - try - { - using (var zip = ZipFile.Read(_DisplayedZip)) - { - System.Collections.Generic.ICollection collection = null; - if (String.IsNullOrEmpty(options.Selection)) - collection = zip.Entries; - else - collection = zip.SelectEntries(options.Selection); - - _totalEntriesToProcess = collection.Count; - zip.ExtractProgress += zip_ExtractProgress; - SetProgressBars(); - foreach (global::Ionic.Zip.ZipEntry entry in collection) - { - if (_setCancel) { extractCancelled = true; break; } - if (entry.Encryption == global::Ionic.Zip.EncryptionAlgorithm.None) - { - try - { - entry.Extract(options.ExtractLocation, options.ExtractExisting); - } - catch (Exception ex1) - { - string msg = String.Format("Faisled to extract entry {0} -- {1}", - entry.FileName, - ex1.Message.ToString()); - DialogResult result = - MessageBox.Show(msg, - String.Format("Error Extracting {0}", entry.FileName), - MessageBoxButtons.OKCancel, - MessageBoxIcon.Exclamation, - MessageBoxDefaultButton.Button1); - - if (result == DialogResult.Cancel) - { - _setCancel = true; - extractCancelled = true; - break; - } - } - } - else - { - bool done = false; - while (!done) - { - if (currentPassword == "") - { - string t = PromptForPassword(entry.FileName); - if (t == "") - { - done = true; // escape ExtractWithPassword loop - continue; - } - currentPassword = t; - } - - if (currentPassword == null) // cancel all - { - _setCancel = true; - currentPassword = ""; - break; - } - - try - { - entry.ExtractWithPassword(options.ExtractLocation, options.ExtractExisting, currentPassword); - done = true; - } - catch (Exception ex2) - { - // Retry here in the case of bad password. - if (ex2 as Ionic.Zip.BadPasswordException != null) - { - currentPassword = ""; - continue; // loop around, ask for password again - } - else - { - string msg = - String.Format("Failed to extract the password-encrypted entry {0} -- {1}", - entry.FileName, ex2.Message.ToString()); - DialogResult result = - MessageBox.Show(msg, - String.Format("Error Extracting {0}", - entry.FileName), - MessageBoxButtons.OKCancel, - MessageBoxIcon.Exclamation, - MessageBoxDefaultButton.Button1); - - done = true; // done with this entry - if (result == DialogResult.Cancel) - { - _setCancel = true; - extractCancelled = true; - break; - } - } - } - } // while - } // else (encryption) - } // foreach - } // using - - - } - catch (Exception ex1) - { - MessageBox.Show(String.Format("There's been a problem extracting that zip file. {0}", ex1.Message), - "Error Extracting", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); - Application.Exit(); - } - - OnExtractDone(); - - if (extractCancelled) return; - - if (options.OpenExplorer) - { - string w = System.IO.Path.GetDirectoryName(Environment.GetFolderPath(Environment.SpecialFolder.System)); - if (w == null) w = "c:\\windows"; - try - { - System.Diagnostics.Process.Start(System.IO.Path.Combine(w, "explorer.exe"), options.ExtractLocation); - } - catch { } - } - } - - - private string PromptForPassword(string entryName) - { - PasswordDialog dlg1 = new PasswordDialog(); - dlg1.EntryName = entryName; - - // ask for password in a loop until user enters a proper one, - // or clicks skip or cancel. - bool done = false; - do - { - dlg1.ShowDialog(); - done = (dlg1.Result != PasswordDialog.PasswordDialogResult.OK || - dlg1.Password != ""); - } while (!done); - - if (dlg1.Result == PasswordDialog.PasswordDialogResult.OK) - return dlg1.Password; - - else if (dlg1.Result == PasswordDialog.PasswordDialogResult.Skip) - return ""; - - // cancel - return null; - } - - - private void tabControl1_SelectedIndexChanged(object sender, EventArgs e) - { - // Recycle the progress bars the cancel button, and the status textbox. - // An alternative way to accomplish a similar thing is to visually place - // the progress bars OFF the tabs. - if (this.tabControl1.SelectedIndex == 0) - { - if (this.tabPage2.Controls.Contains(this.progressBar1)) - this.tabPage2.Controls.Remove(this.progressBar1); - if (this.tabPage2.Controls.Contains(this.progressBar2)) - this.tabPage2.Controls.Remove(this.progressBar2); - if (this.tabPage2.Controls.Contains(this.btnCancel)) - this.tabPage2.Controls.Remove(this.btnCancel); - if (this.tabPage2.Controls.Contains(this.lblStatus)) - this.tabPage2.Controls.Remove(this.lblStatus); - - if (!this.tabPage1.Controls.Contains(this.lblStatus)) - this.tabPage1.Controls.Add(this.lblStatus); - if (!this.tabPage1.Controls.Contains(this.progressBar1)) - this.tabPage1.Controls.Add(this.progressBar1); - if (!this.tabPage1.Controls.Contains(this.progressBar2)) - this.tabPage1.Controls.Add(this.progressBar2); - if (!this.tabPage1.Controls.Contains(this.btnCancel)) - this.tabPage1.Controls.Add(this.btnCancel); - - // swap the comboBox for Encoding to the selected panel - if (groupBox2.Controls.Contains(comboEncoding)) - { - groupBox2.Controls.Remove(comboEncoding); - tabPage1.Controls.Add(comboEncoding); - int xpos = this.tbZipToOpen.Location.X ; - this.comboEncoding.Location = new System.Drawing.Point(xpos, this.tbZipToOpen.Location.Y + this.comboEncoding.Height + 4); - } - this.toolTip1.SetToolTip(this.comboEncoding, "use this encoding to read the file"); - - } - else if (this.tabControl1.SelectedIndex == 1) - { - if (this.tabPage1.Controls.Contains(this.progressBar1)) - this.tabPage1.Controls.Remove(this.progressBar1); - if (this.tabPage1.Controls.Contains(this.progressBar2)) - this.tabPage1.Controls.Remove(this.progressBar2); - if (this.tabPage1.Controls.Contains(this.btnCancel)) - this.tabPage1.Controls.Remove(this.btnCancel); - if (this.tabPage1.Controls.Contains(this.lblStatus)) - this.tabPage1.Controls.Remove(this.lblStatus); - - if (!this.tabPage2.Controls.Contains(this.lblStatus)) - this.tabPage2.Controls.Add(this.lblStatus); - if (!this.tabPage2.Controls.Contains(this.progressBar1)) - this.tabPage2.Controls.Add(this.progressBar1); - if (!this.tabPage2.Controls.Contains(this.progressBar2)) - this.tabPage2.Controls.Add(this.progressBar2); - if (!this.tabPage2.Controls.Contains(this.btnCancel)) - this.tabPage2.Controls.Add(this.btnCancel); - - // swap the comboBox for Encoding to the selected panel - if (tabPage1.Controls.Contains(comboEncoding)) - { - tabPage1.Controls.Remove(comboEncoding); - groupBox2.Controls.Add(comboEncoding); - this.comboEncoding.Location = new System.Drawing.Point(104, 85); - this.comboEncoding.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left))); - } - this.toolTip1.SetToolTip(this.comboEncoding, "use this encoding when saving the file"); - - } - } - - private void tabControl1_Selecting(object sender, TabControlCancelEventArgs e) - { - // prevent switching TABs if working - if (_working) e.Cancel = true; - } - - - private void listView1_ColumnClick(object sender, ColumnClickEventArgs e) - { - // Create an instance of the ColHeader class. - SortableColumnHeader clickedCol = (SortableColumnHeader)this.listView1.Columns[e.Column]; - - // Set the ascending property to sort in the opposite order. - clickedCol.SortAscending = !clickedCol.SortAscending; - - // Get the number of items in the list. - int numItems = this.listView1.Items.Count; - - // Turn off display while data is repoplulated. - this.listView1.BeginUpdate(); - - // Populate an ArrayList with a SortWrapper of each list item. - List list = new List(); - for (int i = 0; i < numItems; i++) - { - list.Add(new ItemWrapper(this.listView1.Items[i], e.Column)); - } - - if (e.Column == 0 || e.Column == 3 || e.Column == 5) - list.Sort(new ItemWrapper.NumericComparer(clickedCol.SortAscending)); - else - list.Sort(new ItemWrapper.StringComparer(clickedCol.SortAscending)); - - // Clear the list, and repopulate with the sorted items. - this.listView1.Items.Clear(); - for (int i = 0; i < numItems; i++) - this.listView1.Items.Add(list[i].Item); - - // Turn display back on. - this.listView1.EndUpdate(); - } - - - private void tbPassword_TextChanged(object sender, EventArgs e) - { - if (this.tbPassword.Text == "") - { - if (_mostRecentEncryption == null && this.comboEncryption.SelectedItem.ToString() != "None") - { - _mostRecentEncryption = this.comboEncryption.SelectedItem.ToString(); - SelectNamedEncryption("None"); - } - } - else - { - if (_mostRecentEncryption != null && this.comboEncryption.SelectedItem.ToString() == "None") - { - SelectNamedEncryption(_mostRecentEncryption); - } - _mostRecentEncryption = null; - } - } - - - private void LoadAboutInfo() - { - var a = System.Reflection.Assembly.GetEntryAssembly(); - string[] resourceNames = a.GetManifestResourceNames(); - if (resourceNames != null && resourceNames.Length > 0) - { - String name = "Ionic.Zip.Forms.About.rtf"; - var s = a.GetManifestResourceStream(name); - var bytes = ReadAllBytes(s); - this.richTextBox1.Rtf = System.Text.Encoding.ASCII.GetString(bytes); - s.Close(); - } - } - - - - /// - /// Reads the contents of the stream into a byte array. - /// - /// - /// - /// Like File.ReadAllBytes(), but for a stream. - /// - /// - /// The stream to read. - /// A byte array containing the contents of the stream. - /// The stream does not support reading. - /// Methods were called after the stream was closed. - /// An I/O error occurs. - private byte[] ReadAllBytes(System.IO.Stream source) - { - long originalPosition = source.Position; - source.Position = 0; - - try - { - byte[] readBuffer = new byte[4096]; - - int totalBytesRead = 0; - int bytesRead; - - while ((bytesRead = source.Read(readBuffer, totalBytesRead, readBuffer.Length - totalBytesRead)) > 0) - { - totalBytesRead += bytesRead; - - if (totalBytesRead == readBuffer.Length) - { - int nextByte = source.ReadByte(); - if (nextByte != -1) - { - byte[] temp = new byte[readBuffer.Length * 2]; - Buffer.BlockCopy(readBuffer, 0, temp, 0, readBuffer.Length); - Buffer.SetByte(temp, totalBytesRead, (byte)nextByte); - readBuffer = temp; - totalBytesRead++; - } - } - } - - byte[] buffer = readBuffer; - if (readBuffer.Length != totalBytesRead) - { - buffer = new byte[totalBytesRead]; - Buffer.BlockCopy(readBuffer, 0, buffer, 0, totalBytesRead); - } - return buffer; - } - finally - { - source.Position = originalPosition; - } - } - - - - private void ZipForm_Load(object sender, EventArgs e) - { - if (_initialFileToLoad != null) - { - // select the page that opens zip files. - this.tabControl1.SelectedIndex = 0; - //this.tabPage1.Select(); - this.tbZipToOpen.Text = _initialFileToLoad; - btnOpen_Click(null, null); - } - LoadAboutInfo(); - } - - private void tbDirectoryToZip_Leave(object sender, EventArgs e) - { - this.tbDirectoryInArchive.Text = System.IO.Path.GetFileName(this.tbDirectoryToZip.Text); - } - - private void richTextBox1_LinkClicked(object sender, LinkClickedEventArgs e) - { - System.Diagnostics.Process.Start(e.LinkText); - } - - - private void listView_DragEnter(object sender, DragEventArgs e) - { - if (e.Data.GetDataPresent("FileDrop") && (e.AllowedEffect & DragDropEffects.Copy) == DragDropEffects.Copy) - { - // Get the data. - var filePaths = (String[])e.Data.GetData("FileDrop"); - - // allow drop of one file on listView1, drop multiple files on listView2. - if (filePaths.Length == 1 || sender == this.listView2) - //A file is being dragged and it can be copied so provide feedback to the user. - e.Effect = DragDropEffects.Copy; - } - } - - private void listView1_DragDrop(object sender, DragEventArgs e) - { - // The data can only be dropped if it is a file list and it can be copied. - if (e.Data.GetDataPresent("FileDrop") && (e.AllowedEffect & DragDropEffects.Copy) == DragDropEffects.Copy) - { - // Get the data. - var filePaths = (String[])e.Data.GetData("FileDrop"); - - // The data is an array of file paths. - // If it is a single file and ends in .zip, then we know how to open it - // and display the contents. - // If it is more than one file, then we don't know what to do with it. - if (filePaths.Length == 1) - { - DisplayZipFile(filePaths[0]); - this.tbZipToOpen.Text = filePaths[0]; - this.tbExtractDir.Text = System.IO.Path.Combine(System.IO.Path.GetDirectoryName(filePaths[0]), System.IO.Path.GetFileNameWithoutExtension(filePaths[0]) + "_files"); - } - } - } - - private void listView2_DragDrop(object sender, DragEventArgs e) - { - // The data can only be dropped if it is a file list and it can be copied. - if (e.Data.GetDataPresent("FileDrop") && (e.AllowedEffect & DragDropEffects.Copy) == DragDropEffects.Copy) - { - // Get the data. - var filePaths = (String[])e.Data.GetData("FileDrop"); - this.listView2.BeginUpdate(); - foreach (var f in filePaths) - { - var item = new ListViewItem(); - - // first subitem is the local filename on disk - var subitem = new ListViewItem.ListViewSubItem(); - subitem.Text = f; - item.SubItems.Add(subitem); - - // next subitem is the directory name to use in the archive - subitem = new ListViewItem.ListViewSubItem(); - //subitem.Text = String.IsNullOrEmpty(_lastDirectory) ? this.tbDirectoryInArchive.Text : _lastDirectory; - subitem.Text = String.IsNullOrEmpty(_lastDirectory) - ? System.IO.Path.GetFileName(System.IO.Path.GetDirectoryName(f)) - : _lastDirectory; - item.SubItems.Add(subitem); - - // additional subitem (to be added): new filename in archive, if any - subitem = new ListViewItem.ListViewSubItem(); - item.SubItems.Add(subitem); - - this.listView2.Items.Add(item); - } - - this.listView2.AutoResizeColumns(ColumnHeaderAutoResizeStyle.HeaderSize); - this.listView2.EndUpdate(); - } - } - - private void listView2_SubItemClicked(object sender, ListViewEx.SubItemEventArgs e) - { - //this.AcceptButton = null; - - // Prevent editing the 0th column - it's the checkbox. We want the checkbox - // label to remain "". - if (e.SubItem == 0) return; - - this.listView2.StartEditing(this.textBox1, e.Item, e.SubItem); - //this.textBox1.Focus(); // to get the RETURN key? no. this did not work. - } - - - private void listView2_SubItemEndEditing(object sender, ListViewEx.SubItemEndEditingEventArgs e) - { - if (!e.Cancel) - { - e.DisplayText = textBox1.Text; - //this.AcceptButton = this.btnZipUp; - //this.listView2.Select(); - // this.listView2.AutoResizeColumns(ColumnHeaderAutoResizeStyle.HeaderSize); - } - //this.listView2.EndEditing(true); - } - - private void textBox1_KeyPress(object sender, KeyPressEventArgs e) - { - if (e.KeyChar == 13) - { - this.listView2.EndEditing(true); - e.Handled = true; - _lastDirectory = this.textBox1.Text; - } - } - - private void button1_Click(object sender, EventArgs e) - { - int nAdded = 0; - PauseUI(null); - try - { - // do file selection, add each item into the list box - var fs = new global::Ionic.FileSelector(this.tbSelectionToZip.Text,this.chkTraverseJunctions.Checked); - var files = fs.SelectFiles(this.tbDirectoryToZip.Text, this.chkRecurse.Checked); - this.listView2.BeginUpdate(); - foreach (String f in files) - { - var item = new ListViewItem(); - // first subitem is the filename - var subitem = new ListViewItem.ListViewSubItem(); - subitem.Text = f; - item.SubItems.Add(subitem); - // second subitem is the directory name in the archive. - subitem = new ListViewItem.ListViewSubItem(); - var dirInArchive = this.tbDirectoryInArchive.Text; - var subDir = System.IO.Path.GetDirectoryName(f.Replace(this.tbDirectoryToZip.Text, "")); - subDir = subDir.Substring(1); - subitem.Text = System.IO.Path.Combine(dirInArchive, subDir); - item.SubItems.Add(subitem); - - // third subitem is the filename in the archive, if ay - subitem = new ListViewItem.ListViewSubItem(); - item.SubItems.Add(subitem); - - this.listView2.Items.Add(item); - nAdded++; - } - - this.listView2.AutoResizeColumns(ColumnHeaderAutoResizeStyle.HeaderSize); - this.listView2.EndUpdate(); - this.lblStatus.Text = String.Format("Added {0} entries; {1} total entries to save.", nAdded, this.listView2.Items.Count); - - - // remember the successful selection strings - if (!_selectionCompletions.Contains(this.tbSelectionToZip.Text)) - { - if (_selectionCompletions.Count >= _MaxMruListSize) - _selectionCompletions.RemoveAt(0); - _selectionCompletions.Add(this.tbSelectionToZip.Text); - } - - } - catch - { } - ResetUiState(); - //_disableMasterChecking = false; - } - - - private void btnClearItemsToZip_Click(object sender, EventArgs e) - { - int rCount=0; - foreach (ListViewItem item in this.listView2.Items) - { - if (item.Checked) - { - this.listView2.Items.Remove(item); - rCount++; - } - } - - // After removing all the checked items, all items are now unchecked. - // We can set the mast checkbox to unchecked. But, we have to protect - // against infinite recursion. - _disableMasterChecking = true; - this.checkBox1.Checked = false; - _disableMasterChecking = false; - this.lblStatus.Text = (rCount == 1) - ? String.Format("Cleared 1 entry. {1} remaining entries to save.", rCount, this.listView2.Items.Count) - : String.Format("Cleared {0} entries. {1} remaining entries to save.", rCount, this.listView2.Items.Count); - } - - - - bool _disableMasterChecking = false; - private void checkBox1_CheckedChanged_1(object sender, EventArgs e) - { - // prevent infinite recursion. - if (_disableMasterChecking) return; - - // if we have a mixed state, then it happened programmatically - if (this.checkBox1.CheckState == CheckState.Indeterminate) return; - - _disableListViewCheckedEvent = true; - _disableMasterChecking = true; - // change state of ALL items - foreach (ListViewItem item in this.listView2.Items) - { - item.Checked = this.checkBox1.Checked; - } - _disableMasterChecking = false; - _disableListViewCheckedEvent = false; - } - - - private bool _disableListViewCheckedEvent; - private void listView2_ItemChecked(object sender, ItemCheckedEventArgs e) - { - // prevent infinite recursion - if (_disableListViewCheckedEvent) return; - - System.Drawing.Point p = this.listView2.PointToClient(new System.Drawing.Point(Cursor.Position.X, Cursor.Position.Y)); - ListViewItem lvi; - int ix = this.listView2.GetSubItemAt(p.X, p.Y, out lvi); - - // lvi is null when the checkchange comes from a non-mouse event, like when - // a new item is being added to the list. - if (lvi == null) return; - - // ix is 0 when the checkbox is the thing that was tickled with the mouse. - if (ix == 0) - MaybeSetMasterCheckbox(); - else - { - // Revert the checkChange if it was due to a mouse click on a subitem other than the 0th one. - // The Checked property has already been changed (in ListView.WndProc?); we need to undo it. - // In order to avoid an endless recursion, set the disable flag, first. - _disableListViewCheckedEvent = true; - lvi.Checked = !lvi.Checked; - _disableListViewCheckedEvent = false; - } - } - - - private void MaybeSetMasterCheckbox() - { - if (_disableMasterChecking) return; - - bool uniform = true; - // check the state of all the items - for (int i = 1; i < this.listView2.Items.Count; i++) - { - if (this.listView2.Items[i].Checked != this.listView2.Items[i - 1].Checked) - { - uniform = false; - break; - } - } - - _disableMasterChecking = true; - if (uniform) - this.checkBox1.CheckState = (this.listView2.Items[0].Checked) ? CheckState.Checked : CheckState.Unchecked; - else - this.checkBox1.CheckState = CheckState.Indeterminate; - _disableMasterChecking = false; - } - - private void listView2_BeforeLabelEdit(object sender, LabelEditEventArgs e) - { - // never let the use edit the label associated to the main listview item, - // the label on the item checkbox. - e.CancelEdit = true; - } - - - private int _progress2MaxFactor; - private int _totalEntriesToProcess; - private bool _working; - private bool _operationCanceled; - private int _nFilesCompleted; - private long _totalBytesBeforeCompress; - private long _totalBytesAfterCompress; - private Thread _workerThread; - private static string TB_COMMENT_NOTE = "-zip file comment here-"; - private static string TB_EXTRACT_DIR_NOTE = "-default extract directory-"; - private static string TB_EXE_ON_UNPACK_NOTE = "-command line to execute here-"; - private String _mostRecentEncryption; - private string _initialFileToLoad; - private string _lastDirectory; - } - - - - // The ColHeader class is a ColumnHeader object with an - // added property for determining an ascending or descending sort. - // True specifies an ascending order, false specifies a descending order. - public class SortableColumnHeader : ColumnHeader - { - public bool SortAscending; - public SortableColumnHeader(string text) - { - this.Text = text; - this.SortAscending = true; - } - } - - - // An instance of the SortWrapper class is created for - // each item and added to the ArrayList for sorting. - public class ItemWrapper - { - internal ListViewItem Item; - internal int Column; - - // A SortWrapper requires the item and the index of the clicked column. - public ItemWrapper(ListViewItem item, int column) - { - Item = item; - Column = column; - } - - // Text property for getting the text of an item. - public string Text - { - get { return Item.SubItems[Column].Text; } - } - - // Implementation of the IComparer - public class StringComparer : IComparer - { - bool ascending; - - // Constructor requires the sort order; - // true if ascending, otherwise descending. - public StringComparer(bool asc) - { - this.ascending = asc; - } - - // Implemnentation of the IComparer:Compare - // method for comparing two objects. - public int Compare(ItemWrapper xItem, ItemWrapper yItem) - { - string xText = xItem.Item.SubItems[xItem.Column].Text; - string yText = yItem.Item.SubItems[yItem.Column].Text; - return xText.CompareTo(yText) * (this.ascending ? 1 : -1); - } - } - - public class NumericComparer : IComparer - { - bool ascending; - - // Constructor requires the sort order; - // true if ascending, otherwise descending. - public NumericComparer(bool asc) - { - this.ascending = asc; - } - - // Implementation of the IComparer:Compare - // method for comparing two objects. - public int Compare(ItemWrapper xItem, ItemWrapper yItem) - { - int x = 0, y = 0; - try - { - x = Int32.Parse(xItem.Item.SubItems[xItem.Column].Text); - y = Int32.Parse(yItem.Item.SubItems[yItem.Column].Text); - } - catch - { - try - { - // lop off one char for % - String trimmed = null; - trimmed = xItem.Item.SubItems[xItem.Column].Text; - trimmed = trimmed.Substring(0, trimmed.Length - 1); - x = Int32.Parse(trimmed); - trimmed = xItem.Item.SubItems[yItem.Column].Text; - trimmed = trimmed.Substring(0, trimmed.Length - 1); - y = Int32.Parse(trimmed); - } - catch { } - } - return (x - y) * (this.ascending ? 1 : -1); - } - } - } - public class ExtractWorkerOptions - { - public string ExtractLocation; - public Ionic.Zip.ExtractExistingFileAction ExtractExisting; - public bool OpenExplorer; - public String Selection; - } - - public class SaveWorkerOptions - { - public string ZipName; - public string Selection; - public bool TraverseJunctions; - public bool RemoveFilesAfterExe; - public string Encoding; - public Ionic.Zip.ZipOption EncodingUsage; - public string Comment; - public string Password; - public string ExeOnUnpack; - public string ExtractDirectory; - public int ExtractExistingFile; - public int ZipFlavor; - public int MaxSegmentSize; - public Ionic.Zlib.CompressionLevel CompressionLevel; - public Ionic.Zip.CompressionMethod CompressionMethod; - public Ionic.Zip.EncryptionAlgorithm Encryption; - public Zip64Option Zip64; - public bool WindowsTimes; - public bool UnixTimes; - public ItemToAdd[] Entries; - } - - public class ItemToAdd - { - public string LocalFileName; - public string DirectoryInArchive; - public string FileNameInArchive; - } - - - internal class HiResTimer - { - // usage: - // - // hrt= new HiResTimer(); - // hrt.Start(); - // ... do work ... - // hrt.Stop(); - // System.Console.WriteLine("elapsed time: {0:N4}", hrt.Seconds); - // - - [System.Runtime.InteropServices.DllImport("KERNEL32")] - private static extern bool QueryPerformanceCounter(ref long lpPerformanceCount); - - [System.Runtime.InteropServices.DllImport("KERNEL32")] - private static extern bool QueryPerformanceFrequency(ref long lpFrequency); - - private long m_TickCountAtStart = 0; - private long m_TickCountAtStop = 0; - private long m_ElapsedTicks = 0; - - public HiResTimer() - { - m_Frequency = 0; - QueryPerformanceFrequency(ref m_Frequency); - } - - public void Start() - { - m_TickCountAtStart = 0; - QueryPerformanceCounter(ref m_TickCountAtStart); - } - - public void Stop() - { - m_TickCountAtStop = 0; - QueryPerformanceCounter(ref m_TickCountAtStop); - m_ElapsedTicks = m_TickCountAtStop - m_TickCountAtStart; - } - - public void Reset() - { - m_TickCountAtStart = 0; - m_TickCountAtStop = 0; - m_ElapsedTicks = 0; - } - - public long Elapsed - { - get { return m_ElapsedTicks; } - } - - public float Seconds - { - get { return ((float)m_ElapsedTicks / (float)m_Frequency); } - } - - private long m_Frequency = 0; - public long Frequency - { - get { return m_Frequency; } - } - - } - -} +// ZipForm.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009-2011 Dino Chiesa +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// + +using System; +using System.Collections.Generic; +using System.Threading; +using System.Windows.Forms; +using Ionic.Zip; + +namespace Ionic.Zip.Forms +{ + public partial class ZipForm : Form + { + delegate void ZipProgress(ZipProgressEventArgs e); + delegate void ButtonClick(object sender, EventArgs e); + HiResTimer _hrt; + + public ZipForm() + { + InitializeComponent(); + + InitializeListboxes(); + FixTitle(); + FillFormFromRegistry(); + AdoptProgressBars(); + SetListView2(); + SetTextBoxes(); + + // first run only + if (numRuns == 0) + this.tabControl1.SelectedIndex = 2; // help/about tab + } + + // This constructor works to load zips from the command line. + // It also works to allow "open With..." from Windows Explorer. + public ZipForm(string[] args) + : this() + { + if (args != null && args.Length >= 1 && args[0] != null) + _initialFileToLoad = args[0]; + } + + // in ZipForm.DragDrop.cs + partial void SetDragDrop(); + + private void SetTextBoxes() + { + this.tbComment.Text= TB_COMMENT_NOTE; + this.tbDefaultExtractDirectory.Text= TB_EXTRACT_DIR_NOTE; + this.tbExeOnUnpack.Text= TB_EXE_ON_UNPACK_NOTE; + + // set autocomplete on a few textboxes + this.tbDirectoryToZip.AutoCompleteMode = AutoCompleteMode.Suggest; + this.tbDirectoryToZip.AutoCompleteSource = AutoCompleteSource.FileSystemDirectories; + + this.tbExtractDir.AutoCompleteMode = AutoCompleteMode.Suggest; + this.tbExtractDir.AutoCompleteSource = AutoCompleteSource.FileSystemDirectories; + + this.tbZipToOpen.AutoCompleteMode = AutoCompleteMode.Suggest; + this.tbZipToOpen.AutoCompleteSource = AutoCompleteSource.FileSystem; + + this.tbZipToCreate.AutoCompleteMode = AutoCompleteMode.Suggest; + this.tbZipToCreate.AutoCompleteSource = AutoCompleteSource.FileSystem; + + this.tbSelectionToExtract.AutoCompleteMode = AutoCompleteMode.Suggest; + this.tbSelectionToExtract.AutoCompleteSource = AutoCompleteSource.CustomSource; + this.tbSelectionToExtract.AutoCompleteCustomSource = _selectionCompletions; + + this.tbSelectionToZip.AutoCompleteMode = AutoCompleteMode.Suggest; + this.tbSelectionToZip.AutoCompleteSource = AutoCompleteSource.CustomSource; + this.tbSelectionToZip.AutoCompleteCustomSource = _selectionCompletions; + + tbExeOnUnpack_TextChanged(null, null); + } + + private void SetListView2() + { + // The listview2 is a ListViewEx control, an extension of + // System.Windows.Forms.ListView that allows editing of subitems using arbitrary + // controls. You can have a textbox, a datepicker, or other controls. + // I want the user to be able to modify the directory-in-archive value in the + // list, which is why ListViewEx is interesting. + + // I also want a checkbox associated to each list item, but I don't want the + // checkbox attached to the first subitem, as it normally is in a ListView. So I + // put an empty string as the main ListView item (subitem #0), and then the + // filename and directory-in-archive value in the 2nd and 3rd columns (subitems 1 + // and 2). This way, the checkbox gets its own column. + + // Next twist is I want the checkbox label to be uneditable, which is easy + // by just installing a listView2_BeforeLabelEdit method and always cancelling + // it. (e.CancelEdit = true). + + // And then there is a "master checkbox" at the column header that indicates + // whether the state of all checkboxes in the list is the same. With the "check + // change" of any item in the list I want to see if the master should be checked + // or unchecked. + + // The final thing is I want the checkbox for each item to change state only if I + // click on the checkbox itself, rather than "anywhere in the item row". + + this.listView2.SubItemClicked += new ListViewEx.SubItemEventHandler(listView2_SubItemClicked); + this.listView2.SubItemEndEditing += new ListViewEx.SubItemEndEditingEventHandler(listView2_SubItemEndEditing); + this.listView2.DoubleClickActivation = true; + SetDragDrop(); + } + + + + private void AdoptProgressBars() + { + tabControl1_SelectedIndexChanged(null, null); + } + + private void FixTitle() + { + this.Text = String.Format("DotNetZip Tool v{0}", + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()); + } + + private void InitializeListboxes() + { + InitEncodingsList(); + InitFlavorList(); + InitZip64List(); + InitCompMethodList(); + InitCompressionLevelList(); + InitEncryptionList(); + InitSplitBox(); + InitExtractExistingFileList(); + } + + private void InitSplitBox() + { + string[] values = { "-none-", "64kb", "128kb", "256kb", "512kb", "1mb", "2mb", "4mb", "8mb", "16mb", "32mb", "64mb", "128mb", "256mb", "512mb", "1gb" }; + foreach (var value in values) + this.comboSplit.Items.Add(value); + this.comboSplit.SelectedIndex = 0; + + this.comboSplit.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + //this.comboSplit.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + } + + private void InitEncryptionList() + { + List _EncryptionNames = new List(Enum.GetNames(typeof(Ionic.Zip.EncryptionAlgorithm))); + foreach (var name in _EncryptionNames) + { + if (name != "Unsupported") + comboEncryption.Items.Add(name); + } + + // select the first item: + comboEncryption.SelectedIndex = 0; + this.tbPassword.Text = ""; + } + + + private void InitExtractExistingFileList() + { + List _ExtractActionNames = new List(Enum.GetNames(typeof(Ionic.Zip.ExtractExistingFileAction))); + foreach (var name in _ExtractActionNames) + { + if (!name.StartsWith("Invoke")) + { + if (name.StartsWith("Throw")) + comboExistingFileAction.Items.Add("Stop"); + else + comboExistingFileAction.Items.Add(name); + } + } + + // select the first item: + comboExistingFileAction.SelectedIndex = 0; + } + + + private void InitEncodingsList() + { + List _EncodingNames = new List(); + var e = System.Text.Encoding.GetEncodings(); + foreach (var e1 in e) + { + if (!_EncodingNames.Contains(e1.Name)) + if (!_EncodingNames.Contains(e1.Name.ToUpper())) + if (!_EncodingNames.Contains(e1.Name.ToLower())) + if (e1.Name != "IBM437" && e1.Name != "utf-8") + _EncodingNames.Add(e1.Name); + } + _EncodingNames.Sort(); + comboEncoding.Items.Add("zip default (IBM437)"); + comboEncoding.Items.Add("utf-8"); + foreach (var name in _EncodingNames) + { + comboEncoding.Items.Add(name); + } + + // select the first item: + comboEncoding.SelectedIndex = 0; + + // also set the encoding usage + List _UsageNames = new List(Enum.GetNames(typeof(Ionic.Zip.ZipOption))); + _UsageNames.Sort(); + foreach (var name in _UsageNames) + { + if (!name.StartsWith("Default")) + comboEncodingUsage.Items.Add(name); + } + + // select the first item: + comboEncodingUsage.SelectedIndex = 0; + } + + + private void InitCompressionLevelList() + { + List _CompressionLevelNames = new List(Enum.GetNames(typeof(Ionic.Zlib.CompressionLevel))); + _CompressionLevelNames.Sort(); + foreach (var name in _CompressionLevelNames) + { + if (!name.StartsWith("Level")) + { + comboCompLevel.Items.Add(name); + } + } + + // select the 2nd item, "Default": + comboCompLevel.SelectedIndex = 2; + } + + private void InitFlavorList() + { + this.comboFlavor.Items.Add("traditional Zip"); + this.comboFlavor.Items.Add("Self-extractor (GUI)"); + this.comboFlavor.Items.Add("Self-extractor (CMD)"); + // select the first item: + comboFlavor.SelectedIndex = 0; + } + + private void InitZip64List() + { + var _Names = new List(Enum.GetNames(typeof(Ionic.Zip.Zip64Option))); + _Names.Sort(); + foreach (var name in _Names) + { + if (!name.StartsWith("Default")) + comboZip64.Items.Add(name); + } + + // select the first item: + comboZip64.SelectedIndex = 0; + } + + + private void InitCompMethodList() + { + var _Names = new List(Enum.GetNames(typeof(Ionic.Zip.CompressionMethod))); + _Names.Sort(); + foreach (var name in _Names) + { + if (!name.StartsWith("Default")) + comboCompMethod.Items.Add(name); + } + + // select DEFLATE: + comboCompMethod.SelectedIndex = 1; + } + + + + private void KickoffZipup() + { + if (String.IsNullOrEmpty(this.tbDirectoryToZip.Text)) return; + if (!System.IO.Directory.Exists(this.tbDirectoryToZip.Text)) + { + var dlgResult = MessageBox.Show(String.Format("The directory you have specified ({0}) does not exist.", this.tbZipToCreate.Text), + "Not gonna happen", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + return; + } + + if (this.tbZipToCreate.Text == null || this.tbZipToCreate.Text == "") return; + + // check for existence of the zip file: + if (System.IO.File.Exists(this.tbZipToCreate.Text)) + { + var dlgResult = MessageBox.Show(String.Format("The file you have specified ({0}) already exists. Do you want to overwrite this file?", this.tbZipToCreate.Text), "Confirmation is Required", MessageBoxButtons.YesNo, MessageBoxIcon.Question); + if (dlgResult != DialogResult.Yes) return; + System.IO.File.Delete(this.tbZipToCreate.Text); + } + + + // check for a valid zip file name: + string extension = System.IO.Path.GetExtension(this.tbZipToCreate.Text); + if ((extension != ".exe" && (this.comboFlavor.SelectedIndex == 1 || this.comboFlavor.SelectedIndex == 2)) || + (extension != ".zip" && this.comboFlavor.SelectedIndex == 0)) + { + var dlgResult = MessageBox.Show(String.Format("The file you have specified ({0}) has a non-standard extension ({1}) for this zip flavor. Do you want to continue anyway?", + this.tbZipToCreate.Text, extension), "Hold on there, pardner!", MessageBoxButtons.YesNo, MessageBoxIcon.Question); + if (dlgResult != DialogResult.Yes) return; + System.IO.File.Delete(this.tbZipToCreate.Text); + } + + _hrt = new HiResTimer(); + _hrt.Start(); + + _working = true; + _operationCanceled = false; + _nFilesCompleted = 0; + _totalBytesAfterCompress = 0; + _totalBytesBeforeCompress = 0; + PauseUI("Zipping..."); + lblStatus.Text = "Zipping..."; + + var options = new SaveWorkerOptions + { + ZipName = this.tbZipToCreate.Text, + Selection = this.tbSelectionToZip.Text, + TraverseJunctions = this.chkTraverseJunctions.Checked, + Encoding = "ibm437", + //EncodingUsage = ZipOption.Always, + ZipFlavor = this.comboFlavor.SelectedIndex, + Password = this.tbPassword.Text, + WindowsTimes = this.chkWindowsTime.Checked, + UnixTimes = this.chkUnixTime.Checked, + RemoveFilesAfterExe = this.chkRemoveFiles.Checked, + ExtractExistingFile = this.comboExistingFileAction.SelectedIndex, + }; + + if (this.comboEncoding.SelectedIndex != 0) + options.Encoding = this.comboEncoding.SelectedItem.ToString(); + + options.Encryption = (EncryptionAlgorithm) Enum.Parse(typeof(EncryptionAlgorithm), + this.comboEncryption.SelectedItem.ToString()); + + options.CompressionLevel = (Ionic.Zlib.CompressionLevel) Enum.Parse(typeof(Ionic.Zlib.CompressionLevel), + this.comboCompLevel.SelectedItem.ToString()); + options.CompressionMethod = (Ionic.Zip.CompressionMethod) Enum.Parse(typeof(Ionic.Zip.CompressionMethod), + this.comboCompMethod.SelectedItem.ToString()); + + options.EncodingUsage = (Ionic.Zip.ZipOption) Enum.Parse(typeof(Ionic.Zip.ZipOption), + this.comboEncodingUsage.SelectedItem.ToString()); + + string arg = this.comboSplit.SelectedItem.ToString().ToUpper(); + + try + { + int multiplier = 1; + int suffixLength = 0; + if (arg.EndsWith("KB")) + { + multiplier = 1024; suffixLength = 2; + } + else if (arg.EndsWith("K")) + { + multiplier = 1024; suffixLength = 1; + } + else if (arg.EndsWith("MB")) + { + multiplier = 1024*1024; suffixLength = 2; + } + else if (arg.EndsWith("M")) + { + multiplier = 1024*1024; suffixLength = 1; + } + else if (arg.EndsWith("GB")) + { + multiplier = 1024*1024*1024; suffixLength = 2; + } + else if (arg.EndsWith("G")) + { + multiplier = 1024*1024*1024; suffixLength = 1; + } + + if (suffixLength > 0) + { + options.MaxSegmentSize = + Int32.Parse(arg.Substring(0,arg.Length-suffixLength)) * multiplier; + } + else + options.MaxSegmentSize = Int32.Parse(arg); + } + catch + { + // just reset to "none" + this.comboSplit.SelectedIndex = 0; + options.MaxSegmentSize = 0; + } + + options.Zip64 = (Zip64Option)Enum.Parse(typeof(Zip64Option), + this.comboZip64.SelectedItem.ToString()); + + //this.listView2.Items.ToList(); + var entriesList = new System.Collections.ArrayList(this.listView2.Items); + options.Entries = System.Array.ConvertAll((ListViewItem[])entriesList.ToArray(typeof(ListViewItem)), (item) => + { + return new ItemToAdd + { + LocalFileName = item.SubItems[1].Text, + DirectoryInArchive = item.SubItems[2].Text, + FileNameInArchive = item.SubItems[3].Text, + }; + } + ); + + string compress = (options.CompressionMethod == Ionic.Zip.CompressionMethod.Deflate) + ? "Deflate level" + options.CompressionLevel.ToString() + : options.CompressionMethod.ToString(); + + options.Comment = String.Format("Encoding:{0} || Compression:{1} || Encrypt:{2} || ZIP64:{3}\r\nCreated at {4} || {5}\r\n", + options.Encoding, + compress, + (this.tbPassword.Text == "") ? "None" : options.Encryption.ToString(), + options.Zip64.ToString(), + System.DateTime.Now.ToString("yyyy-MMM-dd HH:mm:ss"), + this.Text); + + if (this.tbComment.Text != TB_COMMENT_NOTE) + options.Comment += this.tbComment.Text; + + if (this.tbExeOnUnpack.Text != TB_EXE_ON_UNPACK_NOTE) + options.ExeOnUnpack = this.tbExeOnUnpack.Text; + + if (this.tbDefaultExtractDirectory.Text != TB_EXTRACT_DIR_NOTE) + options.ExtractDirectory = this.tbDefaultExtractDirectory.Text; + + _workerThread = new Thread(this.DoSave); + _workerThread.Name = "Zip Saver thread"; + _workerThread.Start(options); + this.Cursor = Cursors.WaitCursor; + } + + + private string FlavorToString(int p) + { + if (p == 2) return "SFX-CMD"; + if (p == 1) return "SFX-GUI"; + return "ZIP"; + } + + + private bool _firstFocusInCommentTextBox = true; + private void tbComment_Enter(object sender, EventArgs e) + { + if (_firstFocusInCommentTextBox) + { + tbComment.Text = ""; + tbComment.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + tbComment.ForeColor = System.Drawing.SystemColors.WindowText; + _firstFocusInCommentTextBox = false; + } + } + + private void tbComment_Leave(object sender, EventArgs e) + { + string TextInTheBox = tbComment.Text; + + if ((TextInTheBox == null) || (TextInTheBox == "")) + { + this.tbComment.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.tbComment.ForeColor = System.Drawing.SystemColors.InactiveCaption; + _firstFocusInCommentTextBox = true; + this.tbComment.Text = TB_COMMENT_NOTE; + } + } + + + private bool _firstFocusInExtractDirTextBox = true; + private void tbDefaultExtractDirectory_Enter(object sender, EventArgs e) + { + if (_firstFocusInExtractDirTextBox) + { + tbDefaultExtractDirectory.Text = ""; + tbDefaultExtractDirectory.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + tbDefaultExtractDirectory.ForeColor = System.Drawing.SystemColors.WindowText; + _firstFocusInExtractDirTextBox = false; + } + } + + private void tbDefaultExtractDirectory_Leave(object sender, EventArgs e) + { + string TextInTheBox = tbDefaultExtractDirectory.Text; + + if ((TextInTheBox == null) || (TextInTheBox == "")) + { + this.tbDefaultExtractDirectory.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.tbDefaultExtractDirectory.ForeColor = System.Drawing.SystemColors.InactiveCaption; + _firstFocusInExtractDirTextBox = true; + this.tbDefaultExtractDirectory.Text = TB_EXTRACT_DIR_NOTE; + } + } + + + // I want the values in the combobox to be right-aligned. + private int delta = 0; + private void comboBox1_DrawItem(object sender, System.Windows.Forms.DrawItemEventArgs e) + { + var rc = new System.Drawing.Rectangle(e.Bounds.X + delta, e.Bounds.Y + delta, + e.Bounds.Width - delta, e.Bounds.Height - delta); + + var sf = new System.Drawing.StringFormat + { + Alignment = System.Drawing.StringAlignment.Far + }; + + string str = (string)comboSplit.Items[e.Index]; + + if (e.State == (DrawItemState.Selected | DrawItemState.NoAccelerator + | DrawItemState.NoFocusRect) || + e.State == DrawItemState.Selected) + { + e.Graphics.FillRectangle(new System.Drawing.SolidBrush(System.Drawing.Color.CornflowerBlue), rc); + e.Graphics.DrawString(str, this.comboSplit.Font, new System.Drawing.SolidBrush(System.Drawing.Color.Cyan), rc, sf); + } + else + { + e.Graphics.FillRectangle(new System.Drawing.SolidBrush(System.Drawing.Color.White), rc); + e.Graphics.DrawString(str, this.comboSplit.Font, new System.Drawing.SolidBrush(System.Drawing.Color.Black), rc, sf); + } + } + + + private bool _firstFocusInExeTextBox = true; + private void tbExeOnUnpack_Enter(object sender, EventArgs e) + { + if (_firstFocusInExeTextBox) + { + tbExeOnUnpack.Text = ""; + tbExeOnUnpack.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + tbExeOnUnpack.ForeColor = System.Drawing.SystemColors.WindowText; + _firstFocusInExeTextBox = false; + } + } + + private void tbExeOnUnpack_Leave(object sender, EventArgs e) + { + string TextInTheBox = tbExeOnUnpack.Text; + + if ((TextInTheBox == null) || (TextInTheBox == "")) + { + this.tbExeOnUnpack.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.tbExeOnUnpack.ForeColor = System.Drawing.SystemColors.InactiveCaption; + _firstFocusInExeTextBox = true; + this.tbExeOnUnpack.Text = TB_EXE_ON_UNPACK_NOTE; + this.label18.Enabled = false; + this.chkRemoveFiles.Enabled = false; + } + else + { + this.label18.Enabled = true; + this.chkRemoveFiles.Enabled = true; + } + } + + + private void tbExeOnUnpack_TextChanged(object sender, EventArgs e) + { + if (this.tbExeOnUnpack.Text != TB_EXE_ON_UNPACK_NOTE && this.tbExeOnUnpack.Text != "") + { + this.label18.Enabled = true; + this.chkRemoveFiles.Enabled = true; + } + else + { + this.label18.Enabled = false; + this.chkRemoveFiles.Enabled = false; + } + } + + + + private void SetProgressBars() + { + if (this.progressBar1.InvokeRequired) + { + this.progressBar1.Invoke(new MethodInvoker(this.SetProgressBars)); + //this.progressBar1.Invoke(new ProgressBarSetup(this.SetProgressBars), new object[] { count }); + } + else + { + this.progressBar1.Value = 0; + this.progressBar1.Maximum = _totalEntriesToProcess; + this.progressBar1.Minimum = 0; + this.progressBar1.Step = 1; + this.progressBar2.Value = 0; + this.progressBar2.Minimum = 0; + this.progressBar2.Maximum = 1; // will be set later, for each entry. + this.progressBar2.Step = 1; + } + } + + + private void DoSave(Object p) + { + SaveWorkerOptions options = p as SaveWorkerOptions; + try + { + using (var zip1 = new ZipFile()) + { + zip1.CompressionMethod = options.CompressionMethod; + zip1.CompressionLevel = options.CompressionLevel; + zip1.AlternateEncoding = System.Text.Encoding.GetEncoding(options.Encoding); + zip1.AlternateEncodingUsage = options.EncodingUsage; + zip1.Comment = options.Comment; + zip1.MaxOutputSegmentSize = options.MaxSegmentSize; + zip1.Password = (options.Password != "") ? options.Password : null; + zip1.Encryption = options.Encryption; + zip1.EmitTimesInWindowsFormatWhenSaving = options.WindowsTimes; + zip1.EmitTimesInUnixFormatWhenSaving = options.UnixTimes; + zip1.AddDirectoryWillTraverseReparsePoints = options.TraverseJunctions; + foreach (ItemToAdd item in options.Entries) + { + var e = zip1.AddItem(item.LocalFileName, item.DirectoryInArchive); + // use a different name in the archive if appropriate + if (!String.IsNullOrEmpty(item.FileNameInArchive) && item.FileNameInArchive != System.IO.Path.GetFileName(item.LocalFileName)) + e.FileName = item.FileNameInArchive; + } + + _totalEntriesToProcess = zip1.EntryFileNames.Count; + SetProgressBars(); + zip1.TempFileFolder = System.IO.Path.GetDirectoryName(options.ZipName); + zip1.SaveProgress += this.zip1_SaveProgress; + + zip1.UseZip64WhenSaving = options.Zip64; + + if (options.ZipFlavor == 2 || options.ZipFlavor == 1) + { + SelfExtractorSaveOptions sfxOptions = new SelfExtractorSaveOptions() + { + Flavor = (options.ZipFlavor == 1)?SelfExtractorFlavor.WinFormsApplication: + SelfExtractorFlavor.ConsoleApplication, + DefaultExtractDirectory = options.ExtractDirectory, + PostExtractCommandLine = options.ExeOnUnpack, + RemoveUnpackedFilesAfterExecute = options.RemoveFilesAfterExe, + ExtractExistingFile = (ExtractExistingFileAction) options.ExtractExistingFile, + }; + + zip1.SaveSelfExtractor(options.ZipName, sfxOptions); + } + else + zip1.Save(options.ZipName); + } + } + catch (System.Exception exc1) + { + MessageBox.Show(String.Format("Exception while zipping:\n{0}\n\n{1}", exc1.Message, exc1.StackTrace.ToString())); + btnCancel_Click(null, null); + } + } + + + + void zip1_SaveProgress(object sender, SaveProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Saving_AfterWriteEntry: + StepArchiveProgress(e); + break; + case ZipProgressEventType.Saving_EntryBytesRead: + StepEntryProgress(e); + break; + case ZipProgressEventType.Saving_Completed: + SaveCompleted(); + break; + case ZipProgressEventType.Saving_AfterSaveTempArchive: + TempArchiveSaved(); + break; + } + if (_operationCanceled) + e.Cancel = true; + } + + private void TempArchiveSaved() + { + if (this.lblStatus.InvokeRequired) + { + this.lblStatus.Invoke(new MethodInvoker(this.TempArchiveSaved)); + } + else + { + System.TimeSpan ts = new System.TimeSpan(0, 0, (int)_hrt.Seconds); + + lblStatus.Text = String.Format("Temp archive saved ({0})...{1}...", + ts.ToString(), + (this.comboFlavor.SelectedIndex == 0) + ? "finishing" + : "compiling SFX"); + } + } + + + + private void SaveCompleted() + { + if (this.lblStatus.InvokeRequired) + { + this.lblStatus.Invoke(new MethodInvoker(this.SaveCompleted)); + } + else + { + _hrt.Stop(); + System.TimeSpan ts = new System.TimeSpan(0, 0, (int)_hrt.Seconds); + lblStatus.Text = String.Format("Done, Compressed {0} files, {1:N0}% of original, time: {2}", + _nFilesCompleted, (100.00 * _totalBytesAfterCompress) / _totalBytesBeforeCompress, + ts.ToString()); + ResetUiState(); + } + } + + + + private void StepArchiveProgress(ZipProgressEventArgs e) + { + if (this.progressBar1.InvokeRequired) + { + this.progressBar1.Invoke(new ZipProgress(this.StepArchiveProgress), new object[] { e }); + } + else + { + if (!_operationCanceled) + { + _nFilesCompleted++; + this.progressBar1.PerformStep(); + _totalBytesAfterCompress += e.CurrentEntry.CompressedSize; + _totalBytesBeforeCompress += e.CurrentEntry.UncompressedSize; + + // reset the progress bar for the entry: + this.progressBar2.Value = this.progressBar2.Maximum = 1; + + this.Update(); + +#if NOT_SPEEDY + // Sleep here just to show the progress bar, when the number of files is small, + // or when all done. + // You may not want this for actual use! + if (this.progressBar2.Value == this.progressBar2.Maximum) + Thread.Sleep(350); + else if (_entriesToZip < 10) + Thread.Sleep(350); + else if (_entriesToZip < 20) + Thread.Sleep(200); + else if (_entriesToZip < 30) + Thread.Sleep(100); + else if (_entriesToZip < 45) + Thread.Sleep(80); + else if (_entriesToZip < 75) + Thread.Sleep(40); + // more than 75 entries, don't sleep at all. +#endif + + } + } + } + + + private void StepEntryProgress(ZipProgressEventArgs e) + { + if (this.progressBar2.InvokeRequired) + { + this.progressBar2.Invoke(new ZipProgress(this.StepEntryProgress), new object[] { e }); + } + else + { + if (!_operationCanceled) + { + if (this.progressBar2.Maximum == 1) + { + // reset + Int64 entryMax = e.TotalBytesToTransfer; + Int64 absoluteMax = System.Int32.MaxValue; + _progress2MaxFactor = 0; + while (entryMax > absoluteMax) + { + entryMax /= 2; + _progress2MaxFactor++; + } + if ((int)entryMax < 0) entryMax *= -1; + this.progressBar2.Maximum = (int)entryMax; + lblStatus.Text = String.Format("{0} of {1} files...({2})", + _nFilesCompleted + 1, _totalEntriesToProcess, e.CurrentEntry.FileName); + } + + // downcast is safe here because we have shifted e.BytesTransferred + int xferred = (int)(e.BytesTransferred >> _progress2MaxFactor); + + this.progressBar2.Value = (xferred >= this.progressBar2.Maximum) + ? this.progressBar2.Maximum + : xferred; + + this.Update(); + } + } + } + + + + private void btnDirBrowse_Click(object sender, EventArgs e) + { + var dlg1 = new Ionic.Utils.FolderBrowserDialogEx + { + Description = "Select a folder to zip up:", + ShowNewFolderButton = false, + ShowEditBox = true, + //NewStyle = false, + SelectedPath = this.tbDirectoryToZip.Text, + ShowFullPathInEditBox = true, + }; + dlg1.RootFolder = System.Environment.SpecialFolder.MyComputer; + + var result = dlg1.ShowDialog(); + + if (result == DialogResult.OK) + { + this.tbDirectoryToZip.Text = dlg1.SelectedPath; + this.tbDirectoryInArchive.Text = System.IO.Path.GetFileName(this.tbDirectoryToZip.Text); + } + } + + private void btnCreateZipBrowse_Click(object sender, EventArgs e) + { + var dlg1 = new SaveFileDialog + { + OverwritePrompt = false, + Title = "Where would you like to save the generated Zip file?", + Filter = "ZIP files|*.zip", + }; + + try + { + dlg1.FileName = System.IO.Path.GetFileName(this.tbZipToCreate.Text); + } + catch + { + dlg1.FileName = ""; + } + + try + { + dlg1.InitialDirectory = System.IO.Path.GetDirectoryName(this.tbZipToCreate.Text); + } + catch + { + dlg1.InitialDirectory = ""; + } + + var result = dlg1.ShowDialog(); + if (result == DialogResult.OK) + { + this.tbZipToCreate.Text = dlg1.FileName; + } + } + + + private void btnZipup_Click(object sender, EventArgs e) + { + // Do not start zipping while editing a textbox + // in listView2. + if (!textBox1.Visible) + KickoffZipup(); + } + + private void btnCancel_Click(object sender, EventArgs e) + { + if (this.lblStatus.InvokeRequired) + { + this.lblStatus.Invoke(new ButtonClick(this.btnCancel_Click), new object[] { sender, e }); + } + else + { + _operationCanceled = true; + lblStatus.Text = "Canceled..."; + ResetUiState(); + } + } + + private void comboFlavor_SelectedIndexChanged(object sender, EventArgs e) + { + if (this.comboFlavor.SelectedIndex == 1 || this.comboFlavor.SelectedIndex == 2) + { + // intelligently change the name of the thing to create + // It's an SFX, swap out ZIP and insert EXE + if (this.tbZipToCreate.Text.ToUpper().EndsWith(".ZIP")) + { + tbZipToCreate.Text = System.Text.RegularExpressions.Regex.Replace(tbZipToCreate.Text, "(?i:)\\.zip$", ".exe"); + } + // enable/disable other dependent UI elements + this.label17.Enabled = false; + this.comboSplit.Enabled = false; + this.label15.Enabled = true; + this.tbDefaultExtractDirectory.Enabled = true; + this.label16.Enabled = true; + this.tbExeOnUnpack.Enabled = true; + + this.label18.Enabled = true; + this.chkRemoveFiles.Enabled = true; + + } + else if (this.comboFlavor.SelectedIndex == 0) + { + // intelligently change the name of the thing to create + // It's a regular ZIP, so swap out EXE and insert ZIP + if (this.tbZipToCreate.Text.ToUpper().EndsWith(".EXE")) + { + tbZipToCreate.Text = System.Text.RegularExpressions.Regex.Replace(tbZipToCreate.Text, "(?i:)\\.exe$", ".zip"); + } + + // enable/disable other dependent UI elements + this.label17.Enabled = true; + this.comboSplit.Enabled = true; + this.label15.Enabled = false; + this.tbDefaultExtractDirectory.Enabled = false; + this.label16.Enabled = false; + this.tbExeOnUnpack.Enabled = false; + this.label18.Enabled = false; + this.chkRemoveFiles.Enabled = false; + } + } + + + private void comboEncryption_SelectedIndexChanged(object sender, EventArgs e) + { + //this.tbPassword.Enabled = (this.comboBox3.SelectedItem.ToString() != "None"); + if (this.comboEncryption.SelectedIndex == 0) + { + this.label9.Enabled = false; + this.tbPassword.Enabled = false; + this.chkHidePassword.Enabled = false; + } + else + { + this.label9.Enabled = true; + this.tbPassword.Enabled = true; + this.chkHidePassword.Enabled = true; + } + } + + private void comboCompMethod_SelectedIndexChanged(object sender, EventArgs e) + { + if (this.comboCompMethod.SelectedIndex == 1) // DEFLATE + { + this.label4.Enabled = true; + this.comboCompLevel.Enabled = true; + } + else + { + this.label4.Enabled = false; + this.comboCompLevel.Enabled = false; + } + } + + private void comboEncoding_SelectedIndexChanged(object sender, EventArgs e) + { + this.comboEncodingUsage.Enabled = (this.comboEncoding.SelectedIndex != 0); + } + + private void checkBox1_CheckedChanged(object sender, EventArgs e) + { + this.tbPassword.PasswordChar = (this.chkHidePassword.Checked) ? '*' : '\0'; + } + + private void ResetUiState() + { + this.btnZipUp.Text = "Zip it!"; + this.btnZipUp.Enabled = true; + this.btnCancel.Text = "Cancel"; + this.btnCancel.Enabled = false; + this.btnExtract.Text = "Extract"; + this.btnExtractDirBrowse.Enabled = true; + this.btnZipupDirBrowse.Enabled = true; + this.btnReadZipBrowse.Enabled = true; + this.btnClearItemsToZip.Enabled = true; + this.btnCreateZipBrowse.Enabled = true; + + this.progressBar1.Value = 0; + this.progressBar2.Value = 0; + this.Cursor = Cursors.Default; + if (_workerThread != null) + if (!_workerThread.IsAlive) + _workerThread.Join(); + + _working = false; + } + + + private void SelectNamedEncoding(string s) + { + _SelectComboBoxItem(this.comboEncoding, s); + } + + private void SelectNamedEncodingUsage(string s) + { + _SelectComboBoxItem(this.comboEncodingUsage, s); + } + + private void SelectNamedCompressionLevel(string s) + { + _SelectComboBoxItem(this.comboCompLevel, s); + } + + private void SelectNamedCompressionMethod(string s) + { + _SelectComboBoxItem(this.comboCompMethod, s); + } + + private void SelectNamedEncryption(string s) + { + _SelectComboBoxItem(this.comboEncryption, s); + //tbPassword.Text = ""; + comboEncryption_SelectedIndexChanged(null, null); + } + + private void _SelectComboBoxItem(ComboBox c, string s) + { + for (int i = 0; i < c.Items.Count; i++) + { + if (c.Items[i].ToString() == s) + { + c.SelectedIndex = i; + break; + } + } + } + + + private void ZipForm_FormClosing(object sender, FormClosingEventArgs e) + { + SaveFormToRegistry(); + } + + + + private void btnZipBrowse_Click(object sender, EventArgs e) + { + OpenFileDialog openFileDialog1 = new OpenFileDialog(); + + openFileDialog1.InitialDirectory = (System.IO.File.Exists(this.tbZipToOpen.Text) ? System.IO.Path.GetDirectoryName(this.tbZipToOpen.Text) : this.tbZipToOpen.Text); + openFileDialog1.Filter = "zip files|*.zip|EXE files|*.exe|All Files|*.*"; + openFileDialog1.FilterIndex = 1; + openFileDialog1.RestoreDirectory = true; + + if (openFileDialog1.ShowDialog() == DialogResult.OK) + { + this.tbZipToOpen.Text = openFileDialog1.FileName; + if (System.IO.File.Exists(this.tbZipToOpen.Text)) + btnOpen_Click(sender, e); + } + } + + + + string _DisplayedZip = null; + + private void btnOpen_Click(object sender, EventArgs e) + { + if (!System.IO.File.Exists(this.tbZipToOpen.Text)) return; + DisplayZipFile(this.tbZipToOpen.Text); + } + + + private void DisplayZipFile(string zipFile) + { + try + { + listView1.Clear(); + listView1.BeginUpdate(); + + string[] columnHeaders = new string[] { "n", "name", "lastmod", "original", "ratio", "compressed", "enc?", "CRC" }; + foreach (string label in columnHeaders) + { + SortableColumnHeader ch = new SortableColumnHeader(label); + if (label != "name" && label != "lastmod") + ch.TextAlign = HorizontalAlignment.Right; + listView1.Columns.Add(ch); + } + + int n = 1; + var readOptions = new ReadOptions + { + Encoding = (comboEncoding.SelectedIndex > 0) + ? System.Text.Encoding.GetEncoding(comboEncoding.SelectedItem.ToString()) + : System.Text.Encoding.GetEncoding("IBM437") + }; + + using (ZipFile zip = ZipFile.Read(zipFile, readOptions)) + { + foreach (ZipEntry entry in zip.EntriesSorted) + { + ListViewItem item = new ListViewItem(n.ToString()); + n++; + string[] subitems = new string[] { + entry.FileName.Replace("/","\\"), + entry.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), + entry.UncompressedSize.ToString(), + String.Format("{0,5:F0}%", entry.CompressionRatio), + entry.CompressedSize.ToString(), + (entry.UsesEncryption) ? "Y" : "N", + String.Format("{0:X8}", entry.Crc)}; + + foreach (String s in subitems) + { + ListViewItem.ListViewSubItem subitem = new ListViewItem.ListViewSubItem(); + subitem.Text = s; + item.SubItems.Add(subitem); + } + + this.listView1.Items.Add(item); + } + } + + this.btnExtract.Enabled = true; + _DisplayedZip = zipFile; + this.listView1.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent); + this.listView1.EndUpdate(); + + } + catch (Exception exc1) + { + this.listView1.Clear(); + this.listView1.EndUpdate(); + MessageBox.Show(String.Format("There was a problem opening that file! [file={0}, problem={1}]", + zipFile, exc1.Message), "Whoops!", MessageBoxButtons.OK); + } + + } + + + private void btnExtractDirBrowse_Click(object sender, EventArgs e) + { + // pop a dialog to ask where to extract + // Configure the "select folder" dialog box + //_folderName = tbDirName.Text; + //_folderName = (System.IO.Directory.Exists(_folderName)) ? _folderName : ""; + var dlg1 = new Ionic.Utils.FolderBrowserDialogEx + { + Description = "Select a folder to extract to:", + ShowNewFolderButton = true, + ShowEditBox = true, + //NewStyle = false, + SelectedPath = tbExtractDir.Text, + ShowFullPathInEditBox = true, + }; + dlg1.RootFolder = System.Environment.SpecialFolder.MyComputer; + + var result = dlg1.ShowDialog(); + + if (result == DialogResult.OK) + { + this.tbExtractDir.Text = dlg1.SelectedPath; + // actually extract the files + } + + + } + + + + private void btnExtract_Click(object sender, EventArgs e) + { + if (!System.IO.File.Exists(_DisplayedZip)) return; + KickoffExtract(); + } + + + private void KickoffExtract() + { + if (String.IsNullOrEmpty(this.tbExtractDir.Text)) return; + + _hrt = new HiResTimer(); + _hrt.Start(); + + _working = true; + _operationCanceled = false; + _nFilesCompleted = 0; + _totalBytesAfterCompress = 0; + _totalBytesBeforeCompress = 0; + PauseUI(null); + lblStatus.Text = "Extracting..."; + + var options = new ExtractWorkerOptions + { + ExtractLocation = this.tbExtractDir.Text, + Selection = this.tbSelectionToExtract.Text, + OpenExplorer = this.chkOpenExplorer.Checked, + ExtractExisting = (ExtractExistingFileAction) comboExistingFileAction.SelectedIndex, + }; + + _workerThread = new Thread(this.DoExtract); + _workerThread.Name = "Zip Extractor thread"; + _workerThread.Start(options); + this.Cursor = Cursors.WaitCursor; + } + + + private void PauseUI(string msg) + { + // this set for Zipping + if (msg != null) + this.btnZipUp.Text = msg; + this.btnZipUp.Enabled = false; + this.btnZipupDirBrowse.Enabled = false; + this.btnCreateZipBrowse.Enabled = false; + this.btnClearItemsToZip.Enabled = false; + this.btnCancel.Enabled = true; + + // this for Extract + this.btnExtract.Enabled = false; + this.btnExtract.Text = "working..."; + this.btnExtractDirBrowse.Enabled = false; + this.btnCancel.Enabled = true; + this.btnReadZipBrowse.Enabled = false; + } + + + private void zip_ExtractProgress(object sender, ExtractProgressEventArgs e) + { + if (e.EventType == ZipProgressEventType.Extracting_EntryBytesWritten) + { + StepEntryProgress(e); + } + + else if (e.EventType == ZipProgressEventType.Extracting_AfterExtractEntry) + { + StepArchiveProgress(e); + } + if (_setCancel) + e.Cancel = true; + } + + + private void OnExtractDone() + { + if (this.lblStatus.InvokeRequired) + { + this.lblStatus.Invoke(new MethodInvoker(this.OnExtractDone)); + } + else + { + _hrt.Stop(); + System.TimeSpan ts = new System.TimeSpan(0, 0, (int)_hrt.Seconds); + lblStatus.Text = String.Format("Done, Extracted {0} files, time: {1}", + _nFilesCompleted, + ts.ToString()); + ResetUiState(); + + // remember the successful selection strings + if (!_selectionCompletions.Contains(this.tbSelectionToZip.Text)) + { + if (_selectionCompletions.Count >= _MaxMruListSize) + _selectionCompletions.RemoveAt(0); + _selectionCompletions.Add(this.tbSelectionToZip.Text); + } + } + } + + + bool _setCancel = false; + private void DoExtract(object p) + { + ExtractWorkerOptions options = p as ExtractWorkerOptions; + + bool extractCancelled = false; + _setCancel = false; + string currentPassword = ""; + + try + { + using (var zip = ZipFile.Read(_DisplayedZip)) + { + System.Collections.Generic.ICollection collection = null; + if (String.IsNullOrEmpty(options.Selection)) + collection = zip.Entries; + else + collection = zip.SelectEntries(options.Selection); + + _totalEntriesToProcess = collection.Count; + zip.ExtractProgress += zip_ExtractProgress; + SetProgressBars(); + foreach (global::Ionic.Zip.ZipEntry entry in collection) + { + if (_setCancel) { extractCancelled = true; break; } + if (entry.Encryption == global::Ionic.Zip.EncryptionAlgorithm.None) + { + try + { + entry.Extract(options.ExtractLocation, options.ExtractExisting); + } + catch (Exception ex1) + { + string msg = String.Format("Faisled to extract entry {0} -- {1}", + entry.FileName, + ex1.Message.ToString()); + DialogResult result = + MessageBox.Show(msg, + String.Format("Error Extracting {0}", entry.FileName), + MessageBoxButtons.OKCancel, + MessageBoxIcon.Exclamation, + MessageBoxDefaultButton.Button1); + + if (result == DialogResult.Cancel) + { + _setCancel = true; + extractCancelled = true; + break; + } + } + } + else + { + bool done = false; + while (!done) + { + if (currentPassword == "") + { + string t = PromptForPassword(entry.FileName); + if (t == "") + { + done = true; // escape ExtractWithPassword loop + continue; + } + currentPassword = t; + } + + if (currentPassword == null) // cancel all + { + _setCancel = true; + currentPassword = ""; + break; + } + + try + { + entry.ExtractWithPassword(options.ExtractLocation, options.ExtractExisting, currentPassword); + done = true; + } + catch (Exception ex2) + { + // Retry here in the case of bad password. + if (ex2 as Ionic.Zip.BadPasswordException != null) + { + currentPassword = ""; + continue; // loop around, ask for password again + } + else + { + string msg = + String.Format("Failed to extract the password-encrypted entry {0} -- {1}", + entry.FileName, ex2.Message.ToString()); + DialogResult result = + MessageBox.Show(msg, + String.Format("Error Extracting {0}", + entry.FileName), + MessageBoxButtons.OKCancel, + MessageBoxIcon.Exclamation, + MessageBoxDefaultButton.Button1); + + done = true; // done with this entry + if (result == DialogResult.Cancel) + { + _setCancel = true; + extractCancelled = true; + break; + } + } + } + } // while + } // else (encryption) + } // foreach + } // using + + + } + catch (Exception ex1) + { + MessageBox.Show(String.Format("There's been a problem extracting that zip file. {0}", ex1.Message), + "Error Extracting", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); + Application.Exit(); + } + + OnExtractDone(); + + if (extractCancelled) return; + + if (options.OpenExplorer) + { + string w = System.IO.Path.GetDirectoryName(Environment.GetFolderPath(Environment.SpecialFolder.System)); + if (w == null) w = "c:\\windows"; + try + { + System.Diagnostics.Process.Start(System.IO.Path.Combine(w, "explorer.exe"), options.ExtractLocation); + } + catch { } + } + } + + + private string PromptForPassword(string entryName) + { + PasswordDialog dlg1 = new PasswordDialog(); + dlg1.EntryName = entryName; + + // ask for password in a loop until user enters a proper one, + // or clicks skip or cancel. + bool done = false; + do + { + dlg1.ShowDialog(); + done = (dlg1.Result != PasswordDialog.PasswordDialogResult.OK || + dlg1.Password != ""); + } while (!done); + + if (dlg1.Result == PasswordDialog.PasswordDialogResult.OK) + return dlg1.Password; + + else if (dlg1.Result == PasswordDialog.PasswordDialogResult.Skip) + return ""; + + // cancel + return null; + } + + + private void tabControl1_SelectedIndexChanged(object sender, EventArgs e) + { + // Recycle the progress bars the cancel button, and the status textbox. + // An alternative way to accomplish a similar thing is to visually place + // the progress bars OFF the tabs. + if (this.tabControl1.SelectedIndex == 0) + { + if (this.tabPage2.Controls.Contains(this.progressBar1)) + this.tabPage2.Controls.Remove(this.progressBar1); + if (this.tabPage2.Controls.Contains(this.progressBar2)) + this.tabPage2.Controls.Remove(this.progressBar2); + if (this.tabPage2.Controls.Contains(this.btnCancel)) + this.tabPage2.Controls.Remove(this.btnCancel); + if (this.tabPage2.Controls.Contains(this.lblStatus)) + this.tabPage2.Controls.Remove(this.lblStatus); + + if (!this.tabPage1.Controls.Contains(this.lblStatus)) + this.tabPage1.Controls.Add(this.lblStatus); + if (!this.tabPage1.Controls.Contains(this.progressBar1)) + this.tabPage1.Controls.Add(this.progressBar1); + if (!this.tabPage1.Controls.Contains(this.progressBar2)) + this.tabPage1.Controls.Add(this.progressBar2); + if (!this.tabPage1.Controls.Contains(this.btnCancel)) + this.tabPage1.Controls.Add(this.btnCancel); + + // swap the comboBox for Encoding to the selected panel + if (groupBox2.Controls.Contains(comboEncoding)) + { + groupBox2.Controls.Remove(comboEncoding); + tabPage1.Controls.Add(comboEncoding); + int xpos = this.tbZipToOpen.Location.X ; + this.comboEncoding.Location = new System.Drawing.Point(xpos, this.tbZipToOpen.Location.Y + this.comboEncoding.Height + 4); + } + this.toolTip1.SetToolTip(this.comboEncoding, "use this encoding to read the file"); + + } + else if (this.tabControl1.SelectedIndex == 1) + { + if (this.tabPage1.Controls.Contains(this.progressBar1)) + this.tabPage1.Controls.Remove(this.progressBar1); + if (this.tabPage1.Controls.Contains(this.progressBar2)) + this.tabPage1.Controls.Remove(this.progressBar2); + if (this.tabPage1.Controls.Contains(this.btnCancel)) + this.tabPage1.Controls.Remove(this.btnCancel); + if (this.tabPage1.Controls.Contains(this.lblStatus)) + this.tabPage1.Controls.Remove(this.lblStatus); + + if (!this.tabPage2.Controls.Contains(this.lblStatus)) + this.tabPage2.Controls.Add(this.lblStatus); + if (!this.tabPage2.Controls.Contains(this.progressBar1)) + this.tabPage2.Controls.Add(this.progressBar1); + if (!this.tabPage2.Controls.Contains(this.progressBar2)) + this.tabPage2.Controls.Add(this.progressBar2); + if (!this.tabPage2.Controls.Contains(this.btnCancel)) + this.tabPage2.Controls.Add(this.btnCancel); + + // swap the comboBox for Encoding to the selected panel + if (tabPage1.Controls.Contains(comboEncoding)) + { + tabPage1.Controls.Remove(comboEncoding); + groupBox2.Controls.Add(comboEncoding); + this.comboEncoding.Location = new System.Drawing.Point(104, 85); + this.comboEncoding.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left))); + } + this.toolTip1.SetToolTip(this.comboEncoding, "use this encoding when saving the file"); + + } + } + + private void tabControl1_Selecting(object sender, TabControlCancelEventArgs e) + { + // prevent switching TABs if working + if (_working) e.Cancel = true; + } + + + private void listView1_ColumnClick(object sender, ColumnClickEventArgs e) + { + // Create an instance of the ColHeader class. + SortableColumnHeader clickedCol = (SortableColumnHeader)this.listView1.Columns[e.Column]; + + // Set the ascending property to sort in the opposite order. + clickedCol.SortAscending = !clickedCol.SortAscending; + + // Get the number of items in the list. + int numItems = this.listView1.Items.Count; + + // Turn off display while data is repoplulated. + this.listView1.BeginUpdate(); + + // Populate an ArrayList with a SortWrapper of each list item. + List list = new List(); + for (int i = 0; i < numItems; i++) + { + list.Add(new ItemWrapper(this.listView1.Items[i], e.Column)); + } + + if (e.Column == 0 || e.Column == 3 || e.Column == 5) + list.Sort(new ItemWrapper.NumericComparer(clickedCol.SortAscending)); + else + list.Sort(new ItemWrapper.StringComparer(clickedCol.SortAscending)); + + // Clear the list, and repopulate with the sorted items. + this.listView1.Items.Clear(); + for (int i = 0; i < numItems; i++) + this.listView1.Items.Add(list[i].Item); + + // Turn display back on. + this.listView1.EndUpdate(); + } + + + private void tbPassword_TextChanged(object sender, EventArgs e) + { + if (this.tbPassword.Text == "") + { + if (_mostRecentEncryption == null && this.comboEncryption.SelectedItem.ToString() != "None") + { + _mostRecentEncryption = this.comboEncryption.SelectedItem.ToString(); + SelectNamedEncryption("None"); + } + } + else + { + if (_mostRecentEncryption != null && this.comboEncryption.SelectedItem.ToString() == "None") + { + SelectNamedEncryption(_mostRecentEncryption); + } + _mostRecentEncryption = null; + } + } + + + private void LoadAboutInfo() + { + var a = System.Reflection.Assembly.GetEntryAssembly(); + string[] resourceNames = a.GetManifestResourceNames(); + if (resourceNames != null && resourceNames.Length > 0) + { + String name = "Ionic.Zip.Forms.About.rtf"; + var s = a.GetManifestResourceStream(name); + var bytes = ReadAllBytes(s); + this.richTextBox1.Rtf = System.Text.Encoding.ASCII.GetString(bytes); + s.Close(); + } + } + + + + /// + /// Reads the contents of the stream into a byte array. + /// + /// + /// + /// Like File.ReadAllBytes(), but for a stream. + /// + /// + /// The stream to read. + /// A byte array containing the contents of the stream. + /// The stream does not support reading. + /// Methods were called after the stream was closed. + /// An I/O error occurs. + private byte[] ReadAllBytes(System.IO.Stream source) + { + long originalPosition = source.Position; + source.Position = 0; + + try + { + byte[] readBuffer = new byte[4096]; + + int totalBytesRead = 0; + int bytesRead; + + while ((bytesRead = source.Read(readBuffer, totalBytesRead, readBuffer.Length - totalBytesRead)) > 0) + { + totalBytesRead += bytesRead; + + if (totalBytesRead == readBuffer.Length) + { + int nextByte = source.ReadByte(); + if (nextByte != -1) + { + byte[] temp = new byte[readBuffer.Length * 2]; + Buffer.BlockCopy(readBuffer, 0, temp, 0, readBuffer.Length); + Buffer.SetByte(temp, totalBytesRead, (byte)nextByte); + readBuffer = temp; + totalBytesRead++; + } + } + } + + byte[] buffer = readBuffer; + if (readBuffer.Length != totalBytesRead) + { + buffer = new byte[totalBytesRead]; + Buffer.BlockCopy(readBuffer, 0, buffer, 0, totalBytesRead); + } + return buffer; + } + finally + { + source.Position = originalPosition; + } + } + + + + private void ZipForm_Load(object sender, EventArgs e) + { + if (_initialFileToLoad != null) + { + // select the page that opens zip files. + this.tabControl1.SelectedIndex = 0; + //this.tabPage1.Select(); + this.tbZipToOpen.Text = _initialFileToLoad; + btnOpen_Click(null, null); + } + LoadAboutInfo(); + } + + private void tbDirectoryToZip_Leave(object sender, EventArgs e) + { + this.tbDirectoryInArchive.Text = System.IO.Path.GetFileName(this.tbDirectoryToZip.Text); + } + + private void richTextBox1_LinkClicked(object sender, LinkClickedEventArgs e) + { + System.Diagnostics.Process.Start(e.LinkText); + } + + + private void listView_DragEnter(object sender, DragEventArgs e) + { + if (e.Data.GetDataPresent("FileDrop") && (e.AllowedEffect & DragDropEffects.Copy) == DragDropEffects.Copy) + { + // Get the data. + var filePaths = (String[])e.Data.GetData("FileDrop"); + + // allow drop of one file on listView1, drop multiple files on listView2. + if (filePaths.Length == 1 || sender == this.listView2) + //A file is being dragged and it can be copied so provide feedback to the user. + e.Effect = DragDropEffects.Copy; + } + } + + private void listView1_DragDrop(object sender, DragEventArgs e) + { + // The data can only be dropped if it is a file list and it can be copied. + if (e.Data.GetDataPresent("FileDrop") && (e.AllowedEffect & DragDropEffects.Copy) == DragDropEffects.Copy) + { + // Get the data. + var filePaths = (String[])e.Data.GetData("FileDrop"); + + // The data is an array of file paths. + // If it is a single file and ends in .zip, then we know how to open it + // and display the contents. + // If it is more than one file, then we don't know what to do with it. + if (filePaths.Length == 1) + { + DisplayZipFile(filePaths[0]); + this.tbZipToOpen.Text = filePaths[0]; + this.tbExtractDir.Text = System.IO.Path.Combine(System.IO.Path.GetDirectoryName(filePaths[0]), System.IO.Path.GetFileNameWithoutExtension(filePaths[0]) + "_files"); + } + } + } + + private void listView2_DragDrop(object sender, DragEventArgs e) + { + // The data can only be dropped if it is a file list and it can be copied. + if (e.Data.GetDataPresent("FileDrop") && (e.AllowedEffect & DragDropEffects.Copy) == DragDropEffects.Copy) + { + // Get the data. + var filePaths = (String[])e.Data.GetData("FileDrop"); + this.listView2.BeginUpdate(); + foreach (var f in filePaths) + { + var item = new ListViewItem(); + + // first subitem is the local filename on disk + var subitem = new ListViewItem.ListViewSubItem(); + subitem.Text = f; + item.SubItems.Add(subitem); + + // next subitem is the directory name to use in the archive + subitem = new ListViewItem.ListViewSubItem(); + //subitem.Text = String.IsNullOrEmpty(_lastDirectory) ? this.tbDirectoryInArchive.Text : _lastDirectory; + subitem.Text = String.IsNullOrEmpty(_lastDirectory) + ? System.IO.Path.GetFileName(System.IO.Path.GetDirectoryName(f)) + : _lastDirectory; + item.SubItems.Add(subitem); + + // additional subitem (to be added): new filename in archive, if any + subitem = new ListViewItem.ListViewSubItem(); + item.SubItems.Add(subitem); + + this.listView2.Items.Add(item); + } + + this.listView2.AutoResizeColumns(ColumnHeaderAutoResizeStyle.HeaderSize); + this.listView2.EndUpdate(); + } + } + + private void listView2_SubItemClicked(object sender, ListViewEx.SubItemEventArgs e) + { + //this.AcceptButton = null; + + // Prevent editing the 0th column - it's the checkbox. We want the checkbox + // label to remain "". + if (e.SubItem == 0) return; + + this.listView2.StartEditing(this.textBox1, e.Item, e.SubItem); + //this.textBox1.Focus(); // to get the RETURN key? no. this did not work. + } + + + private void listView2_SubItemEndEditing(object sender, ListViewEx.SubItemEndEditingEventArgs e) + { + if (!e.Cancel) + { + e.DisplayText = textBox1.Text; + //this.AcceptButton = this.btnZipUp; + //this.listView2.Select(); + // this.listView2.AutoResizeColumns(ColumnHeaderAutoResizeStyle.HeaderSize); + } + //this.listView2.EndEditing(true); + } + + private void textBox1_KeyPress(object sender, KeyPressEventArgs e) + { + if (e.KeyChar == 13) + { + this.listView2.EndEditing(true); + e.Handled = true; + _lastDirectory = this.textBox1.Text; + } + } + + private void button1_Click(object sender, EventArgs e) + { + int nAdded = 0; + PauseUI(null); + try + { + // do file selection, add each item into the list box + var fs = new global::Ionic.FileSelector(this.tbSelectionToZip.Text,this.chkTraverseJunctions.Checked); + var files = fs.SelectFiles(this.tbDirectoryToZip.Text, this.chkRecurse.Checked); + this.listView2.BeginUpdate(); + foreach (String f in files) + { + var item = new ListViewItem(); + // first subitem is the filename + var subitem = new ListViewItem.ListViewSubItem(); + subitem.Text = f; + item.SubItems.Add(subitem); + // second subitem is the directory name in the archive. + subitem = new ListViewItem.ListViewSubItem(); + var dirInArchive = this.tbDirectoryInArchive.Text; + var subDir = System.IO.Path.GetDirectoryName(f.Replace(this.tbDirectoryToZip.Text, "")); + subDir = subDir.Substring(1); + subitem.Text = System.IO.Path.Combine(dirInArchive, subDir); + item.SubItems.Add(subitem); + + // third subitem is the filename in the archive, if ay + subitem = new ListViewItem.ListViewSubItem(); + item.SubItems.Add(subitem); + + this.listView2.Items.Add(item); + nAdded++; + } + + this.listView2.AutoResizeColumns(ColumnHeaderAutoResizeStyle.HeaderSize); + this.listView2.EndUpdate(); + this.lblStatus.Text = String.Format("Added {0} entries; {1} total entries to save.", nAdded, this.listView2.Items.Count); + + + // remember the successful selection strings + if (!_selectionCompletions.Contains(this.tbSelectionToZip.Text)) + { + if (_selectionCompletions.Count >= _MaxMruListSize) + _selectionCompletions.RemoveAt(0); + _selectionCompletions.Add(this.tbSelectionToZip.Text); + } + + } + catch + { } + ResetUiState(); + //_disableMasterChecking = false; + } + + + private void btnClearItemsToZip_Click(object sender, EventArgs e) + { + int rCount=0; + foreach (ListViewItem item in this.listView2.Items) + { + if (item.Checked) + { + this.listView2.Items.Remove(item); + rCount++; + } + } + + // After removing all the checked items, all items are now unchecked. + // We can set the mast checkbox to unchecked. But, we have to protect + // against infinite recursion. + _disableMasterChecking = true; + this.checkBox1.Checked = false; + _disableMasterChecking = false; + this.lblStatus.Text = (rCount == 1) + ? String.Format("Cleared 1 entry. {1} remaining entries to save.", rCount, this.listView2.Items.Count) + : String.Format("Cleared {0} entries. {1} remaining entries to save.", rCount, this.listView2.Items.Count); + } + + + + bool _disableMasterChecking = false; + private void checkBox1_CheckedChanged_1(object sender, EventArgs e) + { + // prevent infinite recursion. + if (_disableMasterChecking) return; + + // if we have a mixed state, then it happened programmatically + if (this.checkBox1.CheckState == CheckState.Indeterminate) return; + + _disableListViewCheckedEvent = true; + _disableMasterChecking = true; + // change state of ALL items + foreach (ListViewItem item in this.listView2.Items) + { + item.Checked = this.checkBox1.Checked; + } + _disableMasterChecking = false; + _disableListViewCheckedEvent = false; + } + + + private bool _disableListViewCheckedEvent; + private void listView2_ItemChecked(object sender, ItemCheckedEventArgs e) + { + // prevent infinite recursion + if (_disableListViewCheckedEvent) return; + + System.Drawing.Point p = this.listView2.PointToClient(new System.Drawing.Point(Cursor.Position.X, Cursor.Position.Y)); + ListViewItem lvi; + int ix = this.listView2.GetSubItemAt(p.X, p.Y, out lvi); + + // lvi is null when the checkchange comes from a non-mouse event, like when + // a new item is being added to the list. + if (lvi == null) return; + + // ix is 0 when the checkbox is the thing that was tickled with the mouse. + if (ix == 0) + MaybeSetMasterCheckbox(); + else + { + // Revert the checkChange if it was due to a mouse click on a subitem other than the 0th one. + // The Checked property has already been changed (in ListView.WndProc?); we need to undo it. + // In order to avoid an endless recursion, set the disable flag, first. + _disableListViewCheckedEvent = true; + lvi.Checked = !lvi.Checked; + _disableListViewCheckedEvent = false; + } + } + + + private void MaybeSetMasterCheckbox() + { + if (_disableMasterChecking) return; + + bool uniform = true; + // check the state of all the items + for (int i = 1; i < this.listView2.Items.Count; i++) + { + if (this.listView2.Items[i].Checked != this.listView2.Items[i - 1].Checked) + { + uniform = false; + break; + } + } + + _disableMasterChecking = true; + if (uniform) + this.checkBox1.CheckState = (this.listView2.Items[0].Checked) ? CheckState.Checked : CheckState.Unchecked; + else + this.checkBox1.CheckState = CheckState.Indeterminate; + _disableMasterChecking = false; + } + + private void listView2_BeforeLabelEdit(object sender, LabelEditEventArgs e) + { + // never let the use edit the label associated to the main listview item, + // the label on the item checkbox. + e.CancelEdit = true; + } + + + private int _progress2MaxFactor; + private int _totalEntriesToProcess; + private bool _working; + private bool _operationCanceled; + private int _nFilesCompleted; + private long _totalBytesBeforeCompress; + private long _totalBytesAfterCompress; + private Thread _workerThread; + private static string TB_COMMENT_NOTE = "-zip file comment here-"; + private static string TB_EXTRACT_DIR_NOTE = "-default extract directory-"; + private static string TB_EXE_ON_UNPACK_NOTE = "-command line to execute here-"; + private String _mostRecentEncryption; + private string _initialFileToLoad; + private string _lastDirectory; + } + + + + // The ColHeader class is a ColumnHeader object with an + // added property for determining an ascending or descending sort. + // True specifies an ascending order, false specifies a descending order. + public class SortableColumnHeader : ColumnHeader + { + public bool SortAscending; + public SortableColumnHeader(string text) + { + this.Text = text; + this.SortAscending = true; + } + } + + + // An instance of the SortWrapper class is created for + // each item and added to the ArrayList for sorting. + public class ItemWrapper + { + internal ListViewItem Item; + internal int Column; + + // A SortWrapper requires the item and the index of the clicked column. + public ItemWrapper(ListViewItem item, int column) + { + Item = item; + Column = column; + } + + // Text property for getting the text of an item. + public string Text + { + get { return Item.SubItems[Column].Text; } + } + + // Implementation of the IComparer + public class StringComparer : IComparer + { + bool ascending; + + // Constructor requires the sort order; + // true if ascending, otherwise descending. + public StringComparer(bool asc) + { + this.ascending = asc; + } + + // Implemnentation of the IComparer:Compare + // method for comparing two objects. + public int Compare(ItemWrapper xItem, ItemWrapper yItem) + { + string xText = xItem.Item.SubItems[xItem.Column].Text; + string yText = yItem.Item.SubItems[yItem.Column].Text; + return xText.CompareTo(yText) * (this.ascending ? 1 : -1); + } + } + + public class NumericComparer : IComparer + { + bool ascending; + + // Constructor requires the sort order; + // true if ascending, otherwise descending. + public NumericComparer(bool asc) + { + this.ascending = asc; + } + + // Implementation of the IComparer:Compare + // method for comparing two objects. + public int Compare(ItemWrapper xItem, ItemWrapper yItem) + { + int x = 0, y = 0; + try + { + x = Int32.Parse(xItem.Item.SubItems[xItem.Column].Text); + y = Int32.Parse(yItem.Item.SubItems[yItem.Column].Text); + } + catch + { + try + { + // lop off one char for % + String trimmed = null; + trimmed = xItem.Item.SubItems[xItem.Column].Text; + trimmed = trimmed.Substring(0, trimmed.Length - 1); + x = Int32.Parse(trimmed); + trimmed = xItem.Item.SubItems[yItem.Column].Text; + trimmed = trimmed.Substring(0, trimmed.Length - 1); + y = Int32.Parse(trimmed); + } + catch { } + } + return (x - y) * (this.ascending ? 1 : -1); + } + } + } + public class ExtractWorkerOptions + { + public string ExtractLocation; + public Ionic.Zip.ExtractExistingFileAction ExtractExisting; + public bool OpenExplorer; + public String Selection; + } + + public class SaveWorkerOptions + { + public string ZipName; + public string Selection; + public bool TraverseJunctions; + public bool RemoveFilesAfterExe; + public string Encoding; + public Ionic.Zip.ZipOption EncodingUsage; + public string Comment; + public string Password; + public string ExeOnUnpack; + public string ExtractDirectory; + public int ExtractExistingFile; + public int ZipFlavor; + public int MaxSegmentSize; + public Ionic.Zlib.CompressionLevel CompressionLevel; + public Ionic.Zip.CompressionMethod CompressionMethod; + public Ionic.Zip.EncryptionAlgorithm Encryption; + public Zip64Option Zip64; + public bool WindowsTimes; + public bool UnixTimes; + public ItemToAdd[] Entries; + } + + public class ItemToAdd + { + public string LocalFileName; + public string DirectoryInArchive; + public string FileNameInArchive; + } + + + internal class HiResTimer + { + // usage: + // + // hrt= new HiResTimer(); + // hrt.Start(); + // ... do work ... + // hrt.Stop(); + // System.Console.WriteLine("elapsed time: {0:N4}", hrt.Seconds); + // + + [System.Runtime.InteropServices.DllImport("KERNEL32")] + private static extern bool QueryPerformanceCounter(ref long lpPerformanceCount); + + [System.Runtime.InteropServices.DllImport("KERNEL32")] + private static extern bool QueryPerformanceFrequency(ref long lpFrequency); + + private long m_TickCountAtStart = 0; + private long m_TickCountAtStop = 0; + private long m_ElapsedTicks = 0; + + public HiResTimer() + { + m_Frequency = 0; + QueryPerformanceFrequency(ref m_Frequency); + } + + public void Start() + { + m_TickCountAtStart = 0; + QueryPerformanceCounter(ref m_TickCountAtStart); + } + + public void Stop() + { + m_TickCountAtStop = 0; + QueryPerformanceCounter(ref m_TickCountAtStop); + m_ElapsedTicks = m_TickCountAtStop - m_TickCountAtStart; + } + + public void Reset() + { + m_TickCountAtStart = 0; + m_TickCountAtStop = 0; + m_ElapsedTicks = 0; + } + + public long Elapsed + { + get { return m_ElapsedTicks; } + } + + public float Seconds + { + get { return ((float)m_ElapsedTicks / (float)m_Frequency); } + } + + private long m_Frequency = 0; + public long Frequency + { + get { return m_Frequency; } + } + + } + +} diff --git a/src/Tools/WinFormsApp/ZipForm.resx b/old/src/Tools/WinFormsApp/ZipForm.resx similarity index 98% rename from src/Tools/WinFormsApp/ZipForm.resx rename to old/src/Tools/WinFormsApp/ZipForm.resx index 3ba398b..4e58603 100644 --- a/src/Tools/WinFormsApp/ZipForm.resx +++ b/old/src/Tools/WinFormsApp/ZipForm.resx @@ -1,132 +1,132 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 17, 17 - - - 17, 17 - - - True - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + 17, 17 + + + True + + Selection criteria. some examples: name = *.xml -- all xml files name != *.doc -- any file not .doc @@ -135,1005 +135,1005 @@ attributes = A -- possible attributes: (HRSA) also logical conjunctions: (name = *.xml and size> 1000) (name != *.doc OR attrributes = A) - - - - - - AAABAAoAMDAQAAEABABoBgAApgAAACAgEAABAAQA6AIAAA4HAAAQEBAAAQAEACgBAAD2CQAAMDAAAAEA - CACoDgAAHgsAACAgAAABAAgAqAgAAMYZAAAQEAAAAQAIAGgFAABuIgAAAAAAAAEAIABJhgAA1icAADAw - AAABACAAqCUAAB+uAAAgIAAAAQAgAKgQAADH0wAAEBAAAAEAIABoBAAAb+QAACgAAAAwAAAAYAAAAAEA - BAAAAAAAgAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDA - wAAAAP8AAP8AAAD//wD/AAAA/wD/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIuIAAAAAAAAAAAAAAAAAAAAAA - AAAAB4uLiLgAAAAAAAAAAAAAAAAAAAAAAAiLiHeIuIuIgAAAAAAAAAAAAAAAAAAIi4uIiHi4uLiLgAAA - AAAAAAAAAAAACIi4iL+4t4e4i4iIgAAAAAAAAAAAAAiIi4v7i4iLiHeLiLiIsAAAAAAAAAAACIi4v4iL - +Li/eIiLi4iIgAAAAAAAAAAACL+Ii4v4uIi4h3OIuLj4sAAAAAAAAAAACIuL+IuL+4v7iIi4i4j4gAAA - AAAAAAAACIiIuIiIiIiIt3iLiLj7gAAAAAAAAAAACLi/i4uLi4uLiIe4uLj4gAAAAAAAAAAACPiL+IiI - iL+IiHiIi4j7gAAAAAAAAAAACLiIuLi4v4uLh4O4uLj/gAAAAAAAAAAACPuIiIiIi/i/iIeIi4iLgAAA - AAAAAAAACIi/v7+4iL+Lh3i4uLi/gAAAAAAAAAAACL+IiIiLiIuIiIOIiIiL8AAAAAAAAAAAD4v7+4v4 - i/i4uHi4uLiAAAAAAAAAAAAACIiIiIiL+L+IiIeL+/uAAAAAAAAAAAAACIuL+/v4v4uLiIe4iIiwAAAA - AAAAAAAACIiPiIi/i/iIiHuIuLiAAAAAAAAAAAAACIv7+/iIiL+4h4V4iPvwAAAAAAAAAAAACIiIiL+/ - v4iLd397i/iwAAAAAAAAAAAACIv7+IiIiL+3R3hoiPuAAAAAAAAAAAAACIiIi/v7+IiHGHh4v4iAAAAA - AAAAAAAACIv7+PiIv7+4d3hoi/vwAAAAAAAAAAAACIiPi/v4iIiIiIgIv/iAAAAAAAAAAAAAD4v7+I+/ - v7+IiOhYiPuAAAAAAAAAAAAACIiPiL+I+Ii4iIgov/iAAAAAAAAAAAAACIv7+PiL+/iIiIhYiIuAAAAA - AAAAAAAAD4iPv7+Ij7+4+I8oiPiAAAAAAAAAAAAACIv4+Ii/iIj4j/h4v/uAAAAAAAAAAAAACIiL+/j7 - +/v4j/84+PiAAAAAAAAAAAAAD4v/j4v/j4+/j494v/vwAAAAAAAAAAAACIiIv4+L+/iIhnh4j/iwAAAA - AAAAAAAAD4v4+L+Pj7+/h3h4v/iAAAAAAAAAAAAACIiIv/i/v4+IiHeP//vwAAAAAAAAAAAAD4v4+L/4 - +Iv4+HeI+PiwAAAAAAAAAAAACIiL+Pi/v4+IiHh4i4jwAAAAAAAAAAAAD4v/i/j4+L+/iDeL/wAAAAAA - AAAAAAAACIiL/4v4v4+IgAAAAAAAAAAAAAAAAAAACIiPiI+P8AAAAAAAAAAAAAAAAAAAAAAAD4iIAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////AAD///////8AAP// - /////wAA////////AAD///////8AAP///h///wAA///gD///AAD//gAB//8AAP/gAAH//wAA/gAAAf// - AADgAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAA - AAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// - AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAA - AAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// - AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAA///8AAIAAH////wAAgAf/////AACD//////8AAP// - /////wAAKAAAACAAAABAAAAAAQAEAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAIAAAACA - gACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8AAAD/AP8A//8AAP///wAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAh4uIgAAAAAAAAAAAAAAI - i4eLi7gAAAAAAAAAAIiLi4iHeLh4gAAAAAAACIi4v4i4h7iLiIAAAAAACIuL+IuLi4h7iPuAAAAAAAiI - iLi/v4iHiLv4gAAAAAAIuL+IiIuLhziI+4AAAAAACPiLi4uIv3iLuPiAAAAAAAi4iIiIv4uHeIv4gAAA - AAAPi4uLi/uIh4uLiwAAAAAACIiIiIiIuIg4iIgAAAAAAAiL+/uLiIuHi4uAAAAAAAAIiIiIiIv4iHiL - gAAAAAAACIv7+/v4uIeL+LAAAAAAAAiIiIiIv4t4eLiAAAAAAAAIi/v7+Iv3eHv4sAAAAAAACIiIiL+I - h3d4iIAAAAAAAA+L+/iL+/iHeIuAAAAAAAAIiI+/iIiIiHv4sAAAAAAACIv4iL+/v/h4+IAAAAAAAA+I - iL/4iPj/ePuAAAAAAAAIi/j4v4v4iHv4sAAAAAAAD4iL+IiIi4Z4+IAAAAAAAAiL/7+L+I+FePuAAAAA - AAAPiIj4j7+/h4j4gAAAAAAACIv4v7///4eIi/AAAAAAAA+PiPj4iIj3ewAAAAAAAAAIi/iIiIAAAAAA - AAAAAAAAAP+AAAAAAAAAAAAAAAAAAP/////////////////8B///4AP//AAB/+AAAf+AAAH/gAAB/4AA - Af+AAAH/gAAB/4AAA/+AAAP/gAAH/4AAB/+AAAf/gAAH/4AAB/+AAAf/gAAH/4AAB/+AAAf/gAAH/4AA - B/+AAAf/gAAH/4AAB/+AAAf/gAA//4Af///H////KAAAABAAAAAgAAAAAQAEAAAAAACAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAIAAAIAAAACAgACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8A - AAD/AP8A//8AAP///wADMzMzMzMzAAO7u7t4s7swA7u7u4ezvDADu7u7eLO8MAO7u7uHs78wA7u7u3iz - vzADu7u7h7O/MAO7u7t4uzswA7u7u4e7swADu7u7eLswAAO7u7uHuzAAA7u7u3i7MAADu7u7d7swAAO7 - u7t3uzAAAzMzMzMzAAAAAAAAAAAAAIADAACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAMAAIAH - AACABwAAgAcAAIAHAACABwAAgA8AAP//AAAoAAAAMAAAAGAAAAABAAgAAAAAAAAJAAAAAAAAAAAAAAAB - AAAAAQAAAAAAABssNQA5NTgAOzs+AEY+PwBJOzoAQEJGAEFESgBTUE0AXFBJAEJNVQBNTlIAaFdKAGNa - WQBoXlgARlliAExibQBecXkAWXJ/AH9qZAB/cmwAYnR+AHV0dgB8c3AAhGNZAIduYwCAeXMAjn54AH6C - fACGgH4ApIFvAP+hYwD/tX8AUXWGAFl9jwB6hYgAZI6dAFeNpQB8m6cAep+tAHmltwB2p7wAeKe7AF+n - xgBrp8QAaq7MAHKtxQB0rcQAdLDLAHqzzAB2u9UAfrnSAHK72QBtxd4AWs/sAFzQ7ABsxekAcMbhAHTJ - 5QB3z+oAcs/vAGLT7QBs1+8AdNHrAHjS7QBy2e8Acc3xAHXO8QB1zvQAeM7xAHfQ8QB31PAAdNf1AHzS - 8QB12/YAd973AHrd9QB84PcAfuD4AIGJjwCQh4MAkIiGAJ6UjACDj5QAhZKXAIyYngCSkpIAkZqeAKqR - gwCjlo4AsJWLALGcigC7n4gApZqUAKuckACgnpoAs56TALKflgC1npQApqCcAKuinQC2oJYAu6WbAIud - pQCInKgAi6CoAJehpQCZpKkAkqivAJWttwCNsbwAnbC3AKinpAChqq4AqqyrALGurwChr7QAq7e5AMCf - kgDBqpYAxKybAMuxnADStJ8AyK6iAMy2ogDOuKMAyLKqAM27qQDUt6AA1rykANO7qQDAurQAncS/ANrB - qwDHxL4A1MKzAN/ItgDXx7gA3Mq6AODHsgDgy7oAhK/BAIO6zACOu84AkbfGAJi1wQCfu8UAob7GAKG+ - yACbycYAisPaAJ/I1wCVxNgAmMnbAJvK3QCc0tMArcPLAK7IyQCpytUApsvcAKjO3ACxz9oAhcvgAIzO - 5gCEzusAhdfnAInY5ACE0OoAjtHoAJXQ4ACd1eEAldnjAJDV6wCU3O8Ags/wAIHS8gCF0vEAhtTyAIvV - 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 - AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAA - AAH//wAAgAAAAf//AACAAAAB//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// - AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAA - AAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// - AACAAAAH//8AAIAAAAf//wAAgAAAP///AACAAB////8AAIAH/////wAAg///////AAD///////8AACgA - AAAgAAAAQAAAAAEACAAAAAAAAAQAAAAAAAAAAAAAAAEAAAABAAAAAAAAWEpEAHBPQQBxY14AaWpqAHpt - ZQBhaXAAYnB7AJNtWwCFdWwAnYF5AJeIfwC2jnIAa3yIAHF/igBpgY4AZYSWAHeIkQBmlqgAaJaoAGeZ - qwBrmqsAfpmnAHecqwBvoLEAc6S2AHujswB9q7sAarHNAH25zgBayt8AYc3fAE/N6ABnzegAZ87vAHbL - 5QBzz+oAec3tAGPU7ABl1OwAa9btAGzX7gBx1+4AeNDrAHHZ7wB22e8Acc3xAHbO8QB50PIAfdHyAHzV - 8gB81fQAdNj1AHfe9wB62fUAfdv3AHne9wB83/cAf935AH/g9wB+4PkAj4WCAIuPkQCSj5EAjZCSAI+W - mACRkJIAlZaWAJSXmQCUmZkAlpqcAKKJgQC4loYAtZqNAKOenAC9oIkAv6mIAJueoQCIo6sAn6CgAJOl - rgCkq64Ava6iALesqQDKq5UA1babAM2zpgDZu68A5r+yAOLHpADlx7MA68u0AOLNvQCAr8EAiL3PAIS+ - 0gChvMYAhMDVAIPB2ACRxdgAtsPHALjEyQClxtEApMfUAKfL1wCvydMAqc7bAL/L0QCt098AtdDZALLU - 3QCIzeYAhM/rAIfX6wCF1uwAiNbrAIzW6wCI0ewAhtjsAIXd7gCJ2u0AjNvuAI7c7gCW0eYAn9PiAJHU - 7gCf1+4AgdLxAITT8gCH1PMAitXzAI3W8gCF3/AAhtn1AITc9gCQ1/MAk97wAJLY9ACW2fQAk972AJXf - 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 - 9QB32/AAddzxAHjd8QB93vEAeeDyAH7g8gB94vQAg4WGAKKQgQC5lYcAqpyRAKOqpwCsrq4Ap7K1AKmy - tADKuasA78y7AIm1xwCjy98AgMvpAITO6wCE1egAh9DtAJPd8gCi0uYApt33AIDh8wCG4fIAgeL0AILl - 9QCG5PQAiOHzAIjl9ACH6PYAiej3AI3o9gCN6vgAkOf2AJDp9gCU6/cAkuv4AJHt+QCW7vkAmO74AJbw - +gCa8vsAnPH6AJ/0/AC75/cAven9AKDx+gCg9PwApPX8AKj2/ACn+P0Aqvj9AK35/QCx+v4AtPv/ALj8 - /wDu3dgA7uriAOzs7AD/+esA///+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAACAgICAgICAgICAgHEwAAAAhLRT8o - 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 - CCMDcH2jtx6+NYFhCy2joCWOh//63332C8DfAOq3HrnfCIP5B65cqd0HnNQ08cbZmXxkECZMxso6CoXU - 8lGzX+ggpMHaukNlvcqhA+OE5JBGDk3TEVLih4rFq3UunjkFii8MyLvPNTrf/osFuzFscoSXNrLekT6X - +lfeOaeNzd5StAvT9wkhTyLkA5omXzMzk2d8zKJYNEBBveHx/Ol11pcWnpiaObg+NV2eKxWNY7qhbE36 - OA3fOX/ufPPpb30tAN703g9dfWJvb/H6xcgAjLCr+JV3zrUq5Awgb1jFcmnq+ANSM14hhHaLUmHOc+ve - +tKFL6xvGH8FYd3UnOWc1dQnpuZvEVK7eWXxwjRRJd+H3/uhq8+8oDf0EsfIAIywp/iVd84ZRBV2ZaJK - OwlU3vuhq1fe/dAdAsDQXC1vbSg6tfzaez90dTsj+kYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGE - EUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGE - EUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEa4Z/P8GlX/ISWG3BgAAAABJRU5ErkJggigAAAAw - AAAAYAAAAAEAIAAAAAAAgCUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARz87AW+NmgFx - zfEYds3ubXXM7sNzzPD1fcvq8IbE3MFxpblkAAAAHAAAABkAAAASAAAACQAAAAMAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHbO8Q9t - udZtXIqb0HGrw/hsxen/cs/v/3TX9f912/b/dc/x/5De8P+BvdTJAAAAOAAAADYAAAAwAAAAJAAAABQA - AAAHAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfdHyBn/P711+ - z++xe8/w63fQ8f+YtcH/tJ6U/4WSl/9Zcn//bcXe/3fe9/933vf/cc3x/3nc8P93zOb/dsnk/3O71NRe - ipqBAAAAOwAAAC8AAAAdAAAADAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhtHvWITR76uC - 0fDnftHy/33W9P992fX/ft33/37h+P9+udP/lcTY/7mkmf+xrq//dNHr/3je9/943vf/cc3x/2zX7/90 - 2u//idjk/4XX5/+BvdTQAAAAQAAAAD8AAAA2AAAAJgAAABQAAAAGAAAAAQAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACM0+5Ii9Tvp4nT8OWH - 1PL+hdj0/4Tb9f+D3vf/g+P4/4Li+P+B4vj/gOL4/3/h+P92p7z/qpGD/4icqP9qrsz/c9Lt/3rf9/95 - 3/f/cc3x/2LT7f+dxL///6Fj/53Q0P+Mzub/AAAAQAAAAEAAAAA/AAAAOQAAACsAAAAXAAAACAAAAAEA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJLV7j6V1/Glkdbx4pDW8v2O - 2vT/jN32/4rh9/+J5Pn/iOX5/4bk+f+F5Pn/hOP5/4Pj+P+C4/j/geL4/4Dh+P+hvsj/xsLA/66kn/+G - gH7/ccfh/3vf9/963/f/cc3x/13Q7P+bycb//7V//5vU1v+Nz+f/AAAAPwAAAD0AAAA7AAAAOQAAADQA - AAAlAAAADwAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAltfw1Jfc9f+b - 4Pj/kOL4/4/n+v+N5/r/jOf6/4vm+v+K5vn/ieX5/4jl+f+H5fn/huT5/4Xk+f+E4/n/g+P4/4Lh+P9y - rcX/nbC3/6Wgnv+my9z/d9Tw/3zg9/984Pf/cs3x/1vQ7P+V2eP/6u/p/5nk9P+Nz+f/AAAAOwAAADkA - AAA2AAAANAAAADEAAAAsAAAAGQAAAAYAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAnNv0/5jr+/+S4vz/kOj6/5Do+v+P6Pr/juj6/43n+v+M5/r/i+b5/4rm+f+I5fn/h+X5/4bk+f+F - 5Pn/hOP5/4Li+P+PsLr/wJ+S/4yYnv9RdYb/csrl/33g+P994Pf/c83x/1rP7P+Y4vP//v7+/5jk9P+O - 0Oj/AAAANgAAADQAAAAxAAAALgAAACwAAAApAAAAHwAAABEAAAAGAAAAAQAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAndz0/5vs+/+M3vz/kun7/5Lp+v+R6fr/kOj6/47o+v+N5/r/jOf6/4vm+v+K - 5vn/ieX5/4jl+f+H5Pn/huT5/4Tj+P94tM7/sc/a/7Gfl/+pqqr/d8/q/3/h+P9+4fj/c87x/1vQ7P+Z - 4vP//////5jj9P+O0ej/AAAAMQAAAC4AAAArAAAAKQAAACYAAAAiAAAAHwAAABgAAAAPAAAABwAAAAIA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAn931/5zs+/+M3vz/lOn7/5Pq+/+S6fv/ken6/5Do+v+P - 6Pr/juf6/43n+v+M5vr/iub5/4nm+f+I5fn/h+X5/4Xj+P94p7v/kpKS/4udpf9yu9n/edXx/4Di+P9/ - 4fj/dM7x/13Q7f+Z4/P//////5nk9P+P0un/AAAALAAAACkAAAAlAAAAIwAAACAAAAAcAAAAGQAAABYA - AAASAAAADAAAAAYAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAod31/53s+/+N3vz/ler7/5Xq+/+U - 6vv/k+r7/5Lp+v+Q6fr/j+j6/47o+v+N5/r/jOf6/4vm+v+K5vn/ieX5/4fk+P+Rt8b/xcPA/6ihnf91 - dHb/dcrk/4Hi+P+A4vj/dc7x/1/Q7f+b4/T//////5nk9P+P0+r/AAAAJQAAACIAAAAfAAAAHAAAABkA - AAAWAAAAEwAAABAAAAANAAAACwAAAAcAAAAEAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAo971/5/t/P+O - 3vz/l+v7/5fr+/+V6/v/lOr7/5Pq+/+S6fv/ken6/5Do+v+P6Pr/juf6/4zn+v+L5vr/iub5/4jk+P90 - sMv/ob7G/6aclv+ozd3/ftj0/4Pj+P+C4vj/ds/x/2DS7f+c4/T//////5zl9P+Q1Or/AAAAHwAAABwA - AAAZAAAAFQAAABMAAAAQAAAADQAAAAsAAAAIAAAABgAAAAQAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAA - AAAApN71/6Dt/P+O3/z/mOv8/5js+/+X6/v/luv7/5Xq+/+U6vv/k+n7/5Hp+v+Q6fr/j+j6/47o+v+N - 5/r/jOf6/4rl+f+Vrbf/s5+V/5mkqf9XjaX/eNLt/4Tj+f+D4/j/d8/x/2PT7v+e5PT//////57m9P+Q - 1ev/AAAAGQAAABYAAAASAAAAEAAAAA0AAAALAAAACAAAAAYAAAAEAAAAAgAAAAEAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAApt/1/6Lu/P+P3/z/muz8/5rt/P+Z7Pv/l+z7/5br+/+V6/v/lOr7/5Pq+/+S - 6fr/ken6/5Do+v+P6Pr/jef6/4vm+v9/udH/qc/b/7Oek/+Rmp7/d9Dr/4bk+f+F5Pn/ec/y/2bU7v+X - 4vT/0fL6/5Xj9P+R1uz/AAAAEwAAABAAAAANAAAACgAAAAgAAAAGAAAABAAAAAIAAAABAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqN/1/6Pv/P+P3/z/m+38/5vt/P+a7fz/mez8/5js+/+X - 6/v/luv7/5Xq+/+T6vv/kun7/5Hp+v+Q6Pr/j+j6/47n+v+Er8H/qKek/4ugqP+Cz/D/gdv3/4fl+f+G - 5Pn/etDy/3DY7/+A2/L/ieHy/5fl9P+R1+z/AAAADQAAAAoAAAAIAAAABgAAAAQAAAACAAAAAQAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqeD1/6Tv/P+P3/z/ne38/53u/P+c - 7fz/m+38/5rs/P+Y7Pv/l+v7/5br+/+V6/v/lOr7/5Pq+/+S6fr/ken6/4/o+v+fu8X/yLKq/6yjnf9i - dH7/cMXh/4nl+f+L5vn/e9Dy/4bd8v+a5PT/mOL0/5je8P+O0+aaAAAACAAAAAYAAAAEAAAAAgAAAAEA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAq+H2/6Xw/f+P - 3/z/nu78/57u/P+d7vz/nO78/5vt/P+a7fz/mez7/5js+/+X6/v/luv7/5Tq+/+T6vv/kun7/5Hp+v92 - u9X/qcrV/6Cemv+Ou87/fdTy/4rm+f+S6Pn/g9j0/3zQ8v+H2vT/lt3v/4vO4VwAAAAGAAAABAAAAAIA - AAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAArOH2/6fw/f+R3/z/oO/9/6Dv/P+f7/z/nu78/53u/P+c7fz/mu38/5ns/P+Y7Pv/l+v7/5br+/+V - 6vv/lOr7/5Pq+/+fvMX/yK6i/5Kor/9fp8b/fdTw/4zn+v+L5vr/jOb5/4vj+P9/0/L/lNzv/2aYpg0A - AAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAruL2/6jx/f+R4Pz/oe/9/6Hw/f+g7/3/n+/8/57u/P+d7vz/nO38/5vt/P+a - 7fz/mez7/5fr+/+W6/v/lev7/5Pp+/+Kwdn/n8jX/7aelP+BiY//c8jm/43n+v+M5/r/i+b6/5bp+v98 - 0fL/lNzv/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAr+L2/6ry/f+S4Pz/o/D9/6Pw/f+i8P3/oe/9/6Dv/P+f - 7/z/ne78/5zu/P+b7fz/mu38/5ns/P+Y7Pv/l+v7/5Lo+/+Lwtr/rK6t/5ehpf9rp8T/dc70/4/o+v+O - 6Pr/kej6/6Ts+/990fL/lN3w/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAseP2/6vy/f+S4fz/pPD9/6Tx/f+j - 8P3/ovD9/6Hw/f+g7/z/n+/8/57u/P+d7vz/nO38/5vt/P+a7Pz/mOz7/4fi/f+rt7n/tqCW/6OWjv+H - bmP/WX2P/5Dn+v+Q6Pr/k+n6/7Pv/P9/0vL/ld7x/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsuP2/6zz/v+S - 4fz/pfH9/6Xx/f+k8f3/o/H9/6Lw/f+h8P3/oO/9/5/v/P+e7/z/ne78/5zu/P+b7fz/l+r8/4yzvv+O - fnj/f3Js/5CHg//54dH/f2pk/4/k9/+R6fr/len6/8j0/f+A0vL/lt/y/wAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAs+P2/6zz/v+T4f3/p/H+/6fy/f+m8v3/pfH9/6Tx/f+j8P3/ovD9/6Hw/f+g7/z/n+/8/57u/P+b - 7Pz/hNDq/6SBb/9JOzr/TU5S/5CIhv/gx7L/aFdK/4/k9f+T6vv/nOv6/8/1/f+C0/L/luHz/wAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAteT2/670/v+T4f3/qPL+/6jz/v+n8v3/pvL9/6Xx/f+k8f3/o/H9/6Lw/f+h - 8P3/oO/9/5/v/P+b7Pz/hcvg/4RjWf8bLDX/fLLL/6ehm//WvKT/XlBI/5Hl9v+U6vv/ou38/8z0/f+D - 0/L/l+Lz/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtuT2/6/0/v+U4v3/qPL+/6nz/v+o8/7/p/L+/6fy/f+m - 8v3/pfH9/6Tx/f+j8P3/ovD9/6Hv/f+f7vz/ldDg/8Kolv+BenX/eoWI/7Gciv/Ut6D/WlBL/5Tm9/+W - 6/v/o+38/9H2/v+F1PP/l+P0/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAt+X2/7D0/v+U4v3/qfP+/6r0/v+q - 8/7/qfP+/6jz/v+n8v3/pvL9/6Xx/f+k8f3/o/H9/6Lw/f+h8P3/l9zw/824o//eybj/z7ik/7ufiP/K - sJ3/Rj4//5bo+P+X7Pv/pe78/9n4/v+G1PP/mOT1/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuOX3/7H0/v+V - 4v3/qvP+/6z0/v+r9P7/qvP+/6nz/v+o8/7/p/L+/6by/f+l8v3/pfH9/6Tx/f+j8P3/leb7/8ixnP/P - u6n/wq6c/8Gslv/Tu6n/OTU4/5fq+f+Z7Pz/sfH8/9n4/f+I1fP/meX2/wAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAueb3/7L0//+V4v3/qvT+/631/v+s9P7/q/T+/6r0/v+p8/7/qfP+/6jy/v+n8v3/pvL9/6Xx/f+k - 8f3/lOn+/8y2ov/ay73/y7us/868qP/gy7r/Ozs+/5nq+v+b7fz/tfH9/9f4/f+K1fP/meb2/wAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAuub3/7P1//+W4v3/q/T+/671/v+t9f7/rPT+/6v0/v+r9P7/qvP+/6nz/v+o - 8/7/p/L9/6by/f+l8f3/kur+/9TCs//l2Mz/18rB/9fHuP/q1Mf/QEJG/5rs+v+c7vz/tfL9/9b4/f+L - 1vP/muf3/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAu+b3/7P1//+W4v3/rfX//6/1//+u9f7/rfX+/631/v+s - 9P7/q/T+/6r0/v+p8/7/qPP+/6jy/v+n8v3/ne79/8fEvv/t3tT/5NrU/+jcz//y3NL/QURK/5zs+/+e - 7vz/v/T9/+P6/v+N1vP/muj4/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvOb3/7T2//+W4v3/rvX//7D2//+v - 9v//rvX+/671/v+t9f7/rPT+/6v0/v+q9P7/qvP+/6nz/v+o8/7/p/L9/67Iyf/o2Mv/7Ofk//Pr4//6 - 5+D/Qk1V/53t/P+f7/z/zvb9/+j7/v+P1/P/m+n4/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvef3/7X2//+W - 4/3/r/X//7D2//+w9v//r/b//6/1//+u9f7/rfX+/6z0/v+s9P7/q/T+/6rz/v+p8/7/qPP+/53V4f/f - yLb/9/Pw////+f//8er/Rlli/5/u/P+h7/3/z/f9/+j7/v+Q2PP/m+r5/wAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAvuf3/7X2//+X4/3/sPb//7H2//+x9v//sPb//6/2//+v9f//rvX+/631/v+t9f7/rPT+/6v0/v+q - 9P7/qvP+/5nk9f/awav/8+7p//Tz8f/86+b/TGJt/6Du/P+i8P3/z/f+/+n7/v+S2PT/nOv6/wAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+x9///sfb//7D2//+w9v//r/b//671/v+u - 9f7/rfX+/6z0/v+r9P7/q/T+/6Xw/f/StJ//Y1pZ/1NQTf/z3dj/eaW3/6Hw/f+j8f3/1fj+/+b7/v+U - 2fT/nOz6/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+y9///svf//7H2//+x - 9v//sPb//6/2//+v9f//rvX+/631/v+t9f7/rPT+/6v0/v/Pspz/npSM/4B4cv/VycX/g4+U/6Hu+/+l - 8f3/2/n+/+T7/v+W2fT/ne37/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+y - 9///svf//7L3//+x9///sfb//7D2//+w9v//r/b//671/v+t9f7/rfX+/6fv+//Gqpv/wLq0/3xzcP+l - mZP/sJWL/7/s9f/s/P///////+T7/v+X2vT/ne77/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X - 4/3/sPb//7L3//+y9///svf//7L3//+y9///sff//7H2//+w9v//sPb//6/2//+v9f//r/X+/7fz/f/1 - 5dz/0c7L/2heWP+rnJD/vaed/9ru8//d+v//0fj+/7/2/v+Z2vT/nu/8/wAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAvuf3/7X2//+X4/3/sPb//7L3//+y9///svf//7L3//+y9///svf//7L3//+x9v//sfb//7D2//+v - 9v//uff//733/v+79Pz/5dzW/36CfP+hr7T/fJun/57h8v+k5vn/oeH3/57e9f+d4/f/nu/8lgAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sfb//7L3//+y9///svf//7P3//+z9///tPf//7P3//+y - 9///sff//7H1//+x8v3/sPD8/6/s+/+u6fn/oaqu/15xef9kjp3/f7jL9p7f896h5vm5n+j6hp7q+0Ge - 8P0PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7T3//+l7v7/svf//7L3//+y9///svf//7L2//+0 - 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 - AAAAAAAAAAAAAAAAAAAAis3lMIrO54CI0OvKhdDs94LS8P990vL/fNX0/3vY9f962/X/tsPH/5eXl/9z - pLb/d973/3HN8f9ayt//v6mI/4TW7P9torWcAAAAQAAAADgAAAAoAAAAEgAAAAQAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAACN0epejtLszY7T7viN1fH/itbz/4bZ9f+E3Pb/guD3/4Hi+P+A4fj/fuH4/33f9/+k - q67/kpCR/4Cvwf943vf/cc3x/2HN3//ix6T/htfs/3KpvaQAAAA8AAAAOAAAADEAAAAfAAAACwAAAAEA - AAAAAAAAAAAAAAAAAAAAmNnysJrd9f+T3vb/juH4/4zk+P+J5fn/iOX5/4bk+f+F5Pn/g+P4/4Li+P+A - 4vj/f+D3/7jEyf+UlJT/b6Cx/3re9/9wzfH/Y9Ts//X8/v+H2O3/dK3BoQAAADUAAAAxAAAALQAAACQA - AAAWAAAACAAAAAIAAAAAAAAAAAAAAACd3PT/ouv7/5Do+v+O6Pr/jef6/4vm+v+K5vn/iOX5/4fk+f+F - 5Pn/hOP5/4Lj+P+B4ff/m56h/46Sk/99uc7/fN/3/3HO8f9l1Oz/9fz+/4ja7f91scWeAAAALQAAACgA - AAAkAAAAHwAAABgAAAAPAAAABwAAAAIAAAAAAAAAAKDd9f+k7Pz/iuD7/5Hp+v+P6Pr/juf6/4zn+v+L - 5vn/ieX5/4jl+f+G5Pn/heT5/4Pi+P+/y9H/lpeX/2eZq/9+4Pj/c87x/2vW7f/1/P7/itru/3i3y5oA - AAAkAAAAHwAAABsAAAAWAAAAEgAAAA0AAAAIAAAABAAAAAEAAAAAot71/6Xs/P+L4Pz/k+r7/5Lp+v+Q - 6Pr/juj6/43n+v+L5vr/iub5/4jl+f+H5Pn/heP4/5SXmf+OkJL/hL7S/4Dh+P92zvH/cdfu//b8/v+M - 2+7/fL3QlgAAABsAAAAWAAAAEgAAAA4AAAAKAAAABgAAAAMAAAABAAAAAAAAAACl3vX/p+38/4zh/P+V - 6/v/lOr7/5Lp+/+R6fr/j+j6/47n+v+M5/r/i+b5/4nl+f+I5Pn/w9HX/5SZmf9mlqj/guL4/3fP8f92 - 2e//7/v9/47c7v9/w9iRAAAAEQAAAA0AAAAKAAAABgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAKff9f+p - 7vz/jeH8/5js+/+W6/v/ler7/5Pq+/+S6fr/kOj6/47o+v+N5/r/i+b6/4rm+f+RkZP/jZCS/4XA1v+F - 4/n/edDy/2zX7v9x2e//j9zu/4HH3HwAAAAKAAAABgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAqeD1/6ru/P+P4vz/mu38/5ns+/+X6/v/lev7/5Tq+/+S6fv/ken6/4/o+v+O5/r/jOf6/8XU2v+W - mpz/aJao/47m+f991PP/fNfx/5Pe8P+Fz+ObW42bEgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAACr4fb/rO/8/5Di/P+c7vz/m+38/5ns/P+Y7Pv/luv7/5Xq+/+T6vv/kun6/5Do+v+O - 6Pr/ko+R/4uPkf+Dwdj/n+r6/4bh+P9/0/L/jNbr/0xxewYAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAK7h9v+t8P3/keP8/5/v/P+d7vz/nO38/5rt/P+Z7Pv/l+v7/5Xr+/+U - 6vv/kun7/5Hp+v/F2OD/lZmZ/2uaq/+T6Pn/kef5/3zR8v+I1uv/AAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsOL2/6/x/f+R4/z/oe/9/5/v/P+e7vz/nO78/5vt/P+Z - 7Pz/mOz7/5br+/+V6vv/kun7/6G8xv+iiYH/kcXY/4/o+v+d6vv/ftHy/4fX6/8AAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACy4/b/sfL9/5Pk/P+j8P3/ofD9/6Dv/P+f - 7/z/ne78/5zt/P+a7fz/mez7/5fr+/+Ivc//l4h//7Wajf93iJH/huH6/6zt+/+A0vL/h9js/wAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALTk9v+x8v7/lOT8/6Xx/f+k - 8f3/ovD9/6Hv/f+f7/z/nu78/5zu/P+b7fz/mez8/3BPQf9lhJb/va6i/3ptZf9zz+r/uvH8/4LT8v+H - 2ez/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAteT2/7Py/v+V - 5f3/p/L9/6by/f+k8f3/o/D9/6Hw/f+g7/z/n+/8/53u/P+c7fz/k21b/5+goP+9oIn/aWpq/33b9//I - 9P3/hNPy/4ba7f8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC3 - 5fb/tfP+/5bl/f+p8/7/p/L+/6by/f+l8f3/pPH9/6Lw/f+h7/3/n+/8/57u/P/lx7P/1bab/7aOcv9h - aXD/f935/9X3/f+H1PP/htzu/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAALnl9/+39P7/l+X9/6r0/v+p8/7/qPP+/6fy/f+m8v3/pPH9/6Pw/f+h8P3/oO/8/93Ryv/r - y7T/yquV/2Jwe/9/4Pv/5Pr+/4nV8/+G3e7/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAuub3/7f0/v+Y5v3/rPT+/6v0/v+q8/7/qfP+/6fy/v+m8v3/pfH9/6Tx/f+i - 8P3/2OHj///x4//izb3/a3yI/4Hh/f/v/P//i9bz/4Xe7/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC85vf/uPT//5nm/f+u9f7/rfX+/6z0/v+q9P7/qfP+/6jz/v+n - 8v3/pvL9/6Tx/f/G3+b////3//vv5v9pgY7/g+T+//X9//+O1/P/hd/w/wAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL3n9/+59P//meb9/6/2//+u9f7/rfX+/6z0/v+r - 9P7/qvP+/6nz/v+n8v7/pvL9/7fe6f/Zu6//t6yp/36Zp/+E6P7/+v7//5DX8/+F4PD/AAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7r1//+a5v3/sPb//6/2//+v - 9f//rvX+/631/v+s9P7/qvT+/6nz/v+o8/7/pOX1/7iWhv9xY17/cX+K/4Hn/v/9////ktj0/4Xg8f8A - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC+5/f/uvX//5rm/f+x - 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 - AwAAgAcAAIAHAACABwAAgAcAAIAHAAD//wAA - - + + + + + + AAABAAoAMDAQAAEABABoBgAApgAAACAgEAABAAQA6AIAAA4HAAAQEBAAAQAEACgBAAD2CQAAMDAAAAEA + CACoDgAAHgsAACAgAAABAAgAqAgAAMYZAAAQEAAAAQAIAGgFAABuIgAAAAAAAAEAIABJhgAA1icAADAw + AAABACAAqCUAAB+uAAAgIAAAAQAgAKgQAADH0wAAEBAAAAEAIABoBAAAb+QAACgAAAAwAAAAYAAAAAEA + BAAAAAAAgAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDA + wAAAAP8AAP8AAAD//wD/AAAA/wD/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIuIAAAAAAAAAAAAAAAAAAAAAA + AAAAB4uLiLgAAAAAAAAAAAAAAAAAAAAAAAiLiHeIuIuIgAAAAAAAAAAAAAAAAAAIi4uIiHi4uLiLgAAA + AAAAAAAAAAAACIi4iL+4t4e4i4iIgAAAAAAAAAAAAAiIi4v7i4iLiHeLiLiIsAAAAAAAAAAACIi4v4iL + +Li/eIiLi4iIgAAAAAAAAAAACL+Ii4v4uIi4h3OIuLj4sAAAAAAAAAAACIuL+IuL+4v7iIi4i4j4gAAA + AAAAAAAACIiIuIiIiIiIt3iLiLj7gAAAAAAAAAAACLi/i4uLi4uLiIe4uLj4gAAAAAAAAAAACPiL+IiI + iL+IiHiIi4j7gAAAAAAAAAAACLiIuLi4v4uLh4O4uLj/gAAAAAAAAAAACPuIiIiIi/i/iIeIi4iLgAAA + AAAAAAAACIi/v7+4iL+Lh3i4uLi/gAAAAAAAAAAACL+IiIiLiIuIiIOIiIiL8AAAAAAAAAAAD4v7+4v4 + i/i4uHi4uLiAAAAAAAAAAAAACIiIiIiL+L+IiIeL+/uAAAAAAAAAAAAACIuL+/v4v4uLiIe4iIiwAAAA + AAAAAAAACIiPiIi/i/iIiHuIuLiAAAAAAAAAAAAACIv7+/iIiL+4h4V4iPvwAAAAAAAAAAAACIiIiL+/ + v4iLd397i/iwAAAAAAAAAAAACIv7+IiIiL+3R3hoiPuAAAAAAAAAAAAACIiIi/v7+IiHGHh4v4iAAAAA + AAAAAAAACIv7+PiIv7+4d3hoi/vwAAAAAAAAAAAACIiPi/v4iIiIiIgIv/iAAAAAAAAAAAAAD4v7+I+/ + v7+IiOhYiPuAAAAAAAAAAAAACIiPiL+I+Ii4iIgov/iAAAAAAAAAAAAACIv7+PiL+/iIiIhYiIuAAAAA + AAAAAAAAD4iPv7+Ij7+4+I8oiPiAAAAAAAAAAAAACIv4+Ii/iIj4j/h4v/uAAAAAAAAAAAAACIiL+/j7 + +/v4j/84+PiAAAAAAAAAAAAAD4v/j4v/j4+/j494v/vwAAAAAAAAAAAACIiIv4+L+/iIhnh4j/iwAAAA + AAAAAAAAD4v4+L+Pj7+/h3h4v/iAAAAAAAAAAAAACIiIv/i/v4+IiHeP//vwAAAAAAAAAAAAD4v4+L/4 + +Iv4+HeI+PiwAAAAAAAAAAAACIiL+Pi/v4+IiHh4i4jwAAAAAAAAAAAAD4v/i/j4+L+/iDeL/wAAAAAA + AAAAAAAACIiL/4v4v4+IgAAAAAAAAAAAAAAAAAAACIiPiI+P8AAAAAAAAAAAAAAAAAAAAAAAD4iIAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////AAD///////8AAP// + /////wAA////////AAD///////8AAP///h///wAA///gD///AAD//gAB//8AAP/gAAH//wAA/gAAAf// + AADgAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAA + AAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// + AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAA + AAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// + AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAA///8AAIAAH////wAAgAf/////AACD//////8AAP// + /////wAAKAAAACAAAABAAAAAAQAEAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAIAAAACA + gACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8AAAD/AP8A//8AAP///wAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAh4uIgAAAAAAAAAAAAAAI + i4eLi7gAAAAAAAAAAIiLi4iHeLh4gAAAAAAACIi4v4i4h7iLiIAAAAAACIuL+IuLi4h7iPuAAAAAAAiI + iLi/v4iHiLv4gAAAAAAIuL+IiIuLhziI+4AAAAAACPiLi4uIv3iLuPiAAAAAAAi4iIiIv4uHeIv4gAAA + AAAPi4uLi/uIh4uLiwAAAAAACIiIiIiIuIg4iIgAAAAAAAiL+/uLiIuHi4uAAAAAAAAIiIiIiIv4iHiL + gAAAAAAACIv7+/v4uIeL+LAAAAAAAAiIiIiIv4t4eLiAAAAAAAAIi/v7+Iv3eHv4sAAAAAAACIiIiL+I + h3d4iIAAAAAAAA+L+/iL+/iHeIuAAAAAAAAIiI+/iIiIiHv4sAAAAAAACIv4iL+/v/h4+IAAAAAAAA+I + iL/4iPj/ePuAAAAAAAAIi/j4v4v4iHv4sAAAAAAAD4iL+IiIi4Z4+IAAAAAAAAiL/7+L+I+FePuAAAAA + AAAPiIj4j7+/h4j4gAAAAAAACIv4v7///4eIi/AAAAAAAA+PiPj4iIj3ewAAAAAAAAAIi/iIiIAAAAAA + AAAAAAAAAP+AAAAAAAAAAAAAAAAAAP/////////////////8B///4AP//AAB/+AAAf+AAAH/gAAB/4AA + Af+AAAH/gAAB/4AAA/+AAAP/gAAH/4AAB/+AAAf/gAAH/4AAB/+AAAf/gAAH/4AAB/+AAAf/gAAH/4AA + B/+AAAf/gAAH/4AAB/+AAAf/gAA//4Af///H////KAAAABAAAAAgAAAAAQAEAAAAAACAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAIAAAIAAAACAgACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8A + AAD/AP8A//8AAP///wADMzMzMzMzAAO7u7t4s7swA7u7u4ezvDADu7u7eLO8MAO7u7uHs78wA7u7u3iz + vzADu7u7h7O/MAO7u7t4uzswA7u7u4e7swADu7u7eLswAAO7u7uHuzAAA7u7u3i7MAADu7u7d7swAAO7 + u7t3uzAAAzMzMzMzAAAAAAAAAAAAAIADAACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAMAAIAH + AACABwAAgAcAAIAHAACABwAAgA8AAP//AAAoAAAAMAAAAGAAAAABAAgAAAAAAAAJAAAAAAAAAAAAAAAB + AAAAAQAAAAAAABssNQA5NTgAOzs+AEY+PwBJOzoAQEJGAEFESgBTUE0AXFBJAEJNVQBNTlIAaFdKAGNa + WQBoXlgARlliAExibQBecXkAWXJ/AH9qZAB/cmwAYnR+AHV0dgB8c3AAhGNZAIduYwCAeXMAjn54AH6C + fACGgH4ApIFvAP+hYwD/tX8AUXWGAFl9jwB6hYgAZI6dAFeNpQB8m6cAep+tAHmltwB2p7wAeKe7AF+n + xgBrp8QAaq7MAHKtxQB0rcQAdLDLAHqzzAB2u9UAfrnSAHK72QBtxd4AWs/sAFzQ7ABsxekAcMbhAHTJ + 5QB3z+oAcs/vAGLT7QBs1+8AdNHrAHjS7QBy2e8Acc3xAHXO8QB1zvQAeM7xAHfQ8QB31PAAdNf1AHzS + 8QB12/YAd973AHrd9QB84PcAfuD4AIGJjwCQh4MAkIiGAJ6UjACDj5QAhZKXAIyYngCSkpIAkZqeAKqR + gwCjlo4AsJWLALGcigC7n4gApZqUAKuckACgnpoAs56TALKflgC1npQApqCcAKuinQC2oJYAu6WbAIud + pQCInKgAi6CoAJehpQCZpKkAkqivAJWttwCNsbwAnbC3AKinpAChqq4AqqyrALGurwChr7QAq7e5AMCf + kgDBqpYAxKybAMuxnADStJ8AyK6iAMy2ogDOuKMAyLKqAM27qQDUt6AA1rykANO7qQDAurQAncS/ANrB + qwDHxL4A1MKzAN/ItgDXx7gA3Mq6AODHsgDgy7oAhK/BAIO6zACOu84AkbfGAJi1wQCfu8UAob7GAKG+ + yACbycYAisPaAJ/I1wCVxNgAmMnbAJvK3QCc0tMArcPLAK7IyQCpytUApsvcAKjO3ACxz9oAhcvgAIzO + 5gCEzusAhdfnAInY5ACE0OoAjtHoAJXQ4ACd1eEAldnjAJDV6wCU3O8Ags/wAIHS8gCF0vEAhtTyAIvV + 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 + AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAA + AAH//wAAgAAAAf//AACAAAAB//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// + AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAA + AAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// + AACAAAAH//8AAIAAAAf//wAAgAAAP///AACAAB////8AAIAH/////wAAg///////AAD///////8AACgA + AAAgAAAAQAAAAAEACAAAAAAAAAQAAAAAAAAAAAAAAAEAAAABAAAAAAAAWEpEAHBPQQBxY14AaWpqAHpt + ZQBhaXAAYnB7AJNtWwCFdWwAnYF5AJeIfwC2jnIAa3yIAHF/igBpgY4AZYSWAHeIkQBmlqgAaJaoAGeZ + qwBrmqsAfpmnAHecqwBvoLEAc6S2AHujswB9q7sAarHNAH25zgBayt8AYc3fAE/N6ABnzegAZ87vAHbL + 5QBzz+oAec3tAGPU7ABl1OwAa9btAGzX7gBx1+4AeNDrAHHZ7wB22e8Acc3xAHbO8QB50PIAfdHyAHzV + 8gB81fQAdNj1AHfe9wB62fUAfdv3AHne9wB83/cAf935AH/g9wB+4PkAj4WCAIuPkQCSj5EAjZCSAI+W + mACRkJIAlZaWAJSXmQCUmZkAlpqcAKKJgQC4loYAtZqNAKOenAC9oIkAv6mIAJueoQCIo6sAn6CgAJOl + rgCkq64Ava6iALesqQDKq5UA1babAM2zpgDZu68A5r+yAOLHpADlx7MA68u0AOLNvQCAr8EAiL3PAIS+ + 0gChvMYAhMDVAIPB2ACRxdgAtsPHALjEyQClxtEApMfUAKfL1wCvydMAqc7bAL/L0QCt098AtdDZALLU + 3QCIzeYAhM/rAIfX6wCF1uwAiNbrAIzW6wCI0ewAhtjsAIXd7gCJ2u0AjNvuAI7c7gCW0eYAn9PiAJHU + 7gCf1+4AgdLxAITT8gCH1PMAitXzAI3W8gCF3/AAhtn1AITc9gCQ1/MAk97wAJLY9ACW2fQAk972AJXf + 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 + 9QB32/AAddzxAHjd8QB93vEAeeDyAH7g8gB94vQAg4WGAKKQgQC5lYcAqpyRAKOqpwCsrq4Ap7K1AKmy + tADKuasA78y7AIm1xwCjy98AgMvpAITO6wCE1egAh9DtAJPd8gCi0uYApt33AIDh8wCG4fIAgeL0AILl + 9QCG5PQAiOHzAIjl9ACH6PYAiej3AI3o9gCN6vgAkOf2AJDp9gCU6/cAkuv4AJHt+QCW7vkAmO74AJbw + +gCa8vsAnPH6AJ/0/AC75/cAven9AKDx+gCg9PwApPX8AKj2/ACn+P0Aqvj9AK35/QCx+v4AtPv/ALj8 + /wDu3dgA7uriAOzs7AD/+esA///+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAACAgICAgICAgICAgHEwAAAAhLRT8o + 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 + CCMDcH2jtx6+NYFhCy2joCWOh//63332C8DfAOq3HrnfCIP5B65cqd0HnNQ08cbZmXxkECZMxso6CoXU + 8lGzX+ggpMHaukNlvcqhA+OE5JBGDk3TEVLih4rFq3UunjkFii8MyLvPNTrf/osFuzFscoSXNrLekT6X + +lfeOaeNzd5StAvT9wkhTyLkA5omXzMzk2d8zKJYNEBBveHx/Ol11pcWnpiaObg+NV2eKxWNY7qhbE36 + OA3fOX/ufPPpb30tAN703g9dfWJvb/H6xcgAjLCr+JV3zrUq5Awgb1jFcmnq+ANSM14hhHaLUmHOc+ve + +tKFL6xvGH8FYd3UnOWc1dQnpuZvEVK7eWXxwjRRJd+H3/uhq8+8oDf0EsfIAIywp/iVd84ZRBV2ZaJK + OwlU3vuhq1fe/dAdAsDQXC1vbSg6tfzaez90dTsj+kYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGE + EUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGE + EUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEa4Z/P8GlX/ISWG3BgAAAABJRU5ErkJggigAAAAw + AAAAYAAAAAEAIAAAAAAAgCUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARz87AW+NmgFx + zfEYds3ubXXM7sNzzPD1fcvq8IbE3MFxpblkAAAAHAAAABkAAAASAAAACQAAAAMAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHbO8Q9t + udZtXIqb0HGrw/hsxen/cs/v/3TX9f912/b/dc/x/5De8P+BvdTJAAAAOAAAADYAAAAwAAAAJAAAABQA + AAAHAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfdHyBn/P711+ + z++xe8/w63fQ8f+YtcH/tJ6U/4WSl/9Zcn//bcXe/3fe9/933vf/cc3x/3nc8P93zOb/dsnk/3O71NRe + ipqBAAAAOwAAAC8AAAAdAAAADAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhtHvWITR76uC + 0fDnftHy/33W9P992fX/ft33/37h+P9+udP/lcTY/7mkmf+xrq//dNHr/3je9/943vf/cc3x/2zX7/90 + 2u//idjk/4XX5/+BvdTQAAAAQAAAAD8AAAA2AAAAJgAAABQAAAAGAAAAAQAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACM0+5Ii9Tvp4nT8OWH + 1PL+hdj0/4Tb9f+D3vf/g+P4/4Li+P+B4vj/gOL4/3/h+P92p7z/qpGD/4icqP9qrsz/c9Lt/3rf9/95 + 3/f/cc3x/2LT7f+dxL///6Fj/53Q0P+Mzub/AAAAQAAAAEAAAAA/AAAAOQAAACsAAAAXAAAACAAAAAEA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJLV7j6V1/Glkdbx4pDW8v2O + 2vT/jN32/4rh9/+J5Pn/iOX5/4bk+f+F5Pn/hOP5/4Pj+P+C4/j/geL4/4Dh+P+hvsj/xsLA/66kn/+G + gH7/ccfh/3vf9/963/f/cc3x/13Q7P+bycb//7V//5vU1v+Nz+f/AAAAPwAAAD0AAAA7AAAAOQAAADQA + AAAlAAAADwAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAltfw1Jfc9f+b + 4Pj/kOL4/4/n+v+N5/r/jOf6/4vm+v+K5vn/ieX5/4jl+f+H5fn/huT5/4Xk+f+E4/n/g+P4/4Lh+P9y + rcX/nbC3/6Wgnv+my9z/d9Tw/3zg9/984Pf/cs3x/1vQ7P+V2eP/6u/p/5nk9P+Nz+f/AAAAOwAAADkA + AAA2AAAANAAAADEAAAAsAAAAGQAAAAYAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAnNv0/5jr+/+S4vz/kOj6/5Do+v+P6Pr/juj6/43n+v+M5/r/i+b5/4rm+f+I5fn/h+X5/4bk+f+F + 5Pn/hOP5/4Li+P+PsLr/wJ+S/4yYnv9RdYb/csrl/33g+P994Pf/c83x/1rP7P+Y4vP//v7+/5jk9P+O + 0Oj/AAAANgAAADQAAAAxAAAALgAAACwAAAApAAAAHwAAABEAAAAGAAAAAQAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAndz0/5vs+/+M3vz/kun7/5Lp+v+R6fr/kOj6/47o+v+N5/r/jOf6/4vm+v+K + 5vn/ieX5/4jl+f+H5Pn/huT5/4Tj+P94tM7/sc/a/7Gfl/+pqqr/d8/q/3/h+P9+4fj/c87x/1vQ7P+Z + 4vP//////5jj9P+O0ej/AAAAMQAAAC4AAAArAAAAKQAAACYAAAAiAAAAHwAAABgAAAAPAAAABwAAAAIA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAn931/5zs+/+M3vz/lOn7/5Pq+/+S6fv/ken6/5Do+v+P + 6Pr/juf6/43n+v+M5vr/iub5/4nm+f+I5fn/h+X5/4Xj+P94p7v/kpKS/4udpf9yu9n/edXx/4Di+P9/ + 4fj/dM7x/13Q7f+Z4/P//////5nk9P+P0un/AAAALAAAACkAAAAlAAAAIwAAACAAAAAcAAAAGQAAABYA + AAASAAAADAAAAAYAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAod31/53s+/+N3vz/ler7/5Xq+/+U + 6vv/k+r7/5Lp+v+Q6fr/j+j6/47o+v+N5/r/jOf6/4vm+v+K5vn/ieX5/4fk+P+Rt8b/xcPA/6ihnf91 + dHb/dcrk/4Hi+P+A4vj/dc7x/1/Q7f+b4/T//////5nk9P+P0+r/AAAAJQAAACIAAAAfAAAAHAAAABkA + AAAWAAAAEwAAABAAAAANAAAACwAAAAcAAAAEAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAo971/5/t/P+O + 3vz/l+v7/5fr+/+V6/v/lOr7/5Pq+/+S6fv/ken6/5Do+v+P6Pr/juf6/4zn+v+L5vr/iub5/4jk+P90 + sMv/ob7G/6aclv+ozd3/ftj0/4Pj+P+C4vj/ds/x/2DS7f+c4/T//////5zl9P+Q1Or/AAAAHwAAABwA + AAAZAAAAFQAAABMAAAAQAAAADQAAAAsAAAAIAAAABgAAAAQAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAA + AAAApN71/6Dt/P+O3/z/mOv8/5js+/+X6/v/luv7/5Xq+/+U6vv/k+n7/5Hp+v+Q6fr/j+j6/47o+v+N + 5/r/jOf6/4rl+f+Vrbf/s5+V/5mkqf9XjaX/eNLt/4Tj+f+D4/j/d8/x/2PT7v+e5PT//////57m9P+Q + 1ev/AAAAGQAAABYAAAASAAAAEAAAAA0AAAALAAAACAAAAAYAAAAEAAAAAgAAAAEAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAApt/1/6Lu/P+P3/z/muz8/5rt/P+Z7Pv/l+z7/5br+/+V6/v/lOr7/5Pq+/+S + 6fr/ken6/5Do+v+P6Pr/jef6/4vm+v9/udH/qc/b/7Oek/+Rmp7/d9Dr/4bk+f+F5Pn/ec/y/2bU7v+X + 4vT/0fL6/5Xj9P+R1uz/AAAAEwAAABAAAAANAAAACgAAAAgAAAAGAAAABAAAAAIAAAABAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqN/1/6Pv/P+P3/z/m+38/5vt/P+a7fz/mez8/5js+/+X + 6/v/luv7/5Xq+/+T6vv/kun7/5Hp+v+Q6Pr/j+j6/47n+v+Er8H/qKek/4ugqP+Cz/D/gdv3/4fl+f+G + 5Pn/etDy/3DY7/+A2/L/ieHy/5fl9P+R1+z/AAAADQAAAAoAAAAIAAAABgAAAAQAAAACAAAAAQAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqeD1/6Tv/P+P3/z/ne38/53u/P+c + 7fz/m+38/5rs/P+Y7Pv/l+v7/5br+/+V6/v/lOr7/5Pq+/+S6fr/ken6/4/o+v+fu8X/yLKq/6yjnf9i + dH7/cMXh/4nl+f+L5vn/e9Dy/4bd8v+a5PT/mOL0/5je8P+O0+aaAAAACAAAAAYAAAAEAAAAAgAAAAEA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAq+H2/6Xw/f+P + 3/z/nu78/57u/P+d7vz/nO78/5vt/P+a7fz/mez7/5js+/+X6/v/luv7/5Tq+/+T6vv/kun7/5Hp+v92 + u9X/qcrV/6Cemv+Ou87/fdTy/4rm+f+S6Pn/g9j0/3zQ8v+H2vT/lt3v/4vO4VwAAAAGAAAABAAAAAIA + AAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAArOH2/6fw/f+R3/z/oO/9/6Dv/P+f7/z/nu78/53u/P+c7fz/mu38/5ns/P+Y7Pv/l+v7/5br+/+V + 6vv/lOr7/5Pq+/+fvMX/yK6i/5Kor/9fp8b/fdTw/4zn+v+L5vr/jOb5/4vj+P9/0/L/lNzv/2aYpg0A + AAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAruL2/6jx/f+R4Pz/oe/9/6Hw/f+g7/3/n+/8/57u/P+d7vz/nO38/5vt/P+a + 7fz/mez7/5fr+/+W6/v/lev7/5Pp+/+Kwdn/n8jX/7aelP+BiY//c8jm/43n+v+M5/r/i+b6/5bp+v98 + 0fL/lNzv/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAr+L2/6ry/f+S4Pz/o/D9/6Pw/f+i8P3/oe/9/6Dv/P+f + 7/z/ne78/5zu/P+b7fz/mu38/5ns/P+Y7Pv/l+v7/5Lo+/+Lwtr/rK6t/5ehpf9rp8T/dc70/4/o+v+O + 6Pr/kej6/6Ts+/990fL/lN3w/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAseP2/6vy/f+S4fz/pPD9/6Tx/f+j + 8P3/ovD9/6Hw/f+g7/z/n+/8/57u/P+d7vz/nO38/5vt/P+a7Pz/mOz7/4fi/f+rt7n/tqCW/6OWjv+H + bmP/WX2P/5Dn+v+Q6Pr/k+n6/7Pv/P9/0vL/ld7x/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsuP2/6zz/v+S + 4fz/pfH9/6Xx/f+k8f3/o/H9/6Lw/f+h8P3/oO/9/5/v/P+e7/z/ne78/5zu/P+b7fz/l+r8/4yzvv+O + fnj/f3Js/5CHg//54dH/f2pk/4/k9/+R6fr/len6/8j0/f+A0vL/lt/y/wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAs+P2/6zz/v+T4f3/p/H+/6fy/f+m8v3/pfH9/6Tx/f+j8P3/ovD9/6Hw/f+g7/z/n+/8/57u/P+b + 7Pz/hNDq/6SBb/9JOzr/TU5S/5CIhv/gx7L/aFdK/4/k9f+T6vv/nOv6/8/1/f+C0/L/luHz/wAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAteT2/670/v+T4f3/qPL+/6jz/v+n8v3/pvL9/6Xx/f+k8f3/o/H9/6Lw/f+h + 8P3/oO/9/5/v/P+b7Pz/hcvg/4RjWf8bLDX/fLLL/6ehm//WvKT/XlBI/5Hl9v+U6vv/ou38/8z0/f+D + 0/L/l+Lz/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtuT2/6/0/v+U4v3/qPL+/6nz/v+o8/7/p/L+/6fy/f+m + 8v3/pfH9/6Tx/f+j8P3/ovD9/6Hv/f+f7vz/ldDg/8Kolv+BenX/eoWI/7Gciv/Ut6D/WlBL/5Tm9/+W + 6/v/o+38/9H2/v+F1PP/l+P0/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAt+X2/7D0/v+U4v3/qfP+/6r0/v+q + 8/7/qfP+/6jz/v+n8v3/pvL9/6Xx/f+k8f3/o/H9/6Lw/f+h8P3/l9zw/824o//eybj/z7ik/7ufiP/K + sJ3/Rj4//5bo+P+X7Pv/pe78/9n4/v+G1PP/mOT1/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuOX3/7H0/v+V + 4v3/qvP+/6z0/v+r9P7/qvP+/6nz/v+o8/7/p/L+/6by/f+l8v3/pfH9/6Tx/f+j8P3/leb7/8ixnP/P + u6n/wq6c/8Gslv/Tu6n/OTU4/5fq+f+Z7Pz/sfH8/9n4/f+I1fP/meX2/wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAueb3/7L0//+V4v3/qvT+/631/v+s9P7/q/T+/6r0/v+p8/7/qfP+/6jy/v+n8v3/pvL9/6Xx/f+k + 8f3/lOn+/8y2ov/ay73/y7us/868qP/gy7r/Ozs+/5nq+v+b7fz/tfH9/9f4/f+K1fP/meb2/wAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAuub3/7P1//+W4v3/q/T+/671/v+t9f7/rPT+/6v0/v+r9P7/qvP+/6nz/v+o + 8/7/p/L9/6by/f+l8f3/kur+/9TCs//l2Mz/18rB/9fHuP/q1Mf/QEJG/5rs+v+c7vz/tfL9/9b4/f+L + 1vP/muf3/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAu+b3/7P1//+W4v3/rfX//6/1//+u9f7/rfX+/631/v+s + 9P7/q/T+/6r0/v+p8/7/qPP+/6jy/v+n8v3/ne79/8fEvv/t3tT/5NrU/+jcz//y3NL/QURK/5zs+/+e + 7vz/v/T9/+P6/v+N1vP/muj4/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvOb3/7T2//+W4v3/rvX//7D2//+v + 9v//rvX+/671/v+t9f7/rPT+/6v0/v+q9P7/qvP+/6nz/v+o8/7/p/L9/67Iyf/o2Mv/7Ofk//Pr4//6 + 5+D/Qk1V/53t/P+f7/z/zvb9/+j7/v+P1/P/m+n4/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvef3/7X2//+W + 4/3/r/X//7D2//+w9v//r/b//6/1//+u9f7/rfX+/6z0/v+s9P7/q/T+/6rz/v+p8/7/qPP+/53V4f/f + yLb/9/Pw////+f//8er/Rlli/5/u/P+h7/3/z/f9/+j7/v+Q2PP/m+r5/wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAvuf3/7X2//+X4/3/sPb//7H2//+x9v//sPb//6/2//+v9f//rvX+/631/v+t9f7/rPT+/6v0/v+q + 9P7/qvP+/5nk9f/awav/8+7p//Tz8f/86+b/TGJt/6Du/P+i8P3/z/f+/+n7/v+S2PT/nOv6/wAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+x9///sfb//7D2//+w9v//r/b//671/v+u + 9f7/rfX+/6z0/v+r9P7/q/T+/6Xw/f/StJ//Y1pZ/1NQTf/z3dj/eaW3/6Hw/f+j8f3/1fj+/+b7/v+U + 2fT/nOz6/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+y9///svf//7H2//+x + 9v//sPb//6/2//+v9f//rvX+/631/v+t9f7/rPT+/6v0/v/Pspz/npSM/4B4cv/VycX/g4+U/6Hu+/+l + 8f3/2/n+/+T7/v+W2fT/ne37/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+y + 9///svf//7L3//+x9///sfb//7D2//+w9v//r/b//671/v+t9f7/rfX+/6fv+//Gqpv/wLq0/3xzcP+l + mZP/sJWL/7/s9f/s/P///////+T7/v+X2vT/ne77/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X + 4/3/sPb//7L3//+y9///svf//7L3//+y9///sff//7H2//+w9v//sPb//6/2//+v9f//r/X+/7fz/f/1 + 5dz/0c7L/2heWP+rnJD/vaed/9ru8//d+v//0fj+/7/2/v+Z2vT/nu/8/wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAvuf3/7X2//+X4/3/sPb//7L3//+y9///svf//7L3//+y9///svf//7L3//+x9v//sfb//7D2//+v + 9v//uff//733/v+79Pz/5dzW/36CfP+hr7T/fJun/57h8v+k5vn/oeH3/57e9f+d4/f/nu/8lgAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sfb//7L3//+y9///svf//7P3//+z9///tPf//7P3//+y + 9///sff//7H1//+x8v3/sPD8/6/s+/+u6fn/oaqu/15xef9kjp3/f7jL9p7f896h5vm5n+j6hp7q+0Ge + 8P0PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7T3//+l7v7/svf//7L3//+y9///svf//7L2//+0 + 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 + AAAAAAAAAAAAAAAAAAAAis3lMIrO54CI0OvKhdDs94LS8P990vL/fNX0/3vY9f962/X/tsPH/5eXl/9z + pLb/d973/3HN8f9ayt//v6mI/4TW7P9torWcAAAAQAAAADgAAAAoAAAAEgAAAAQAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAACN0epejtLszY7T7viN1fH/itbz/4bZ9f+E3Pb/guD3/4Hi+P+A4fj/fuH4/33f9/+k + q67/kpCR/4Cvwf943vf/cc3x/2HN3//ix6T/htfs/3KpvaQAAAA8AAAAOAAAADEAAAAfAAAACwAAAAEA + AAAAAAAAAAAAAAAAAAAAmNnysJrd9f+T3vb/juH4/4zk+P+J5fn/iOX5/4bk+f+F5Pn/g+P4/4Li+P+A + 4vj/f+D3/7jEyf+UlJT/b6Cx/3re9/9wzfH/Y9Ts//X8/v+H2O3/dK3BoQAAADUAAAAxAAAALQAAACQA + AAAWAAAACAAAAAIAAAAAAAAAAAAAAACd3PT/ouv7/5Do+v+O6Pr/jef6/4vm+v+K5vn/iOX5/4fk+f+F + 5Pn/hOP5/4Lj+P+B4ff/m56h/46Sk/99uc7/fN/3/3HO8f9l1Oz/9fz+/4ja7f91scWeAAAALQAAACgA + AAAkAAAAHwAAABgAAAAPAAAABwAAAAIAAAAAAAAAAKDd9f+k7Pz/iuD7/5Hp+v+P6Pr/juf6/4zn+v+L + 5vn/ieX5/4jl+f+G5Pn/heT5/4Pi+P+/y9H/lpeX/2eZq/9+4Pj/c87x/2vW7f/1/P7/itru/3i3y5oA + AAAkAAAAHwAAABsAAAAWAAAAEgAAAA0AAAAIAAAABAAAAAEAAAAAot71/6Xs/P+L4Pz/k+r7/5Lp+v+Q + 6Pr/juj6/43n+v+L5vr/iub5/4jl+f+H5Pn/heP4/5SXmf+OkJL/hL7S/4Dh+P92zvH/cdfu//b8/v+M + 2+7/fL3QlgAAABsAAAAWAAAAEgAAAA4AAAAKAAAABgAAAAMAAAABAAAAAAAAAACl3vX/p+38/4zh/P+V + 6/v/lOr7/5Lp+/+R6fr/j+j6/47n+v+M5/r/i+b5/4nl+f+I5Pn/w9HX/5SZmf9mlqj/guL4/3fP8f92 + 2e//7/v9/47c7v9/w9iRAAAAEQAAAA0AAAAKAAAABgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAKff9f+p + 7vz/jeH8/5js+/+W6/v/ler7/5Pq+/+S6fr/kOj6/47o+v+N5/r/i+b6/4rm+f+RkZP/jZCS/4XA1v+F + 4/n/edDy/2zX7v9x2e//j9zu/4HH3HwAAAAKAAAABgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAqeD1/6ru/P+P4vz/mu38/5ns+/+X6/v/lev7/5Tq+/+S6fv/ken6/4/o+v+O5/r/jOf6/8XU2v+W + mpz/aJao/47m+f991PP/fNfx/5Pe8P+Fz+ObW42bEgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAACr4fb/rO/8/5Di/P+c7vz/m+38/5ns/P+Y7Pv/luv7/5Xq+/+T6vv/kun6/5Do+v+O + 6Pr/ko+R/4uPkf+Dwdj/n+r6/4bh+P9/0/L/jNbr/0xxewYAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAK7h9v+t8P3/keP8/5/v/P+d7vz/nO38/5rt/P+Z7Pv/l+v7/5Xr+/+U + 6vv/kun7/5Hp+v/F2OD/lZmZ/2uaq/+T6Pn/kef5/3zR8v+I1uv/AAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsOL2/6/x/f+R4/z/oe/9/5/v/P+e7vz/nO78/5vt/P+Z + 7Pz/mOz7/5br+/+V6vv/kun7/6G8xv+iiYH/kcXY/4/o+v+d6vv/ftHy/4fX6/8AAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACy4/b/sfL9/5Pk/P+j8P3/ofD9/6Dv/P+f + 7/z/ne78/5zt/P+a7fz/mez7/5fr+/+Ivc//l4h//7Wajf93iJH/huH6/6zt+/+A0vL/h9js/wAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALTk9v+x8v7/lOT8/6Xx/f+k + 8f3/ovD9/6Hv/f+f7/z/nu78/5zu/P+b7fz/mez8/3BPQf9lhJb/va6i/3ptZf9zz+r/uvH8/4LT8v+H + 2ez/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAteT2/7Py/v+V + 5f3/p/L9/6by/f+k8f3/o/D9/6Hw/f+g7/z/n+/8/53u/P+c7fz/k21b/5+goP+9oIn/aWpq/33b9//I + 9P3/hNPy/4ba7f8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC3 + 5fb/tfP+/5bl/f+p8/7/p/L+/6by/f+l8f3/pPH9/6Lw/f+h7/3/n+/8/57u/P/lx7P/1bab/7aOcv9h + aXD/f935/9X3/f+H1PP/htzu/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAALnl9/+39P7/l+X9/6r0/v+p8/7/qPP+/6fy/f+m8v3/pPH9/6Pw/f+h8P3/oO/8/93Ryv/r + y7T/yquV/2Jwe/9/4Pv/5Pr+/4nV8/+G3e7/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAuub3/7f0/v+Y5v3/rPT+/6v0/v+q8/7/qfP+/6fy/v+m8v3/pfH9/6Tx/f+i + 8P3/2OHj///x4//izb3/a3yI/4Hh/f/v/P//i9bz/4Xe7/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC85vf/uPT//5nm/f+u9f7/rfX+/6z0/v+q9P7/qfP+/6jz/v+n + 8v3/pvL9/6Tx/f/G3+b////3//vv5v9pgY7/g+T+//X9//+O1/P/hd/w/wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL3n9/+59P//meb9/6/2//+u9f7/rfX+/6z0/v+r + 9P7/qvP+/6nz/v+n8v7/pvL9/7fe6f/Zu6//t6yp/36Zp/+E6P7/+v7//5DX8/+F4PD/AAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7r1//+a5v3/sPb//6/2//+v + 9f//rvX+/631/v+s9P7/qvT+/6nz/v+o8/7/pOX1/7iWhv9xY17/cX+K/4Hn/v/9////ktj0/4Xg8f8A + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC+5/f/uvX//5rm/f+x + 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 + AwAAgAcAAIAHAACABwAAgAcAAIAHAAD//wAA + + \ No newline at end of file diff --git a/src/Tools/ZipIt/Properties/AssemblyInfo.cs b/old/src/Tools/ZipIt/Properties/AssemblyInfo.cs similarity index 100% rename from src/Tools/ZipIt/Properties/AssemblyInfo.cs rename to old/src/Tools/ZipIt/Properties/AssemblyInfo.cs diff --git a/src/Tools/ZipIt/ZipIt.cs b/old/src/Tools/ZipIt/ZipIt.cs similarity index 97% rename from src/Tools/ZipIt/ZipIt.cs rename to old/src/Tools/ZipIt/ZipIt.cs index b524690..df034e4 100644 --- a/src/Tools/ZipIt/ZipIt.cs +++ b/old/src/Tools/ZipIt/ZipIt.cs @@ -1,495 +1,495 @@ -// ZipIt.cs -// -// ---------------------------------------------------------------------- -// Copyright (c) 2006-2011 Dino Chiesa. All rights reserved. -// -// This example is released under the Microsoft Permissive License of -// October 2006. See the license.txt file accompanying this release for -// full details. -// -// ---------------------------------------------------------------------- -// -// This utility zips up a set of files and directories specified on the command line. -// -// compile with: -// csc /debug+ /target:exe /r:Ionic.Zip.dll /out:ZipIt.exe ZipIt.cs -// -// Fri, 23 Feb 2007 11:51 -// - -using System; -using System.IO; -using Ionic.Zip; - -namespace Ionic.Zip.Examples -{ - public class ZipIt - { - private static void Usage() - { - string UsageMessage = - "Zipit.exe: zip up a directory, file, or a set of them, into a zipfile.\n" + - " Depends on Ionic's DotNetZip library. This is version {0} of the utility.\n" + - "usage:\n ZipIt.exe [arguments]\n" + - "\narguments: \n" + - " | - a directory or file to add to the archive.\n" + - " -64 - use ZIP64 extensions, for large files or large numbers of files.\n" + - " -aes - use WinZip-compatible AES 256-bit encryption for entries\n" + - " subsequently added to the archive. Requires a password.\n" + - " -cp - use the specified numeric codepage to encode entry filenames \n" + - " and comments, instead of the default IBM437 code page.\n" + - " (cannot be used with -utf8 option)\n" + - " -C bzip|deflate|none - use BZip2, Deflate, or No compression, for entries subsequently\n"+ - " added to the zip. The default is DEFLATE.\n"+ - " -d - use the given directory path in the archive for\n" + - " succeeding items added to the archive.\n" + - " -D - find files in the given directory on disk.\n" + - " -e[s|r|q|a] - when there is an error reading a file to be zipped, either skip\n" + - " the file, retry, quit, or ask the user what to do.\n"+ - " -E - a file selection expression. Examples: \n" + - " *.txt \n" + - " (name = *.txt) OR (name = *.xml) \n" + - " (attrs = H) OR (name != *.xml) \n" + - " (ctime < 2009/02/28-10:20:00) \n" + - " (size > 1g) AND (mtime < 2009-12-10) \n" + - " (ctime > 2009-04-29) AND (size < 10kb) \n" + - " Filenames can include full paths. You must surround a filename \n" + - " that includes spaces with single quotes.\n" + - " -j- - do not traverse NTFS junctions\n" + - " -j+ - traverse NTFS junctions (default)\n" + - " -L - compression level, 0..9 (Default is 6).\n" + - " This applies only if using DEFLATE compression, the default.\n" + - " -p - apply the specified password for all succeeding files added.\n" + - " use \"\" to reset the password to nil.\n" + - " -progress - emit progress reports (good when creating large zips)\n" + - " -r- - don't recurse directories (default).\n" + - " -r+ - recurse directories.\n" + - " -s 'string' - insert an entry of the given name into the \n" + - " archive, with the given string as its content.\n" + - " -sfx [w|c] - create a self-extracting archive, either a Windows or console app.\n" + - " (cannot be used with -split)\n"+ - " -split - produce a split zip, with the specified maximum size. You can\n" + - " optionally use kb or mb as a suffix to the size. \n" + - " (-split cannot be used with -sfx).\n" + - " -Tw+ - store Windows-format extended times (default).\n" + - " -Tw- - don't store Windows-format extended times.\n" + - " -Tu+ - store Unix-format extended times.\n" + - " -Tu- - don't store Unix-format extended times (default).\n" + - " -UTnow - use the same date/time, NOW, for all entries. \n" + - " -UTnewest - use the same date/time, same as newest entry, for all entries. \n" + - " -UToldest - use the same date/time, equal to oldest entry, for all entries. \n" + - " -UT - use the same date/time, as specified, for all entries. \n" + - " -utf8 - use UTF-8 encoding for entry filenames and comments,\n" + - " instead of the the default IBM437 code page.\n" + - " (cannot be used with -cp option)\n" + - " -zc - use the given comment for the archive.\n"; - - Console.WriteLine(UsageMessage, - System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()); - Environment.Exit(1); - } - - - static bool justHadByteUpdate= false; - static bool isCanceled= false; - static bool wantProgressReports = false; - - private static void SaveProgress(object sender, SaveProgressEventArgs e) - { - if (isCanceled) - { - e.Cancel = true; - return; - } - if (!wantProgressReports) return; - - switch(e.EventType) - { - case ZipProgressEventType.Saving_Started: - Console.WriteLine("Saving: {0}", e.ArchiveName); - break; - - case ZipProgressEventType.Saving_Completed: - justHadByteUpdate= false; - Console.WriteLine(); - Console.WriteLine("Done: {0}", e.ArchiveName); - break; - - case ZipProgressEventType.Saving_BeforeWriteEntry: - if (justHadByteUpdate) - Console.WriteLine(); - Console.WriteLine(" Writing: {0} ({1}/{2})", - e.CurrentEntry.FileName, e.EntriesSaved+1, e.EntriesTotal); - justHadByteUpdate= false; - break; - - case ZipProgressEventType.Saving_AfterWriteEntry: - break; - - case ZipProgressEventType.Saving_EntryBytesRead: - if (justHadByteUpdate) - Console.SetCursorPosition(0, Console.CursorTop); - Console.Write(" {0}/{1} ({2:N0}%)", e.BytesTransferred, e.TotalBytesToTransfer, - e.BytesTransferred / (0.01 * e.TotalBytesToTransfer )); - justHadByteUpdate= true; - break; - } - } - - - // Ask the user what he wants to do - public static void ZipError(object sender, ZipErrorEventArgs e) - { - Console.WriteLine("Error reading {0}...", e.FileName); - Console.WriteLine(" Exception: {0}...", e.Exception); - ZipEntry entry = e.CurrentEntry; - string response = null; - do - { - Console.Write("Retry, Skip, or Quit ? (R/S/Q) "); - response = Console.ReadLine(); - Console.WriteLine(); - - } while (response != null && - response[0]!='S' && response[0]!='s' && - response[0]!='R' && response[0]!='r' && - response[0]!='Q' && response[0]!='q'); - - - e.Cancel = (response[0]=='Q' || response[0]=='q'); - - if (response[0]=='S' || response[0]=='s') - entry.ZipErrorAction = ZipErrorAction.Skip; - else if (response[0]=='R' || response[0]=='r') - entry.ZipErrorAction = ZipErrorAction.Retry; - } - - - - static void CtrlC_Handler(object sender, ConsoleCancelEventArgs args) - { - isCanceled = true; - Console.WriteLine("\nCtrl-C"); - //cleanupCompleted.WaitOne(); - // prevent the process from exiting until cleanup is done: - args.Cancel = true; - } - - - public static void Main(String[] args) - { - bool saveToStdout = false; - if (args.Length < 2) Usage(); - - if (args[0]=="-") - { - saveToStdout = true; - } - else if (File.Exists(args[0])) - { - System.Console.WriteLine("That zip file ({0}) already exists.", args[0]); - } - - - // Because the comments and filenames on zip entries may be UTF-8 - // System.Console.OutputEncoding = new System.Text.UTF8Encoding(); - - Console.CancelKeyPress += CtrlC_Handler; - - try - { - Nullable flavor = null; - int codePage = 0; - ZipEntry e = null; - int _UseUniformTimestamp = 0; - DateTime _fixedTimestamp= System.DateTime.Now; - string entryDirectoryPathInArchive = ""; - string directoryOnDisk = null; - bool recurseDirectories = false; - bool wantRecurse = false; - string actualItem; - - // read/update an existing zip, or create a new one. - using (ZipFile zip = new ZipFile(args[0])) - { - zip.StatusMessageTextWriter = System.Console.Out; - zip.SaveProgress += SaveProgress; - for (int i = 1; i < args.Length; i++) - { - switch (args[i]) - { - case "-es": - zip.ZipErrorAction = ZipErrorAction.Skip; - break; - - case "-er": - zip.ZipErrorAction = ZipErrorAction.Retry; - break; - - case "-eq": - zip.ZipErrorAction = ZipErrorAction.Throw; - break; - - case "-ea": - zip.ZipError += ZipError; - break; - - case "-64": - zip.UseZip64WhenSaving = Zip64Option.Always; - break; - - case "-aes": - zip.Encryption = EncryptionAlgorithm.WinZipAes256; - break; - - case "-C": - i++; - if (args.Length <= i) Usage(); - switch(args[i].ToLower()) - { - case "b": - case "bzip": - case "bzip2": - zip.CompressionMethod = CompressionMethod.BZip2; - break; - case "d": - case "deflate": - zip.CompressionMethod = CompressionMethod.Deflate; - break; - case "n": - case "none": - zip.CompressionMethod = CompressionMethod.None; - break; - default: - Usage(); - break; - } - break; - - case "-cp": - i++; - if (args.Length <= i) Usage(); - System.Int32.TryParse(args[i], out codePage); - if (codePage != 0) - { - zip.AlternateEncoding = System.Text.Encoding.GetEncoding(codePage); - zip.AlternateEncodingUsage = ZipOption.Always; - } - break; - - case "-d": - i++; - if (args.Length <= i) Usage(); - entryDirectoryPathInArchive = args[i]; - break; - - case "-D": - i++; - if (args.Length <= i) Usage(); - directoryOnDisk = args[i]; - break; - - case "-E": - i++; - if (args.Length <= i) Usage(); - wantRecurse = recurseDirectories || args[i].Contains("\\"); - // Console.WriteLine("spec({0})", args[i]); - // Console.WriteLine("dir({0})", directoryOnDisk); - // Console.WriteLine("dirInArc({0})", entryDirectoryPathInArchive); - // Console.WriteLine("recurse({0})", recurseDirectories); - zip.UpdateSelectedFiles(args[i], - directoryOnDisk, - entryDirectoryPathInArchive, - wantRecurse); - break; - - case "-j-": - zip.AddDirectoryWillTraverseReparsePoints = false; - break; - - case "-j+": - zip.AddDirectoryWillTraverseReparsePoints = true; - break; - - case "-L": - i++; - if (args.Length <= i) Usage(); - zip.CompressionLevel = (Ionic.Zlib.CompressionLevel) - System.Int32.Parse(args[i]); - break; - - case "-p": - i++; - if (args.Length <= i) Usage(); - zip.Password = (args[i] == "") ? null : args[i]; - break; - - case "-progress": - wantProgressReports = true; - break; - - case "-r-": - recurseDirectories = false; - break; - - case "-r+": - recurseDirectories = true; - break; - - case "-s": - i++; - if (args.Length <= i) Usage(); - string entryName = args[i]; - i++; - if (args.Length <= i) Usage(); - string content = args[i]; - e = zip.AddEntry(Path.Combine(entryDirectoryPathInArchive, entryName), content); - // if (entryComment != null) - // { - // e.Comment = entryComment; - // entryComment = null; - // } - break; - - case "-sfx": - i++; - if (args.Length <= i) Usage(); - if (args[i] != "w" && args[i] != "c") Usage(); - flavor = new Nullable - ((args[i] == "w") ? SelfExtractorFlavor.WinFormsApplication : SelfExtractorFlavor.ConsoleApplication); - break; - - case "-split": - i++; - if (args.Length <= i) Usage(); - if (args[i].EndsWith("K") || args[i].EndsWith("k")) - zip.MaxOutputSegmentSize = Int32.Parse(args[i].Substring(0, args[i].Length - 1)) * 1024; - else if (args[i].EndsWith("M") || args[i].EndsWith("m")) - zip.MaxOutputSegmentSize = Int32.Parse(args[i].Substring(0, args[i].Length - 1)) * 1024 * 1024; - else - zip.MaxOutputSegmentSize = Int32.Parse(args[i]); - break; - - case "-Tw+": - zip.EmitTimesInWindowsFormatWhenSaving = true; - break; - - case "-Tw-": - zip.EmitTimesInWindowsFormatWhenSaving = false; - break; - - case "-Tu+": - zip.EmitTimesInUnixFormatWhenSaving = true; - break; - - case "-Tu-": - zip.EmitTimesInUnixFormatWhenSaving = false; - break; - - case "-UTnow": - _UseUniformTimestamp = 1; - _fixedTimestamp = System.DateTime.UtcNow; - break; - - case "-UTnewest": - _UseUniformTimestamp = 2; - break; - - case "-UToldest": - _UseUniformTimestamp = 3; - break; - - case "-UT": - i++; - if (args.Length <= i) Usage(); - _UseUniformTimestamp = 4; - try - { - _fixedTimestamp= System.DateTime.Parse(args[i]); - } - catch - { - throw new ArgumentException("-UT"); - } - break; - - case "-utf8": - zip.AlternateEncoding = System.Text.Encoding.UTF8; - zip.AlternateEncodingUsage = ZipOption.Always; - break; - -#if NOT - case "-c": - i++; - if (args.Length <= i) Usage(); - entryComment = args[i]; // for the next entry - break; -#endif - - case "-zc": - i++; - if (args.Length <= i) Usage(); - zip.Comment = args[i]; - break; - - default: - // UpdateItem will add Files or Dirs, - // recurses subdirectories - actualItem = Path.Combine(directoryOnDisk ?? ".", args[i]); - zip.UpdateItem(actualItem, entryDirectoryPathInArchive); - break; - } - } - - if (_UseUniformTimestamp > 0) - { - if (_UseUniformTimestamp==2) - { - // newest - _fixedTimestamp = new System.DateTime(1601,1,1,0,0,0); - foreach(var entry in zip) - { - if (entry.LastModified > _fixedTimestamp) - _fixedTimestamp = entry.LastModified; - } - } - else if (_UseUniformTimestamp==3) - { - // oldest - foreach(var entry in zip) - { - if (entry.LastModified < _fixedTimestamp) - _fixedTimestamp = entry.LastModified; - } - } - - foreach(var entry in zip) - { - entry.LastModified = _fixedTimestamp; - } - } - - if (!flavor.HasValue) - { - if (saveToStdout) - zip.Save(Console.OpenStandardOutput()); - else - zip.Save(); - } - else - { - if (saveToStdout) - throw new Exception("Cannot save SFX to stdout, sorry! See http://dotnetzip.codeplex.com/WorkItem/View.aspx?WorkItemId=7246"); - zip.SaveSelfExtractor(args[0], flavor.Value); - - } - - } - } - catch (System.Exception ex1) - { - System.Console.WriteLine("Exception: " + ex1); - } - } - } +// ZipIt.cs +// +// ---------------------------------------------------------------------- +// Copyright (c) 2006-2011 Dino Chiesa. All rights reserved. +// +// This example is released under the Microsoft Permissive License of +// October 2006. See the license.txt file accompanying this release for +// full details. +// +// ---------------------------------------------------------------------- +// +// This utility zips up a set of files and directories specified on the command line. +// +// compile with: +// csc /debug+ /target:exe /r:Ionic.Zip.dll /out:ZipIt.exe ZipIt.cs +// +// Fri, 23 Feb 2007 11:51 +// + +using System; +using System.IO; +using Ionic.Zip; + +namespace Ionic.Zip.Examples +{ + public class ZipIt + { + private static void Usage() + { + string UsageMessage = + "Zipit.exe: zip up a directory, file, or a set of them, into a zipfile.\n" + + " Depends on Ionic's DotNetZip library. This is version {0} of the utility.\n" + + "usage:\n ZipIt.exe [arguments]\n" + + "\narguments: \n" + + " | - a directory or file to add to the archive.\n" + + " -64 - use ZIP64 extensions, for large files or large numbers of files.\n" + + " -aes - use WinZip-compatible AES 256-bit encryption for entries\n" + + " subsequently added to the archive. Requires a password.\n" + + " -cp - use the specified numeric codepage to encode entry filenames \n" + + " and comments, instead of the default IBM437 code page.\n" + + " (cannot be used with -utf8 option)\n" + + " -C bzip|deflate|none - use BZip2, Deflate, or No compression, for entries subsequently\n"+ + " added to the zip. The default is DEFLATE.\n"+ + " -d - use the given directory path in the archive for\n" + + " succeeding items added to the archive.\n" + + " -D - find files in the given directory on disk.\n" + + " -e[s|r|q|a] - when there is an error reading a file to be zipped, either skip\n" + + " the file, retry, quit, or ask the user what to do.\n"+ + " -E - a file selection expression. Examples: \n" + + " *.txt \n" + + " (name = *.txt) OR (name = *.xml) \n" + + " (attrs = H) OR (name != *.xml) \n" + + " (ctime < 2009/02/28-10:20:00) \n" + + " (size > 1g) AND (mtime < 2009-12-10) \n" + + " (ctime > 2009-04-29) AND (size < 10kb) \n" + + " Filenames can include full paths. You must surround a filename \n" + + " that includes spaces with single quotes.\n" + + " -j- - do not traverse NTFS junctions\n" + + " -j+ - traverse NTFS junctions (default)\n" + + " -L - compression level, 0..9 (Default is 6).\n" + + " This applies only if using DEFLATE compression, the default.\n" + + " -p - apply the specified password for all succeeding files added.\n" + + " use \"\" to reset the password to nil.\n" + + " -progress - emit progress reports (good when creating large zips)\n" + + " -r- - don't recurse directories (default).\n" + + " -r+ - recurse directories.\n" + + " -s 'string' - insert an entry of the given name into the \n" + + " archive, with the given string as its content.\n" + + " -sfx [w|c] - create a self-extracting archive, either a Windows or console app.\n" + + " (cannot be used with -split)\n"+ + " -split - produce a split zip, with the specified maximum size. You can\n" + + " optionally use kb or mb as a suffix to the size. \n" + + " (-split cannot be used with -sfx).\n" + + " -Tw+ - store Windows-format extended times (default).\n" + + " -Tw- - don't store Windows-format extended times.\n" + + " -Tu+ - store Unix-format extended times.\n" + + " -Tu- - don't store Unix-format extended times (default).\n" + + " -UTnow - use the same date/time, NOW, for all entries. \n" + + " -UTnewest - use the same date/time, same as newest entry, for all entries. \n" + + " -UToldest - use the same date/time, equal to oldest entry, for all entries. \n" + + " -UT - use the same date/time, as specified, for all entries. \n" + + " -utf8 - use UTF-8 encoding for entry filenames and comments,\n" + + " instead of the the default IBM437 code page.\n" + + " (cannot be used with -cp option)\n" + + " -zc - use the given comment for the archive.\n"; + + Console.WriteLine(UsageMessage, + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()); + Environment.Exit(1); + } + + + static bool justHadByteUpdate= false; + static bool isCanceled= false; + static bool wantProgressReports = false; + + private static void SaveProgress(object sender, SaveProgressEventArgs e) + { + if (isCanceled) + { + e.Cancel = true; + return; + } + if (!wantProgressReports) return; + + switch(e.EventType) + { + case ZipProgressEventType.Saving_Started: + Console.WriteLine("Saving: {0}", e.ArchiveName); + break; + + case ZipProgressEventType.Saving_Completed: + justHadByteUpdate= false; + Console.WriteLine(); + Console.WriteLine("Done: {0}", e.ArchiveName); + break; + + case ZipProgressEventType.Saving_BeforeWriteEntry: + if (justHadByteUpdate) + Console.WriteLine(); + Console.WriteLine(" Writing: {0} ({1}/{2})", + e.CurrentEntry.FileName, e.EntriesSaved+1, e.EntriesTotal); + justHadByteUpdate= false; + break; + + case ZipProgressEventType.Saving_AfterWriteEntry: + break; + + case ZipProgressEventType.Saving_EntryBytesRead: + if (justHadByteUpdate) + Console.SetCursorPosition(0, Console.CursorTop); + Console.Write(" {0}/{1} ({2:N0}%)", e.BytesTransferred, e.TotalBytesToTransfer, + e.BytesTransferred / (0.01 * e.TotalBytesToTransfer )); + justHadByteUpdate= true; + break; + } + } + + + // Ask the user what he wants to do + public static void ZipError(object sender, ZipErrorEventArgs e) + { + Console.WriteLine("Error reading {0}...", e.FileName); + Console.WriteLine(" Exception: {0}...", e.Exception); + ZipEntry entry = e.CurrentEntry; + string response = null; + do + { + Console.Write("Retry, Skip, or Quit ? (R/S/Q) "); + response = Console.ReadLine(); + Console.WriteLine(); + + } while (response != null && + response[0]!='S' && response[0]!='s' && + response[0]!='R' && response[0]!='r' && + response[0]!='Q' && response[0]!='q'); + + + e.Cancel = (response[0]=='Q' || response[0]=='q'); + + if (response[0]=='S' || response[0]=='s') + entry.ZipErrorAction = ZipErrorAction.Skip; + else if (response[0]=='R' || response[0]=='r') + entry.ZipErrorAction = ZipErrorAction.Retry; + } + + + + static void CtrlC_Handler(object sender, ConsoleCancelEventArgs args) + { + isCanceled = true; + Console.WriteLine("\nCtrl-C"); + //cleanupCompleted.WaitOne(); + // prevent the process from exiting until cleanup is done: + args.Cancel = true; + } + + + public static void Main(String[] args) + { + bool saveToStdout = false; + if (args.Length < 2) Usage(); + + if (args[0]=="-") + { + saveToStdout = true; + } + else if (File.Exists(args[0])) + { + System.Console.WriteLine("That zip file ({0}) already exists.", args[0]); + } + + + // Because the comments and filenames on zip entries may be UTF-8 + // System.Console.OutputEncoding = new System.Text.UTF8Encoding(); + + Console.CancelKeyPress += CtrlC_Handler; + + try + { + Nullable flavor = null; + int codePage = 0; + ZipEntry e = null; + int _UseUniformTimestamp = 0; + DateTime _fixedTimestamp= System.DateTime.Now; + string entryDirectoryPathInArchive = ""; + string directoryOnDisk = null; + bool recurseDirectories = false; + bool wantRecurse = false; + string actualItem; + + // read/update an existing zip, or create a new one. + using (ZipFile zip = new ZipFile(args[0])) + { + zip.StatusMessageTextWriter = System.Console.Out; + zip.SaveProgress += SaveProgress; + for (int i = 1; i < args.Length; i++) + { + switch (args[i]) + { + case "-es": + zip.ZipErrorAction = ZipErrorAction.Skip; + break; + + case "-er": + zip.ZipErrorAction = ZipErrorAction.Retry; + break; + + case "-eq": + zip.ZipErrorAction = ZipErrorAction.Throw; + break; + + case "-ea": + zip.ZipError += ZipError; + break; + + case "-64": + zip.UseZip64WhenSaving = Zip64Option.Always; + break; + + case "-aes": + zip.Encryption = EncryptionAlgorithm.WinZipAes256; + break; + + case "-C": + i++; + if (args.Length <= i) Usage(); + switch(args[i].ToLower()) + { + case "b": + case "bzip": + case "bzip2": + zip.CompressionMethod = CompressionMethod.BZip2; + break; + case "d": + case "deflate": + zip.CompressionMethod = CompressionMethod.Deflate; + break; + case "n": + case "none": + zip.CompressionMethod = CompressionMethod.None; + break; + default: + Usage(); + break; + } + break; + + case "-cp": + i++; + if (args.Length <= i) Usage(); + System.Int32.TryParse(args[i], out codePage); + if (codePage != 0) + { + zip.AlternateEncoding = System.Text.Encoding.GetEncoding(codePage); + zip.AlternateEncodingUsage = ZipOption.Always; + } + break; + + case "-d": + i++; + if (args.Length <= i) Usage(); + entryDirectoryPathInArchive = args[i]; + break; + + case "-D": + i++; + if (args.Length <= i) Usage(); + directoryOnDisk = args[i]; + break; + + case "-E": + i++; + if (args.Length <= i) Usage(); + wantRecurse = recurseDirectories || args[i].Contains("\\"); + // Console.WriteLine("spec({0})", args[i]); + // Console.WriteLine("dir({0})", directoryOnDisk); + // Console.WriteLine("dirInArc({0})", entryDirectoryPathInArchive); + // Console.WriteLine("recurse({0})", recurseDirectories); + zip.UpdateSelectedFiles(args[i], + directoryOnDisk, + entryDirectoryPathInArchive, + wantRecurse); + break; + + case "-j-": + zip.AddDirectoryWillTraverseReparsePoints = false; + break; + + case "-j+": + zip.AddDirectoryWillTraverseReparsePoints = true; + break; + + case "-L": + i++; + if (args.Length <= i) Usage(); + zip.CompressionLevel = (Ionic.Zlib.CompressionLevel) + System.Int32.Parse(args[i]); + break; + + case "-p": + i++; + if (args.Length <= i) Usage(); + zip.Password = (args[i] == "") ? null : args[i]; + break; + + case "-progress": + wantProgressReports = true; + break; + + case "-r-": + recurseDirectories = false; + break; + + case "-r+": + recurseDirectories = true; + break; + + case "-s": + i++; + if (args.Length <= i) Usage(); + string entryName = args[i]; + i++; + if (args.Length <= i) Usage(); + string content = args[i]; + e = zip.AddEntry(Path.Combine(entryDirectoryPathInArchive, entryName), content); + // if (entryComment != null) + // { + // e.Comment = entryComment; + // entryComment = null; + // } + break; + + case "-sfx": + i++; + if (args.Length <= i) Usage(); + if (args[i] != "w" && args[i] != "c") Usage(); + flavor = new Nullable + ((args[i] == "w") ? SelfExtractorFlavor.WinFormsApplication : SelfExtractorFlavor.ConsoleApplication); + break; + + case "-split": + i++; + if (args.Length <= i) Usage(); + if (args[i].EndsWith("K") || args[i].EndsWith("k")) + zip.MaxOutputSegmentSize = Int32.Parse(args[i].Substring(0, args[i].Length - 1)) * 1024; + else if (args[i].EndsWith("M") || args[i].EndsWith("m")) + zip.MaxOutputSegmentSize = Int32.Parse(args[i].Substring(0, args[i].Length - 1)) * 1024 * 1024; + else + zip.MaxOutputSegmentSize = Int32.Parse(args[i]); + break; + + case "-Tw+": + zip.EmitTimesInWindowsFormatWhenSaving = true; + break; + + case "-Tw-": + zip.EmitTimesInWindowsFormatWhenSaving = false; + break; + + case "-Tu+": + zip.EmitTimesInUnixFormatWhenSaving = true; + break; + + case "-Tu-": + zip.EmitTimesInUnixFormatWhenSaving = false; + break; + + case "-UTnow": + _UseUniformTimestamp = 1; + _fixedTimestamp = System.DateTime.UtcNow; + break; + + case "-UTnewest": + _UseUniformTimestamp = 2; + break; + + case "-UToldest": + _UseUniformTimestamp = 3; + break; + + case "-UT": + i++; + if (args.Length <= i) Usage(); + _UseUniformTimestamp = 4; + try + { + _fixedTimestamp= System.DateTime.Parse(args[i]); + } + catch + { + throw new ArgumentException("-UT"); + } + break; + + case "-utf8": + zip.AlternateEncoding = System.Text.Encoding.UTF8; + zip.AlternateEncodingUsage = ZipOption.Always; + break; + +#if NOT + case "-c": + i++; + if (args.Length <= i) Usage(); + entryComment = args[i]; // for the next entry + break; +#endif + + case "-zc": + i++; + if (args.Length <= i) Usage(); + zip.Comment = args[i]; + break; + + default: + // UpdateItem will add Files or Dirs, + // recurses subdirectories + actualItem = Path.Combine(directoryOnDisk ?? ".", args[i]); + zip.UpdateItem(actualItem, entryDirectoryPathInArchive); + break; + } + } + + if (_UseUniformTimestamp > 0) + { + if (_UseUniformTimestamp==2) + { + // newest + _fixedTimestamp = new System.DateTime(1601,1,1,0,0,0); + foreach(var entry in zip) + { + if (entry.LastModified > _fixedTimestamp) + _fixedTimestamp = entry.LastModified; + } + } + else if (_UseUniformTimestamp==3) + { + // oldest + foreach(var entry in zip) + { + if (entry.LastModified < _fixedTimestamp) + _fixedTimestamp = entry.LastModified; + } + } + + foreach(var entry in zip) + { + entry.LastModified = _fixedTimestamp; + } + } + + if (!flavor.HasValue) + { + if (saveToStdout) + zip.Save(Console.OpenStandardOutput()); + else + zip.Save(); + } + else + { + if (saveToStdout) + throw new Exception("Cannot save SFX to stdout, sorry! See http://dotnetzip.codeplex.com/WorkItem/View.aspx?WorkItemId=7246"); + zip.SaveSelfExtractor(args[0], flavor.Value); + + } + + } + } + catch (System.Exception ex1) + { + System.Console.WriteLine("Exception: " + ex1); + } + } + } } \ No newline at end of file diff --git a/src/Tools/ZipIt/ZipIt.csproj b/old/src/Tools/ZipIt/ZipIt.csproj similarity index 97% rename from src/Tools/ZipIt/ZipIt.csproj rename to old/src/Tools/ZipIt/ZipIt.csproj index 0dc9355..6f289f8 100644 --- a/src/Tools/ZipIt/ZipIt.csproj +++ b/old/src/Tools/ZipIt/ZipIt.csproj @@ -1,88 +1,88 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {98008721-C4DD-4F34-B3AE-A3453E29BB65} - Exe - Properties - ZipIt - ZipIt - - - - - 3.5 - - - - - - - - - false - ..\..\Ionic.snk - v4.0 - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - AllRules.ruleset - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - AllRules.ruleset - - - - - - - - - - - Properties\SolutionInfo.cs - - - - - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} - Zip DLL - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {98008721-C4DD-4F34-B3AE-A3453E29BB65} + Exe + Properties + ZipIt + ZipIt + + + + + 3.5 + + + + + + + + + false + ..\..\Ionic.snk + v4.0 + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + AllRules.ruleset + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + AllRules.ruleset + + + + + + + + + + + Properties\SolutionInfo.cs + + + + + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} + Zip DLL + + + + \ No newline at end of file diff --git a/src/Zip Full DLL/Zip Full DLL.csproj b/old/src/Zip Full DLL/Zip Full DLL.csproj similarity index 98% rename from src/Zip Full DLL/Zip Full DLL.csproj rename to old/src/Zip Full DLL/Zip Full DLL.csproj index 13a93b9..e0d0b93 100644 --- a/src/Zip Full DLL/Zip Full DLL.csproj +++ b/old/src/Zip Full DLL/Zip Full DLL.csproj @@ -1,101 +1,101 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {4F7A9BBE-5221-46C5-9E47-1E8B547CF258} - Library - Properties - Ionic.Zip - Ionic.Zip - v4.0 - 512 - - - SAK - SAK - SAK - SAK - - - 3.5 - - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - bin\Debug\Ionic.Zip.XML - AllRules.ruleset - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - AllRules.ruleset - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} - Zip Partial DLL - - - {9816BA86-9250-4C00-A912-25F07F8677D1} - Zlib DLL - - - {e2ce0d56-7af8-4404-bd0c-bc562cbd74d4} - BZip2 DLL - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {4F7A9BBE-5221-46C5-9E47-1E8B547CF258} + Library + Properties + Ionic.Zip + Ionic.Zip + v4.0 + 512 + + + SAK + SAK + SAK + SAK + + + 3.5 + + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + bin\Debug\Ionic.Zip.XML + AllRules.ruleset + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + AllRules.ruleset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} + Zip Partial DLL + + + {9816BA86-9250-4C00-A912-25F07F8677D1} + Zlib DLL + + + {e2ce0d56-7af8-4404-bd0c-bc562cbd74d4} + BZip2 DLL + + + diff --git a/src/Zip NetStandard/Properties/AssemblyInfo.cs b/old/src/Zip NetStandard/Properties/AssemblyInfo.cs similarity index 100% rename from src/Zip NetStandard/Properties/AssemblyInfo.cs rename to old/src/Zip NetStandard/Properties/AssemblyInfo.cs diff --git a/src/Zip NetStandard/Zip NetStandard.csproj b/old/src/Zip NetStandard/Zip NetStandard.csproj similarity index 100% rename from src/Zip NetStandard/Zip NetStandard.csproj rename to old/src/Zip NetStandard/Zip NetStandard.csproj diff --git a/src/Zip NetStandard/paket.references b/old/src/Zip NetStandard/paket.references similarity index 98% rename from src/Zip NetStandard/paket.references rename to old/src/Zip NetStandard/paket.references index 92147e2..adb25ce 100644 --- a/src/Zip NetStandard/paket.references +++ b/old/src/Zip NetStandard/paket.references @@ -1,2 +1,2 @@ -System.Security.Permissions +System.Security.Permissions System.Text.Encoding.CodePages \ No newline at end of file diff --git a/src/Zip Reduced/Properties/AssemblyInfo.cs b/old/src/Zip Reduced/Properties/AssemblyInfo.cs similarity index 100% rename from src/Zip Reduced/Properties/AssemblyInfo.cs rename to old/src/Zip Reduced/Properties/AssemblyInfo.cs diff --git a/src/Zip Reduced/Zip Reduced.csproj b/old/src/Zip Reduced/Zip Reduced.csproj similarity index 97% rename from src/Zip Reduced/Zip Reduced.csproj rename to old/src/Zip Reduced/Zip Reduced.csproj index bdbb039..ebf22f0 100644 --- a/src/Zip Reduced/Zip Reduced.csproj +++ b/old/src/Zip Reduced/Zip Reduced.csproj @@ -1,107 +1,107 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {49A128D3-C3F2-46B1-8F7A-EECD209EA860} - Library - Properties - Zip_Reduced - Ionic.Zip.Reduced - v4.0 - 512 - - - - - - - - - - - true - ..\Ionic.snk - - - 3.5 - - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - true - full - false - bin\Debug\ - TRACE;DEBUG;AESCRYPTO;BZIP - prompt - 4 - bin\Debug\Ionic.Zip.Reduced.XML - AllRules.ruleset - - - pdbonly - true - bin\Release\ - TRACE;AESCRYPTO;BZIP - prompt - 4 - AllRules.ruleset - - - - - - BZip2\BitWriter - - - BZip2\BZip2Compressor - - - BZip2\BZip2InputStream - - - BZip2\BZip2OutputStream - - - BZip2\ParallelBZip2OutputStream - - - BZip2\Rand - - - - Properties\SolutionInfo.cs - - - - - Ionic.snk - - - - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {49A128D3-C3F2-46B1-8F7A-EECD209EA860} + Library + Properties + Zip_Reduced + Ionic.Zip.Reduced + v4.0 + 512 + + + + + + + + + + + true + ..\Ionic.snk + + + 3.5 + + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + + + true + full + false + bin\Debug\ + TRACE;DEBUG;AESCRYPTO;BZIP + prompt + 4 + bin\Debug\Ionic.Zip.Reduced.XML + AllRules.ruleset + + + pdbonly + true + bin\Release\ + TRACE;AESCRYPTO;BZIP + prompt + 4 + AllRules.ruleset + + + + + + BZip2\BitWriter + + + BZip2\BZip2Compressor + + + BZip2\BZip2InputStream + + + BZip2\BZip2OutputStream + + + BZip2\ParallelBZip2OutputStream + + + BZip2\Rand + + + + Properties\SolutionInfo.cs + + + + + Ionic.snk + + + + + + + \ No newline at end of file diff --git a/src/Zip Tests/BasicTests.cs b/old/src/Zip Tests/BasicTests.cs similarity index 97% rename from src/Zip Tests/BasicTests.cs rename to old/src/Zip Tests/BasicTests.cs index 9d91506..2cf41a7 100644 --- a/src/Zip Tests/BasicTests.cs +++ b/old/src/Zip Tests/BasicTests.cs @@ -1,2524 +1,2524 @@ -// BasicTests.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009-2011 Dino Chiesa -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-July-26 11:39:21> -// -// ------------------------------------------------------------------ -// -// This module defines basic unit tests for DotNetZip. -// -// ------------------------------------------------------------------ - -using System; -using System.Text; -using System.Collections.Generic; -using Microsoft.VisualStudio.TestTools.UnitTesting; -using RE = System.Text.RegularExpressions; - -using Ionic.Zip; -using Ionic.Zip.Tests.Utilities; -using System.IO; - -namespace Ionic.Zip.Tests.Basic -{ - /// - /// Summary description for UnitTest1 - /// - [TestClass] - public class BasicTests : IonicTestClass - { - EncryptionAlgorithm[] crypto = - { - EncryptionAlgorithm.None, - EncryptionAlgorithm.PkzipWeak, - EncryptionAlgorithm.WinZipAes128, - EncryptionAlgorithm.WinZipAes256, - }; - - - public BasicTests() : base() { } - - - [TestMethod] - public void CreateZip_AddItem_WithDirectory() - { - // select the name of the zip file - string zipFileToCreate = "CreateZip_AddItem.zip"; - - // create a bunch of files - string subdir = "files"; - string[] filesToZip = TestUtilities.GenerateFilesFlat(subdir); - - // Create the zip archive - using (ZipFile zip1 = new ZipFile()) - { - //zip.StatusMessageTextWriter = System.Console.Out; - for (int i = 0; i < filesToZip.Length; i++) - zip1.AddItem(filesToZip[i], "files"); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length); - } - - [TestMethod] - public void CreateZip_AddItem_NoDirectory() - { - string zipFileToCreate = "CreateZip_AddItem.zip"; - string[] filesToZip = TestUtilities.GenerateFilesFlat("."); - - // Create the zip archive - using (ZipFile zip1 = new ZipFile()) - { - foreach (var f in filesToZip) - zip1.AddItem(f); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length); - } - - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void FileNotAvailableFails_wi10387() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "FileNotAvailableFails.zip"); - using (var zip1 = new ZipFile(zipFileToCreate)) { zip1.Save(); } - try - { - using (new FileStream(zipFileToCreate, FileMode.Open, - FileAccess.ReadWrite, - FileShare.None)) - { - using (new ZipFile(zipFileToCreate)) { } - } - } - finally - { - } - } - - - [TestMethod] - public void CreateZip_AddFile() - { - int i; - string zipFileToCreate = "CreateZip_AddFile.zip"; - string subdir = "files"; - string[] filesToZip = TestUtilities.GenerateFilesFlat(subdir); - - using (ZipFile zip1 = new ZipFile()) - { - for (i = 0; i < filesToZip.Length; i++) - zip1.AddFile(filesToZip[i], "files"); - zip1.Save(zipFileToCreate); - } - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length); - } - - [TestMethod] - public void CreateZip_AddFile_CharCase_wi13481() - { - string zipFileToCreate = "AddFile.zip"; - string subdir = "files"; - string[] filesToZip = TestUtilities.GenerateFilesFlat(subdir); - Directory.SetCurrentDirectory(subdir); - Array.ForEach(filesToZip, x => { File.Move(Path.GetFileName(x),Path.GetFileName(x).ToUpper()); }); - Directory.SetCurrentDirectory(TopLevelDir); - filesToZip= Directory.GetFiles(subdir); - - using (ZipFile zip1 = new ZipFile()) - { - for (int i = 0; i < filesToZip.Length; i++) - zip1.AddFile(filesToZip[i], "files"); - zip1.Save(zipFileToCreate); - } - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length); - - int nEntries = 0; - // now, verify that we have not downcased the filenames - using (ZipFile zip2 = new ZipFile(zipFileToCreate)) - { - foreach (var entry in zip2.Entries) - { - var fname1 = Path.GetFileName(entry.FileName); - var fnameLower = fname1.ToLower(); - Assert.IsFalse(fname1.Equals(fnameLower), - "{0} is all lowercase.", fname1); - nEntries++; - } - } - Assert.IsFalse(nEntries < 2, "not enough entries"); - } - - - [TestMethod] - public void CreateZip_AddFileInDirectory() - { - string subdir = "fodder"; - TestUtilities.GenerateFilesFlat(subdir); - for (int m = 0; m < 2; m++) - { - string directoryName = ""; - for (int k = 0; k < 4; k++) - { - // select the name of the zip file - string zipFileToCreate = String.Format("CreateZip_AddFileInDirectory-trial{0}.{1}.zip", m, k); - TestContext.WriteLine("====================="); - TestContext.WriteLine("Trial {0}", k); - TestContext.WriteLine("Zipfile: {0}", zipFileToCreate); - - directoryName = Path.Combine(directoryName, - String.Format("{0:D2}", k)); - - string[] filesToSelectFrom = - Directory.GetFiles(subdir, "*.*", SearchOption.AllDirectories); - - TestContext.WriteLine("using dirname: {0}", directoryName); - - int n = _rnd.Next(filesToSelectFrom.Length / 2) + 2; - TestContext.WriteLine("Zipping {0} files", n); - - // Create the zip archive - var addedFiles = new List(); - using (ZipFile zip1 = new ZipFile()) - { - // add n files - int j=0; - for (int i = 0; i < n; i++) - { - // select files at random - while (addedFiles.Contains(filesToSelectFrom[j])) - j = _rnd.Next(filesToSelectFrom.Length); - zip1.AddFile(filesToSelectFrom[j], directoryName); - addedFiles.Add(filesToSelectFrom[j]); - } - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), n, - "Wrong number of entries in the zip file {0}", - zipFileToCreate); - - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (var e in zip2) - { - TestContext.WriteLine("Check entry: {0}", e.FileName); - Assert.AreEqual(directoryName, - Path.GetDirectoryName(e.FileName), - "Wrong directory on zip entry {0}", - e.FileName); - } - } - } - - // add progressively more files to the fodder directory - TestUtilities.GenerateFilesFlat(subdir); - } - - } - - - [TestMethod] - public void CreateZip_AddFile_LeadingDot() - { - // select the name of the zip file - string zipFileToCreate = "CreateZip_AddFile_LeadingDot.zip"; - string[] filesToZip = TestUtilities.GenerateFilesFlat("."); - using (ZipFile zip1 = new ZipFile()) - { - for (int i = 0; i < filesToZip.Length; i++) - { - zip1.AddFile(filesToZip[i]); - } - zip1.Save(zipFileToCreate); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length); - } - - - - - [TestMethod] - public void CreateZip_AddFiles_LeadingDot_Array() - { - // select the name of the zip file - string zipFileToCreate = "CreateZip_AddFiles_LeadingDot_Array.zip"; - string[] filesToZip = TestUtilities.GenerateFilesFlat("."); - - // Create the zip archive - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddFiles(filesToZip); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length); - } - - - - [TestMethod] - public void CreateZip_AddFiles_PreserveDirHierarchy() - { - // select the name of the zip file - string zipFileToCreate = "CreateZip_AddFiles_PreserveDirHierarchy.zip"; - string dirToZip = "zipthis"; - - // create a bunch of files - int subdirCount; - int entries = TestUtilities.GenerateFilesOneLevelDeep(TestContext, "PreserveDirHierarchy", dirToZip, null, out subdirCount); - - string[] filesToZip = Directory.GetFiles(".", "*.*", SearchOption.AllDirectories); - - Assert.AreEqual(filesToZip.Length, entries); - - // Create the zip archive - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddFiles(filesToZip, true, ""); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length); - } - - private bool ArraysAreEqual(byte[] b1, byte[] b2) - { - return (CompareArrays(b1, b2) == 0); - } - - - private int CompareArrays(byte[] b1, byte[] b2) - { - if (b1 == null && b2 == null) return 0; - if (b1 == null || b2 == null) return 0; - if (b1.Length > b2.Length) return 1; - if (b1.Length < b2.Length) return -1; - for (int i = 0; i < b1.Length; i++) - { - if (b1[i] > b2[i]) return 1; - if (b1[i] < b2[i]) return -1; - } - return 0; - } - - - [TestMethod] - public void CreateZip_AddEntry_ByteArray() - { - // select the name of the zip file - string zipFileToCreate = "CreateZip_AddEntry_ByteArray.zip"; - int entriesToCreate = _rnd.Next(42) + 12; - var dict = new Dictionary(); - - // Create the zip archive - using (ZipFile zip1 = new ZipFile()) - { - for (int i = 0; i < entriesToCreate; i++) - { - var b = new byte[_rnd.Next(1000) + 1000]; - _rnd.NextBytes(b); - string filename = String.Format("Filename{0:D3}.bin", i); - var e = zip1.AddEntry(Path.Combine("data", filename), b); - dict.Add(e.FileName, b); - } - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - entriesToCreate); - - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - foreach (var e in zip1) - { - // extract to a stream - using (var ms1 = new MemoryStream()) - { - e.Extract(ms1); - Assert.IsTrue(ArraysAreEqual(ms1.ToArray(), dict[e.FileName])); - } - } - } - } - - - - - [TestMethod] - public void CreateZip_AddFile_AddItem() - { - string zipFileToCreate = "CreateZip_AddFile_AddItem.zip"; - string subdir = "files"; - string[] filesToZip = TestUtilities.GenerateFilesFlat(subdir); - - // use the parameterized ctor - using (ZipFile zip1 = new ZipFile(zipFileToCreate)) - { - for (int i = 0; i < filesToZip.Length; i++) - { - if (_rnd.Next(2) == 0) - zip1.AddFile(filesToZip[i], "files"); - else - zip1.AddItem(filesToZip[i], "files"); - } - zip1.Save(); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length); - } - - - private void DumpZipFile(ZipFile z) - { - TestContext.WriteLine("found {0} entries", z.Entries.Count); - TestContext.WriteLine("RequiresZip64: '{0}'", z.RequiresZip64.HasValue ? z.RequiresZip64.Value.ToString() : "not set"); - TestContext.WriteLine("listing the entries in {0}...", String.IsNullOrEmpty(z.Name) ? "(zipfile)" : z.Name); - foreach (var e in z) - { - TestContext.WriteLine("{0}", e.FileName); - } - } - - - - [TestMethod] - public void CreateZip_ZeroEntries() - { - // select the name of the zip file - string zipFileToCreate = "CreateZip_ZeroEntries.zip"; - - using (ZipFile zip1 = new ZipFile()) - { - zip1.Save(zipFileToCreate); - DumpZipFile(zip1); - } - - // workitem 7685 - using (ZipFile zip1 = new ZipFile(zipFileToCreate)) - { - DumpZipFile(zip1); - } - - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - DumpZipFile(zip1); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), 0); - } - - - - [TestMethod] - public void CreateZip_Basic_ParameterizedSave() - { - string zipFileToCreate = "CreateZip_Basic_ParameterizedSave.zip"; - string subdir = "files"; - int numFilesToCreate = _rnd.Next(23) + 14; - string[] filesToZip = TestUtilities.GenerateFilesFlat(subdir, numFilesToCreate); - - using (ZipFile zip1 = new ZipFile()) - { - //zip.StatusMessageTextWriter = System.Console.Out; - for (int i = 0; i < filesToZip.Length; i++) - { - if (_rnd.Next(2) == 0) - zip1.AddFile(filesToZip[i], "files"); - else - zip1.AddItem(filesToZip[i], "files"); - } - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length); - } - - - [TestMethod] - public void CreateZip_AddFile_OnlyZeroLengthFiles() - { - _Internal_ZeroLengthFiles(_rnd.Next(33) + 3, "CreateZip_AddFile_OnlyZeroLengthFiles", null); - } - - [TestMethod] - public void CreateZip_AddFile_OnlyZeroLengthFiles_Password() - { - _Internal_ZeroLengthFiles(_rnd.Next(33) + 3, "CreateZip_AddFile_OnlyZeroLengthFiles", Path.GetRandomFileName()); - } - - [TestMethod] - public void CreateZip_AddFile_OneZeroLengthFile() - { - _Internal_ZeroLengthFiles(1, "CreateZip_AddFile_OneZeroLengthFile", null); - } - - - [TestMethod] - public void CreateZip_AddFile_OneZeroLengthFile_Password() - { - _Internal_ZeroLengthFiles(1, "CreateZip_AddFile_OneZeroLengthFile_Password", Path.GetRandomFileName()); - } - - - [TestMethod] - public void CreateZip_KeepStreamOpen() - { - int i; - string zipFileToCreate = "CreateZip_KeepStreamOpen.zip"; - string subdir = "files"; - string[] filesToZip = TestUtilities.GenerateFilesFlat(subdir); - - using (ZipFile zip1 = new ZipFile()) - { - for (i = 0; i < filesToZip.Length; i++) - zip1.AddFile(filesToZip[i], "files"); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length); - - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - foreach (var e in zip1) - { - // extract to a stream - using (var ms1 = new MemoryStream()) - { - e.Extract(ms1); - - // check if stream is kept open after extracting the file - Assert.AreEqual(true, ms1.CanRead); - } - } - } - } - - - private void _Internal_ZeroLengthFiles(int fileCount, string nameStub, string password) - { - string zipFileToCreate = Path.Combine(TopLevelDir, nameStub + ".zip"); - - int i; - string[] filesToZip = new string[fileCount]; - for (i = 0; i < fileCount; i++) - filesToZip[i] = TestUtilities.CreateUniqueFile("zerolength", TopLevelDir); - - var sw = new StringWriter(); - using (ZipFile zip = new ZipFile()) - { - zip.StatusMessageTextWriter = sw; - zip.Password = password; - for (i = 0; i < filesToZip.Length; i++) - zip.AddFile(filesToZip[i]); - zip.Save(zipFileToCreate); - } - - string status = sw.ToString(); - TestContext.WriteLine("save output: " + status); - - BasicVerifyZip(zipFileToCreate, password); - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "The zip file created has the wrong number of entries."); - } - - - [TestMethod] - public void CreateZip_UpdateDirectory() - { - int i, j; - - string zipFileToCreate = "CreateZip_UpdateDirectory.zip"; - string dirToZip = "zipthis"; - Directory.CreateDirectory(dirToZip); - - TestContext.WriteLine("\n------------\nCreating files ..."); - - int entries = 0; - int subdirCount = _rnd.Next(17) + 14; - //int subdirCount = _rnd.Next(3) + 2; - var FileCount = new Dictionary(); - var checksums = new Dictionary(); - - for (i = 0; i < subdirCount; i++) - { - string subdirShort = String.Format("dir{0:D4}", i); - string subdir = Path.Combine(dirToZip, subdirShort); - Directory.CreateDirectory(subdir); - - int filecount = _rnd.Next(11) + 17; - //int filecount = _rnd.Next(2) + 2; - FileCount[subdirShort] = filecount; - for (j = 0; j < filecount; j++) - { - string filename = String.Format("file{0:D4}.x", j); - string fqFilename = Path.Combine(subdir, filename); - TestUtilities.CreateAndFillFile(fqFilename, _rnd.Next(1000) + 100); - - var chk = TestUtilities.ComputeChecksum(fqFilename); - var t1 = Path.GetFileName(dirToZip); - var t2 = Path.Combine(t1, subdirShort); - var key = Path.Combine(t2, filename); - key = TestUtilities.TrimVolumeAndSwapSlashes(key); - TestContext.WriteLine("chk[{0}]= {1}", key, - TestUtilities.CheckSumToString(chk)); - checksums.Add(key, chk); - entries++; - } - } - - Directory.SetCurrentDirectory(TopLevelDir); - - TestContext.WriteLine("\n------------\nAdding files into the Zip..."); - - // add all the subdirectories into a new zip - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddDirectory(dirToZip, "zipthis"); - zip1.Save(zipFileToCreate); - } - - TestContext.WriteLine("\n"); - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries, - "The Zip file has an unexpected number of entries."); - - TestContext.WriteLine("\n------------\nExtracting and validating checksums..."); - - // validate all the checksums - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (ZipEntry e in zip2) - { - e.Extract("unpack"); - string pathToExtractedFile = Path.Combine("unpack", e.FileName); - - // if it is a file.... - if (checksums.ContainsKey(e.FileName)) - { - // verify the checksum of the file is correct - string expectedCheckString = TestUtilities.CheckSumToString(checksums[e.FileName]); - string actualCheckString = TestUtilities.GetCheckSumString(pathToExtractedFile); - Assert.AreEqual - (expectedCheckString, - actualCheckString, - "Unexpected checksum on extracted filesystem file ({0}).", - pathToExtractedFile); - } - } - } - - TestContext.WriteLine("\n------------\nCreating some new files ..."); - - // now, update some of the existing files - dirToZip = Path.Combine(TopLevelDir, "updates"); - Directory.CreateDirectory(dirToZip); - - for (i = 0; i < subdirCount; i++) - { - string subdirShort = String.Format("dir{0:D4}", i); - string subdir = Path.Combine(dirToZip, subdirShort); - Directory.CreateDirectory(subdir); - - int filecount = FileCount[subdirShort]; - for (j = 0; j < filecount; j++) - { - if (_rnd.Next(2) == 1) - { - string filename = String.Format("file{0:D4}.x", j); - TestUtilities.CreateAndFillFile(Path.Combine(subdir, filename), - _rnd.Next(1000) + 100); - string fqFilename = Path.Combine(subdir, filename); - - var chk = TestUtilities.ComputeChecksum(fqFilename); - //var t1 = Path.GetFileName(dirToZip); - var t2 = Path.Combine("zipthis", subdirShort); - var key = Path.Combine(t2, filename); - key = TestUtilities.TrimVolumeAndSwapSlashes(key); - - TestContext.WriteLine("chk[{0}]= {1}", key, - TestUtilities.CheckSumToString(chk)); - - checksums.Remove(key); - checksums.Add(key, chk); - } - } - } - - - TestContext.WriteLine("\n------------\nUpdating some of the files in the zip..."); - // add some new content - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - zip3.UpdateDirectory(dirToZip, "zipthis"); - //String[] dirs = Directory.GetDirectories(dirToZip); - - //foreach (String d in dirs) - //{ - // string dir = Path.Combine(Path.GetFileName(dirToZip), Path.GetFileName(d)); - // //string root = Path.Combine("zipthis", Path.GetFileName(d)); - // zip3.UpdateDirectory(dir, "zipthis"); - //} - zip3.Save(); - } - - TestContext.WriteLine("\n------------\nValidating the checksums for all of the files ..."); - - // validate all the checksums again - using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) - { - foreach (ZipEntry e in zip4) - TestContext.WriteLine("Found entry: {0}", e.FileName); - - foreach (ZipEntry e in zip4) - { - e.Extract("unpack2"); - if (!e.IsDirectory) - { - string pathToExtractedFile = Path.Combine("unpack2", e.FileName); - - // verify the checksum of the file is correct - string expectedCheckString = TestUtilities.CheckSumToString(checksums[e.FileName]); - string actualCheckString = TestUtilities.GetCheckSumString(pathToExtractedFile); - Assert.AreEqual - (expectedCheckString, - actualCheckString, - "Unexpected checksum on extracted filesystem file ({0}).", - pathToExtractedFile); - } - } - } - } - - - - [TestMethod] - public void CreateZip_AddDirectory_OnlyZeroLengthFiles() - { - string zipFileToCreate = "CreateZip_AddDirectory_OnlyZeroLengthFiles.zip"; - string dirToZip = "zipthis"; - Directory.CreateDirectory(dirToZip); - - int entries = 0; - int subdirCount = _rnd.Next(8) + 8; - for (int i = 0; i < subdirCount; i++) - { - string subdir = Path.Combine(dirToZip, "dir" + i); - Directory.CreateDirectory(subdir); - int n = _rnd.Next(6) + 2; - for (int j=0; j < n; j++) - { - TestUtilities.CreateUniqueFile("bin", subdir); - entries++; - } - } - - using (var zip = new ZipFile()) - { - zip.AddDirectory(Path.GetFileName(dirToZip)); - zip.Save(zipFileToCreate); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries); - } - - - - [TestMethod] - public void CreateZip_AddDirectory_OneZeroLengthFile() - { - string zipFileToCreate = "CreateZip_AddDirectory_OneZeroLengthFile.zip"; - string dirToZip = "zipthis"; - Directory.CreateDirectory(dirToZip); - - // one empty file - string file = TestUtilities.CreateUniqueFile("ZeroLengthFile.txt", dirToZip); - - using (ZipFile zip = new ZipFile()) - { - zip.AddDirectory(Path.GetFileName(dirToZip)); - zip.Save(zipFileToCreate); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), 1); - } - - - [TestMethod] - public void CreateZip_AddDirectory_OnlyEmptyDirectories() - { - string zipFileToCreate = "CreateZip_AddDirectory_OnlyEmptyDirectories.zip"; - string dirToZip = "zipthis"; - Directory.CreateDirectory(dirToZip); - - int subdirCount = _rnd.Next(28) + 18; - for (int i = 0; i < subdirCount; i++) - { - string subdir = Path.Combine(dirToZip, "EmptyDir" + i); - Directory.CreateDirectory(subdir); - } - - using (ZipFile zip = new ZipFile()) - { - zip.AddDirectory(Path.GetFileName(dirToZip)); - zip.Save(zipFileToCreate); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), 0); - } - - - [TestMethod] - public void CreateZip_AddDirectory_OneEmptyDirectory() - { - string zipFileToCreate = "CreateZip_AddDirectory_OneEmptyDirectory.zip"; - string dirToZip = "zipthis"; - Directory.CreateDirectory(dirToZip); - - using (ZipFile zip = new ZipFile()) - { - zip.AddDirectory(Path.GetFileName(dirToZip)); - zip.Save(zipFileToCreate); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), 0); - BasicVerifyZip(zipFileToCreate); - } - - - [TestMethod] - public void CreateZip_WithEmptyDirectory() - { - string zipFileToCreate = "Create_WithEmptyDirectory.zip"; - string subdir = "EmptyDirectory"; - Directory.CreateDirectory(subdir); - using (ZipFile zip = new ZipFile()) - { - zip.AddDirectory(subdir, ""); - zip.Save(zipFileToCreate); - } - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), 0); - BasicVerifyZip(zipFileToCreate); - } - - - - [TestMethod] - public void CreateZip_AddDirectory_CheckStatusTextWriter() - { - string zipFileToCreate = "CreateZip_AddDirectory_CheckStatusTextWriter.zip"; - string dirToZip = "zipthis"; - Directory.CreateDirectory(dirToZip); - - int entries = 0; - int subdirCount = _rnd.Next(8) + 8; - for (int i = 0; i < subdirCount; i++) - { - string subdir = Path.Combine(dirToZip, "Dir" + i); - Directory.CreateDirectory(subdir); - // a few files per subdir - int fileCount = _rnd.Next(12) + 4; - for (int j = 0; j < fileCount; j++) - { - string file = Path.Combine(subdir, "File" + j); - TestUtilities.CreateAndFillFile(file, 1020); - entries++; - } - } - - var sw = new StringWriter(); - using (ZipFile zip = new ZipFile()) - { - zip.StatusMessageTextWriter = sw; - zip.AddDirectory(Path.GetFileName(dirToZip)); - zip.Save(zipFileToCreate); - } - - string status = sw.ToString(); - TestContext.WriteLine("save output: " + status); - - Assert.IsTrue(status.Length > 24 * entries, "status messages? ({0}!>{1})", - status.Length, 24 * entries); - - int n = TestUtilities.CountEntries(zipFileToCreate); - Assert.AreEqual(n, entries, - "wrong number of entries. ({0}!={1})", n, entries); - - BasicVerifyZip(zipFileToCreate); - } - - - struct TestTrial - { - public string arg; - public string re; - } - - - [TestMethod] - public void CreateZip_AddDirectory() - { - TestTrial[] trials = { - new TestTrial { arg=null, re="^file(\\d+).ext$"}, - new TestTrial { arg="", re="^file(\\d+).ext$"}, - new TestTrial { arg=null, re="^file(\\d+).ext$"}, - new TestTrial { arg="Xabf", re="(?s)^Xabf/(file(\\d+).ext)?$"}, - new TestTrial { arg="AAAA/BBB", re="(?s)^AAAA/BBB/(file(\\d+).ext)?$"} - }; - - for (int k = 0; k < trials.Length; k++) - { - TestContext.WriteLine("\n--------------------------------\n\n\n"); - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("CreateZip_AddDirectory-{0}.zip", k)); - - Assert.IsFalse(File.Exists(zipFileToCreate), "The temporary zip file '{0}' already exists.", zipFileToCreate); - - string dirToZip = String.Format("DirectoryToZip.{0}.test", k); - Directory.CreateDirectory(dirToZip); - - int fileCount = _rnd.Next(5) + 4; - for (int i = 0; i < fileCount; i++) - { - String file = Path.Combine(dirToZip, String.Format("file{0:D3}.ext", i)); - TestUtilities.CreateAndFillFile(file, _rnd.Next(2000) + 500); - } - - var sw = new StringWriter(); - using (ZipFile zip = new ZipFile()) - { - zip.StatusMessageTextWriter = sw; - if (k == 0) - zip.AddDirectory(dirToZip); - else - zip.AddDirectory(dirToZip, trials[k].arg); - zip.Save(zipFileToCreate); - } - TestContext.WriteLine(sw.ToString()); - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), fileCount, - String.Format("The zip file created in cycle {0} has the wrong number of entries.", k)); - - //TestContext.WriteLine(""); - // verify that the entries in the zip are in the top level directory!! - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (ZipEntry e in zip2) - TestContext.WriteLine("found entry: {0}", e.FileName); - foreach (ZipEntry e in zip2) - { - //Assert.IsFalse(e.FileName.StartsWith("dir"), - // String.Format("The Zip entry '{0}' is not rooted in top level directory.", e.FileName)); - - // check the filename: - //RE.Match m0 = RE.Regex.Match(e.FileName, fnameRegex[k]); - // Assert.IsTrue(m0 != null, "No match"); - // Assert.AreEqual(m0.Groups.Count, 2, - // String.Format("In cycle {0}, Matching {1} against {2}, Wrong number of matches ({3})", - // k, e.FileName, fnameRegex[k], m0.Groups.Count)); - - Assert.IsTrue(RE.Regex.IsMatch(e.FileName, trials[k].re), - String.Format("In cycle {0}, Matching {1} against {2}", k, e.FileName, trials[k].re)); - } - } - } - } - - - [TestMethod] - public void CreateZip_AddDirectory_Nested() - { - // Each trial provides a directory name into which to add - // files, and a regex, used for verification after the zip - // is created, to match the names on any added entries. - TestTrial[] trials = { - new TestTrial { arg=null, re="^dir(\\d){3}/(file(\\d+).ext)?$"}, - new TestTrial { arg="", re="^dir(\\d){3}/(file(\\d+).ext)?$"}, - new TestTrial { arg=null, re="^dir(\\d){3}/(file(\\d+).ext)?$"}, - new TestTrial { arg="rtdha", re="(?s)^rtdha/(dir(\\d){3}/(file(\\d+).ext)?)?$"}, - new TestTrial { arg="sdfjk/BBB", re="(?s)^sdfjk/BBB/(dir(\\d){3}/(file(\\d+).ext)?)?$"} - }; - - for (int k = 0; k < trials.Length; k++) - { - TestContext.WriteLine("\n--------------------------------\n\n\n"); - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("CreateZip_AddDirectory_Nested-{0}.zip", k)); - - Assert.IsFalse(File.Exists(zipFileToCreate), "The temporary zip file '{0}' already exists.", zipFileToCreate); - - string dirToZip = String.Format("DirectoryToZip.{0}.test", k); - Directory.CreateDirectory(dirToZip); - - int i, j; - int entries = 0; - - int subdirCount = _rnd.Next(23) + 7; - for (i = 0; i < subdirCount; i++) - { - string subdir = Path.Combine(dirToZip, String.Format("dir{0:D3}", i)); - Directory.CreateDirectory(subdir); - - int fileCount = _rnd.Next(8); // sometimes zero - for (j = 0; j < fileCount; j++) - { - String file = Path.Combine(subdir, String.Format("file{0:D3}.ext", j)); - TestUtilities.CreateAndFillFile(file, _rnd.Next(10750) + 50); - entries++; - } - } - - var sw = new StringWriter(); - using (ZipFile zip = new ZipFile()) - { - zip.StatusMessageTextWriter = sw; - if (k == 0) - zip.AddDirectory(dirToZip); - else - zip.AddDirectory(dirToZip, trials[k].arg); - zip.Save(zipFileToCreate); - } - TestContext.WriteLine(sw.ToString()); - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries, - String.Format("The zip file created in cycle {0} has the wrong number of entries.", k)); - - // verify that the entries in the zip are in the top level directory!! - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (ZipEntry e in zip2) - TestContext.WriteLine("found entry: {0}", e.FileName); - foreach (ZipEntry e in zip2) - { - Assert.IsTrue(RE.Regex.IsMatch(e.FileName, trials[k].re), - String.Format("In cycle {0}, Matching {1} against {2}", k, e.FileName, trials[k].re)); - } - - } - } - } - - - [TestMethod] - public void Basic_SaveToFileStream() - { - // from small numbers of files to larger numbers of files - for (int k = 0; k < 3; k++) - { - string zipFileToCreate = String.Format("SaveToFileStream-t{0}.zip", k); - string dirToZip = Path.GetRandomFileName(); - Directory.CreateDirectory(dirToZip); - - int filesToAdd = _rnd.Next(k * 10 + 3) + k * 10 + 3; - for (int i = 0; i < filesToAdd; i++) - { - var s = Path.Combine(dirToZip, String.Format("tempfile-{0}.bin", i)); - int sz = _rnd.Next(10000) + 5000; - TestContext.WriteLine(" Creating file: {0} sz({1})", s, sz); - TestUtilities.CreateAndFillFileBinary(s, sz); - } - - using (var fileStream = File.Create(zipFileToCreate)) - { - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddDirectory(dirToZip); - zip1.Comment = "This is a Comment On the Archive (AM/PM)"; - zip1.Save(fileStream); - } - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToAdd, - "Trial {0}: file {1} wrong number of entries.", - k, zipFileToCreate); - } - } - - - - [TestMethod] - public void Basic_IsText() - { - // from small numbers of files to larger numbers of files - for (int k = 0; k < 3; k++) - { - string zipFileToCreate = String.Format("Basic_IsText-trial{0}.zip", k); - string dirToZip = Path.GetRandomFileName(); - Directory.CreateDirectory(dirToZip); - - int filesToAdd = _rnd.Next(33) + 11; - for (int i = 0; i < filesToAdd; i++) - { - var s = Path.Combine(dirToZip, String.Format("tempfile-{0}.txt", i)); - int sz = _rnd.Next(10000) + 5000; - TestContext.WriteLine(" Creating file: {0} sz({1})", s, sz); - TestUtilities.CreateAndFillFileText(s, sz); - } - - using (ZipFile zip1 = new ZipFile()) - { - int count = 0; - var filesToZip = Directory.GetFiles(dirToZip); - foreach (var f in filesToZip) - { - var e = zip1.AddFile(f, "files"); - switch (k) - { - case 0: break; - case 1: if ((count % 2) == 0) e.IsText = true; break; - case 2: if ((count % 2) != 0) e.IsText = true; break; - case 3: e.IsText = true; break; - } - count++; - } - zip1.Comment = "This is a Comment On the Archive (AM/PM)"; - zip1.Save(zipFileToCreate); - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToAdd, - "trial {0}: file {1} number of entries.", - k, zipFileToCreate); - - // verify the isText setting - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - int count = 0; - foreach (var e in zip2) - { - switch (k) - { - case 0: Assert.IsFalse(e.IsText); break; - case 1: Assert.AreEqual((count % 2) == 0, e.IsText); break; - case 2: Assert.AreEqual((count % 2) != 0, e.IsText); break; - case 3: Assert.IsTrue(e.IsText); break; - } - count++; - } - } - } - } - - - [TestMethod] - public void CreateZip_VerifyThatStreamRemainsOpenAfterSave() - { - Ionic.Zlib.CompressionLevel[] compressionLevelOptions = { - Ionic.Zlib.CompressionLevel.None, - Ionic.Zlib.CompressionLevel.BestSpeed, - Ionic.Zlib.CompressionLevel.Default, - Ionic.Zlib.CompressionLevel.BestCompression, - }; - - string[] Passwords = { null, Path.GetRandomFileName() }; - - for (int j = 0; j < Passwords.Length; j++) - { - for (int k = 0; k < compressionLevelOptions.Length; k++) - { - TestContext.WriteLine("\n\n---------------------------------\n" + - "Trial ({0},{1}): Password='{2}' Compression={3}\n", - j, k, Passwords[j], compressionLevelOptions[k]); - string dirToZip = Path.GetRandomFileName(); - Directory.CreateDirectory(dirToZip); - - int filesAdded = _rnd.Next(3) + 3; - for (int i = 0; i < filesAdded; i++) - { - var s = Path.Combine(dirToZip, String.Format("tempfile-{0}-{1}-{2}.bin", j, k, i)); - int sz = _rnd.Next(10000) + 5000; - TestContext.WriteLine(" Creating file: {0} sz({1})", s, sz); - TestUtilities.CreateAndFillFileBinary(s, sz); - } - - TestContext.WriteLine("\n"); - - //string dirToZip = Path.GetFileName(TopLevelDir); - var ms = new MemoryStream(); - Assert.IsTrue(ms.CanSeek, String.Format("Trial {0}: The output MemoryStream does not do Seek.", k)); - using (ZipFile zip1 = new ZipFile()) - { - zip1.CompressionLevel = compressionLevelOptions[k]; - zip1.Password = Passwords[j]; - zip1.Comment = String.Format("Trial ({0},{1}): Password='{2}' Compression={3}\n", - j, k, Passwords[j], compressionLevelOptions[k]); - zip1.AddDirectory(dirToZip); - zip1.Save(ms); - } - - Assert.IsTrue(ms.CanSeek, String.Format("Trial {0}: After writing, the OutputStream does not do Seek.", k)); - Assert.IsTrue(ms.CanRead, String.Format("Trial {0}: The OutputStream cannot be Read.", k)); - - // seek to the beginning - ms.Seek(0, SeekOrigin.Begin); - int filesFound = 0; - using (ZipFile zip2 = ZipFile.Read(ms)) - { - foreach (ZipEntry e in zip2) - { - TestContext.WriteLine(" Found entry: {0} isDir({1}) sz_c({2}) sz_unc({3})", e.FileName, e.IsDirectory, e.CompressedSize, e.UncompressedSize); - if (!e.IsDirectory) - filesFound++; - } - } - Assert.AreEqual(filesFound, filesAdded, - "Trial {0}", k); - } - } - } - - - [TestMethod] - public void CreateZip_AddFile_VerifyCrcAndContents() - { - string filename = null; - int entriesAdded = 0; - string repeatedLine = null; - int j; - - string zipFileToCreate = "CreateZip_AddFile_VerifyCrcAndContents.zip"; - string subdir = "A"; - Directory.CreateDirectory(subdir); - - // create the files - int numFilesToCreate = _rnd.Next(10) + 8; - for (j = 0; j < numFilesToCreate; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - Path.GetFileName(filename)); - TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); - entriesAdded++; - } - - using (ZipFile zip1 = new ZipFile()) - { - String[] filenames = Directory.GetFiles("A"); - foreach (String f in filenames) - zip1.AddFile(f, ""); - zip1.Comment = "UpdateTests::CreateZip_AddFile_VerifyCrcAndContents(): This archive will be updated."; - zip1.Save(zipFileToCreate); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate),entriesAdded); - - // now extract the files and verify their contents - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s in zip2.EntryFileNames) - { - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", s); - zip2[s].Extract("extract"); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s)); - string actualLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, actualLine, - "Updated file ({0}) is incorrect.", s); - } - } - } - - - - - [TestMethod] - public void Extract_IntoMemoryStream() - { - string filename = null; - int entriesAdded = 0; - string repeatedLine = null; - int j; - - string zipFileToCreate = "Extract_IntoMemoryStream.zip"; - string subdir = "A"; - Directory.CreateDirectory(subdir); - - // create the files - int numFilesToCreate = _rnd.Next(10) + 8; - for (j = 0; j < numFilesToCreate; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - Path.GetFileName(filename)); - TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); - entriesAdded++; - } - - // Create the zip file - using (ZipFile zip1 = new ZipFile()) - { - String[] filenames = Directory.GetFiles("A"); - foreach (String f in filenames) - zip1.AddFile(f, ""); - zip1.Comment = "BasicTests::Extract_IntoMemoryStream()"; - zip1.Save(zipFileToCreate); - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, - "The Zip file has the wrong number of entries."); - - // now extract the files into memory streams, checking only the length of the file. - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s in zip2.EntryFileNames) - { - using (MemoryStream ms = new MemoryStream()) - { - zip2[s].Extract(ms); - byte[] a = ms.ToArray(); - string f = Path.Combine(subdir, s); - var fi = new FileInfo(f); - Assert.AreEqual((int)(fi.Length), a.Length, "Unequal file lengths."); - } - } - } - } - - - [TestMethod] - public void ExtraField_TestNull() - { - string filename = Path.Combine(CurrentDir, "zips\\fireone.zip"); - int entries = 0; - using (ZipFile zip = ZipFile.Read(filename)) - { - foreach (ZipEntry e in zip.Entries) - entries++; - } - - Assert.AreEqual(14, entries, "Error opening zip file with extra field"); - } - - - [TestMethod] - public void Retrieve_ViaIndexer2_wi11056() - { - string fileName = "wi11056.dwf"; - string entryName = @"com.autodesk.dwf.ePlot_5VFMLy3OdEetAPFe7uWXYg\descriptor.xml"; - string SourceDir = CurrentDir; - for (int i = 0; i < 3; i++) - SourceDir = Path.GetDirectoryName(SourceDir); - - TestContext.WriteLine("Current Dir: {0}", CurrentDir); - - string filename = Path.Combine(SourceDir, "Zip Tests\\bin\\Debug\\zips\\" + fileName); - - TestContext.WriteLine("Reading zip file: '{0}'", filename); - using (ZipFile zip = ZipFile.Read(filename)) - { - var e = zip[entryName]; - Assert.IsFalse(e == null, - "Retrieval by stringindex failed."); - } - } - - - - [TestMethod] - public void Retrieve_ViaIndexer() - { - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "Retrieve_ViaIndexer.zip"); - string filename = null; - int entriesAdded = 0; - string repeatedLine = null; - int j; - - // create the subdirectory - string subdir = "A"; - Directory.CreateDirectory(subdir); - - // create the files - int numFilesToCreate = _rnd.Next(10) + 8; - for (j = 0; j < numFilesToCreate; j++) - { - filename = Path.Combine(subdir, String.Format("File{0:D3}.txt", j)); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - Path.GetFileName(filename)); - TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(23000) + 4000); - entriesAdded++; - } - - // Create the zip file - using (ZipFile zip1 = new ZipFile()) - { - String[] filenames = Directory.GetFiles("A"); - foreach (String f in filenames) - zip1.AddFile(f, ""); - zip1.Comment = "BasicTests::Retrieve_ViaIndexer()"; - zip1.Save(zipFileToCreate); - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, - "The Zip file has the wrong number of entries."); - - // now extract the files into memory streams, checking only the length of the file. - // We do 4 combinations: case-sensitive on or off, and filename conversion on or off. - for (int m = 0; m < 2; m++) - { - for (int n = 0; n < 2; n++) - { - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - if (n == 1) zip2.CaseSensitiveRetrieval = true; - foreach (string s in zip2.EntryFileNames) - { - var s2 = (m == 1) ? s.ToUpper() : s; - using (MemoryStream ms = new MemoryStream()) - { - try - { - zip2[s2].Extract(ms); - byte[] a = ms.ToArray(); - string f = Path.Combine(subdir, s2); - var fi = new FileInfo(f); - Assert.AreEqual((int)(fi.Length), a.Length, "Unequal file lengths."); - } - catch - { - Assert.AreEqual(1, n * m, "Indexer retrieval failed unexpectedly."); - } - } - } - } - } - } - } - - - - - [TestMethod] - public void CreateZip_SetFileComments() - { - string zipFileToCreate = "FileComments.zip"; - string FileCommentFormat = "Comment Added By Test to file '{0}'"; - string commentOnArchive = "Comment added by FileComments() method."; - - int fileCount = _rnd.Next(3) + 3; - string[] filesToZip = new string[fileCount]; - for (int i = 0; i < fileCount; i++) - { - filesToZip[i] = Path.Combine(TopLevelDir, String.Format("file{0:D3}.bin", i)); - TestUtilities.CreateAndFillFile(filesToZip[i], _rnd.Next(10000) + 5000); - } - - using (ZipFile zip = new ZipFile()) - { - //zip.StatusMessageTextWriter = System.Console.Out; - for (int i = 0; i < filesToZip.Length; i++) - { - // use the local filename (not fully qualified) - ZipEntry e = zip.AddFile(Path.GetFileName(filesToZip[i])); - if (i != filesToZip.Length - 1) - e.Comment = String.Format(FileCommentFormat, e.FileName); - else - //make last comment exceed comment limit -> comment should get truncated - e.Comment = @"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam mollis nibh tortor, vitae porttitor sem porttitor vel. Mauris interdum nibh quis nunc posuere mollis. Proin viverra est id lorem tincidunt ultrices. Curabitur convallis hendrerit facilisis. Fusce fringilla massa sed porta posuere. Mauris felis dui, dictum quis est non, volutpat vulputate lacus. Praesent volutpat nec purus vel interdum. Ut tristique lobortis ex. Maecenas lorem ante, ullamcorper sit amet pretium condimentum, cursus vel augue. Pellentesque nibh velit, accumsan sodales sapien vel, egestas ultrices tortor. Proin maximus diam vel sem maximus, et lacinia justo auctor. Quisque porta elementum elit eu hendrerit. Quisque luctus magna quis velit imperdiet fermentum. Suspendisse potenti. -Suspendisse potenti. Integer rhoncus tincidunt tempor. Sed in condimentum purus. Sed accumsan turpis non commodo consequat. Maecenas tempus sapien a elit varius pretium. Phasellus risus tortor, varius non felis vel, dignissim fermentum arcu. Nunc et fringilla sapien. Quisque elementum tincidunt efficitur. Etiam vel est molestie magna consectetur blandit. Pellentesque sollicitudin iaculis metus, a consequat risus condimentum id. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Aenean rhoncus molestie turpis et posuere. -Cras eleifend, dui in molestie ullamcorper, sem libero tristique arcu, id tincidunt ante enim vitae tellus. Praesent luctus, arcu nec euismod sollicitudin, urna enim tincidunt diam, et sagittis mi nunc non leo. In est arcu, scelerisque nec blandit eget, tincidunt sit amet ante. Nulla pellentesque, justo non mattis eleifend, nisi lorem varius magna, at cursus leo leo sit amet tellus. Aliquam at eros purus. Cras sagittis, nisi quis euismod aliquam, dui nunc congue ipsum, vel lobortis elit nisl non libero. Nam sit amet est nibh. Quisque sit amet bibendum nunc. Aliquam nec mattis nulla. Proin quis dui a ex hendrerit vulputate. Proin varius blandit erat, eget vulputate quam dapibus sed. -Sed libero libero, blandit a diam ut, viverra suscipit elit. Morbi et metus tempus, pellentesque nisi sed, ullamcorper nunc. In venenatis tellus in purus malesuada gravida. Etiam nec viverra erat. Etiam in vehicula lacus, non varius libero. Proin commodo mi eget cursus efficitur. Praesent ullamcorper hendrerit rutrum. Vestibulum sollicitudin augue ante, ut cursus nisi tristique ac. Praesent aliquam tincidunt lorem, ut commodo velit varius sit amet. Maecenas ultricies lacinia dui, quis laoreet risus sagittis eu. -Phasellus eu viverra sem. In quis massa non nisi accumsan pharetra. Donec eu sollicitudin urna, aliquam euismod orci. Cras porta quis lectus id laoreet. Donec ut velit facilisis, sollicitudin mauris sed, consectetur quam. Sed et tortor ultricies, vulputate nunc non, luctus turpis. Nam congue, enim sed placerat pretium, odio tortor sagittis odio, ut volutpat metus nibh vel tortor. Donec faucibus a urna eget elementum. -Etiam turpis libero, consequat at convallis sit amet, dapibus vitae dolor. Sed id fringilla nisl, non ultrices justo. Aenean euismod, risus sed euismod sagittis, sapien magna suscipit metus, eget tempus quam turpis et nisl. Vestibulum faucibus porttitor erat, ac pellentesque sem rhoncus ac. Aenean eleifend orci mauris. Mauris venenatis dignissim feugiat. Sed est dolor, convallis sit amet justo vel, mattis scelerisque dui. -Aliquam erat volutpat. Cras eu venenatis felis. Duis a felis et nisl semper sagittis ac vel risus. Integer a mi convallis, efficitur tortor et, aliquet magna. Mauris hendrerit laoreet ante eget imperdiet. Nullam sed faucibus lorem. Maecenas sagittis egestas justo at feugiat. Ut a ultricies magna. Sed non erat in est feugiat placerat sed nec leo. Phasellus sed commodo felis, non elementum nulla. Aenean vel arcu ut turpis viverra semper vel at erat. -Duis a magna purus. Donec mi lectus, sodales eu viverra ac, feugiat quis nunc. Nullam interdum vel justo ut mollis. Integer et sapien a erat hendrerit maximus. Nulla elementum libero nibh, volutpat commodo magna aliquam ut. Nam augue diam, commodo non accumsan non, commodo et metus. Vivamus ornare orci at luctus molestie. Pellentesque dictum malesuada ipsum, ac pharetra est. Fusce at rhoncus ipsum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin tincidunt, urna a tincidunt porttitor, risus lorem lacinia metus, vitae ultricies turpis tortor pulvinar leo. Aliquam erat volutpat. Sed tincidunt suscipit quam, quis faucibus orci. Pellentesque volutpat, eros sed egestas euismod, diam libero dignissim velit, nec hendrerit elit diam sed mauris. -Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Phasellus tristique tellus lacus, auctor vehicula mauris dignissim nec. Sed fringilla, massa cursus dignissim mollis, sapien ex condimentum lacus, ac tincidunt leo lacus vel sem. Integer commodo, neque non rhoncus placerat, massa lorem aliquet risus, ac feugiat purus lacus eget mi. Vivamus dui mauris, ultrices quis magna quis, sollicitudin porttitor erat. Mauris dictum mi tempus, posuere augue eu, dapibus magna. Mauris ante neque, viverra ut quam vel, commodo interdum velit. Maecenas eu purus vulputate, aliquet est sit amet, viverra leo. Phasellus consequat hendrerit lacinia. Morbi at felis sit amet sapien tempus lacinia ac quis neque. Aliquam erat volutpat. Curabitur aliquam velit nec lacus vulputate interdum. Morbi et luctus quam. Aliquam in auctor odio. Donec dictum nulla ut luctus consectetur. Pellentesque pulvinar congue nulla, ut accumsan sem tristique in. -Cras velit nibh, lacinia eu sodales ut, aliquet et ex. Vestibulum vitae libero elit. Fusce suscipit tellus vitae neque luctus tincidunt. Aliquam condimentum facilisis mi, at vulputate risus pretium nec. Morbi elit est, placerat vitae mattis vel, pretium non ante. Sed et feugiat tellus. In interdum libero eget erat cursus, vitae venenatis nunc fermentum. -Phasellus eu massa pharetra, commodo tortor sed, pharetra nisi. Praesent efficitur magna quis ipsum cursus, porta accumsan mauris imperdiet. Vivamus eget erat rhoncus, vestibulum metus vitae, luctus purus. Aliquam dapibus hendrerit faucibus. Nulla quam neque, mattis sed eleifend in, viverra sollicitudin lacus. Maecenas non tristique nibh, sit amet mollis erat. Pellentesque ut metus a arcu tincidunt imperdiet. Suspendisse potenti. Vivamus auctor tempus aliquam. Vivamus ullamcorper ex nibh, eget ultricies metus facilisis in. Sed cursus tincidunt bibendum. Vestibulum id aliquet ante. Donec sed diam a ligula condimentum convallis non sit amet lectus. Suspendisse leo risus, viverra id augue mattis, convallis auctor justo. Nam porta, mi at pellentesque eleifend, urna massa iaculis lacus, et tempor tortor turpis et urna. -Phasellus varius imperdiet dapibus. Nullam commodo mi vel lectus vestibulum, quis rhoncus magna rutrum. Cras libero felis, malesuada in eros eget, volutpat eleifend odio. Morbi feugiat pellentesque aliquam. Sed non turpis purus. Praesent egestas, elit in varius consectetur, dui risus ultrices odio, ut finibus tortor ligula eu tortor. Aliquam congue mi vitae ante vestibulum semper. Proin eget pellentesque nisl. Curabitur in ante eget eros condimentum sagittis non sit amet turpis. Pellentesque sed aliquet risus. Nullam sodales at erat eget dapibus. Morbi ut arcu tincidunt, accumsan velit vitae, egestas nibh. Mauris sit amet urna quam. Maecenas a odio tempor, sagittis erat a, rutrum massa. Pellentesque elementum augue sit amet risus pretium pellentesque. -Mauris et porttitor elit. Donec in ex sit amet velit dictum accumsan. Suspendisse tempus sapien vel sem elementum convallis. In vulputate gravida justo, sit amet hendrerit magna vulputate ut. Interdum et malesuada fames ac ante ipsum primis in faucibus. Vivamus lobortis lobortis arcu, in lobortis leo feugiat in. Mauris commodo, justo non malesuada elementum, nulla sapien laoreet massa, at porta mauris ipsum non ex. Nunc ut ligula eu arcu congue pharetra. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla ac semper magna. Praesent efficitur risus quis felis porttitor, non pharetra arcu aliquam. -Sed quis nibh pharetra, tristique quam a, consectetur mauris. Integer placerat at est id finibus. Quisque congue, justo sit amet tincidunt porta, ipsum metus iaculis justo, vel bibendum quam mi eget enim. Aenean maximus facilisis tortor, quis dignissim nibh sagittis quis. Etiam eu augue non nunc pharetra euismod. Proin leo velit, luctus ac mauris at, ullamcorper pulvinar nisi. Sed nec lobortis lacus. Fusce eget metus est. In felis libero, consequat id consequat ac, bibendum vel tortor. Duis eu egestas purus, non luctus metus. Curabitur vel facilisis purus. Proin eget sapien pretium, gravida purus tristique, congue sem. -Maecenas in venenatis justo. Pellentesque lobortis lorem a augue volutpat, aliquam aliquam magna cras amet."; - } - zip.Comment = commentOnArchive; - zip.Save(zipFileToCreate); - } - - int entries = 0; - using (ZipFile z2 = ZipFile.Read(zipFileToCreate)) - { - Assert.AreEqual(commentOnArchive, z2.Comment, "Unexpected comment on ZipFile."); - foreach (ZipEntry e in z2) - { - //don't check lorem ipsum comment - if (entries != z2.Entries.Count - 1) - { - string expectedComment = String.Format(FileCommentFormat, e.FileName); - Assert.AreEqual(expectedComment, e.Comment, "Unexpected comment on ZipEntry."); - } - entries++; - } - } - Assert.AreEqual(entries, filesToZip.Length, "Unexpected file count. Expected {0}, got {1}.", - filesToZip.Length, entries); - } - - - [TestMethod] - public void CreateZip_SetFileLastModified() - { - //int fileCount = _rnd.Next(13) + 23; - int fileCount = _rnd.Next(3) + 2; - string[] filesToZip = new string[fileCount]; - for (int i = 0; i < fileCount; i++) - { - filesToZip[i] = Path.Combine(TopLevelDir, String.Format("file{0:D3}.bin", i)); - TestUtilities.CreateAndFillFileBinary(filesToZip[i], _rnd.Next(10000) + 5000); - } - DateTime[] timestamp = - { - new System.DateTime(2007, 9, 1, 15, 0, 0), - new System.DateTime(2007, 4, 2, 14, 0, 0), - new System.DateTime(2007, 5, 18, 19, 0, 0), - }; - - // try Kind = unspecified, local, and UTC - DateTimeKind[] kinds = - { - DateTimeKind.Unspecified, - DateTimeKind.Local, - DateTimeKind.Utc, - }; - - for (int m = 0; m < timestamp.Length; m++) - { - for (int n = 0; n < 3; n++) - { - for (int k = 0; k < 2; k++) - { - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("CreateZip-SetFileLastModified-{0}.{1}.{2}.zip", m, n, k)); - TestContext.WriteLine("Cycle {0}.{1}.{2}", m, n, k); - TestContext.WriteLine("zipfile {0}", zipFileToCreate); - DateTime t = DateTime.SpecifyKind(timestamp[m], kinds[n]); - - using (ZipFile zip = new ZipFile()) - { - zip.EmitTimesInWindowsFormatWhenSaving = (k != 0); - - for (int i = 0; i < filesToZip.Length; i++) - { - // use the local filename (not fully qualified) - ZipEntry e = zip.AddFile(Path.GetFileName(filesToZip[i])); - e.LastModified = t; - } - zip.Comment = "All files in this archive have the same LastModified value."; - zip.Save(zipFileToCreate); - } - - // NB: comparing two DateTime variables will return "not - // equal" if they are not of the same "Kind", even if they - // represent the same point in time. To counteract that, - // we compare using UniversalTime. - - var x1 = t.ToUniversalTime().ToString("u"); - - string unpackDir = String.Format("unpack{0}.{1}.{2}", m, n, k); - int entries = 0; - using (ZipFile z2 = ZipFile.Read(zipFileToCreate)) - { - foreach (ZipEntry e in z2) - { - var t2 = e.LastModified; - var x2 = t2.ToUniversalTime().ToString("u"); - Assert.AreEqual(x1, x2, - "cycle {0}.{1}.{2}: Unexpected LastModified value on ZipEntry.", m, n, k); - entries++; - // now verify that the LastMod time on the filesystem file is set correctly - e.Extract(unpackDir); - DateTime ActualFilesystemLastMod = File.GetLastWriteTime(Path.Combine(unpackDir, e.FileName)); - ActualFilesystemLastMod = AdjustTime_Win32ToDotNet(ActualFilesystemLastMod); - - //Assert.AreEqual(t, ActualFilesystemLastMod, - x2 = ActualFilesystemLastMod.ToUniversalTime().ToString("u"); - Assert.AreEqual(x1, x2, - "cycle {0}.{1}.{2}: Unexpected LastWriteTime on extracted filesystem file.", m, n, k); - } - } - Assert.AreEqual(entries, filesToZip.Length, "Unexpected file count. Expected {0}, got {1}.", - filesToZip.Length, entries); - } - } - } - } - - - [TestMethod] - public void CreateAndExtract_VerifyAttributes() - { - - try - { - string zipFileToCreate = "CreateAndExtract_VerifyAttributes.zip"; - string subdir = "A"; - Directory.CreateDirectory(subdir); - - //int fileCount = _rnd.Next(13) + 23; - FileAttributes[] attributeCombos = { - FileAttributes.ReadOnly, - FileAttributes.ReadOnly | FileAttributes.System, - FileAttributes.ReadOnly | FileAttributes.System | FileAttributes.Hidden, - FileAttributes.ReadOnly | FileAttributes.System | FileAttributes.Hidden | FileAttributes.Archive, - FileAttributes.ReadOnly | FileAttributes.Hidden, - FileAttributes.ReadOnly | FileAttributes.Hidden| FileAttributes.Archive, - FileAttributes.ReadOnly | FileAttributes.Archive, - FileAttributes.System, - FileAttributes.System | FileAttributes.Hidden, - FileAttributes.System | FileAttributes.Hidden | FileAttributes.Archive, - FileAttributes.System | FileAttributes.Archive, - FileAttributes.Hidden, - FileAttributes.Hidden | FileAttributes.Archive, - FileAttributes.Archive, - FileAttributes.Normal, - FileAttributes.NotContentIndexed | FileAttributes.ReadOnly, - FileAttributes.NotContentIndexed | FileAttributes.System, - FileAttributes.NotContentIndexed | FileAttributes.Hidden, - FileAttributes.NotContentIndexed | FileAttributes.Archive, - FileAttributes.Temporary, - FileAttributes.Temporary | FileAttributes.Archive, - }; - int fileCount = attributeCombos.Length; - string[] filesToZip = new string[fileCount]; - TestContext.WriteLine("============\nCreating."); - for (int i = 0; i < fileCount; i++) - { - filesToZip[i] = Path.Combine(subdir, String.Format("file{0:D3}.bin", i)); - TestUtilities.CreateAndFillFileBinary(filesToZip[i], _rnd.Next(10000) + 5000); - TestContext.WriteLine("Creating {0} [{1}]", filesToZip[i], attributeCombos[i].ToString()); - File.SetAttributes(filesToZip[i], attributeCombos[i]); - } - - TestContext.WriteLine("============\nZipping."); - using (ZipFile zip = new ZipFile()) - { - for (int i = 0; i < filesToZip.Length; i++) - { - // use the local filename (not fully qualified) - ZipEntry e = zip.AddFile(filesToZip[i], ""); - } - zip.Save(zipFileToCreate); - } - - int entries = 0; - TestContext.WriteLine("============\nExtracting."); - using (ZipFile z2 = ZipFile.Read(zipFileToCreate)) - { - foreach (ZipEntry e in z2) - { - TestContext.WriteLine("Extracting {0}", e.FileName); - Assert.AreEqual - (attributeCombos[entries], - e.Attributes, - "unexpected attribute {0} 0x{1:X4}", - e.FileName, - (int)e.Attributes); - entries++; - e.Extract("unpack"); - // now verify that the attributes are set - // correctly in the filesystem - var attrs = File.GetAttributes(Path.Combine("unpack", e.FileName)); - Assert.AreEqual(attrs, e.Attributes, - "Unexpected attributes on the extracted filesystem file {0}.", e.FileName); - } - } - Assert.AreEqual(entries, - filesToZip.Length, - "Bad file count. Expected {0}, got {1}.", - filesToZip.Length, entries); - } - catch (Exception ex1) - { - TestContext.WriteLine("Exception: " + ex1); - throw; - } - } - - - - [TestMethod] - public void CreateAndExtract_SetAndVerifyAttributes() - { - string zipFileToCreate = "CreateAndExtract_SetAndVerifyAttributes.zip"; - - // Here, we build a list of combinations of FileAttributes - // to try. We cannot simply do an exhaustive combination - // because (a) not all combinations are valid, and (b) if - // you SetAttributes(file,Compressed) (also with Encrypted, - // ReparsePoint) it does not "work." So those attributes - // must be excluded. - FileAttributes[] attributeCombos = { - FileAttributes.ReadOnly, - FileAttributes.ReadOnly | FileAttributes.System, - FileAttributes.ReadOnly | FileAttributes.System | FileAttributes.Hidden, - FileAttributes.ReadOnly | FileAttributes.System | FileAttributes.Hidden | FileAttributes.Archive, - FileAttributes.ReadOnly | FileAttributes.Hidden, - FileAttributes.ReadOnly | FileAttributes.Hidden| FileAttributes.Archive, - FileAttributes.ReadOnly | FileAttributes.Archive, - FileAttributes.System, - FileAttributes.System | FileAttributes.Hidden, - FileAttributes.System | FileAttributes.Hidden | FileAttributes.Archive, - FileAttributes.System | FileAttributes.Archive, - FileAttributes.Hidden, - FileAttributes.Hidden | FileAttributes.Archive, - FileAttributes.Archive, - FileAttributes.Normal, - FileAttributes.NotContentIndexed | FileAttributes.ReadOnly, - FileAttributes.NotContentIndexed | FileAttributes.System, - FileAttributes.NotContentIndexed | FileAttributes.Hidden, - FileAttributes.NotContentIndexed | FileAttributes.Archive, - FileAttributes.Temporary, - FileAttributes.Temporary | FileAttributes.Archive, - }; - int fileCount = attributeCombos.Length; - - TestContext.WriteLine("============\nZipping."); - using (ZipFile zip = new ZipFile()) - { - for (int i = 0; i < fileCount; i++) - { - // use the local filename (not fully qualified) - ZipEntry e = zip.AddEntry("file" + i.ToString(), - "FileContent: This file has these attributes: " + attributeCombos[i].ToString()); - TestContext.WriteLine("Adding {0} [{1}]", e.FileName, attributeCombos[i].ToString()); - e.Attributes = attributeCombos[i]; - } - zip.Save(zipFileToCreate); - } - - int entries = 0; - TestContext.WriteLine("============\nExtracting."); - using (ZipFile z2 = ZipFile.Read(zipFileToCreate)) - { - foreach (ZipEntry e in z2) - { - TestContext.WriteLine("Extracting {0}", e.FileName); - Assert.AreEqual - (attributeCombos[entries], e.Attributes, - "unexpected attributes value in the entry {0} 0x{1:X4}", - e.FileName, - (int)e.Attributes); - entries++; - e.Extract("unpack"); - - // now verify that the attributes are set correctly in the filesystem - var attrs = File.GetAttributes(Path.Combine("unpack", e.FileName)); - Assert.AreEqual - (e.Attributes, attrs, - "Unexpected attributes on the extracted filesystem file {0}.", - e.FileName); - } - } - Assert.AreEqual(fileCount, entries, "Unexpected file count."); - } - - - [TestMethod] - [Timeout(1000 * 240)] // timeout in ms. 240s = 4 mins - public void CreateZip_VerifyFileLastModified() - { - string zipFileToCreate = "CreateZip_VerifyFileLastModified.zip"; - string envTemp = Environment.GetEnvironmentVariable("TEMP"); - String[] candidateFileNames = Directory.GetFiles(envTemp); - var checksums = new Dictionary(); - var timestamps = new Dictionary(); - var actualFilenames = new List(); - var excludedFilenames = new List(); - - int maxFiles = _rnd.Next(candidateFileNames.Length / 2) + candidateFileNames.Length / 3; - maxFiles = Math.Min(maxFiles, 145); - //maxFiles = Math.Min(maxFiles, 15); - TestContext.WriteLine("\n-----------------------------\r\n{1}: Finding files in '{0}'...", - envTemp, - DateTime.Now.ToString("HH:mm:ss")); - do - { - string filename = null; - bool foundOne = false; - while (!foundOne) - { - filename = candidateFileNames[_rnd.Next(candidateFileNames.Length)]; - if (excludedFilenames.Contains(filename)) continue; - var fi = new FileInfo(filename); - - if (Path.GetFileName(filename)[0] == '~' - || actualFilenames.Contains(filename) - || fi.Length > 10000000 - || Path.GetFileName(filename) == "dd_BITS.log" - // There WERE some weird files on my system that cause this - // test to fail! the GetLastWrite() method returns the - // "wrong" time - does not agree with what is shown in - // Explorer or in a cmd.exe dir output. So I exclude those - // files here. (This is no longer a problem?) - - //|| filename.EndsWith(".cer") - //|| filename.EndsWith(".msrcincident") - //|| filename == "MSCERTS.ini" - ) - { - excludedFilenames.Add(filename); - } - else - { - foundOne = true; - } - } - - var key = Path.GetFileName(filename); - - // surround this in a try...catch so as to avoid grabbing a file that is open by someone else, or has disappeared - try - { - var lastWrite = File.GetLastWriteTime(filename); - var fi = new FileInfo(filename); - - // Rounding to nearest even second was necessary when DotNetZip did - // not process NTFS times in the NTFS Extra field. Since v1.8.0.5, - // this is no longer the case. - // - // var tm = TestUtilities.RoundToEvenSecond(lastWrite); - - var tm = lastWrite; - // hop out of the try block if the file is from TODAY. (heuristic - // to avoid currently open files) - if ((tm.Year == DateTime.Now.Year) && (tm.Month == DateTime.Now.Month) && (tm.Day == DateTime.Now.Day)) - throw new Exception(); - var chk = TestUtilities.ComputeChecksum(filename); - checksums.Add(key, chk); - TestContext.WriteLine(" {4}: {1} {2} {3,-9} {0}", - Path.GetFileName(filename), - lastWrite.ToString("yyyy MMM dd HH:mm:ss"), - tm.ToString("yyyy MMM dd HH:mm:ss"), - fi.Length, - DateTime.Now.ToString("HH:mm:ss")); - timestamps.Add(key, this.AdjustTime_Win32ToDotNet(tm)); - actualFilenames.Add(filename); - } - catch - { - excludedFilenames.Add(filename); - } - } while ((actualFilenames.Count < maxFiles) && (actualFilenames.Count < candidateFileNames.Length) && - actualFilenames.Count + excludedFilenames.Count < candidateFileNames.Length); - - TestContext.WriteLine("{0}: Creating zip...", DateTime.Now.ToString("HH:mm:ss")); - - // create the zip file - using (ZipFile zip = new ZipFile()) - { - foreach (string s in actualFilenames) - { - ZipEntry e = zip.AddFile(s, ""); - e.Comment = File.GetLastWriteTime(s).ToString("yyyyMMMdd HH:mm:ss"); - } - zip.Comment = "The files in this archive will be checked for LastMod timestamp and checksum."; - TestContext.WriteLine("{0}: Saving zip....", DateTime.Now.ToString("HH:mm:ss")); - zip.Save(zipFileToCreate); - } - - TestContext.WriteLine("{0}: Unpacking zip....", DateTime.Now.ToString("HH:mm:ss")); - - // unpack the zip, and verify contents - int entries = 0; - using (ZipFile z2 = ZipFile.Read(zipFileToCreate)) - { - foreach (ZipEntry e in z2) - { - TestContext.WriteLine("{0}: Checking entry {1}....", DateTime.Now.ToString("HH:mm:ss"), e.FileName); - entries++; - // verify that the LastMod time on the filesystem file is set correctly - e.Extract("unpack"); - string pathToExtractedFile = Path.Combine("unpack", e.FileName); - DateTime actualFilesystemLastMod = AdjustTime_Win32ToDotNet(File.GetLastWriteTime(pathToExtractedFile)); - TimeSpan delta = timestamps[e.FileName] - actualFilesystemLastMod; - - // get the delta as an absolute value: - if (delta < new TimeSpan(0, 0, 0)) - delta = new TimeSpan(0, 0, 0) - delta; - - TestContext.WriteLine("time delta: {0}", delta.ToString()); - // The time delta can be at most, 1 second. - Assert.IsTrue(delta < new TimeSpan(0, 0, 1), - "Unexpected LastMod timestamp on extracted filesystem file ({0}) expected({1}) actual({2}) delta({3}).", - pathToExtractedFile, - timestamps[e.FileName].ToString("F"), - actualFilesystemLastMod.ToString("F"), - delta.ToString() - ); - - // verify the checksum of the file is correct - string expectedCheckString = TestUtilities.CheckSumToString(checksums[e.FileName]); - string actualCheckString = TestUtilities.GetCheckSumString(pathToExtractedFile); - Assert.AreEqual - (expectedCheckString, - actualCheckString, - "Unexpected checksum on extracted filesystem file ({0}).", - pathToExtractedFile); - } - } - Assert.AreEqual(entries, actualFilenames.Count, "Unexpected file count."); - } - - - - private DateTime AdjustTime_Win32ToDotNet(DateTime time) - { - // If I read a time from a file with GetLastWriteTime() (etc), I need - // to adjust it for display in the .NET environment. - if (time.Kind == DateTimeKind.Utc) return time; - DateTime adjusted = time; - if (DateTime.Now.IsDaylightSavingTime() && !time.IsDaylightSavingTime()) - adjusted = time + new System.TimeSpan(1, 0, 0); - - else if (!DateTime.Now.IsDaylightSavingTime() && time.IsDaylightSavingTime()) - adjusted = time - new System.TimeSpan(1, 0, 0); - - return adjusted; - } - - - - [TestMethod] - public void CreateZip_AddDirectory_NoFilesInRoot() - { - string zipFileToCreate = "CreateZip_AddDirectory_NoFilesInRoot.zip"; - string zipThis = "ZipThis"; - Directory.CreateDirectory(zipThis); - - int i, j; - int entries = 0; - - int subdirCount = _rnd.Next(4) + 4; - for (i = 0; i < subdirCount; i++) - { - string subdir = Path.Combine(zipThis, "DirectoryToZip.test." + i); - Directory.CreateDirectory(subdir); - - int fileCount = _rnd.Next(3) + 3; - for (j = 0; j < fileCount; j++) - { - String file = Path.Combine(subdir, "file" + j); - TestUtilities.CreateAndFillFile(file, _rnd.Next(1000) + 1500); - entries++; - } - } - - using (ZipFile zip = new ZipFile()) - { - zip.AddDirectory(zipThis); - zip.Save(zipFileToCreate); - } - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries, - "The Zip file has the wrong number of entries."); - } - - - [TestMethod] - public void CreateZip_AddDirectory_OneCharOverrideName() - { - int entries = 0; - String filename = null; - - // set the name of the zip file to create - string zipFileToCreate = "CreateZip_AddDirectory_OneCharOverrideName.zip"; - String commentOnArchive = "BasicTests::CreateZip_AddDirectory_OneCharOverrideName(): This archive override the name of a directory with a one-char name."; - - string subdir = "A"; - Directory.CreateDirectory(subdir); - - int numFilesToCreate = _rnd.Next(23) + 14; - var checksums = new Dictionary(); - for (int j = 0; j < numFilesToCreate; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(12000) + 5000); - var chk = TestUtilities.ComputeChecksum(filename); - - var relativePath = Path.Combine(Path.GetFileName(subdir), Path.GetFileName(filename)); - //var key = Path.Combine("A", filename); - var key = TestUtilities.TrimVolumeAndSwapSlashes(relativePath); - checksums.Add(key, TestUtilities.CheckSumToString(chk)); - - entries++; - } - - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddDirectory(subdir, Path.GetFileName(subdir)); - zip1.Comment = commentOnArchive; - zip1.Save(zipFileToCreate); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries); - - // validate all the checksums - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (ZipEntry e in zip2) - { - e.Extract("unpack"); - if (checksums.ContainsKey(e.FileName)) - { - string pathToExtractedFile = Path.Combine("unpack", e.FileName); - - // verify the checksum of the file is correct - string expectedCheckString = checksums[e.FileName]; - string actualCheckString = TestUtilities.GetCheckSumString(pathToExtractedFile); - Assert.AreEqual - (expectedCheckString, - actualCheckString, - "Unexpected checksum on extracted filesystem file ({0}).", - pathToExtractedFile); - } - } - } - - } - - - - [TestMethod] - public void CreateZip_CompressionLevelZero_AllEntries() - { - string zipFileToCreate = "CompressionLevelZero.zip"; - String commentOnArchive = "BasicTests::CompressionLevelZero(): This archive override the name of a directory with a one-char name."; - int entriesAdded = 0; - String filename = null; - string subdir = "A"; - Directory.CreateDirectory(subdir); - - int fileCount = _rnd.Next(10) + 10; - for (int j = 0; j < fileCount; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - entriesAdded++; - } - - using (ZipFile zip = new ZipFile()) - { - zip.CompressionLevel = Ionic.Zlib.CompressionLevel.None; - zip.AddDirectory(subdir, Path.GetFileName(subdir)); - zip.Comment = commentOnArchive; - zip.Save(zipFileToCreate); - } - - int entriesFound = 0; - using (ZipFile zip = ZipFile.Read(zipFileToCreate)) - { - foreach (ZipEntry e in zip) - { - if (!e.IsDirectory) entriesFound++; - Assert.AreEqual(0, (short)e.CompressionMethod, - "compression method"); - } - } - Assert.AreEqual(entriesAdded, entriesFound, - "unexpected number of entries."); - BasicVerifyZip(zipFileToCreate); - } - - - - [TestMethod] - public void CreateZip_ForceNoCompressionSomeEntries() - { - string zipFileToCreate = "ForceNoCompression.zip"; - String filename = null; - string subdir = "A"; - Directory.CreateDirectory(subdir); - int fileCount = _rnd.Next(13) + 13; - for (int j = 0; j < fileCount; j++) - { - filename = Path.Combine(subdir, String.Format("{0}-file{1:D3}.txt", (_rnd.Next(2) == 0) ? "C":"U", j)); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - } - - using (ZipFile zip = new ZipFile()) - { - String[] filenames = Directory.GetFiles("A"); - foreach (String f in filenames) - { - ZipEntry e = zip.AddFile(f, ""); - if (e.FileName.StartsWith("U")) - e.CompressionMethod = 0x0; - } - zip.Comment = "Some of these files do not use compression."; - zip.Save(zipFileToCreate); - } - - int entriesFound = 0; - using (ZipFile zip = ZipFile.Read(zipFileToCreate)) - { - foreach (ZipEntry e in zip) - { - if (!e.IsDirectory) entriesFound++; - Assert.AreEqual((e.FileName.StartsWith("U"))?0x00:0x08, - (Int32)e.CompressionMethod, - "Unexpected compression method on text file ({0}).", e.FileName); - } - } - Assert.AreEqual(fileCount, entriesFound, "The created Zip file has an unexpected number of entries."); - - BasicVerifyZip(zipFileToCreate); - } - - - - [TestMethod] - public void AddFile_CompressionMethod_None_wi9208() - { - string zipFileToCreate = "AddFile_CompressionMethod_None_wi9208.zip"; - string subdir = "A"; - Directory.CreateDirectory(subdir); - using (ZipFile zip = new ZipFile()) - { - string filename = Path.Combine(subdir, String.Format("FileToBeAdded-{0:D2}.txt", _rnd.Next(1000))); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - var e = zip.AddFile(filename,"zipped"); - e.CompressionMethod = CompressionMethod.None; - zip.Save(zipFileToCreate); - } - - TestContext.WriteLine("File zipped!..."); - TestContext.WriteLine("Reading..."); - - using (ZipFile zip = ZipFile.Read(zipFileToCreate)) - { - foreach (var e in zip) - { - Assert.AreEqual("None", e.CompressionMethod.ToString()); - } - } - BasicVerifyZip(zipFileToCreate); - } - - - - [TestMethod] - public void GetInfo() - { - TestContext.WriteLine("GetInfo"); - string zipFileToCreate = "GetInfo.zip"; - String filename = null; - int n; - string subdir = Path.Combine(TopLevelDir, - TestUtilities.GenerateRandomAsciiString(9)); - Directory.CreateDirectory(subdir); - - int fileCount = _rnd.Next(27) + 23; - TestContext.WriteLine("Creating {0} files", fileCount); - for (int j = 0; j < fileCount; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - if (_rnd.Next(7)!=0) - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - else - { - // create an empty file - using (var fs = File.Create(filename)) { } - } - } - - TestContext.WriteLine("Creating a zip file"); - using (ZipFile zip = new ZipFile()) - { - zip.Password = TestUtilities.GenerateRandomPassword(11); - var filenames = Directory.GetFiles(subdir); - foreach (String f in filenames) - { - ZipEntry e = zip.AddFile(f, ""); - if (_rnd.Next(3)==0) - e.CompressionMethod = 0x0; - n = _rnd.Next(crypto.Length); - e.Encryption = crypto[n]; - } - zip.Save(zipFileToCreate); - } - - TestContext.WriteLine("Calling ZipFile::Info_get"); - using (ZipFile zip = ZipFile.Read(zipFileToCreate)) - { - string info = zip.Info; - TestContext.WriteLine("Info: (len({0}))", info.Length); - foreach (var line in info.Split('\n')) - TestContext.WriteLine(line); - - Assert.IsTrue(info.Length > 300, - "Suspect info string (length({0}))", - info.Length); - } - } - - - - [TestMethod] - public void Create_WithChangeDirectory() - { - string zipFileToCreate = "Create_WithChangeDirectory.zip"; - String filename = "Testfile.txt"; - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - - string cwd = Directory.GetCurrentDirectory(); - using (var zip = new ZipFile()) - { - zip.AddFile(filename, ""); - Directory.SetCurrentDirectory("\\"); - zip.AddFile("dev\\codeplex\\DotNetZip\\Zip Tests\\BasicTests.cs", ""); - Directory.SetCurrentDirectory(cwd); - zip.Save(zipFileToCreate); - } - } - - - - - private void VerifyEntries(string zipFile, - Variance variance, - int[] values, - EncryptionAlgorithm[] a, - int stage, - int compFlavor, - int encryptionFlavor) - { - using (var zip = ZipFile.Read(zipFile)) - { - foreach (ZipEntry e in zip) - { - var compCheck = false; - if (variance == Variance.Method) - { - compCheck = (e.CompressionMethod == (CompressionMethod)values[stage]); - } - else - { - // Variance.Level - CompressionMethod expectedMethod = - ((Ionic.Zlib.CompressionLevel)values[stage] == Ionic.Zlib.CompressionLevel.None) - ? CompressionMethod.None - : CompressionMethod.Deflate; - compCheck = (e.CompressionMethod == expectedMethod); - } - - Assert.IsTrue(compCheck, - "Unexpected compression method ({0}) on entry ({1}) variance({2}) flavor({3},{4}) stage({5})", - e.CompressionMethod, - e.FileName, - variance, - compFlavor, encryptionFlavor, - stage - ); - - var cryptoCheck = (e.Encryption == a[stage]); - - Assert.IsTrue(cryptoCheck, - "Unexpected encryption ({0}) on entry ({1}) variance({2}) flavor({3},{4}) stage({5})", - e.Encryption, - e.FileName, - variance, - compFlavor, - encryptionFlavor, - stage - ); - } - } - } - - - - private void QuickCreateZipAndChecksums(string zipFile, - Variance variance, - object compressionMethodOrLevel, - EncryptionAlgorithm encryption, - string password, - out string[] files, - out Dictionary checksums - ) - { - string srcDir = TestUtilities.GetTestSrcDir(CurrentDir); - files = Directory.GetFiles(srcDir, "*.cs", SearchOption.TopDirectoryOnly); - checksums = new Dictionary(); - foreach (string f in files) - { - var chk = TestUtilities.ComputeChecksum(f); - var key = Path.GetFileName(f); - checksums.Add(key, chk); - } - - using (var zip = new ZipFile()) - { - if (variance == Variance.Level) - { - zip.CompressionLevel= (Ionic.Zlib.CompressionLevel) compressionMethodOrLevel; - } - else - { - if ((Ionic.Zip.CompressionMethod)compressionMethodOrLevel == CompressionMethod.None) - zip.CompressionLevel = Ionic.Zlib.CompressionLevel.None; - } - - if (password != null) - { - zip.Password = password; - zip.Encryption = encryption; - } - zip.AddFiles(files, ""); - zip.Save(zipFile); - } - - int count = TestUtilities.CountEntries(zipFile); - Assert.IsTrue(count > 5, - "Unexpected number of entries ({0}) in the zip file.", count); - } - - enum Variance - { - Method = 0 , - Level = 1 - } - - - private string GeneratePassword() - { - return TestUtilities.GenerateRandomPassword(); - //return TestUtilities.GenerateRandomAsciiString(9); - //return "Alphabet"; - } - - private void _Internal_Resave(string zipFile, - Variance variance, - int[] values, - EncryptionAlgorithm[] cryptos, - int compFlavor, - int encryptionFlavor - ) - { - // Create a zip file, then re-save it with changes in compression methods, - // compression levels, and/or encryption. The methods/levels, cryptos are - // for original and re-saved values. This tests whether we can update a zip - // entry with changes in those properties. - - string[] passwords = new string[2]; - passwords[0]= (cryptos[0]==EncryptionAlgorithm.None) ? null : GeneratePassword(); - passwords[1]= passwords[0] ?? ((cryptos[1]==EncryptionAlgorithm.None) ? null : GeneratePassword()); - - //TestContext.WriteLine(" crypto: '{0}' '{1}'", crypto[0]??"-NONE-", passwords[1]??"-NONE-"); - TestContext.WriteLine(" crypto: '{0}' '{1}'", cryptos[0], cryptos[1]); - - - // first, create a zip file - string[] filesToZip; - Dictionary checksums; - QuickCreateZipAndChecksums(zipFile, variance, values[0], cryptos[0], passwords[0], out filesToZip, out checksums); - - - // check that the zip was constructed as expected - VerifyEntries(zipFile, variance, values, cryptos, 0, compFlavor, encryptionFlavor); - - - // modify some properties (CompressionLevel, CompressionMethod, and/or Encryption) on each entry - using (var zip = ZipFile.Read(zipFile)) - { - zip.Password = passwords[1]; - foreach (ZipEntry e in zip) - { - if (variance == Variance.Method) - e.CompressionMethod = (CompressionMethod)values[1]; - else - e.CompressionLevel = (Ionic.Zlib.CompressionLevel)values[1]; - - e.Encryption = cryptos[1]; - } - zip.Save(); - } - - - // Check that the zip was modified as expected - VerifyEntries(zipFile, variance, values, cryptos, 1, compFlavor, encryptionFlavor); - - // now extract the items and verify checksums - string extractDir = "ex"; - int c=0; - while (Directory.Exists(extractDir + c)) c++; - extractDir += c; - - // extract - using (var zip = ZipFile.Read(zipFile)) - { - zip.Password = passwords[1]; - zip.ExtractAll(extractDir); - } - - VerifyChecksums(extractDir, filesToZip, checksums); - } - - - - - - EncryptionAlgorithm[][] CryptoPairs = { - new EncryptionAlgorithm[] {EncryptionAlgorithm.None, EncryptionAlgorithm.None}, - new EncryptionAlgorithm[] {EncryptionAlgorithm.None, EncryptionAlgorithm.WinZipAes128}, - new EncryptionAlgorithm[] {EncryptionAlgorithm.WinZipAes128, EncryptionAlgorithm.None}, - new EncryptionAlgorithm[] {EncryptionAlgorithm.WinZipAes128, EncryptionAlgorithm.WinZipAes128}, - new EncryptionAlgorithm[] {EncryptionAlgorithm.None, EncryptionAlgorithm.PkzipWeak}, - new EncryptionAlgorithm[] {EncryptionAlgorithm.PkzipWeak, EncryptionAlgorithm.None}, - new EncryptionAlgorithm[] {EncryptionAlgorithm.WinZipAes128, EncryptionAlgorithm.PkzipWeak}, - new EncryptionAlgorithm[] {EncryptionAlgorithm.PkzipWeak, EncryptionAlgorithm.WinZipAes128} - }; - - int[][][] VariancePairs = { - new int[][] { - new int[] {(int)CompressionMethod.Deflate, (int)CompressionMethod.Deflate}, - new int[] {(int)CompressionMethod.Deflate, (int)CompressionMethod.None}, - new int[] {(int)CompressionMethod.None, (int)CompressionMethod.Deflate}, - new int[] {(int)CompressionMethod.None, (int)CompressionMethod.None} - }, - new int[][] { - new int[] {(int)Ionic.Zlib.CompressionLevel.Default, (int)Ionic.Zlib.CompressionLevel.Default}, - new int[] {(int)Ionic.Zlib.CompressionLevel.Default, (int)Ionic.Zlib.CompressionLevel.None}, - new int[] {(int)Ionic.Zlib.CompressionLevel.None, (int)Ionic.Zlib.CompressionLevel.Default}, - new int[] {(int)Ionic.Zlib.CompressionLevel.None, (int)Ionic.Zlib.CompressionLevel.None} - } - }; - - private void _Internal_Resave(Variance variance, int compFlavor, int encryptionFlavor) - { - // Check that re-saving a zip, after modifying properties on - // each entry, actually does what we want. - if (encryptionFlavor == 0) - TestContext.WriteLine("Resave workdir: {0}", TopLevelDir); - - string rootname = String.Format("Resave_Compression{0}_{1}_Encryption_{2}.zip", - variance, compFlavor, encryptionFlavor); - - string zipFileToCreate = Path.Combine(TopLevelDir, rootname); - int[] values = VariancePairs[(int)variance][compFlavor]; - - TestContext.WriteLine("Resave {0} {1} {2} file({3})", variance, compFlavor, encryptionFlavor, Path.GetFileName(zipFileToCreate)); - - _Internal_Resave(zipFileToCreate, variance, values, CryptoPairs[encryptionFlavor], compFlavor, encryptionFlavor); - } - - - [TestMethod] - public void Resave_CompressionMethod_0() - { - for (int i=0; i<8; i++) - { - _Internal_Resave(Variance.Method, 0, i); - } - } - - - [TestMethod] - public void Resave_CompressionMethod_1() - { - for (int i=0; i<8; i++) - { - if (i!=3) - _Internal_Resave(Variance.Method, 1, i); - } - } - - [TestMethod] - public void Resave_CompressionMethod_2() - { - for (int i=0; i<8; i++) - { - _Internal_Resave(Variance.Method, 2, i); - } - } - - [TestMethod] - public void Resave_CompressionMethod_3() - { - for (int i=0; i<8; i++) - { - _Internal_Resave(Variance.Method, 3, i); - } - } - - - [TestMethod] - public void Resave_CompressionLevel_0() - { - for (int i=0; i<8; i++) - { - _Internal_Resave(Variance.Level, 0, i); - } - } - - - [TestMethod] - public void Resave_CompressionLevel_1() - { - for (int i=0; i<8; i++) - { - if (i!=3) - _Internal_Resave(Variance.Level, 1, i); - } - } - - [TestMethod] - public void Resave_CompressionLevel_2() - { - for (int i=0; i<8; i++) - { - _Internal_Resave(Variance.Level, 2, i); - } - } - - [TestMethod] - public void Resave_CompressionLevel_3() - { - for (int i=0; i<8; i++) - { - _Internal_Resave(Variance.Level, 3, i); - } - } - - } -} +// BasicTests.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009-2011 Dino Chiesa +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-July-26 11:39:21> +// +// ------------------------------------------------------------------ +// +// This module defines basic unit tests for DotNetZip. +// +// ------------------------------------------------------------------ + +using System; +using System.Text; +using System.Collections.Generic; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using RE = System.Text.RegularExpressions; + +using Ionic.Zip; +using Ionic.Zip.Tests.Utilities; +using System.IO; + +namespace Ionic.Zip.Tests.Basic +{ + /// + /// Summary description for UnitTest1 + /// + [TestClass] + public class BasicTests : IonicTestClass + { + EncryptionAlgorithm[] crypto = + { + EncryptionAlgorithm.None, + EncryptionAlgorithm.PkzipWeak, + EncryptionAlgorithm.WinZipAes128, + EncryptionAlgorithm.WinZipAes256, + }; + + + public BasicTests() : base() { } + + + [TestMethod] + public void CreateZip_AddItem_WithDirectory() + { + // select the name of the zip file + string zipFileToCreate = "CreateZip_AddItem.zip"; + + // create a bunch of files + string subdir = "files"; + string[] filesToZip = TestUtilities.GenerateFilesFlat(subdir); + + // Create the zip archive + using (ZipFile zip1 = new ZipFile()) + { + //zip.StatusMessageTextWriter = System.Console.Out; + for (int i = 0; i < filesToZip.Length; i++) + zip1.AddItem(filesToZip[i], "files"); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length); + } + + [TestMethod] + public void CreateZip_AddItem_NoDirectory() + { + string zipFileToCreate = "CreateZip_AddItem.zip"; + string[] filesToZip = TestUtilities.GenerateFilesFlat("."); + + // Create the zip archive + using (ZipFile zip1 = new ZipFile()) + { + foreach (var f in filesToZip) + zip1.AddItem(f); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length); + } + + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void FileNotAvailableFails_wi10387() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "FileNotAvailableFails.zip"); + using (var zip1 = new ZipFile(zipFileToCreate)) { zip1.Save(); } + try + { + using (new FileStream(zipFileToCreate, FileMode.Open, + FileAccess.ReadWrite, + FileShare.None)) + { + using (new ZipFile(zipFileToCreate)) { } + } + } + finally + { + } + } + + + [TestMethod] + public void CreateZip_AddFile() + { + int i; + string zipFileToCreate = "CreateZip_AddFile.zip"; + string subdir = "files"; + string[] filesToZip = TestUtilities.GenerateFilesFlat(subdir); + + using (ZipFile zip1 = new ZipFile()) + { + for (i = 0; i < filesToZip.Length; i++) + zip1.AddFile(filesToZip[i], "files"); + zip1.Save(zipFileToCreate); + } + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length); + } + + [TestMethod] + public void CreateZip_AddFile_CharCase_wi13481() + { + string zipFileToCreate = "AddFile.zip"; + string subdir = "files"; + string[] filesToZip = TestUtilities.GenerateFilesFlat(subdir); + Directory.SetCurrentDirectory(subdir); + Array.ForEach(filesToZip, x => { File.Move(Path.GetFileName(x),Path.GetFileName(x).ToUpper()); }); + Directory.SetCurrentDirectory(TopLevelDir); + filesToZip= Directory.GetFiles(subdir); + + using (ZipFile zip1 = new ZipFile()) + { + for (int i = 0; i < filesToZip.Length; i++) + zip1.AddFile(filesToZip[i], "files"); + zip1.Save(zipFileToCreate); + } + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length); + + int nEntries = 0; + // now, verify that we have not downcased the filenames + using (ZipFile zip2 = new ZipFile(zipFileToCreate)) + { + foreach (var entry in zip2.Entries) + { + var fname1 = Path.GetFileName(entry.FileName); + var fnameLower = fname1.ToLower(); + Assert.IsFalse(fname1.Equals(fnameLower), + "{0} is all lowercase.", fname1); + nEntries++; + } + } + Assert.IsFalse(nEntries < 2, "not enough entries"); + } + + + [TestMethod] + public void CreateZip_AddFileInDirectory() + { + string subdir = "fodder"; + TestUtilities.GenerateFilesFlat(subdir); + for (int m = 0; m < 2; m++) + { + string directoryName = ""; + for (int k = 0; k < 4; k++) + { + // select the name of the zip file + string zipFileToCreate = String.Format("CreateZip_AddFileInDirectory-trial{0}.{1}.zip", m, k); + TestContext.WriteLine("====================="); + TestContext.WriteLine("Trial {0}", k); + TestContext.WriteLine("Zipfile: {0}", zipFileToCreate); + + directoryName = Path.Combine(directoryName, + String.Format("{0:D2}", k)); + + string[] filesToSelectFrom = + Directory.GetFiles(subdir, "*.*", SearchOption.AllDirectories); + + TestContext.WriteLine("using dirname: {0}", directoryName); + + int n = _rnd.Next(filesToSelectFrom.Length / 2) + 2; + TestContext.WriteLine("Zipping {0} files", n); + + // Create the zip archive + var addedFiles = new List(); + using (ZipFile zip1 = new ZipFile()) + { + // add n files + int j=0; + for (int i = 0; i < n; i++) + { + // select files at random + while (addedFiles.Contains(filesToSelectFrom[j])) + j = _rnd.Next(filesToSelectFrom.Length); + zip1.AddFile(filesToSelectFrom[j], directoryName); + addedFiles.Add(filesToSelectFrom[j]); + } + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), n, + "Wrong number of entries in the zip file {0}", + zipFileToCreate); + + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (var e in zip2) + { + TestContext.WriteLine("Check entry: {0}", e.FileName); + Assert.AreEqual(directoryName, + Path.GetDirectoryName(e.FileName), + "Wrong directory on zip entry {0}", + e.FileName); + } + } + } + + // add progressively more files to the fodder directory + TestUtilities.GenerateFilesFlat(subdir); + } + + } + + + [TestMethod] + public void CreateZip_AddFile_LeadingDot() + { + // select the name of the zip file + string zipFileToCreate = "CreateZip_AddFile_LeadingDot.zip"; + string[] filesToZip = TestUtilities.GenerateFilesFlat("."); + using (ZipFile zip1 = new ZipFile()) + { + for (int i = 0; i < filesToZip.Length; i++) + { + zip1.AddFile(filesToZip[i]); + } + zip1.Save(zipFileToCreate); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length); + } + + + + + [TestMethod] + public void CreateZip_AddFiles_LeadingDot_Array() + { + // select the name of the zip file + string zipFileToCreate = "CreateZip_AddFiles_LeadingDot_Array.zip"; + string[] filesToZip = TestUtilities.GenerateFilesFlat("."); + + // Create the zip archive + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddFiles(filesToZip); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length); + } + + + + [TestMethod] + public void CreateZip_AddFiles_PreserveDirHierarchy() + { + // select the name of the zip file + string zipFileToCreate = "CreateZip_AddFiles_PreserveDirHierarchy.zip"; + string dirToZip = "zipthis"; + + // create a bunch of files + int subdirCount; + int entries = TestUtilities.GenerateFilesOneLevelDeep(TestContext, "PreserveDirHierarchy", dirToZip, null, out subdirCount); + + string[] filesToZip = Directory.GetFiles(".", "*.*", SearchOption.AllDirectories); + + Assert.AreEqual(filesToZip.Length, entries); + + // Create the zip archive + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddFiles(filesToZip, true, ""); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length); + } + + private bool ArraysAreEqual(byte[] b1, byte[] b2) + { + return (CompareArrays(b1, b2) == 0); + } + + + private int CompareArrays(byte[] b1, byte[] b2) + { + if (b1 == null && b2 == null) return 0; + if (b1 == null || b2 == null) return 0; + if (b1.Length > b2.Length) return 1; + if (b1.Length < b2.Length) return -1; + for (int i = 0; i < b1.Length; i++) + { + if (b1[i] > b2[i]) return 1; + if (b1[i] < b2[i]) return -1; + } + return 0; + } + + + [TestMethod] + public void CreateZip_AddEntry_ByteArray() + { + // select the name of the zip file + string zipFileToCreate = "CreateZip_AddEntry_ByteArray.zip"; + int entriesToCreate = _rnd.Next(42) + 12; + var dict = new Dictionary(); + + // Create the zip archive + using (ZipFile zip1 = new ZipFile()) + { + for (int i = 0; i < entriesToCreate; i++) + { + var b = new byte[_rnd.Next(1000) + 1000]; + _rnd.NextBytes(b); + string filename = String.Format("Filename{0:D3}.bin", i); + var e = zip1.AddEntry(Path.Combine("data", filename), b); + dict.Add(e.FileName, b); + } + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + entriesToCreate); + + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + foreach (var e in zip1) + { + // extract to a stream + using (var ms1 = new MemoryStream()) + { + e.Extract(ms1); + Assert.IsTrue(ArraysAreEqual(ms1.ToArray(), dict[e.FileName])); + } + } + } + } + + + + + [TestMethod] + public void CreateZip_AddFile_AddItem() + { + string zipFileToCreate = "CreateZip_AddFile_AddItem.zip"; + string subdir = "files"; + string[] filesToZip = TestUtilities.GenerateFilesFlat(subdir); + + // use the parameterized ctor + using (ZipFile zip1 = new ZipFile(zipFileToCreate)) + { + for (int i = 0; i < filesToZip.Length; i++) + { + if (_rnd.Next(2) == 0) + zip1.AddFile(filesToZip[i], "files"); + else + zip1.AddItem(filesToZip[i], "files"); + } + zip1.Save(); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length); + } + + + private void DumpZipFile(ZipFile z) + { + TestContext.WriteLine("found {0} entries", z.Entries.Count); + TestContext.WriteLine("RequiresZip64: '{0}'", z.RequiresZip64.HasValue ? z.RequiresZip64.Value.ToString() : "not set"); + TestContext.WriteLine("listing the entries in {0}...", String.IsNullOrEmpty(z.Name) ? "(zipfile)" : z.Name); + foreach (var e in z) + { + TestContext.WriteLine("{0}", e.FileName); + } + } + + + + [TestMethod] + public void CreateZip_ZeroEntries() + { + // select the name of the zip file + string zipFileToCreate = "CreateZip_ZeroEntries.zip"; + + using (ZipFile zip1 = new ZipFile()) + { + zip1.Save(zipFileToCreate); + DumpZipFile(zip1); + } + + // workitem 7685 + using (ZipFile zip1 = new ZipFile(zipFileToCreate)) + { + DumpZipFile(zip1); + } + + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + DumpZipFile(zip1); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), 0); + } + + + + [TestMethod] + public void CreateZip_Basic_ParameterizedSave() + { + string zipFileToCreate = "CreateZip_Basic_ParameterizedSave.zip"; + string subdir = "files"; + int numFilesToCreate = _rnd.Next(23) + 14; + string[] filesToZip = TestUtilities.GenerateFilesFlat(subdir, numFilesToCreate); + + using (ZipFile zip1 = new ZipFile()) + { + //zip.StatusMessageTextWriter = System.Console.Out; + for (int i = 0; i < filesToZip.Length; i++) + { + if (_rnd.Next(2) == 0) + zip1.AddFile(filesToZip[i], "files"); + else + zip1.AddItem(filesToZip[i], "files"); + } + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length); + } + + + [TestMethod] + public void CreateZip_AddFile_OnlyZeroLengthFiles() + { + _Internal_ZeroLengthFiles(_rnd.Next(33) + 3, "CreateZip_AddFile_OnlyZeroLengthFiles", null); + } + + [TestMethod] + public void CreateZip_AddFile_OnlyZeroLengthFiles_Password() + { + _Internal_ZeroLengthFiles(_rnd.Next(33) + 3, "CreateZip_AddFile_OnlyZeroLengthFiles", Path.GetRandomFileName()); + } + + [TestMethod] + public void CreateZip_AddFile_OneZeroLengthFile() + { + _Internal_ZeroLengthFiles(1, "CreateZip_AddFile_OneZeroLengthFile", null); + } + + + [TestMethod] + public void CreateZip_AddFile_OneZeroLengthFile_Password() + { + _Internal_ZeroLengthFiles(1, "CreateZip_AddFile_OneZeroLengthFile_Password", Path.GetRandomFileName()); + } + + + [TestMethod] + public void CreateZip_KeepStreamOpen() + { + int i; + string zipFileToCreate = "CreateZip_KeepStreamOpen.zip"; + string subdir = "files"; + string[] filesToZip = TestUtilities.GenerateFilesFlat(subdir); + + using (ZipFile zip1 = new ZipFile()) + { + for (i = 0; i < filesToZip.Length; i++) + zip1.AddFile(filesToZip[i], "files"); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length); + + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + foreach (var e in zip1) + { + // extract to a stream + using (var ms1 = new MemoryStream()) + { + e.Extract(ms1); + + // check if stream is kept open after extracting the file + Assert.AreEqual(true, ms1.CanRead); + } + } + } + } + + + private void _Internal_ZeroLengthFiles(int fileCount, string nameStub, string password) + { + string zipFileToCreate = Path.Combine(TopLevelDir, nameStub + ".zip"); + + int i; + string[] filesToZip = new string[fileCount]; + for (i = 0; i < fileCount; i++) + filesToZip[i] = TestUtilities.CreateUniqueFile("zerolength", TopLevelDir); + + var sw = new StringWriter(); + using (ZipFile zip = new ZipFile()) + { + zip.StatusMessageTextWriter = sw; + zip.Password = password; + for (i = 0; i < filesToZip.Length; i++) + zip.AddFile(filesToZip[i]); + zip.Save(zipFileToCreate); + } + + string status = sw.ToString(); + TestContext.WriteLine("save output: " + status); + + BasicVerifyZip(zipFileToCreate, password); + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "The zip file created has the wrong number of entries."); + } + + + [TestMethod] + public void CreateZip_UpdateDirectory() + { + int i, j; + + string zipFileToCreate = "CreateZip_UpdateDirectory.zip"; + string dirToZip = "zipthis"; + Directory.CreateDirectory(dirToZip); + + TestContext.WriteLine("\n------------\nCreating files ..."); + + int entries = 0; + int subdirCount = _rnd.Next(17) + 14; + //int subdirCount = _rnd.Next(3) + 2; + var FileCount = new Dictionary(); + var checksums = new Dictionary(); + + for (i = 0; i < subdirCount; i++) + { + string subdirShort = String.Format("dir{0:D4}", i); + string subdir = Path.Combine(dirToZip, subdirShort); + Directory.CreateDirectory(subdir); + + int filecount = _rnd.Next(11) + 17; + //int filecount = _rnd.Next(2) + 2; + FileCount[subdirShort] = filecount; + for (j = 0; j < filecount; j++) + { + string filename = String.Format("file{0:D4}.x", j); + string fqFilename = Path.Combine(subdir, filename); + TestUtilities.CreateAndFillFile(fqFilename, _rnd.Next(1000) + 100); + + var chk = TestUtilities.ComputeChecksum(fqFilename); + var t1 = Path.GetFileName(dirToZip); + var t2 = Path.Combine(t1, subdirShort); + var key = Path.Combine(t2, filename); + key = TestUtilities.TrimVolumeAndSwapSlashes(key); + TestContext.WriteLine("chk[{0}]= {1}", key, + TestUtilities.CheckSumToString(chk)); + checksums.Add(key, chk); + entries++; + } + } + + Directory.SetCurrentDirectory(TopLevelDir); + + TestContext.WriteLine("\n------------\nAdding files into the Zip..."); + + // add all the subdirectories into a new zip + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddDirectory(dirToZip, "zipthis"); + zip1.Save(zipFileToCreate); + } + + TestContext.WriteLine("\n"); + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries, + "The Zip file has an unexpected number of entries."); + + TestContext.WriteLine("\n------------\nExtracting and validating checksums..."); + + // validate all the checksums + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (ZipEntry e in zip2) + { + e.Extract("unpack"); + string pathToExtractedFile = Path.Combine("unpack", e.FileName); + + // if it is a file.... + if (checksums.ContainsKey(e.FileName)) + { + // verify the checksum of the file is correct + string expectedCheckString = TestUtilities.CheckSumToString(checksums[e.FileName]); + string actualCheckString = TestUtilities.GetCheckSumString(pathToExtractedFile); + Assert.AreEqual + (expectedCheckString, + actualCheckString, + "Unexpected checksum on extracted filesystem file ({0}).", + pathToExtractedFile); + } + } + } + + TestContext.WriteLine("\n------------\nCreating some new files ..."); + + // now, update some of the existing files + dirToZip = Path.Combine(TopLevelDir, "updates"); + Directory.CreateDirectory(dirToZip); + + for (i = 0; i < subdirCount; i++) + { + string subdirShort = String.Format("dir{0:D4}", i); + string subdir = Path.Combine(dirToZip, subdirShort); + Directory.CreateDirectory(subdir); + + int filecount = FileCount[subdirShort]; + for (j = 0; j < filecount; j++) + { + if (_rnd.Next(2) == 1) + { + string filename = String.Format("file{0:D4}.x", j); + TestUtilities.CreateAndFillFile(Path.Combine(subdir, filename), + _rnd.Next(1000) + 100); + string fqFilename = Path.Combine(subdir, filename); + + var chk = TestUtilities.ComputeChecksum(fqFilename); + //var t1 = Path.GetFileName(dirToZip); + var t2 = Path.Combine("zipthis", subdirShort); + var key = Path.Combine(t2, filename); + key = TestUtilities.TrimVolumeAndSwapSlashes(key); + + TestContext.WriteLine("chk[{0}]= {1}", key, + TestUtilities.CheckSumToString(chk)); + + checksums.Remove(key); + checksums.Add(key, chk); + } + } + } + + + TestContext.WriteLine("\n------------\nUpdating some of the files in the zip..."); + // add some new content + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + zip3.UpdateDirectory(dirToZip, "zipthis"); + //String[] dirs = Directory.GetDirectories(dirToZip); + + //foreach (String d in dirs) + //{ + // string dir = Path.Combine(Path.GetFileName(dirToZip), Path.GetFileName(d)); + // //string root = Path.Combine("zipthis", Path.GetFileName(d)); + // zip3.UpdateDirectory(dir, "zipthis"); + //} + zip3.Save(); + } + + TestContext.WriteLine("\n------------\nValidating the checksums for all of the files ..."); + + // validate all the checksums again + using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) + { + foreach (ZipEntry e in zip4) + TestContext.WriteLine("Found entry: {0}", e.FileName); + + foreach (ZipEntry e in zip4) + { + e.Extract("unpack2"); + if (!e.IsDirectory) + { + string pathToExtractedFile = Path.Combine("unpack2", e.FileName); + + // verify the checksum of the file is correct + string expectedCheckString = TestUtilities.CheckSumToString(checksums[e.FileName]); + string actualCheckString = TestUtilities.GetCheckSumString(pathToExtractedFile); + Assert.AreEqual + (expectedCheckString, + actualCheckString, + "Unexpected checksum on extracted filesystem file ({0}).", + pathToExtractedFile); + } + } + } + } + + + + [TestMethod] + public void CreateZip_AddDirectory_OnlyZeroLengthFiles() + { + string zipFileToCreate = "CreateZip_AddDirectory_OnlyZeroLengthFiles.zip"; + string dirToZip = "zipthis"; + Directory.CreateDirectory(dirToZip); + + int entries = 0; + int subdirCount = _rnd.Next(8) + 8; + for (int i = 0; i < subdirCount; i++) + { + string subdir = Path.Combine(dirToZip, "dir" + i); + Directory.CreateDirectory(subdir); + int n = _rnd.Next(6) + 2; + for (int j=0; j < n; j++) + { + TestUtilities.CreateUniqueFile("bin", subdir); + entries++; + } + } + + using (var zip = new ZipFile()) + { + zip.AddDirectory(Path.GetFileName(dirToZip)); + zip.Save(zipFileToCreate); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries); + } + + + + [TestMethod] + public void CreateZip_AddDirectory_OneZeroLengthFile() + { + string zipFileToCreate = "CreateZip_AddDirectory_OneZeroLengthFile.zip"; + string dirToZip = "zipthis"; + Directory.CreateDirectory(dirToZip); + + // one empty file + string file = TestUtilities.CreateUniqueFile("ZeroLengthFile.txt", dirToZip); + + using (ZipFile zip = new ZipFile()) + { + zip.AddDirectory(Path.GetFileName(dirToZip)); + zip.Save(zipFileToCreate); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), 1); + } + + + [TestMethod] + public void CreateZip_AddDirectory_OnlyEmptyDirectories() + { + string zipFileToCreate = "CreateZip_AddDirectory_OnlyEmptyDirectories.zip"; + string dirToZip = "zipthis"; + Directory.CreateDirectory(dirToZip); + + int subdirCount = _rnd.Next(28) + 18; + for (int i = 0; i < subdirCount; i++) + { + string subdir = Path.Combine(dirToZip, "EmptyDir" + i); + Directory.CreateDirectory(subdir); + } + + using (ZipFile zip = new ZipFile()) + { + zip.AddDirectory(Path.GetFileName(dirToZip)); + zip.Save(zipFileToCreate); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), 0); + } + + + [TestMethod] + public void CreateZip_AddDirectory_OneEmptyDirectory() + { + string zipFileToCreate = "CreateZip_AddDirectory_OneEmptyDirectory.zip"; + string dirToZip = "zipthis"; + Directory.CreateDirectory(dirToZip); + + using (ZipFile zip = new ZipFile()) + { + zip.AddDirectory(Path.GetFileName(dirToZip)); + zip.Save(zipFileToCreate); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), 0); + BasicVerifyZip(zipFileToCreate); + } + + + [TestMethod] + public void CreateZip_WithEmptyDirectory() + { + string zipFileToCreate = "Create_WithEmptyDirectory.zip"; + string subdir = "EmptyDirectory"; + Directory.CreateDirectory(subdir); + using (ZipFile zip = new ZipFile()) + { + zip.AddDirectory(subdir, ""); + zip.Save(zipFileToCreate); + } + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), 0); + BasicVerifyZip(zipFileToCreate); + } + + + + [TestMethod] + public void CreateZip_AddDirectory_CheckStatusTextWriter() + { + string zipFileToCreate = "CreateZip_AddDirectory_CheckStatusTextWriter.zip"; + string dirToZip = "zipthis"; + Directory.CreateDirectory(dirToZip); + + int entries = 0; + int subdirCount = _rnd.Next(8) + 8; + for (int i = 0; i < subdirCount; i++) + { + string subdir = Path.Combine(dirToZip, "Dir" + i); + Directory.CreateDirectory(subdir); + // a few files per subdir + int fileCount = _rnd.Next(12) + 4; + for (int j = 0; j < fileCount; j++) + { + string file = Path.Combine(subdir, "File" + j); + TestUtilities.CreateAndFillFile(file, 1020); + entries++; + } + } + + var sw = new StringWriter(); + using (ZipFile zip = new ZipFile()) + { + zip.StatusMessageTextWriter = sw; + zip.AddDirectory(Path.GetFileName(dirToZip)); + zip.Save(zipFileToCreate); + } + + string status = sw.ToString(); + TestContext.WriteLine("save output: " + status); + + Assert.IsTrue(status.Length > 24 * entries, "status messages? ({0}!>{1})", + status.Length, 24 * entries); + + int n = TestUtilities.CountEntries(zipFileToCreate); + Assert.AreEqual(n, entries, + "wrong number of entries. ({0}!={1})", n, entries); + + BasicVerifyZip(zipFileToCreate); + } + + + struct TestTrial + { + public string arg; + public string re; + } + + + [TestMethod] + public void CreateZip_AddDirectory() + { + TestTrial[] trials = { + new TestTrial { arg=null, re="^file(\\d+).ext$"}, + new TestTrial { arg="", re="^file(\\d+).ext$"}, + new TestTrial { arg=null, re="^file(\\d+).ext$"}, + new TestTrial { arg="Xabf", re="(?s)^Xabf/(file(\\d+).ext)?$"}, + new TestTrial { arg="AAAA/BBB", re="(?s)^AAAA/BBB/(file(\\d+).ext)?$"} + }; + + for (int k = 0; k < trials.Length; k++) + { + TestContext.WriteLine("\n--------------------------------\n\n\n"); + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("CreateZip_AddDirectory-{0}.zip", k)); + + Assert.IsFalse(File.Exists(zipFileToCreate), "The temporary zip file '{0}' already exists.", zipFileToCreate); + + string dirToZip = String.Format("DirectoryToZip.{0}.test", k); + Directory.CreateDirectory(dirToZip); + + int fileCount = _rnd.Next(5) + 4; + for (int i = 0; i < fileCount; i++) + { + String file = Path.Combine(dirToZip, String.Format("file{0:D3}.ext", i)); + TestUtilities.CreateAndFillFile(file, _rnd.Next(2000) + 500); + } + + var sw = new StringWriter(); + using (ZipFile zip = new ZipFile()) + { + zip.StatusMessageTextWriter = sw; + if (k == 0) + zip.AddDirectory(dirToZip); + else + zip.AddDirectory(dirToZip, trials[k].arg); + zip.Save(zipFileToCreate); + } + TestContext.WriteLine(sw.ToString()); + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), fileCount, + String.Format("The zip file created in cycle {0} has the wrong number of entries.", k)); + + //TestContext.WriteLine(""); + // verify that the entries in the zip are in the top level directory!! + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (ZipEntry e in zip2) + TestContext.WriteLine("found entry: {0}", e.FileName); + foreach (ZipEntry e in zip2) + { + //Assert.IsFalse(e.FileName.StartsWith("dir"), + // String.Format("The Zip entry '{0}' is not rooted in top level directory.", e.FileName)); + + // check the filename: + //RE.Match m0 = RE.Regex.Match(e.FileName, fnameRegex[k]); + // Assert.IsTrue(m0 != null, "No match"); + // Assert.AreEqual(m0.Groups.Count, 2, + // String.Format("In cycle {0}, Matching {1} against {2}, Wrong number of matches ({3})", + // k, e.FileName, fnameRegex[k], m0.Groups.Count)); + + Assert.IsTrue(RE.Regex.IsMatch(e.FileName, trials[k].re), + String.Format("In cycle {0}, Matching {1} against {2}", k, e.FileName, trials[k].re)); + } + } + } + } + + + [TestMethod] + public void CreateZip_AddDirectory_Nested() + { + // Each trial provides a directory name into which to add + // files, and a regex, used for verification after the zip + // is created, to match the names on any added entries. + TestTrial[] trials = { + new TestTrial { arg=null, re="^dir(\\d){3}/(file(\\d+).ext)?$"}, + new TestTrial { arg="", re="^dir(\\d){3}/(file(\\d+).ext)?$"}, + new TestTrial { arg=null, re="^dir(\\d){3}/(file(\\d+).ext)?$"}, + new TestTrial { arg="rtdha", re="(?s)^rtdha/(dir(\\d){3}/(file(\\d+).ext)?)?$"}, + new TestTrial { arg="sdfjk/BBB", re="(?s)^sdfjk/BBB/(dir(\\d){3}/(file(\\d+).ext)?)?$"} + }; + + for (int k = 0; k < trials.Length; k++) + { + TestContext.WriteLine("\n--------------------------------\n\n\n"); + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("CreateZip_AddDirectory_Nested-{0}.zip", k)); + + Assert.IsFalse(File.Exists(zipFileToCreate), "The temporary zip file '{0}' already exists.", zipFileToCreate); + + string dirToZip = String.Format("DirectoryToZip.{0}.test", k); + Directory.CreateDirectory(dirToZip); + + int i, j; + int entries = 0; + + int subdirCount = _rnd.Next(23) + 7; + for (i = 0; i < subdirCount; i++) + { + string subdir = Path.Combine(dirToZip, String.Format("dir{0:D3}", i)); + Directory.CreateDirectory(subdir); + + int fileCount = _rnd.Next(8); // sometimes zero + for (j = 0; j < fileCount; j++) + { + String file = Path.Combine(subdir, String.Format("file{0:D3}.ext", j)); + TestUtilities.CreateAndFillFile(file, _rnd.Next(10750) + 50); + entries++; + } + } + + var sw = new StringWriter(); + using (ZipFile zip = new ZipFile()) + { + zip.StatusMessageTextWriter = sw; + if (k == 0) + zip.AddDirectory(dirToZip); + else + zip.AddDirectory(dirToZip, trials[k].arg); + zip.Save(zipFileToCreate); + } + TestContext.WriteLine(sw.ToString()); + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries, + String.Format("The zip file created in cycle {0} has the wrong number of entries.", k)); + + // verify that the entries in the zip are in the top level directory!! + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (ZipEntry e in zip2) + TestContext.WriteLine("found entry: {0}", e.FileName); + foreach (ZipEntry e in zip2) + { + Assert.IsTrue(RE.Regex.IsMatch(e.FileName, trials[k].re), + String.Format("In cycle {0}, Matching {1} against {2}", k, e.FileName, trials[k].re)); + } + + } + } + } + + + [TestMethod] + public void Basic_SaveToFileStream() + { + // from small numbers of files to larger numbers of files + for (int k = 0; k < 3; k++) + { + string zipFileToCreate = String.Format("SaveToFileStream-t{0}.zip", k); + string dirToZip = Path.GetRandomFileName(); + Directory.CreateDirectory(dirToZip); + + int filesToAdd = _rnd.Next(k * 10 + 3) + k * 10 + 3; + for (int i = 0; i < filesToAdd; i++) + { + var s = Path.Combine(dirToZip, String.Format("tempfile-{0}.bin", i)); + int sz = _rnd.Next(10000) + 5000; + TestContext.WriteLine(" Creating file: {0} sz({1})", s, sz); + TestUtilities.CreateAndFillFileBinary(s, sz); + } + + using (var fileStream = File.Create(zipFileToCreate)) + { + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddDirectory(dirToZip); + zip1.Comment = "This is a Comment On the Archive (AM/PM)"; + zip1.Save(fileStream); + } + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToAdd, + "Trial {0}: file {1} wrong number of entries.", + k, zipFileToCreate); + } + } + + + + [TestMethod] + public void Basic_IsText() + { + // from small numbers of files to larger numbers of files + for (int k = 0; k < 3; k++) + { + string zipFileToCreate = String.Format("Basic_IsText-trial{0}.zip", k); + string dirToZip = Path.GetRandomFileName(); + Directory.CreateDirectory(dirToZip); + + int filesToAdd = _rnd.Next(33) + 11; + for (int i = 0; i < filesToAdd; i++) + { + var s = Path.Combine(dirToZip, String.Format("tempfile-{0}.txt", i)); + int sz = _rnd.Next(10000) + 5000; + TestContext.WriteLine(" Creating file: {0} sz({1})", s, sz); + TestUtilities.CreateAndFillFileText(s, sz); + } + + using (ZipFile zip1 = new ZipFile()) + { + int count = 0; + var filesToZip = Directory.GetFiles(dirToZip); + foreach (var f in filesToZip) + { + var e = zip1.AddFile(f, "files"); + switch (k) + { + case 0: break; + case 1: if ((count % 2) == 0) e.IsText = true; break; + case 2: if ((count % 2) != 0) e.IsText = true; break; + case 3: e.IsText = true; break; + } + count++; + } + zip1.Comment = "This is a Comment On the Archive (AM/PM)"; + zip1.Save(zipFileToCreate); + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToAdd, + "trial {0}: file {1} number of entries.", + k, zipFileToCreate); + + // verify the isText setting + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + int count = 0; + foreach (var e in zip2) + { + switch (k) + { + case 0: Assert.IsFalse(e.IsText); break; + case 1: Assert.AreEqual((count % 2) == 0, e.IsText); break; + case 2: Assert.AreEqual((count % 2) != 0, e.IsText); break; + case 3: Assert.IsTrue(e.IsText); break; + } + count++; + } + } + } + } + + + [TestMethod] + public void CreateZip_VerifyThatStreamRemainsOpenAfterSave() + { + Ionic.Zlib.CompressionLevel[] compressionLevelOptions = { + Ionic.Zlib.CompressionLevel.None, + Ionic.Zlib.CompressionLevel.BestSpeed, + Ionic.Zlib.CompressionLevel.Default, + Ionic.Zlib.CompressionLevel.BestCompression, + }; + + string[] Passwords = { null, Path.GetRandomFileName() }; + + for (int j = 0; j < Passwords.Length; j++) + { + for (int k = 0; k < compressionLevelOptions.Length; k++) + { + TestContext.WriteLine("\n\n---------------------------------\n" + + "Trial ({0},{1}): Password='{2}' Compression={3}\n", + j, k, Passwords[j], compressionLevelOptions[k]); + string dirToZip = Path.GetRandomFileName(); + Directory.CreateDirectory(dirToZip); + + int filesAdded = _rnd.Next(3) + 3; + for (int i = 0; i < filesAdded; i++) + { + var s = Path.Combine(dirToZip, String.Format("tempfile-{0}-{1}-{2}.bin", j, k, i)); + int sz = _rnd.Next(10000) + 5000; + TestContext.WriteLine(" Creating file: {0} sz({1})", s, sz); + TestUtilities.CreateAndFillFileBinary(s, sz); + } + + TestContext.WriteLine("\n"); + + //string dirToZip = Path.GetFileName(TopLevelDir); + var ms = new MemoryStream(); + Assert.IsTrue(ms.CanSeek, String.Format("Trial {0}: The output MemoryStream does not do Seek.", k)); + using (ZipFile zip1 = new ZipFile()) + { + zip1.CompressionLevel = compressionLevelOptions[k]; + zip1.Password = Passwords[j]; + zip1.Comment = String.Format("Trial ({0},{1}): Password='{2}' Compression={3}\n", + j, k, Passwords[j], compressionLevelOptions[k]); + zip1.AddDirectory(dirToZip); + zip1.Save(ms); + } + + Assert.IsTrue(ms.CanSeek, String.Format("Trial {0}: After writing, the OutputStream does not do Seek.", k)); + Assert.IsTrue(ms.CanRead, String.Format("Trial {0}: The OutputStream cannot be Read.", k)); + + // seek to the beginning + ms.Seek(0, SeekOrigin.Begin); + int filesFound = 0; + using (ZipFile zip2 = ZipFile.Read(ms)) + { + foreach (ZipEntry e in zip2) + { + TestContext.WriteLine(" Found entry: {0} isDir({1}) sz_c({2}) sz_unc({3})", e.FileName, e.IsDirectory, e.CompressedSize, e.UncompressedSize); + if (!e.IsDirectory) + filesFound++; + } + } + Assert.AreEqual(filesFound, filesAdded, + "Trial {0}", k); + } + } + } + + + [TestMethod] + public void CreateZip_AddFile_VerifyCrcAndContents() + { + string filename = null; + int entriesAdded = 0; + string repeatedLine = null; + int j; + + string zipFileToCreate = "CreateZip_AddFile_VerifyCrcAndContents.zip"; + string subdir = "A"; + Directory.CreateDirectory(subdir); + + // create the files + int numFilesToCreate = _rnd.Next(10) + 8; + for (j = 0; j < numFilesToCreate; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + Path.GetFileName(filename)); + TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); + entriesAdded++; + } + + using (ZipFile zip1 = new ZipFile()) + { + String[] filenames = Directory.GetFiles("A"); + foreach (String f in filenames) + zip1.AddFile(f, ""); + zip1.Comment = "UpdateTests::CreateZip_AddFile_VerifyCrcAndContents(): This archive will be updated."; + zip1.Save(zipFileToCreate); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate),entriesAdded); + + // now extract the files and verify their contents + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s in zip2.EntryFileNames) + { + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", s); + zip2[s].Extract("extract"); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s)); + string actualLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, actualLine, + "Updated file ({0}) is incorrect.", s); + } + } + } + + + + + [TestMethod] + public void Extract_IntoMemoryStream() + { + string filename = null; + int entriesAdded = 0; + string repeatedLine = null; + int j; + + string zipFileToCreate = "Extract_IntoMemoryStream.zip"; + string subdir = "A"; + Directory.CreateDirectory(subdir); + + // create the files + int numFilesToCreate = _rnd.Next(10) + 8; + for (j = 0; j < numFilesToCreate; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + Path.GetFileName(filename)); + TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); + entriesAdded++; + } + + // Create the zip file + using (ZipFile zip1 = new ZipFile()) + { + String[] filenames = Directory.GetFiles("A"); + foreach (String f in filenames) + zip1.AddFile(f, ""); + zip1.Comment = "BasicTests::Extract_IntoMemoryStream()"; + zip1.Save(zipFileToCreate); + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, + "The Zip file has the wrong number of entries."); + + // now extract the files into memory streams, checking only the length of the file. + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s in zip2.EntryFileNames) + { + using (MemoryStream ms = new MemoryStream()) + { + zip2[s].Extract(ms); + byte[] a = ms.ToArray(); + string f = Path.Combine(subdir, s); + var fi = new FileInfo(f); + Assert.AreEqual((int)(fi.Length), a.Length, "Unequal file lengths."); + } + } + } + } + + + [TestMethod] + public void ExtraField_TestNull() + { + string filename = Path.Combine(CurrentDir, "zips\\fireone.zip"); + int entries = 0; + using (ZipFile zip = ZipFile.Read(filename)) + { + foreach (ZipEntry e in zip.Entries) + entries++; + } + + Assert.AreEqual(14, entries, "Error opening zip file with extra field"); + } + + + [TestMethod] + public void Retrieve_ViaIndexer2_wi11056() + { + string fileName = "wi11056.dwf"; + string entryName = @"com.autodesk.dwf.ePlot_5VFMLy3OdEetAPFe7uWXYg\descriptor.xml"; + string SourceDir = CurrentDir; + for (int i = 0; i < 3; i++) + SourceDir = Path.GetDirectoryName(SourceDir); + + TestContext.WriteLine("Current Dir: {0}", CurrentDir); + + string filename = Path.Combine(SourceDir, "Zip Tests\\bin\\Debug\\zips\\" + fileName); + + TestContext.WriteLine("Reading zip file: '{0}'", filename); + using (ZipFile zip = ZipFile.Read(filename)) + { + var e = zip[entryName]; + Assert.IsFalse(e == null, + "Retrieval by stringindex failed."); + } + } + + + + [TestMethod] + public void Retrieve_ViaIndexer() + { + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "Retrieve_ViaIndexer.zip"); + string filename = null; + int entriesAdded = 0; + string repeatedLine = null; + int j; + + // create the subdirectory + string subdir = "A"; + Directory.CreateDirectory(subdir); + + // create the files + int numFilesToCreate = _rnd.Next(10) + 8; + for (j = 0; j < numFilesToCreate; j++) + { + filename = Path.Combine(subdir, String.Format("File{0:D3}.txt", j)); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + Path.GetFileName(filename)); + TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(23000) + 4000); + entriesAdded++; + } + + // Create the zip file + using (ZipFile zip1 = new ZipFile()) + { + String[] filenames = Directory.GetFiles("A"); + foreach (String f in filenames) + zip1.AddFile(f, ""); + zip1.Comment = "BasicTests::Retrieve_ViaIndexer()"; + zip1.Save(zipFileToCreate); + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, + "The Zip file has the wrong number of entries."); + + // now extract the files into memory streams, checking only the length of the file. + // We do 4 combinations: case-sensitive on or off, and filename conversion on or off. + for (int m = 0; m < 2; m++) + { + for (int n = 0; n < 2; n++) + { + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + if (n == 1) zip2.CaseSensitiveRetrieval = true; + foreach (string s in zip2.EntryFileNames) + { + var s2 = (m == 1) ? s.ToUpper() : s; + using (MemoryStream ms = new MemoryStream()) + { + try + { + zip2[s2].Extract(ms); + byte[] a = ms.ToArray(); + string f = Path.Combine(subdir, s2); + var fi = new FileInfo(f); + Assert.AreEqual((int)(fi.Length), a.Length, "Unequal file lengths."); + } + catch + { + Assert.AreEqual(1, n * m, "Indexer retrieval failed unexpectedly."); + } + } + } + } + } + } + } + + + + + [TestMethod] + public void CreateZip_SetFileComments() + { + string zipFileToCreate = "FileComments.zip"; + string FileCommentFormat = "Comment Added By Test to file '{0}'"; + string commentOnArchive = "Comment added by FileComments() method."; + + int fileCount = _rnd.Next(3) + 3; + string[] filesToZip = new string[fileCount]; + for (int i = 0; i < fileCount; i++) + { + filesToZip[i] = Path.Combine(TopLevelDir, String.Format("file{0:D3}.bin", i)); + TestUtilities.CreateAndFillFile(filesToZip[i], _rnd.Next(10000) + 5000); + } + + using (ZipFile zip = new ZipFile()) + { + //zip.StatusMessageTextWriter = System.Console.Out; + for (int i = 0; i < filesToZip.Length; i++) + { + // use the local filename (not fully qualified) + ZipEntry e = zip.AddFile(Path.GetFileName(filesToZip[i])); + if (i != filesToZip.Length - 1) + e.Comment = String.Format(FileCommentFormat, e.FileName); + else + //make last comment exceed comment limit -> comment should get truncated + e.Comment = @"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam mollis nibh tortor, vitae porttitor sem porttitor vel. Mauris interdum nibh quis nunc posuere mollis. Proin viverra est id lorem tincidunt ultrices. Curabitur convallis hendrerit facilisis. Fusce fringilla massa sed porta posuere. Mauris felis dui, dictum quis est non, volutpat vulputate lacus. Praesent volutpat nec purus vel interdum. Ut tristique lobortis ex. Maecenas lorem ante, ullamcorper sit amet pretium condimentum, cursus vel augue. Pellentesque nibh velit, accumsan sodales sapien vel, egestas ultrices tortor. Proin maximus diam vel sem maximus, et lacinia justo auctor. Quisque porta elementum elit eu hendrerit. Quisque luctus magna quis velit imperdiet fermentum. Suspendisse potenti. +Suspendisse potenti. Integer rhoncus tincidunt tempor. Sed in condimentum purus. Sed accumsan turpis non commodo consequat. Maecenas tempus sapien a elit varius pretium. Phasellus risus tortor, varius non felis vel, dignissim fermentum arcu. Nunc et fringilla sapien. Quisque elementum tincidunt efficitur. Etiam vel est molestie magna consectetur blandit. Pellentesque sollicitudin iaculis metus, a consequat risus condimentum id. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Aenean rhoncus molestie turpis et posuere. +Cras eleifend, dui in molestie ullamcorper, sem libero tristique arcu, id tincidunt ante enim vitae tellus. Praesent luctus, arcu nec euismod sollicitudin, urna enim tincidunt diam, et sagittis mi nunc non leo. In est arcu, scelerisque nec blandit eget, tincidunt sit amet ante. Nulla pellentesque, justo non mattis eleifend, nisi lorem varius magna, at cursus leo leo sit amet tellus. Aliquam at eros purus. Cras sagittis, nisi quis euismod aliquam, dui nunc congue ipsum, vel lobortis elit nisl non libero. Nam sit amet est nibh. Quisque sit amet bibendum nunc. Aliquam nec mattis nulla. Proin quis dui a ex hendrerit vulputate. Proin varius blandit erat, eget vulputate quam dapibus sed. +Sed libero libero, blandit a diam ut, viverra suscipit elit. Morbi et metus tempus, pellentesque nisi sed, ullamcorper nunc. In venenatis tellus in purus malesuada gravida. Etiam nec viverra erat. Etiam in vehicula lacus, non varius libero. Proin commodo mi eget cursus efficitur. Praesent ullamcorper hendrerit rutrum. Vestibulum sollicitudin augue ante, ut cursus nisi tristique ac. Praesent aliquam tincidunt lorem, ut commodo velit varius sit amet. Maecenas ultricies lacinia dui, quis laoreet risus sagittis eu. +Phasellus eu viverra sem. In quis massa non nisi accumsan pharetra. Donec eu sollicitudin urna, aliquam euismod orci. Cras porta quis lectus id laoreet. Donec ut velit facilisis, sollicitudin mauris sed, consectetur quam. Sed et tortor ultricies, vulputate nunc non, luctus turpis. Nam congue, enim sed placerat pretium, odio tortor sagittis odio, ut volutpat metus nibh vel tortor. Donec faucibus a urna eget elementum. +Etiam turpis libero, consequat at convallis sit amet, dapibus vitae dolor. Sed id fringilla nisl, non ultrices justo. Aenean euismod, risus sed euismod sagittis, sapien magna suscipit metus, eget tempus quam turpis et nisl. Vestibulum faucibus porttitor erat, ac pellentesque sem rhoncus ac. Aenean eleifend orci mauris. Mauris venenatis dignissim feugiat. Sed est dolor, convallis sit amet justo vel, mattis scelerisque dui. +Aliquam erat volutpat. Cras eu venenatis felis. Duis a felis et nisl semper sagittis ac vel risus. Integer a mi convallis, efficitur tortor et, aliquet magna. Mauris hendrerit laoreet ante eget imperdiet. Nullam sed faucibus lorem. Maecenas sagittis egestas justo at feugiat. Ut a ultricies magna. Sed non erat in est feugiat placerat sed nec leo. Phasellus sed commodo felis, non elementum nulla. Aenean vel arcu ut turpis viverra semper vel at erat. +Duis a magna purus. Donec mi lectus, sodales eu viverra ac, feugiat quis nunc. Nullam interdum vel justo ut mollis. Integer et sapien a erat hendrerit maximus. Nulla elementum libero nibh, volutpat commodo magna aliquam ut. Nam augue diam, commodo non accumsan non, commodo et metus. Vivamus ornare orci at luctus molestie. Pellentesque dictum malesuada ipsum, ac pharetra est. Fusce at rhoncus ipsum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin tincidunt, urna a tincidunt porttitor, risus lorem lacinia metus, vitae ultricies turpis tortor pulvinar leo. Aliquam erat volutpat. Sed tincidunt suscipit quam, quis faucibus orci. Pellentesque volutpat, eros sed egestas euismod, diam libero dignissim velit, nec hendrerit elit diam sed mauris. +Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Phasellus tristique tellus lacus, auctor vehicula mauris dignissim nec. Sed fringilla, massa cursus dignissim mollis, sapien ex condimentum lacus, ac tincidunt leo lacus vel sem. Integer commodo, neque non rhoncus placerat, massa lorem aliquet risus, ac feugiat purus lacus eget mi. Vivamus dui mauris, ultrices quis magna quis, sollicitudin porttitor erat. Mauris dictum mi tempus, posuere augue eu, dapibus magna. Mauris ante neque, viverra ut quam vel, commodo interdum velit. Maecenas eu purus vulputate, aliquet est sit amet, viverra leo. Phasellus consequat hendrerit lacinia. Morbi at felis sit amet sapien tempus lacinia ac quis neque. Aliquam erat volutpat. Curabitur aliquam velit nec lacus vulputate interdum. Morbi et luctus quam. Aliquam in auctor odio. Donec dictum nulla ut luctus consectetur. Pellentesque pulvinar congue nulla, ut accumsan sem tristique in. +Cras velit nibh, lacinia eu sodales ut, aliquet et ex. Vestibulum vitae libero elit. Fusce suscipit tellus vitae neque luctus tincidunt. Aliquam condimentum facilisis mi, at vulputate risus pretium nec. Morbi elit est, placerat vitae mattis vel, pretium non ante. Sed et feugiat tellus. In interdum libero eget erat cursus, vitae venenatis nunc fermentum. +Phasellus eu massa pharetra, commodo tortor sed, pharetra nisi. Praesent efficitur magna quis ipsum cursus, porta accumsan mauris imperdiet. Vivamus eget erat rhoncus, vestibulum metus vitae, luctus purus. Aliquam dapibus hendrerit faucibus. Nulla quam neque, mattis sed eleifend in, viverra sollicitudin lacus. Maecenas non tristique nibh, sit amet mollis erat. Pellentesque ut metus a arcu tincidunt imperdiet. Suspendisse potenti. Vivamus auctor tempus aliquam. Vivamus ullamcorper ex nibh, eget ultricies metus facilisis in. Sed cursus tincidunt bibendum. Vestibulum id aliquet ante. Donec sed diam a ligula condimentum convallis non sit amet lectus. Suspendisse leo risus, viverra id augue mattis, convallis auctor justo. Nam porta, mi at pellentesque eleifend, urna massa iaculis lacus, et tempor tortor turpis et urna. +Phasellus varius imperdiet dapibus. Nullam commodo mi vel lectus vestibulum, quis rhoncus magna rutrum. Cras libero felis, malesuada in eros eget, volutpat eleifend odio. Morbi feugiat pellentesque aliquam. Sed non turpis purus. Praesent egestas, elit in varius consectetur, dui risus ultrices odio, ut finibus tortor ligula eu tortor. Aliquam congue mi vitae ante vestibulum semper. Proin eget pellentesque nisl. Curabitur in ante eget eros condimentum sagittis non sit amet turpis. Pellentesque sed aliquet risus. Nullam sodales at erat eget dapibus. Morbi ut arcu tincidunt, accumsan velit vitae, egestas nibh. Mauris sit amet urna quam. Maecenas a odio tempor, sagittis erat a, rutrum massa. Pellentesque elementum augue sit amet risus pretium pellentesque. +Mauris et porttitor elit. Donec in ex sit amet velit dictum accumsan. Suspendisse tempus sapien vel sem elementum convallis. In vulputate gravida justo, sit amet hendrerit magna vulputate ut. Interdum et malesuada fames ac ante ipsum primis in faucibus. Vivamus lobortis lobortis arcu, in lobortis leo feugiat in. Mauris commodo, justo non malesuada elementum, nulla sapien laoreet massa, at porta mauris ipsum non ex. Nunc ut ligula eu arcu congue pharetra. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla ac semper magna. Praesent efficitur risus quis felis porttitor, non pharetra arcu aliquam. +Sed quis nibh pharetra, tristique quam a, consectetur mauris. Integer placerat at est id finibus. Quisque congue, justo sit amet tincidunt porta, ipsum metus iaculis justo, vel bibendum quam mi eget enim. Aenean maximus facilisis tortor, quis dignissim nibh sagittis quis. Etiam eu augue non nunc pharetra euismod. Proin leo velit, luctus ac mauris at, ullamcorper pulvinar nisi. Sed nec lobortis lacus. Fusce eget metus est. In felis libero, consequat id consequat ac, bibendum vel tortor. Duis eu egestas purus, non luctus metus. Curabitur vel facilisis purus. Proin eget sapien pretium, gravida purus tristique, congue sem. +Maecenas in venenatis justo. Pellentesque lobortis lorem a augue volutpat, aliquam aliquam magna cras amet."; + } + zip.Comment = commentOnArchive; + zip.Save(zipFileToCreate); + } + + int entries = 0; + using (ZipFile z2 = ZipFile.Read(zipFileToCreate)) + { + Assert.AreEqual(commentOnArchive, z2.Comment, "Unexpected comment on ZipFile."); + foreach (ZipEntry e in z2) + { + //don't check lorem ipsum comment + if (entries != z2.Entries.Count - 1) + { + string expectedComment = String.Format(FileCommentFormat, e.FileName); + Assert.AreEqual(expectedComment, e.Comment, "Unexpected comment on ZipEntry."); + } + entries++; + } + } + Assert.AreEqual(entries, filesToZip.Length, "Unexpected file count. Expected {0}, got {1}.", + filesToZip.Length, entries); + } + + + [TestMethod] + public void CreateZip_SetFileLastModified() + { + //int fileCount = _rnd.Next(13) + 23; + int fileCount = _rnd.Next(3) + 2; + string[] filesToZip = new string[fileCount]; + for (int i = 0; i < fileCount; i++) + { + filesToZip[i] = Path.Combine(TopLevelDir, String.Format("file{0:D3}.bin", i)); + TestUtilities.CreateAndFillFileBinary(filesToZip[i], _rnd.Next(10000) + 5000); + } + DateTime[] timestamp = + { + new System.DateTime(2007, 9, 1, 15, 0, 0), + new System.DateTime(2007, 4, 2, 14, 0, 0), + new System.DateTime(2007, 5, 18, 19, 0, 0), + }; + + // try Kind = unspecified, local, and UTC + DateTimeKind[] kinds = + { + DateTimeKind.Unspecified, + DateTimeKind.Local, + DateTimeKind.Utc, + }; + + for (int m = 0; m < timestamp.Length; m++) + { + for (int n = 0; n < 3; n++) + { + for (int k = 0; k < 2; k++) + { + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("CreateZip-SetFileLastModified-{0}.{1}.{2}.zip", m, n, k)); + TestContext.WriteLine("Cycle {0}.{1}.{2}", m, n, k); + TestContext.WriteLine("zipfile {0}", zipFileToCreate); + DateTime t = DateTime.SpecifyKind(timestamp[m], kinds[n]); + + using (ZipFile zip = new ZipFile()) + { + zip.EmitTimesInWindowsFormatWhenSaving = (k != 0); + + for (int i = 0; i < filesToZip.Length; i++) + { + // use the local filename (not fully qualified) + ZipEntry e = zip.AddFile(Path.GetFileName(filesToZip[i])); + e.LastModified = t; + } + zip.Comment = "All files in this archive have the same LastModified value."; + zip.Save(zipFileToCreate); + } + + // NB: comparing two DateTime variables will return "not + // equal" if they are not of the same "Kind", even if they + // represent the same point in time. To counteract that, + // we compare using UniversalTime. + + var x1 = t.ToUniversalTime().ToString("u"); + + string unpackDir = String.Format("unpack{0}.{1}.{2}", m, n, k); + int entries = 0; + using (ZipFile z2 = ZipFile.Read(zipFileToCreate)) + { + foreach (ZipEntry e in z2) + { + var t2 = e.LastModified; + var x2 = t2.ToUniversalTime().ToString("u"); + Assert.AreEqual(x1, x2, + "cycle {0}.{1}.{2}: Unexpected LastModified value on ZipEntry.", m, n, k); + entries++; + // now verify that the LastMod time on the filesystem file is set correctly + e.Extract(unpackDir); + DateTime ActualFilesystemLastMod = File.GetLastWriteTime(Path.Combine(unpackDir, e.FileName)); + ActualFilesystemLastMod = AdjustTime_Win32ToDotNet(ActualFilesystemLastMod); + + //Assert.AreEqual(t, ActualFilesystemLastMod, + x2 = ActualFilesystemLastMod.ToUniversalTime().ToString("u"); + Assert.AreEqual(x1, x2, + "cycle {0}.{1}.{2}: Unexpected LastWriteTime on extracted filesystem file.", m, n, k); + } + } + Assert.AreEqual(entries, filesToZip.Length, "Unexpected file count. Expected {0}, got {1}.", + filesToZip.Length, entries); + } + } + } + } + + + [TestMethod] + public void CreateAndExtract_VerifyAttributes() + { + + try + { + string zipFileToCreate = "CreateAndExtract_VerifyAttributes.zip"; + string subdir = "A"; + Directory.CreateDirectory(subdir); + + //int fileCount = _rnd.Next(13) + 23; + FileAttributes[] attributeCombos = { + FileAttributes.ReadOnly, + FileAttributes.ReadOnly | FileAttributes.System, + FileAttributes.ReadOnly | FileAttributes.System | FileAttributes.Hidden, + FileAttributes.ReadOnly | FileAttributes.System | FileAttributes.Hidden | FileAttributes.Archive, + FileAttributes.ReadOnly | FileAttributes.Hidden, + FileAttributes.ReadOnly | FileAttributes.Hidden| FileAttributes.Archive, + FileAttributes.ReadOnly | FileAttributes.Archive, + FileAttributes.System, + FileAttributes.System | FileAttributes.Hidden, + FileAttributes.System | FileAttributes.Hidden | FileAttributes.Archive, + FileAttributes.System | FileAttributes.Archive, + FileAttributes.Hidden, + FileAttributes.Hidden | FileAttributes.Archive, + FileAttributes.Archive, + FileAttributes.Normal, + FileAttributes.NotContentIndexed | FileAttributes.ReadOnly, + FileAttributes.NotContentIndexed | FileAttributes.System, + FileAttributes.NotContentIndexed | FileAttributes.Hidden, + FileAttributes.NotContentIndexed | FileAttributes.Archive, + FileAttributes.Temporary, + FileAttributes.Temporary | FileAttributes.Archive, + }; + int fileCount = attributeCombos.Length; + string[] filesToZip = new string[fileCount]; + TestContext.WriteLine("============\nCreating."); + for (int i = 0; i < fileCount; i++) + { + filesToZip[i] = Path.Combine(subdir, String.Format("file{0:D3}.bin", i)); + TestUtilities.CreateAndFillFileBinary(filesToZip[i], _rnd.Next(10000) + 5000); + TestContext.WriteLine("Creating {0} [{1}]", filesToZip[i], attributeCombos[i].ToString()); + File.SetAttributes(filesToZip[i], attributeCombos[i]); + } + + TestContext.WriteLine("============\nZipping."); + using (ZipFile zip = new ZipFile()) + { + for (int i = 0; i < filesToZip.Length; i++) + { + // use the local filename (not fully qualified) + ZipEntry e = zip.AddFile(filesToZip[i], ""); + } + zip.Save(zipFileToCreate); + } + + int entries = 0; + TestContext.WriteLine("============\nExtracting."); + using (ZipFile z2 = ZipFile.Read(zipFileToCreate)) + { + foreach (ZipEntry e in z2) + { + TestContext.WriteLine("Extracting {0}", e.FileName); + Assert.AreEqual + (attributeCombos[entries], + e.Attributes, + "unexpected attribute {0} 0x{1:X4}", + e.FileName, + (int)e.Attributes); + entries++; + e.Extract("unpack"); + // now verify that the attributes are set + // correctly in the filesystem + var attrs = File.GetAttributes(Path.Combine("unpack", e.FileName)); + Assert.AreEqual(attrs, e.Attributes, + "Unexpected attributes on the extracted filesystem file {0}.", e.FileName); + } + } + Assert.AreEqual(entries, + filesToZip.Length, + "Bad file count. Expected {0}, got {1}.", + filesToZip.Length, entries); + } + catch (Exception ex1) + { + TestContext.WriteLine("Exception: " + ex1); + throw; + } + } + + + + [TestMethod] + public void CreateAndExtract_SetAndVerifyAttributes() + { + string zipFileToCreate = "CreateAndExtract_SetAndVerifyAttributes.zip"; + + // Here, we build a list of combinations of FileAttributes + // to try. We cannot simply do an exhaustive combination + // because (a) not all combinations are valid, and (b) if + // you SetAttributes(file,Compressed) (also with Encrypted, + // ReparsePoint) it does not "work." So those attributes + // must be excluded. + FileAttributes[] attributeCombos = { + FileAttributes.ReadOnly, + FileAttributes.ReadOnly | FileAttributes.System, + FileAttributes.ReadOnly | FileAttributes.System | FileAttributes.Hidden, + FileAttributes.ReadOnly | FileAttributes.System | FileAttributes.Hidden | FileAttributes.Archive, + FileAttributes.ReadOnly | FileAttributes.Hidden, + FileAttributes.ReadOnly | FileAttributes.Hidden| FileAttributes.Archive, + FileAttributes.ReadOnly | FileAttributes.Archive, + FileAttributes.System, + FileAttributes.System | FileAttributes.Hidden, + FileAttributes.System | FileAttributes.Hidden | FileAttributes.Archive, + FileAttributes.System | FileAttributes.Archive, + FileAttributes.Hidden, + FileAttributes.Hidden | FileAttributes.Archive, + FileAttributes.Archive, + FileAttributes.Normal, + FileAttributes.NotContentIndexed | FileAttributes.ReadOnly, + FileAttributes.NotContentIndexed | FileAttributes.System, + FileAttributes.NotContentIndexed | FileAttributes.Hidden, + FileAttributes.NotContentIndexed | FileAttributes.Archive, + FileAttributes.Temporary, + FileAttributes.Temporary | FileAttributes.Archive, + }; + int fileCount = attributeCombos.Length; + + TestContext.WriteLine("============\nZipping."); + using (ZipFile zip = new ZipFile()) + { + for (int i = 0; i < fileCount; i++) + { + // use the local filename (not fully qualified) + ZipEntry e = zip.AddEntry("file" + i.ToString(), + "FileContent: This file has these attributes: " + attributeCombos[i].ToString()); + TestContext.WriteLine("Adding {0} [{1}]", e.FileName, attributeCombos[i].ToString()); + e.Attributes = attributeCombos[i]; + } + zip.Save(zipFileToCreate); + } + + int entries = 0; + TestContext.WriteLine("============\nExtracting."); + using (ZipFile z2 = ZipFile.Read(zipFileToCreate)) + { + foreach (ZipEntry e in z2) + { + TestContext.WriteLine("Extracting {0}", e.FileName); + Assert.AreEqual + (attributeCombos[entries], e.Attributes, + "unexpected attributes value in the entry {0} 0x{1:X4}", + e.FileName, + (int)e.Attributes); + entries++; + e.Extract("unpack"); + + // now verify that the attributes are set correctly in the filesystem + var attrs = File.GetAttributes(Path.Combine("unpack", e.FileName)); + Assert.AreEqual + (e.Attributes, attrs, + "Unexpected attributes on the extracted filesystem file {0}.", + e.FileName); + } + } + Assert.AreEqual(fileCount, entries, "Unexpected file count."); + } + + + [TestMethod] + [Timeout(1000 * 240)] // timeout in ms. 240s = 4 mins + public void CreateZip_VerifyFileLastModified() + { + string zipFileToCreate = "CreateZip_VerifyFileLastModified.zip"; + string envTemp = Environment.GetEnvironmentVariable("TEMP"); + String[] candidateFileNames = Directory.GetFiles(envTemp); + var checksums = new Dictionary(); + var timestamps = new Dictionary(); + var actualFilenames = new List(); + var excludedFilenames = new List(); + + int maxFiles = _rnd.Next(candidateFileNames.Length / 2) + candidateFileNames.Length / 3; + maxFiles = Math.Min(maxFiles, 145); + //maxFiles = Math.Min(maxFiles, 15); + TestContext.WriteLine("\n-----------------------------\r\n{1}: Finding files in '{0}'...", + envTemp, + DateTime.Now.ToString("HH:mm:ss")); + do + { + string filename = null; + bool foundOne = false; + while (!foundOne) + { + filename = candidateFileNames[_rnd.Next(candidateFileNames.Length)]; + if (excludedFilenames.Contains(filename)) continue; + var fi = new FileInfo(filename); + + if (Path.GetFileName(filename)[0] == '~' + || actualFilenames.Contains(filename) + || fi.Length > 10000000 + || Path.GetFileName(filename) == "dd_BITS.log" + // There WERE some weird files on my system that cause this + // test to fail! the GetLastWrite() method returns the + // "wrong" time - does not agree with what is shown in + // Explorer or in a cmd.exe dir output. So I exclude those + // files here. (This is no longer a problem?) + + //|| filename.EndsWith(".cer") + //|| filename.EndsWith(".msrcincident") + //|| filename == "MSCERTS.ini" + ) + { + excludedFilenames.Add(filename); + } + else + { + foundOne = true; + } + } + + var key = Path.GetFileName(filename); + + // surround this in a try...catch so as to avoid grabbing a file that is open by someone else, or has disappeared + try + { + var lastWrite = File.GetLastWriteTime(filename); + var fi = new FileInfo(filename); + + // Rounding to nearest even second was necessary when DotNetZip did + // not process NTFS times in the NTFS Extra field. Since v1.8.0.5, + // this is no longer the case. + // + // var tm = TestUtilities.RoundToEvenSecond(lastWrite); + + var tm = lastWrite; + // hop out of the try block if the file is from TODAY. (heuristic + // to avoid currently open files) + if ((tm.Year == DateTime.Now.Year) && (tm.Month == DateTime.Now.Month) && (tm.Day == DateTime.Now.Day)) + throw new Exception(); + var chk = TestUtilities.ComputeChecksum(filename); + checksums.Add(key, chk); + TestContext.WriteLine(" {4}: {1} {2} {3,-9} {0}", + Path.GetFileName(filename), + lastWrite.ToString("yyyy MMM dd HH:mm:ss"), + tm.ToString("yyyy MMM dd HH:mm:ss"), + fi.Length, + DateTime.Now.ToString("HH:mm:ss")); + timestamps.Add(key, this.AdjustTime_Win32ToDotNet(tm)); + actualFilenames.Add(filename); + } + catch + { + excludedFilenames.Add(filename); + } + } while ((actualFilenames.Count < maxFiles) && (actualFilenames.Count < candidateFileNames.Length) && + actualFilenames.Count + excludedFilenames.Count < candidateFileNames.Length); + + TestContext.WriteLine("{0}: Creating zip...", DateTime.Now.ToString("HH:mm:ss")); + + // create the zip file + using (ZipFile zip = new ZipFile()) + { + foreach (string s in actualFilenames) + { + ZipEntry e = zip.AddFile(s, ""); + e.Comment = File.GetLastWriteTime(s).ToString("yyyyMMMdd HH:mm:ss"); + } + zip.Comment = "The files in this archive will be checked for LastMod timestamp and checksum."; + TestContext.WriteLine("{0}: Saving zip....", DateTime.Now.ToString("HH:mm:ss")); + zip.Save(zipFileToCreate); + } + + TestContext.WriteLine("{0}: Unpacking zip....", DateTime.Now.ToString("HH:mm:ss")); + + // unpack the zip, and verify contents + int entries = 0; + using (ZipFile z2 = ZipFile.Read(zipFileToCreate)) + { + foreach (ZipEntry e in z2) + { + TestContext.WriteLine("{0}: Checking entry {1}....", DateTime.Now.ToString("HH:mm:ss"), e.FileName); + entries++; + // verify that the LastMod time on the filesystem file is set correctly + e.Extract("unpack"); + string pathToExtractedFile = Path.Combine("unpack", e.FileName); + DateTime actualFilesystemLastMod = AdjustTime_Win32ToDotNet(File.GetLastWriteTime(pathToExtractedFile)); + TimeSpan delta = timestamps[e.FileName] - actualFilesystemLastMod; + + // get the delta as an absolute value: + if (delta < new TimeSpan(0, 0, 0)) + delta = new TimeSpan(0, 0, 0) - delta; + + TestContext.WriteLine("time delta: {0}", delta.ToString()); + // The time delta can be at most, 1 second. + Assert.IsTrue(delta < new TimeSpan(0, 0, 1), + "Unexpected LastMod timestamp on extracted filesystem file ({0}) expected({1}) actual({2}) delta({3}).", + pathToExtractedFile, + timestamps[e.FileName].ToString("F"), + actualFilesystemLastMod.ToString("F"), + delta.ToString() + ); + + // verify the checksum of the file is correct + string expectedCheckString = TestUtilities.CheckSumToString(checksums[e.FileName]); + string actualCheckString = TestUtilities.GetCheckSumString(pathToExtractedFile); + Assert.AreEqual + (expectedCheckString, + actualCheckString, + "Unexpected checksum on extracted filesystem file ({0}).", + pathToExtractedFile); + } + } + Assert.AreEqual(entries, actualFilenames.Count, "Unexpected file count."); + } + + + + private DateTime AdjustTime_Win32ToDotNet(DateTime time) + { + // If I read a time from a file with GetLastWriteTime() (etc), I need + // to adjust it for display in the .NET environment. + if (time.Kind == DateTimeKind.Utc) return time; + DateTime adjusted = time; + if (DateTime.Now.IsDaylightSavingTime() && !time.IsDaylightSavingTime()) + adjusted = time + new System.TimeSpan(1, 0, 0); + + else if (!DateTime.Now.IsDaylightSavingTime() && time.IsDaylightSavingTime()) + adjusted = time - new System.TimeSpan(1, 0, 0); + + return adjusted; + } + + + + [TestMethod] + public void CreateZip_AddDirectory_NoFilesInRoot() + { + string zipFileToCreate = "CreateZip_AddDirectory_NoFilesInRoot.zip"; + string zipThis = "ZipThis"; + Directory.CreateDirectory(zipThis); + + int i, j; + int entries = 0; + + int subdirCount = _rnd.Next(4) + 4; + for (i = 0; i < subdirCount; i++) + { + string subdir = Path.Combine(zipThis, "DirectoryToZip.test." + i); + Directory.CreateDirectory(subdir); + + int fileCount = _rnd.Next(3) + 3; + for (j = 0; j < fileCount; j++) + { + String file = Path.Combine(subdir, "file" + j); + TestUtilities.CreateAndFillFile(file, _rnd.Next(1000) + 1500); + entries++; + } + } + + using (ZipFile zip = new ZipFile()) + { + zip.AddDirectory(zipThis); + zip.Save(zipFileToCreate); + } + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries, + "The Zip file has the wrong number of entries."); + } + + + [TestMethod] + public void CreateZip_AddDirectory_OneCharOverrideName() + { + int entries = 0; + String filename = null; + + // set the name of the zip file to create + string zipFileToCreate = "CreateZip_AddDirectory_OneCharOverrideName.zip"; + String commentOnArchive = "BasicTests::CreateZip_AddDirectory_OneCharOverrideName(): This archive override the name of a directory with a one-char name."; + + string subdir = "A"; + Directory.CreateDirectory(subdir); + + int numFilesToCreate = _rnd.Next(23) + 14; + var checksums = new Dictionary(); + for (int j = 0; j < numFilesToCreate; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(12000) + 5000); + var chk = TestUtilities.ComputeChecksum(filename); + + var relativePath = Path.Combine(Path.GetFileName(subdir), Path.GetFileName(filename)); + //var key = Path.Combine("A", filename); + var key = TestUtilities.TrimVolumeAndSwapSlashes(relativePath); + checksums.Add(key, TestUtilities.CheckSumToString(chk)); + + entries++; + } + + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddDirectory(subdir, Path.GetFileName(subdir)); + zip1.Comment = commentOnArchive; + zip1.Save(zipFileToCreate); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries); + + // validate all the checksums + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (ZipEntry e in zip2) + { + e.Extract("unpack"); + if (checksums.ContainsKey(e.FileName)) + { + string pathToExtractedFile = Path.Combine("unpack", e.FileName); + + // verify the checksum of the file is correct + string expectedCheckString = checksums[e.FileName]; + string actualCheckString = TestUtilities.GetCheckSumString(pathToExtractedFile); + Assert.AreEqual + (expectedCheckString, + actualCheckString, + "Unexpected checksum on extracted filesystem file ({0}).", + pathToExtractedFile); + } + } + } + + } + + + + [TestMethod] + public void CreateZip_CompressionLevelZero_AllEntries() + { + string zipFileToCreate = "CompressionLevelZero.zip"; + String commentOnArchive = "BasicTests::CompressionLevelZero(): This archive override the name of a directory with a one-char name."; + int entriesAdded = 0; + String filename = null; + string subdir = "A"; + Directory.CreateDirectory(subdir); + + int fileCount = _rnd.Next(10) + 10; + for (int j = 0; j < fileCount; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + entriesAdded++; + } + + using (ZipFile zip = new ZipFile()) + { + zip.CompressionLevel = Ionic.Zlib.CompressionLevel.None; + zip.AddDirectory(subdir, Path.GetFileName(subdir)); + zip.Comment = commentOnArchive; + zip.Save(zipFileToCreate); + } + + int entriesFound = 0; + using (ZipFile zip = ZipFile.Read(zipFileToCreate)) + { + foreach (ZipEntry e in zip) + { + if (!e.IsDirectory) entriesFound++; + Assert.AreEqual(0, (short)e.CompressionMethod, + "compression method"); + } + } + Assert.AreEqual(entriesAdded, entriesFound, + "unexpected number of entries."); + BasicVerifyZip(zipFileToCreate); + } + + + + [TestMethod] + public void CreateZip_ForceNoCompressionSomeEntries() + { + string zipFileToCreate = "ForceNoCompression.zip"; + String filename = null; + string subdir = "A"; + Directory.CreateDirectory(subdir); + int fileCount = _rnd.Next(13) + 13; + for (int j = 0; j < fileCount; j++) + { + filename = Path.Combine(subdir, String.Format("{0}-file{1:D3}.txt", (_rnd.Next(2) == 0) ? "C":"U", j)); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + } + + using (ZipFile zip = new ZipFile()) + { + String[] filenames = Directory.GetFiles("A"); + foreach (String f in filenames) + { + ZipEntry e = zip.AddFile(f, ""); + if (e.FileName.StartsWith("U")) + e.CompressionMethod = 0x0; + } + zip.Comment = "Some of these files do not use compression."; + zip.Save(zipFileToCreate); + } + + int entriesFound = 0; + using (ZipFile zip = ZipFile.Read(zipFileToCreate)) + { + foreach (ZipEntry e in zip) + { + if (!e.IsDirectory) entriesFound++; + Assert.AreEqual((e.FileName.StartsWith("U"))?0x00:0x08, + (Int32)e.CompressionMethod, + "Unexpected compression method on text file ({0}).", e.FileName); + } + } + Assert.AreEqual(fileCount, entriesFound, "The created Zip file has an unexpected number of entries."); + + BasicVerifyZip(zipFileToCreate); + } + + + + [TestMethod] + public void AddFile_CompressionMethod_None_wi9208() + { + string zipFileToCreate = "AddFile_CompressionMethod_None_wi9208.zip"; + string subdir = "A"; + Directory.CreateDirectory(subdir); + using (ZipFile zip = new ZipFile()) + { + string filename = Path.Combine(subdir, String.Format("FileToBeAdded-{0:D2}.txt", _rnd.Next(1000))); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + var e = zip.AddFile(filename,"zipped"); + e.CompressionMethod = CompressionMethod.None; + zip.Save(zipFileToCreate); + } + + TestContext.WriteLine("File zipped!..."); + TestContext.WriteLine("Reading..."); + + using (ZipFile zip = ZipFile.Read(zipFileToCreate)) + { + foreach (var e in zip) + { + Assert.AreEqual("None", e.CompressionMethod.ToString()); + } + } + BasicVerifyZip(zipFileToCreate); + } + + + + [TestMethod] + public void GetInfo() + { + TestContext.WriteLine("GetInfo"); + string zipFileToCreate = "GetInfo.zip"; + String filename = null; + int n; + string subdir = Path.Combine(TopLevelDir, + TestUtilities.GenerateRandomAsciiString(9)); + Directory.CreateDirectory(subdir); + + int fileCount = _rnd.Next(27) + 23; + TestContext.WriteLine("Creating {0} files", fileCount); + for (int j = 0; j < fileCount; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + if (_rnd.Next(7)!=0) + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + else + { + // create an empty file + using (var fs = File.Create(filename)) { } + } + } + + TestContext.WriteLine("Creating a zip file"); + using (ZipFile zip = new ZipFile()) + { + zip.Password = TestUtilities.GenerateRandomPassword(11); + var filenames = Directory.GetFiles(subdir); + foreach (String f in filenames) + { + ZipEntry e = zip.AddFile(f, ""); + if (_rnd.Next(3)==0) + e.CompressionMethod = 0x0; + n = _rnd.Next(crypto.Length); + e.Encryption = crypto[n]; + } + zip.Save(zipFileToCreate); + } + + TestContext.WriteLine("Calling ZipFile::Info_get"); + using (ZipFile zip = ZipFile.Read(zipFileToCreate)) + { + string info = zip.Info; + TestContext.WriteLine("Info: (len({0}))", info.Length); + foreach (var line in info.Split('\n')) + TestContext.WriteLine(line); + + Assert.IsTrue(info.Length > 300, + "Suspect info string (length({0}))", + info.Length); + } + } + + + + [TestMethod] + public void Create_WithChangeDirectory() + { + string zipFileToCreate = "Create_WithChangeDirectory.zip"; + String filename = "Testfile.txt"; + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + + string cwd = Directory.GetCurrentDirectory(); + using (var zip = new ZipFile()) + { + zip.AddFile(filename, ""); + Directory.SetCurrentDirectory("\\"); + zip.AddFile("dev\\codeplex\\DotNetZip\\Zip Tests\\BasicTests.cs", ""); + Directory.SetCurrentDirectory(cwd); + zip.Save(zipFileToCreate); + } + } + + + + + private void VerifyEntries(string zipFile, + Variance variance, + int[] values, + EncryptionAlgorithm[] a, + int stage, + int compFlavor, + int encryptionFlavor) + { + using (var zip = ZipFile.Read(zipFile)) + { + foreach (ZipEntry e in zip) + { + var compCheck = false; + if (variance == Variance.Method) + { + compCheck = (e.CompressionMethod == (CompressionMethod)values[stage]); + } + else + { + // Variance.Level + CompressionMethod expectedMethod = + ((Ionic.Zlib.CompressionLevel)values[stage] == Ionic.Zlib.CompressionLevel.None) + ? CompressionMethod.None + : CompressionMethod.Deflate; + compCheck = (e.CompressionMethod == expectedMethod); + } + + Assert.IsTrue(compCheck, + "Unexpected compression method ({0}) on entry ({1}) variance({2}) flavor({3},{4}) stage({5})", + e.CompressionMethod, + e.FileName, + variance, + compFlavor, encryptionFlavor, + stage + ); + + var cryptoCheck = (e.Encryption == a[stage]); + + Assert.IsTrue(cryptoCheck, + "Unexpected encryption ({0}) on entry ({1}) variance({2}) flavor({3},{4}) stage({5})", + e.Encryption, + e.FileName, + variance, + compFlavor, + encryptionFlavor, + stage + ); + } + } + } + + + + private void QuickCreateZipAndChecksums(string zipFile, + Variance variance, + object compressionMethodOrLevel, + EncryptionAlgorithm encryption, + string password, + out string[] files, + out Dictionary checksums + ) + { + string srcDir = TestUtilities.GetTestSrcDir(CurrentDir); + files = Directory.GetFiles(srcDir, "*.cs", SearchOption.TopDirectoryOnly); + checksums = new Dictionary(); + foreach (string f in files) + { + var chk = TestUtilities.ComputeChecksum(f); + var key = Path.GetFileName(f); + checksums.Add(key, chk); + } + + using (var zip = new ZipFile()) + { + if (variance == Variance.Level) + { + zip.CompressionLevel= (Ionic.Zlib.CompressionLevel) compressionMethodOrLevel; + } + else + { + if ((Ionic.Zip.CompressionMethod)compressionMethodOrLevel == CompressionMethod.None) + zip.CompressionLevel = Ionic.Zlib.CompressionLevel.None; + } + + if (password != null) + { + zip.Password = password; + zip.Encryption = encryption; + } + zip.AddFiles(files, ""); + zip.Save(zipFile); + } + + int count = TestUtilities.CountEntries(zipFile); + Assert.IsTrue(count > 5, + "Unexpected number of entries ({0}) in the zip file.", count); + } + + enum Variance + { + Method = 0 , + Level = 1 + } + + + private string GeneratePassword() + { + return TestUtilities.GenerateRandomPassword(); + //return TestUtilities.GenerateRandomAsciiString(9); + //return "Alphabet"; + } + + private void _Internal_Resave(string zipFile, + Variance variance, + int[] values, + EncryptionAlgorithm[] cryptos, + int compFlavor, + int encryptionFlavor + ) + { + // Create a zip file, then re-save it with changes in compression methods, + // compression levels, and/or encryption. The methods/levels, cryptos are + // for original and re-saved values. This tests whether we can update a zip + // entry with changes in those properties. + + string[] passwords = new string[2]; + passwords[0]= (cryptos[0]==EncryptionAlgorithm.None) ? null : GeneratePassword(); + passwords[1]= passwords[0] ?? ((cryptos[1]==EncryptionAlgorithm.None) ? null : GeneratePassword()); + + //TestContext.WriteLine(" crypto: '{0}' '{1}'", crypto[0]??"-NONE-", passwords[1]??"-NONE-"); + TestContext.WriteLine(" crypto: '{0}' '{1}'", cryptos[0], cryptos[1]); + + + // first, create a zip file + string[] filesToZip; + Dictionary checksums; + QuickCreateZipAndChecksums(zipFile, variance, values[0], cryptos[0], passwords[0], out filesToZip, out checksums); + + + // check that the zip was constructed as expected + VerifyEntries(zipFile, variance, values, cryptos, 0, compFlavor, encryptionFlavor); + + + // modify some properties (CompressionLevel, CompressionMethod, and/or Encryption) on each entry + using (var zip = ZipFile.Read(zipFile)) + { + zip.Password = passwords[1]; + foreach (ZipEntry e in zip) + { + if (variance == Variance.Method) + e.CompressionMethod = (CompressionMethod)values[1]; + else + e.CompressionLevel = (Ionic.Zlib.CompressionLevel)values[1]; + + e.Encryption = cryptos[1]; + } + zip.Save(); + } + + + // Check that the zip was modified as expected + VerifyEntries(zipFile, variance, values, cryptos, 1, compFlavor, encryptionFlavor); + + // now extract the items and verify checksums + string extractDir = "ex"; + int c=0; + while (Directory.Exists(extractDir + c)) c++; + extractDir += c; + + // extract + using (var zip = ZipFile.Read(zipFile)) + { + zip.Password = passwords[1]; + zip.ExtractAll(extractDir); + } + + VerifyChecksums(extractDir, filesToZip, checksums); + } + + + + + + EncryptionAlgorithm[][] CryptoPairs = { + new EncryptionAlgorithm[] {EncryptionAlgorithm.None, EncryptionAlgorithm.None}, + new EncryptionAlgorithm[] {EncryptionAlgorithm.None, EncryptionAlgorithm.WinZipAes128}, + new EncryptionAlgorithm[] {EncryptionAlgorithm.WinZipAes128, EncryptionAlgorithm.None}, + new EncryptionAlgorithm[] {EncryptionAlgorithm.WinZipAes128, EncryptionAlgorithm.WinZipAes128}, + new EncryptionAlgorithm[] {EncryptionAlgorithm.None, EncryptionAlgorithm.PkzipWeak}, + new EncryptionAlgorithm[] {EncryptionAlgorithm.PkzipWeak, EncryptionAlgorithm.None}, + new EncryptionAlgorithm[] {EncryptionAlgorithm.WinZipAes128, EncryptionAlgorithm.PkzipWeak}, + new EncryptionAlgorithm[] {EncryptionAlgorithm.PkzipWeak, EncryptionAlgorithm.WinZipAes128} + }; + + int[][][] VariancePairs = { + new int[][] { + new int[] {(int)CompressionMethod.Deflate, (int)CompressionMethod.Deflate}, + new int[] {(int)CompressionMethod.Deflate, (int)CompressionMethod.None}, + new int[] {(int)CompressionMethod.None, (int)CompressionMethod.Deflate}, + new int[] {(int)CompressionMethod.None, (int)CompressionMethod.None} + }, + new int[][] { + new int[] {(int)Ionic.Zlib.CompressionLevel.Default, (int)Ionic.Zlib.CompressionLevel.Default}, + new int[] {(int)Ionic.Zlib.CompressionLevel.Default, (int)Ionic.Zlib.CompressionLevel.None}, + new int[] {(int)Ionic.Zlib.CompressionLevel.None, (int)Ionic.Zlib.CompressionLevel.Default}, + new int[] {(int)Ionic.Zlib.CompressionLevel.None, (int)Ionic.Zlib.CompressionLevel.None} + } + }; + + private void _Internal_Resave(Variance variance, int compFlavor, int encryptionFlavor) + { + // Check that re-saving a zip, after modifying properties on + // each entry, actually does what we want. + if (encryptionFlavor == 0) + TestContext.WriteLine("Resave workdir: {0}", TopLevelDir); + + string rootname = String.Format("Resave_Compression{0}_{1}_Encryption_{2}.zip", + variance, compFlavor, encryptionFlavor); + + string zipFileToCreate = Path.Combine(TopLevelDir, rootname); + int[] values = VariancePairs[(int)variance][compFlavor]; + + TestContext.WriteLine("Resave {0} {1} {2} file({3})", variance, compFlavor, encryptionFlavor, Path.GetFileName(zipFileToCreate)); + + _Internal_Resave(zipFileToCreate, variance, values, CryptoPairs[encryptionFlavor], compFlavor, encryptionFlavor); + } + + + [TestMethod] + public void Resave_CompressionMethod_0() + { + for (int i=0; i<8; i++) + { + _Internal_Resave(Variance.Method, 0, i); + } + } + + + [TestMethod] + public void Resave_CompressionMethod_1() + { + for (int i=0; i<8; i++) + { + if (i!=3) + _Internal_Resave(Variance.Method, 1, i); + } + } + + [TestMethod] + public void Resave_CompressionMethod_2() + { + for (int i=0; i<8; i++) + { + _Internal_Resave(Variance.Method, 2, i); + } + } + + [TestMethod] + public void Resave_CompressionMethod_3() + { + for (int i=0; i<8; i++) + { + _Internal_Resave(Variance.Method, 3, i); + } + } + + + [TestMethod] + public void Resave_CompressionLevel_0() + { + for (int i=0; i<8; i++) + { + _Internal_Resave(Variance.Level, 0, i); + } + } + + + [TestMethod] + public void Resave_CompressionLevel_1() + { + for (int i=0; i<8; i++) + { + if (i!=3) + _Internal_Resave(Variance.Level, 1, i); + } + } + + [TestMethod] + public void Resave_CompressionLevel_2() + { + for (int i=0; i<8; i++) + { + _Internal_Resave(Variance.Level, 2, i); + } + } + + [TestMethod] + public void Resave_CompressionLevel_3() + { + for (int i=0; i<8; i++) + { + _Internal_Resave(Variance.Level, 3, i); + } + } + + } +} diff --git a/src/Zip Tests/Compatibility.cs b/old/src/Zip Tests/Compatibility.cs similarity index 97% rename from src/Zip Tests/Compatibility.cs rename to old/src/Zip Tests/Compatibility.cs index d09e43f..316f54d 100644 --- a/src/Zip Tests/Compatibility.cs +++ b/old/src/Zip Tests/Compatibility.cs @@ -1,2644 +1,2644 @@ -// Compatibility.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009-2011 Dino Chiesa . -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-August-05 18:32:33> -// -// ------------------------------------------------------------------ -// -// This module defines the tests for compatibility for DotNetZip. The -// idea is to verify that DotNetZip can read the zip files produced by -// other tools, and that other tools can read the output produced -// by DotNetZip. The tools and libraries tested are: -// - WinZip -// - 7zip -// - Infozip (unzip 6.0, zip 3.0) -// - Perl's IO::Compress -// - zipfldr.dll (via script) -// - the Visual Studio DLL -// - MS-Word -// -// ------------------------------------------------------------------ - - -using System; -using System.Text; -using System.Collections.Generic; -using System.Linq; -using Microsoft.VisualStudio.TestTools.UnitTesting; - -using Ionic.Zip; -using Ionic.Zip.Tests.Utilities; -using System.IO; - - -namespace Ionic.Zip.Tests -{ - /// - /// Summary description for Compatibility - /// - [TestClass] - public class Compatibility : IonicTestClass - { - EncryptionAlgorithm[] crypto = - { - EncryptionAlgorithm.None, - EncryptionAlgorithm.PkzipWeak, - EncryptionAlgorithm.WinZipAes128, - EncryptionAlgorithm.WinZipAes256, - }; - - Ionic.Zlib.CompressionLevel[] compLevels = - { - Ionic.Zlib.CompressionLevel.None, - Ionic.Zlib.CompressionLevel.BestSpeed, - Ionic.Zlib.CompressionLevel.Default, - Ionic.Zlib.CompressionLevel.BestCompression, - }; - - - [ClassInitialize()] - public static void MyClassInitialize(TestContext testContext) - { - // get the path to the DotNetZip DLL - string SourceDir = System.IO.Directory.GetCurrentDirectory(); - for (int i = 0; i < 3; i++) - SourceDir = Path.GetDirectoryName(SourceDir); - - IonicZipDll = Path.Combine(SourceDir, "Zip\\bin\\Debug\\DotNetZip.dll"); - - Assert.IsTrue(File.Exists(IonicZipDll), "DLL ({0}) does not exist", IonicZipDll); - - // register it for COM interop - string output; - - int rc = TestUtilities.Exec_NoContext(RegAsm, String.Format("\"{0}\" /codebase /verbose", IonicZipDll), out output); - if (rc != 0) - { - string cmd = String.Format("{0} \"{1}\" /codebase /verbose", RegAsm, IonicZipDll); - throw new Exception(String.Format("Failed to register DotNetZip with COM rc({0}) cmd({1}) out({2})", rc, cmd, output)); - } - } - - - [ClassCleanup()] - public static void MyClassCleanup() - { - string output; - // unregister the DLL for COM interop - int rc = TestUtilities.Exec_NoContext(RegAsm, String.Format("\"{0}\" /unregister /verbose", IonicZipDll), out output); - if (rc != 0) - throw new Exception(String.Format("Failed to unregister DotNetZip with COM rc({0}) ({1})", rc, output)); - } - - - private static string IonicZipDll; - private static string RegAsm = "c:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\regasm.exe"; - - - - private System.Reflection.Assembly _myself; - private System.Reflection.Assembly myself - { - get - { - if (_myself == null) - { - _myself = System.Reflection.Assembly.GetExecutingAssembly(); - } - return _myself; - } - } - - - private string _windir = null; - private string windir - { - get - { - if (_windir == null) - { - _windir = System.Environment.GetEnvironmentVariable("Windir"); - Assert.IsTrue(Directory.Exists(_windir), "%windir% does not exist ({0})", _windir); - } - return _windir; - } - } - - - - private string _perl = null; - private string perl - { - get - { - if (_perl == null) - { - var sysPath = Environment.GetEnvironmentVariable("Path"); - var pathElts = sysPath.Split(';'); - foreach (var elt in pathElts) - { - var putative = Path.Combine(elt, "perl.exe"); - if (File.Exists(putative)) - { - _perl = putative; - break; - } - } - Assert.IsTrue(File.Exists(_perl), "Cannot find perl.exe"); - } - return _perl; - } - } - - - - private string _cscriptExe = null; - private string cscriptExe - { - get - { - if (_cscriptExe == null) - { - _cscriptExe = Path.Combine(Path.Combine(windir, "system32"), "cscript.exe"); - Assert.IsTrue(File.Exists(_cscriptExe), "cscript.exe does not exist ({0})", _cscriptExe); - } - return _cscriptExe; - } - } - - - private string GetScript(string scriptName) - { - // check existence of script and script engine - string testBin = TestUtilities.GetTestBinDir(CurrentDir); - string resourceDir = Path.Combine(testBin, "Resources"); - string script = Path.Combine(resourceDir, scriptName); - Assert.IsTrue(File.Exists(script), "script ({0}) does not exist", script); - return script; - } - - private void VerifyFileTimes(string extractDir, - IEnumerable filesToCheck, - bool applyShellAllowance, - bool checkNtfsTimes, - int thresholdNanoseconds) - { - TestContext.WriteLine(""); - TestContext.WriteLine("Verify file times..."); - TimeSpan threshold = new TimeSpan(thresholdNanoseconds); - TestContext.WriteLine("Using threshold: ({0})", threshold.ToString()); - - foreach (var fqPath in filesToCheck) - { - var f = Path.GetFileName(fqPath); - var extractedFile = Path.Combine(extractDir, f); - Assert.IsTrue(File.Exists(extractedFile), "File does not exist ({0})", extractedFile); - - // check times - DateTime t1 = File.GetLastWriteTimeUtc(fqPath); - DateTime t2 = File.GetLastWriteTimeUtc(extractedFile); - TestContext.WriteLine("{0} lastwrite orig({1}) extracted({2})", - Path.GetFileName(fqPath), - t1.ToString("G"), - t2.ToString("G")); - - TimeSpan delta = (t1 > t2) ? t1 - t2 : t2 - t1; - if (checkNtfsTimes) - { - Assert.AreEqual(t1, t2, "LastWriteTime delta actual({0}) expected({1})", delta.ToString(), threshold.ToString()); - t1 = File.GetCreationTimeUtc(fqPath); - t2 = File.GetCreationTimeUtc(extractedFile); - delta = (t1 > t2) ? t1 - t2 : t2 - t1; - Assert.IsTrue(delta <= threshold, "CreationTime delta actual({0}) expected({1})", delta.ToString(), threshold.ToString()); - } - else - { - if (applyShellAllowance) - { - if (delta > threshold) - { - // In some cases - specifically when the file lastmod time - // is on the other side of a DST event - extracting with the - // shell gets a time on the extracted file that is 1 hour - // off the expected value. This doesn't happen when WinZip - // or DotNetZip is used for extraction - only when using the - // shell extension. In those cases we can allow for the - // extra hour. - TestContext.WriteLine("Adjusting delta for shell allowance..."); - delta -= new TimeSpan(1, 0, 0); // 1 hour - } - } - - Assert.IsTrue(delta <= threshold, - "LastWriteTime delta actual({0}) expected({1})", - delta.ToString(), - threshold.ToString()); - } - } - } - - - private void VerifyTimesUnix(string extractDir, IEnumerable filesToCheck) - { - VerifyFileTimes(extractDir, filesToCheck, true, false, - 10000 * 1000); // 1 second for unix - } - - private void VerifyTimesNtfs(string extractDir, IEnumerable filesToCheck) - { - VerifyFileTimes(extractDir, filesToCheck, true, false, - 100 * 1000); // default 0.01s for NTFS - } - - private void VerifyTimesDos(string extractDir, IEnumerable filesToCheck) - { - VerifyFileTimes(extractDir, filesToCheck, false, false, - 20000 * 1000); // 2 seconds for DOS times - - } - - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void Error_ZipFile_Initialize_Error() - { - string notaZipFile = GetScript("VbsUnzip-ShellApp.vbs"); - - // try to read a bogus zip archive - //Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - zip1.Initialize(notaZipFile); - } - } - - - - - [TestMethod] - public void ShellApplication_Unzip() - { - // get a set of files to zip up - string subdir = Path.Combine(TopLevelDir, "files"); - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - var script = GetScript("VbsUnzip-ShellApp.vbs"); - - int i = 0; - foreach (var compLevel in compLevels) - { - // create and fill the directories - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("ShellApplication_Unzip.{0}.zip", i)); - string extractDir = Path.Combine(TopLevelDir, String.Format("extract.{0}", i)); - - // Create the zip archive - //Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - zip1.CompressionLevel = (Ionic.Zlib.CompressionLevel)compLevel; - //zip.StatusMessageTextWriter = System.Console.Out; - for (int j = 0; j < filesToZip.Length; j++) - zip1.AddItem(filesToZip[j], "files"); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // run the unzip script - this.Exec(cscriptExe, - String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, extractDir)); - - // check the files in the extract dir - VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); - - // verify the file times - VerifyTimesDos(Path.Combine(extractDir, "files"), filesToZip); - i++; - } - } - - - [TestMethod] - public void ShellApplication_Unzip_NonSeekableOutput() - { - // get a set of files to zip up - string subdir = Path.Combine(TopLevelDir, "files"); - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - var script = GetScript("VbsUnzip-ShellApp.vbs"); - - int i = 0; - foreach (var compLevel in compLevels) - { - // create and fill the directories - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("ShellApplication_Unzip_NonSeekableOutput.{0}.zip", i)); - string extractDir = Path.Combine(TopLevelDir, String.Format("extract.{0}", i)); - - // Create the zip archive - //Directory.SetCurrentDirectory(TopLevelDir); - - // Want to test the library when saving to non-seekable output streams. Like - // stdout or ASPNET's Response.OutputStream. This simulates it. - using (var rawOut = System.IO.File.Create(zipFileToCreate)) - { - using (var nonSeekableOut = new Ionic.Zip.Tests.NonSeekableOutputStream(rawOut)) - { - using (ZipFile zip1 = new ZipFile()) - { - zip1.CompressionLevel = (Ionic.Zlib.CompressionLevel)compLevel; - for (int j = 0; j < filesToZip.Length; j++) - zip1.AddItem(filesToZip[j], "files"); - zip1.Save(nonSeekableOut); - } - } - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // run the unzip script - this.Exec(cscriptExe, - String.Format("\"{0}\" {1} {2}", script, - Path.GetFileName(zipFileToCreate), - Path.GetFileName(extractDir))); - - // check the files in the extract dir - VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); - - VerifyFileTimes(Path.Combine(extractDir, "files"), filesToZip, - false, false, 20000 * 1000); // 2s threshold for DOS times - i++; - } - } - - -#if SHELLAPP_UNZIP_SFX - - [TestMethod] - public void ShellApplication_Unzip_SFX() - { - // get a set of files to zip up - string subdir = Path.Combine(TopLevelDir, "files"); - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - var script = GetScript("VbsUnzip-ShellApp.vbs"); - - int i=0; - foreach (var compLevel in compLevels) - { - // create and fill the directories - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("ShellApp_Unzip_SFX.{0}.exe", i)); - string extractDir = Path.Combine(TopLevelDir, String.Format("extract.{0}",i)); - - // Create the zip archive - using (ZipFile zip1 = new ZipFile()) - { - zip1.CompressionLevel = (Ionic.Zlib.CompressionLevel) compLevel; - //zip.StatusMessageTextWriter = System.Console.Out; - for (int j = 0; j < filesToZip.Length; j++) - zip1.AddItem(filesToZip[j], "files"); - zip1.SaveSelfExtractor(zipFileToCreate, SelfExtractorFlavor.ConsoleApplication); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // run the unzip script - this.Exec(cscriptExe, - String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, extractDir)); - - // check the files in the extract dir - VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); - - // verify the file times - VerifyTimesDos(Path.Combine(extractDir, "files"), filesToZip); - i++; - } - } -#endif - - - - [TestMethod] - public void ShellApplication_Unzip_2() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "ShellApplication_Unzip-2.zip"); - // create and fill the directories - string extractDir = Path.Combine(TopLevelDir, "extract"); - var checksums = new Dictionary(); - var filesToZip = GetSelectionOfTempFiles(_rnd.Next(13) + 8, checksums); - - // Create the zip archive - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddFiles(filesToZip, "files"); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Count, - "Incorrect number of entries in the zip file."); - - // run the unzip script - string script = GetScript("VbsUnzip-ShellApp.vbs"); - - this.Exec(cscriptExe, - String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, extractDir)); - - // check the files in the extract dir - VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); - - #if IN_A_SANE_WORLD - // !! - // I think the file times get messed up using the Shell to unzip. - // !! - - // verify the file times - VerifyTimesDos(Path.Combine(extractDir, "files"), filesToZip); - #endif - } - - - - [TestMethod] - public void ShellApplication_SelectedFiles_Unzip() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "ShellApplication_SelectedFiles_Unzip.zip"); - - TestContext.WriteLine("ZipFile version: {0}", ZipFile.LibraryVersion); - - // create and fill the directories - string extractDir = "extract"; - string dirToZip = "files"; - TestContext.WriteLine("creating dir '{0}' with files", dirToZip); - Directory.CreateDirectory(dirToZip); - - int numFilesToAdd = _rnd.Next(5) + 6; - int numFilesAdded = 0; - int baseSize = _rnd.Next(0x100ff) + 8000; - int nFilesInSubfolders = 0; - Dictionary checksums = new Dictionary(); - var flist = new List(); - for (int i = 0; i < numFilesToAdd && nFilesInSubfolders < 2; i++) - { - string fileName = string.Format("Test{0}.txt", i); - if (i != 0) - { - int x = _rnd.Next(4); - if (x != 0) - { - string folderName = string.Format("folder{0}", x); - fileName = Path.Combine(folderName, fileName); - if (!Directory.Exists(Path.Combine(dirToZip, folderName))) - Directory.CreateDirectory(Path.Combine(dirToZip, folderName)); - nFilesInSubfolders++; - } - } - fileName = Path.Combine(dirToZip, fileName); - TestUtilities.CreateAndFillFileBinary(fileName, baseSize + _rnd.Next(28000)); - var key = Path.GetFileName(fileName); - var chk = TestUtilities.ComputeChecksum(fileName); - checksums.Add(key, chk); - flist.Add(fileName); - numFilesAdded++; - } - - // Create the zip archive - var sw = new System.IO.StringWriter(); - using (ZipFile zip1 = new ZipFile()) - { - zip1.StatusMessageTextWriter = sw; - //zip1.StatusMessageTextWriter = Console.Out; - zip1.AddSelectedFiles("*.*", dirToZip, "", true); - zip1.Save(zipFileToCreate); - } - TestContext.WriteLine(sw.ToString()); - - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), numFilesAdded, - "Incorrect number of entries in the zip file."); - - // run the unzip script - string script = GetScript("VbsUnzip-ShellApp.vbs"); - - this.Exec(cscriptExe, - String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, Path.Combine(TopLevelDir, extractDir))); - - // check the files in the extract dir - foreach (var fqPath in flist) - { - var f = Path.GetFileName(fqPath); - var extractedFile = fqPath.Replace("files", "extract"); - Assert.IsTrue(File.Exists(extractedFile), "File does not exist ({0})", extractedFile); - var chk = TestUtilities.ComputeChecksum(extractedFile); - Assert.AreEqual(TestUtilities.CheckSumToString(checksums[f]), - TestUtilities.CheckSumToString(chk), - String.Format("Checksums for file {0} do not match.", f)); - checksums.Remove(f); - } - - Assert.AreEqual(0, checksums.Count, "Not all of the expected files were found in the extract directory."); - } - - - - - [TestMethod] - public void ShellApplication_Zip() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "ShellApplication_Zip.zip"); - //Directory.SetCurrentDirectory(TopLevelDir); - - string subdir = Path.Combine(TopLevelDir, "files"); - string extractDir = "extract"; - - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - // Create the zip archive via script - string script = GetScript("VbsCreateZip-ShellApp.vbs"); - - this.Exec(cscriptExe, - String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, subdir)); - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // unzip - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - zip1.ExtractAll(extractDir); - } - - // check the files in the extract dir - VerifyChecksums(extractDir, filesToZip, checksums); - - VerifyTimesDos(extractDir, filesToZip); - } - - - [TestMethod] - public void ShellApplication_Zip_2() - { - string zipFileToCreate = "ShellApplication_Zip.zip"; - string subdir = "files"; - string extractDir = "extract"; - - TestContext.WriteLine("======================================================"); - - Dictionary checksums = new Dictionary(); - var filesToZip = GetSelectionOfTempFiles(_rnd.Next(33) + 11, checksums); - - Directory.CreateDirectory(subdir); - Directory.SetCurrentDirectory(subdir); - var w = System.Environment.GetEnvironmentVariable("Windir"); - Assert.IsTrue(Directory.Exists(w), "%windir% does not exist ({0})", w); - var fsutil = Path.Combine(Path.Combine(w, "system32"), "fsutil.exe"); - Assert.IsTrue(File.Exists(fsutil), "fsutil.exe does not exist ({0})", fsutil); - string ignored; - - TestContext.WriteLine("validating the list of files..."); - List markedForRemoval = new List (); - // remove those with spaces in the names. The ShellApp (zipfldr.dll) doesn't - // deal with these files very well. Or something. - foreach (var f in filesToZip) - { - if (Path.GetFileName(f).IndexOf(' ') > 0) - markedForRemoval.Add(f); - } - - foreach (var f in markedForRemoval) - { - TestContext.WriteLine("removing {0}...", Path.GetFileName(f)); - filesToZip.Remove(f); - checksums.Remove(Path.GetFileName(f)); - } - - TestContext.WriteLine("--------------------------------------------"); - TestContext.WriteLine("creating links..."); - foreach (var f in filesToZip) - { - string shortfile= Path.GetFileName(f); - Assert.IsTrue(File.Exists(f)); - string cmd = String.Format("hardlink create \"{0}\" \"{1}\"", shortfile, f); - TestUtilities.Exec_NoContext(fsutil, cmd, out ignored); - } - - TestContext.WriteLine("++++++++++++++++++++++++++++++++++++++++++++++++++++++"); - // Create the zip archive via script - Directory.SetCurrentDirectory(TopLevelDir); - string script = GetScript("VbsCreateZip-ShellApp.vbs"); - - this.Exec(cscriptExe, - String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, subdir)); - - // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - // DEBUGGING! - if (TestUtilities.CountEntries(zipFileToCreate) != filesToZip.Count) - { - string[] linkedFiles = Directory.GetFiles(subdir); - - Action, string> ListFiles = (list, name) => - { - TestContext.WriteLine("**********************************"); - TestContext.WriteLine("files in ({0})", name); - foreach (var s in list) - { - TestContext.WriteLine(" {0}", Path.GetFileName(s)); - } - TestContext.WriteLine("----------------------------------"); - TestContext.WriteLine(" {0} total files", list.Count()); - }; - - ListFiles(linkedFiles, "Linked Files"); - ListFiles(filesToZip, "selected Files"); - - IEnumerable selection = null; - using (var zip = ZipFile.Read(zipFileToCreate)) - { - selection = from e in zip.Entries select e.FileName; - } - - ListFiles(selection, "zipped Files"); - - foreach (var file in linkedFiles) - { - if (!selection.Contains(Path.GetFileName(file))) - { - TestContext.WriteLine("Missing: {0}", Path.GetFileName(file)); - } - } - } - // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Count, - "Incorrect number of entries in the zip file."); - - // unzip - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - zip1.ExtractAll(extractDir); - } - - // check the files in the extract dir - VerifyChecksums(extractDir, filesToZip, checksums); - - VerifyTimesDos(extractDir, filesToZip); - } - - - - [TestMethod] - public void VStudio_Zip() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "VStudio_Zip.zip"); - string subdir = Path.Combine(TopLevelDir, "files"); - string extractDir = "extract"; - - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - //Directory.SetCurrentDirectory(TopLevelDir); - - String[] a = Array.ConvertAll(filesToZip, x => Path.GetFileName(x)); - Microsoft.VisualStudio.Zip.ZipFileCompressor zfc = new Microsoft.VisualStudio.Zip.ZipFileCompressor(zipFileToCreate, "files", a, true); - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // unzip - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - zip1.ExtractAll(extractDir); - } - - // check the files in the extract dir - VerifyChecksums(extractDir, filesToZip, checksums); - - // visual Studio's ZIP library doesn't bother with times... - //VerifyNtfsTimes(extractDir, filesToZip); - } - - - - [TestMethod] - [Timeout(3 * 60 * 1000)] // timeout in ms. - public void VStudio_UnZip() - { - string zipFileToCreate = "VStudio_UnZip.zip"; - string shortDir = "files"; - string subdir = Path.Combine(TopLevelDir, shortDir); - string extractDir = "extract"; - - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - // Create the zip archive - //Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - for (int i = 0; i < filesToZip.Length; i++) - zip1.AddItem(filesToZip[i], shortDir); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // unzip - var decompressor = new Microsoft.VisualStudio.Zip.ZipFileDecompressor(zipFileToCreate, false, true, false); - decompressor.UncompressToFolder(extractDir, false); - - // check the files in the extract dir - VerifyChecksums(Path.Combine(extractDir, shortDir), filesToZip, checksums); - - // visual Studio's ZIP library doesn't bother with times... - //VerifyNtfsTimes(Path.Combine(extractDir, "files"), filesToZip); - } - - - - [TestMethod] - public void COM_Zip() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "COM_Zip.zip"); - string shortDir = "files"; - string subdir = Path.Combine(TopLevelDir, shortDir); - string extractDir = "extract"; - - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - // run the COM script to create the ZIP archive - string script = GetScript("VbsCreateZip-DotNetZip.vbs"); - - this.Exec(cscriptExe, - String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, subdir)); - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // unzip - //Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - zip1.ExtractAll(extractDir); - } - - // check the files in the extract dir - VerifyChecksums(extractDir, filesToZip, checksums); - - VerifyTimesNtfs(extractDir, filesToZip); - } - - - - [TestMethod] - public void COM_Unzip() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "COM_Unzip.zip"); - - // construct the directories - //string ExtractDir = Path.Combine(TopLevelDir, "extract"); - string extractDir = "extract"; - string shortDir = "files"; - string subdir = Path.Combine(TopLevelDir, shortDir); - - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - // Create the zip archive - //Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - for (int i = 0; i < filesToZip.Length; i++) - zip1.AddItem(filesToZip[i], shortDir); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "Incorrect number of entries in the zip file."); - - - // run the COM script to unzip the ZIP archive - string script = GetScript("VbsUnzip-DotNetZip.vbs"); - this.Exec(cscriptExe, - String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, extractDir)); - - // check the files in the extract dir - VerifyChecksums(Path.Combine(extractDir, shortDir), filesToZip, checksums); - - VerifyTimesNtfs(Path.Combine(extractDir, shortDir), filesToZip); - } - - - [TestMethod] - public void COM_Check() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "COM_Check.zip"); - - // create and fill the directories - string subdir = Path.Combine(TopLevelDir, "files"); - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - // Create the zip archive - //Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - for (int i = 0; i < filesToZip.Length; i++) - zip1.AddItem(filesToZip[i], "files"); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // run the COM script to check the ZIP archive - string script = GetScript("TestCheckZip.js"); - - string testOut = this.Exec(cscriptExe, - String.Format("\"{0}\" {1}", script, zipFileToCreate)); - - Assert.IsTrue(testOut.StartsWith("That zip is OK")); - } - - - [TestMethod] - public void COM_CheckWithExtract() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "COM_CheckWithExtract.zip"); - - // create and fill the directories - string subdir = Path.Combine(TopLevelDir, "files"); - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - // Create the zip archive - //Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - for (int i = 0; i < filesToZip.Length; i++) - zip1.AddItem(filesToZip[i], "files"); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // run the COM script to check and test-extract the ZIP archive - string script = GetScript("TestCheckZip.js"); - - string testOut = this.Exec(cscriptExe, - String.Format("\"{0}\" -x {1}", script, zipFileToCreate)); - - Assert.IsTrue(testOut.StartsWith("That zip is OK"), "output: {0}", testOut); - } - - - [TestMethod] - public void COM_CheckError() - { - //Directory.SetCurrentDirectory(TopLevelDir); - - // run the COM script to check the (not) ZIP archive - string script = GetScript("TestCheckZip.js"); - - string testOut = this.Exec(cscriptExe, - String.Format("\"{0}\" {1}", script, cscriptExe)); - - Assert.IsTrue(testOut.StartsWith("That zip is not OK")); - } - - [TestMethod] - public void COM_CheckPassword() - { - // create and fill the directories - string subdir = Path.Combine(TopLevelDir, "files"); - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - // first case - all entries have same password - should pass the check. - // second case - last entry uses a different password - should fail the check. - for (int k=0; k < 2; k++) - { - string password = GeneratePassword(11); - string zipFileToCreate= String.Format("COM_CheckPass-{0}.zip", k); - zipFileToCreate = Path.Combine(TopLevelDir, zipFileToCreate); - // Create the zip archive - using (ZipFile zip1 = new ZipFile()) - { - //zip1.Password = password; - for (int i = 0; i < filesToZip.Length; i++) - { - var e = zip1.AddFile(filesToZip[i], "files"); - e.Password = (k == 1 && i == filesToZip.Length-1) - ? "7" - : password; - } - zip1.Save(zipFileToCreate); - } - - TestContext.WriteLine("Checking the count..."); - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length, - "Incorrect number of entries in the zip file."); - - TestContext.WriteLine("Checking the password (case {0})...", k); - string script = GetScript("TestCheckZipPassword.js"); - string testOut = this.Exec(cscriptExe, - String.Format("\"{0}\" {1} {2}", - script, zipFileToCreate, password)); - - if (k==0) - Assert.IsTrue(testOut.StartsWith("That zip is OK")); - else - Assert.IsFalse(testOut.StartsWith("That zip is OK")); - } - } - - - private string GeneratePassword(int n) - { - // not good for passwords used on the command line with cmd line tools!! - // return TestUtilities.GenerateRandomPassword(); - - return TestUtilities.GenerateRandomAsciiString(n).Replace(" ","_"); - //return "Alphabet"; - } - - - - [TestMethod] - public void InfoZip_Unzip() - { - if (!InfoZipIsPresent) - throw new Exception("[InfoZip_Unzip] : InfoZip is not present"); - - string shortDir = "filesToZip"; - string subdir = Path.Combine(TopLevelDir, shortDir); - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - for (int j=0; j < 2; j++) // crypto.Length - { - // Cannot do WinZipAES encryption - not supported by InfoZip - int i = 0; - foreach (var compLevel in compLevels) - { - string zipFileToCreate = - String.Format("InfoZip_Unzip.{0}.{1}.zip", i,j); - - string password = GeneratePassword(9); - // Create the zip archive - using (ZipFile zip1 = new ZipFile()) - { - zip1.CompressionLevel = (Ionic.Zlib.CompressionLevel)compLevel; - if (j!=0) - { - zip1.Encryption = crypto[j]; - zip1.Password = password; - } - for (int n = 0; n < filesToZip.Length; n++) - zip1.AddItem(filesToZip[n], shortDir); - zip1.Save(zipFileToCreate); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length, - "Incorrect number of entries in the zip file"+ - " (i,j)=({0},{1}).", i,j); - - string extractDir = String.Format("extract.{0}.{1}", i,j); - - if (j==0) - { - this.Exec(infoZipUnzip, - String.Format("{0} -d {1}", - Path.GetFileName(zipFileToCreate), - Path.GetFileName(extractDir))); - } - else - { - this.Exec(infoZipUnzip, - String.Format("-P {0} {1} -d {2}", - password, - Path.GetFileName(zipFileToCreate), - Path.GetFileName(extractDir))); - } - - var extractedFiles = Directory.GetFiles(Path.Combine(extractDir, shortDir)); - Assert.AreEqual - (filesToZip.Length, extractedFiles.Length, - "Incorrect number of extracted files. (i,j)={0},{1}", - i,j); - - VerifyChecksums(Path.Combine(extractDir, shortDir), - filesToZip, checksums); - - i++; - } - } - } - - - [TestMethod] - public void InfoZip_Zip() - { - if (!InfoZipIsPresent) - throw new Exception("InfoZip is not present"); - - // create and fill the directories - string shortDir = "filesToZip"; - string subdir = Path.Combine(TopLevelDir, shortDir); - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - // infozip usage: - // zip.exe zipfile.zip -r - // zip.exe zipfile.zip - - for (int k=0; k < 2; k++) - { - string zipFileToCreate = String.Format("InfoZip_Zip-{0}.zip", k); - string extractDir = "extractDir-" + k; - - var relativePath = Path.GetFileName(subdir); - - if (k==0) - { - // Create the zip archive via Infozip.exe - // zip.exe zipfile.zip -r - this.Exec(infoZip, String.Format("{0} -r {1}", - zipFileToCreate, relativePath)); - } - else - { - string[] relPathFiles = - Array.ConvertAll(filesToZip, - path => - Path.Combine(relativePath, - Path.GetFileName(path))); - - // zip.exe zipfile.zip - this.Exec(infoZip, zipFileToCreate + " " + - String.Join(" ", relPathFiles)); - } - - // delay a bit between file creation and check/unzip - System.Threading.Thread.Sleep(1200); - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // run the COM script to unzip the ZIP archive - string script = GetScript("VbsUnZip-DotNetZip.vbs"); - - this.Exec(cscriptExe, - String.Format("\"{0}\" {1} {2}", - script, - Path.GetFileName(zipFileToCreate), - extractDir)); - // check the files in the extract dir - VerifyChecksums(Path.Combine(extractDir,shortDir), filesToZip, checksums); - VerifyTimesUnix(Path.Combine(extractDir,shortDir), filesToZip); - } - } - - - - [TestMethod] - public void InfoZip_Zip_Password() - { - if (!InfoZipIsPresent) - throw new Exception("[InfoZip_Zip_Password] : InfoZip is not present"); - - // create and fill the directories - string extractDir = "extractDir"; - string shortDir = "filesToZip"; - string subdir = Path.Combine(TopLevelDir, shortDir); - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - // infozip usage: - // zip.exe zipfile.zip -r -P - - string password = GeneratePassword(9); - string zipFileToCreate = "InfoZip_Zip_Password.zip"; - - // Create the zip archive via Infozip.exe - this.Exec(infoZip, String.Format("{0} -r -P {1} {2}", - zipFileToCreate, - password, - shortDir)); - - // delay a bit between file creation and check/unzip - System.Threading.Thread.Sleep(1200); - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // extract - using (var zip = ZipFile.Read(zipFileToCreate)) - { - zip.Password = password; - zip.ExtractAll(extractDir); - } - - // check the files in the extract dir - VerifyChecksums(Path.Combine(extractDir, shortDir), filesToZip, checksums); - VerifyTimesNtfs(Path.Combine(extractDir, shortDir), filesToZip); - } - - - - [TestMethod] - public void InfoZip_Zip_Split() - { - if (!InfoZipIsPresent) - throw new Exception("InfoZip is not present"); - - string dirToZip = "dirToZip"; - int numFiles = _rnd.Next(17) + 12; - string[] filesToZip; - string msg; - Dictionary checksums; - int[] segmentSizes = { 256, 512, 1024, 4096, 8192 }; // in kb - - _txrx = TestUtilities.StartProgressMonitor("InfoZip-compat", - "InfoZip split archives", - "Creating "+numFiles+" files"); - _txrx.Send("pb 0 max 2"); - _txrx.Send("pb 1 max " + numFiles); - - var update = new Action( (x,y,z) => { - switch (x) - { - case 0: - break; - case 1: - break; - case 2: - _txrx.Send("pb 1 step"); - msg = String.Format("status created {0}/{1} files", - y+1, - ((int)z)); - _txrx.Send(msg); - break; - } - }); - - CreateLargeFilesWithChecksums(dirToZip, numFiles, update, - out filesToZip, out checksums); - - _txrx.Send("pb 0 step"); - _txrx.Send("pb 1 max " + segmentSizes.Length); - _txrx.Send("pb 1 value 0"); - for (int i=0; i < segmentSizes.Length; i++) - { - _txrx.Send("status zip with " + segmentSizes[i] + "k segments"); - string trialDir = segmentSizes[i] + "k"; - Directory.CreateDirectory(trialDir); - string zipFileToCreate = Path.Combine(trialDir, trialDir + ".zip"); - // Create the zip archive via Infozip.exe - this.Exec(infoZip, String.Format("{0} -r -s {1}k -sv {2}", - zipFileToCreate, - segmentSizes[i], - dirToZip)); - - string extractDir = segmentSizes[i] + "k.extract"; - using (var zip = ZipFile.Read(zipFileToCreate)) - { - zip.ExtractAll(extractDir); - } - - VerifyChecksums(Path.Combine(extractDir, dirToZip), filesToZip, checksums); - - _txrx.Send("pb 1 step"); - } - } - - - - -#if NOT - // warning [256k/256k.zip]: zipfile claims to be last disk of a - // multi-part archive; attempting to process anyway, assuming - // all parts have been concatenated together in order. Expect - // "errors" and warnings...true multi-part support doesn't exist - // yet (coming soon). - - [TestMethod] - public void InfoZip_Unzip_Split() - { - if (!InfoZipIsPresent) - throw new Exception("InfoZip is not present"); - - string dirToZip = "dirToZip"; - int numFiles = _rnd.Next(17) + 12; - string[] filesToZip; - string msg; - Dictionary checksums; - int[] segmentSizes = { 256, 512, 1024, 4096, 8192 }; // in kb - - _txrx = TestUtilities.StartProgressMonitor("InfoZip-compat", - "InfoZip split archives", - "Creating "+numFiles+" files"); - _txrx.Send("pb 0 max 2"); - _txrx.Send("pb 1 max " + numFiles); - - var update = new Action( (x,y,z) => { - switch (x) - { - case 0: - break; - case 1: - break; - case 2: - _txrx.Send("pb 1 step"); - msg = String.Format("status created {0}/{1} files", - y+1, - ((int)z)); - _txrx.Send(msg); - break; - } - }); - - CreateLargeFilesWithChecksums(dirToZip, numFiles, update, - out filesToZip, out checksums); - - _txrx.Send("pb 0 step"); - _txrx.Send("pb 1 max " + segmentSizes.Length); - _txrx.Send("pb 1 value 0"); - for (int i=0; i < segmentSizes.Length; i++) - { - //Directory.SetCurrentDirectory(TopLevelDir); - _txrx.Send("status zip with " + segmentSizes[i] + "k segments"); - string trialDir = segmentSizes[i] + "k"; - Directory.CreateDirectory(trialDir); - string zipFileToCreate = Path.Combine(trialDir, trialDir + ".zip"); - // Create the zip archive via DotNetZip - using (var zip = new ZipFile()) - { - zip.AddFiles(filesToZip); - zip.MaxOutputSegmentSize = segmentSizes[i]*1024; - zip.Save(zipFileToCreate); - } - - // extract using InfoZip - string extractDir = segmentSizes[i] + "k.extract"; - //Directory.SetCurrentDirectory(TopLevelDir); - this.Exec(infoZipUnzip, - String.Format("{0} -d {1}", - zipFileToCreate, - extractDir)); - - VerifyChecksums(Path.Combine(extractDir, dirToZip), filesToZip, checksums); - - _txrx.Send("pb 1 step"); - } - } -#endif - - - [TestMethod] - public void InfoZip_Unzip_z64_wi11936() - { - if (!InfoZipIsPresent) - throw new Exception("InfoZip is not present"); - - string dirToZip = "dirToZip"; - int numFiles = _rnd.Next(17) + 12; - string[] filesToZip; - string msg; - Dictionary checksums; - - _txrx = TestUtilities.StartProgressMonitor("InfoZip-compat", - "InfoZip split archives", - "Creating "+numFiles+" files"); - _txrx.Send("pb 0 max 3"); - _txrx.Send("pb 1 max " + numFiles); - - var update = new Action( (x,y,z) => { - switch (x) - { - case 0: - break; - case 1: - break; - case 2: - _txrx.Send("pb 1 step"); - msg = String.Format("status created {0}/{1} files", - y+1, - ((int)z)); - _txrx.Send(msg); - break; - } - }); - - CreateLargeFilesWithChecksums(dirToZip, numFiles, update, - out filesToZip, out checksums); - - _txrx.Send("pb 0 step"); - _txrx.Send("pb 1 max 3"); - _txrx.Send("pb 1 value 0"); - - string zipFileToCreate = "infozip-z64-unzip.zip"; - // Create the zip archive via DotNetZip - using (var zip = new ZipFile()) - { - zip.AddFiles(filesToZip); - zip.UseZip64WhenSaving = Zip64Option.Always; - zip.Save(zipFileToCreate); - } - _txrx.Send("pb 1 step"); - - // extract using InfoZip - string extractDir = "extract"; - this.Exec(infoZipUnzip, - String.Format("{0} -d {1}", - zipFileToCreate, - extractDir)); - _txrx.Send("pb 1 step"); - - VerifyChecksums(Path.Combine(extractDir, dirToZip), filesToZip, checksums); - _txrx.Send("pb 1 step"); - } - - - [TestMethod] - public void InfoZip_Unzip_ZeroLengthFile() - { - if (!InfoZipIsPresent) - throw new Exception("InfoZip is not present"); - - string password = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - - // pass 1 for one regular zero length file. - // pass 2 for zero-length file with WinZip encryption (which does not actually - // get applied) - // pass 3 for PKZip encryption (ditto) - for (int k=0; k < 3; k++) - { - string zipFileToCreate = "ZLF.zip"; - - // create an empty file - string filename = Path.GetRandomFileName(); - using (StreamWriter sw = File.CreateText(filename)) { } - - // Create the zip archive - using (ZipFile zip1 = new ZipFile()) - { - if(k==1) - { - zip1.Encryption = EncryptionAlgorithm.WinZipAes256; - zip1.Password = password; - } - else if (k==2) - { - zip1.Password = password; - zip1.Encryption = EncryptionAlgorithm.PkzipWeak; - } - zip1.AddFile(filename, ""); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(1, TestUtilities.CountEntries(zipFileToCreate), - "Incorrect number of entries in the zip file."); - - string extractDir = "extract." + k; - Directory.CreateDirectory(extractDir); - - // now, extract the zip. Possibly need a password. - // eg, unzip.exe -P test.zip -d - string args = zipFileToCreate + " -d " + extractDir; - if (k!=0) - args = "-P " + password + " " + args; - string infozipOut = this.Exec(infoZipUnzip, args); - - TestContext.WriteLine("{0}", infozipOut); - Assert.IsFalse(infozipOut.Contains("signature not found")); - } - } - - - - - [TestMethod] - public void Perl_Zip() - { - if (perl == null) - throw new Exception("[Perl_Zip] : Perl is not present"); - - string zipFileToCreate = "newzip.zip"; - string shortDir = "filesToZip"; - string dirToZip = Path.Combine(TopLevelDir, shortDir); - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(dirToZip, out filesToZip, out checksums); - - // create a zip with perl: - TestContext.WriteLine("Creating a zip with perl..."); - string createZipPl = GetScript("CreateZip.pl"); - this.Exec(perl, - String.Format("\"{0}\" {1} \"{2}\"", - createZipPl, - zipFileToCreate, - shortDir)); - - TestContext.WriteLine(""); - TestContext.WriteLine("Extracting that zip with DotNetZip..."); - string extractDir = "extract"; - using (var zip = ZipFile.Read(zipFileToCreate)) - { - zip.ExtractAll(extractDir); - } - - TestContext.WriteLine(""); - TestContext.WriteLine("Verifying checksums..."); - VerifyChecksums(Path.Combine(extractDir, dirToZip), filesToZip, checksums); - } - - - - - [TestMethod] - public void SevenZip_Zip_1() - { - if (!SevenZipIsPresent) - throw new Exception("[7z_Zip_1] : SevenZip is not present"); - - string zipFileToCreate = Path.Combine(TopLevelDir, "7z_Zip_1.zip"); - // create and fill the directories - string extractDir = "extract"; - string subdir = Path.Combine(TopLevelDir, "files"); - - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - // Create the zip archive via 7z.exe - this.Exec(sevenZip, String.Format("a {0} {1}", zipFileToCreate, subdir)); - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // run the COM script to unzip the ZIP archive - string script = GetScript("VbsUnZip-DotNetZip.vbs"); - - this.Exec(cscriptExe, - String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, extractDir)); - - // check the files in the extract dir - VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); - VerifyTimesNtfs(Path.Combine(extractDir, "files"), filesToZip); - } - - - - [TestMethod] - public void SevenZip_Zip_2() - { - if (!SevenZipIsPresent) - throw new Exception("[7z_Zip_2] : SevenZip is not present"); - - string zipFileToCreate = Path.Combine(TopLevelDir, "7z_Zip_2.zip"); - - // create and fill the directories - string extractDir = "extract"; - string subdir = Path.Combine(TopLevelDir, "files"); - - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - // Create the zip archive via 7z.exe - //Directory.SetCurrentDirectory(TopLevelDir); - - this.Exec(sevenZip, String.Format("a {0} {1}", zipFileToCreate, subdir)); - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // unzip - //Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - zip1.ExtractAll(extractDir); - } - - // check the files in the extract dir - VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); - - VerifyTimesNtfs(Path.Combine(extractDir, "files"), filesToZip); - } - - - - [TestMethod] - public void SevenZip_Unzip() - { - if (!SevenZipIsPresent) - throw new Exception("[7z_Unzip] : SevenZip is not present"); - - string zipFileToCreate = Path.Combine(TopLevelDir, "7z_Unzip.zip"); - - // create and fill the directories - string subdir = Path.Combine(TopLevelDir, "files"); - - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - // Create the zip archive with DotNetZip - //Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - for (int i = 0; i < filesToZip.Length; i++) - zip1.AddItem(filesToZip[i], "files"); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // unpack the zip archive via 7z.exe - Directory.CreateDirectory("extract"); - Directory.SetCurrentDirectory("extract"); - this.Exec(sevenZip, String.Format("x {0}", zipFileToCreate)); - - // check the files in the extract dir - Directory.SetCurrentDirectory(TopLevelDir); - - VerifyChecksums(Path.Combine("extract", "files"), filesToZip, checksums); - } - - - [TestMethod] - public void SevenZip_Unzip_Password() - { - if (!SevenZipIsPresent) - throw new Exception("[7z_Unzip_Password] : SevenZip is not present"); - - string zipFileToCreate = Path.Combine(TopLevelDir, "7z_Unzip_Password.zip"); - string password = Path.GetRandomFileName(); - string subdir = Path.Combine(TopLevelDir, "files"); - - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - // Create the zip archive with DotNetZip - //Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - zip1.Password = password; - zip1.AddFiles(filesToZip, "files"); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // unpack the zip archive via 7z.exe - Directory.CreateDirectory("extract"); - Directory.SetCurrentDirectory("extract"); - this.Exec(sevenZip, String.Format("x -p{0} {1}", password, zipFileToCreate)); - - // check the files in the extract dir - Directory.SetCurrentDirectory(TopLevelDir); - - VerifyChecksums(Path.Combine("extract", "files"), filesToZip, checksums); - } - - - - - [TestMethod] - public void SevenZip_Unzip_Password_NonSeekableOutput() - { - if (!SevenZipIsPresent) - throw new Exception("[7z_Unzip_Password_NonSeekableOutput] : SevenZip is not present"); - - string subdir = Path.Combine(TopLevelDir, "files"); - - string[] filesToZip; - Dictionary checksums = null; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - //CreateFilesAndChecksums(subdir, 2, 32, out filesToZip, out checksums); - -#if NOT - // debugging - Directory.CreateDirectory(subdir); - DateTime atMidnight = new DateTime(DateTime.Now.Year, - DateTime.Now.Month, - DateTime.Now.Day, - 11,11,11); - filesToZip = new String[2]; - for (int z=0; z < 2; z++) - { - string fname = Path.Combine(subdir, String.Format("file{0:D3}.txt", z)); - File.WriteAllText(fname, "12341234123412341234123412341234"); - File.SetLastWriteTime(fname, atMidnight); - File.SetLastAccessTime(fname, atMidnight); - File.SetCreationTime(fname, atMidnight); - filesToZip[z]= fname; - } -#endif - TestContext.WriteLine("Test Unzip with 7zip"); - TestContext.WriteLine("============================================"); - - // marker file - // using (File.Create(Path.Combine(TopLevelDir, "DotNetZip-" + ZipFile.LibraryVersion.ToString()))) ; - - int i = 0; - foreach (var compLevel in compLevels) - { - TestContext.WriteLine("---------------------------------"); - TestContext.WriteLine("Trial {0}", i); - TestContext.WriteLine("CompressionLevel = {0}", compLevel); - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("7z_Unzip_Password_NonSeekableOutput.{0}.zip", i)); - string password = Path.GetRandomFileName(); - //string password = "0123456789ABCDEF"; - string extractDir = Path.Combine(TopLevelDir, String.Format("extract.{0}", i)); - - TestContext.WriteLine("Password = {0}", password); - - // Create the zip archive with DotNetZip - //Directory.SetCurrentDirectory(TopLevelDir); - // Want to test the library when saving to non-seekable output streams. Like - // stdout or ASPNET's Response.OutputStream. This simulates it. - using (var rawOut = System.IO.File.Create(zipFileToCreate)) - { - using (var nonSeekableOut = new Ionic.Zip.Tests.NonSeekableOutputStream(rawOut)) - { - using (ZipFile zip1 = new ZipFile()) - { - zip1.CompressionLevel = (Ionic.Zlib.CompressionLevel)compLevel; - zip1.Password = password; - zip1.AddFiles(filesToZip, "files"); - zip1.Save(nonSeekableOut); - } - } - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // unpack the zip archive via 7z.exe - Directory.CreateDirectory(extractDir); - this.Exec(sevenZip, String.Format("x -o{0} -p{1} {2}", - Path.GetFileName(extractDir), - password, - zipFileToCreate)); - - // check the files in the extract dir - //Directory.SetCurrentDirectory(TopLevelDir); - - VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); - i++; - } - } - - - - [TestMethod] - public void SevenZip_Unzip_SFX() - { - if (!SevenZipIsPresent) - throw new Exception("[7z_Unzip_SFX] : SevenZip is not present"); - - string zipFileToCreate = Path.Combine(TopLevelDir, "7z_Unzip_SFX.exe"); - - // create and fill the directories - string subdir = Path.Combine(TopLevelDir, "files"); - - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - // Create the zip archive with DotNetZip - //Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - for (int i = 0; i < filesToZip.Length; i++) - zip1.AddItem(filesToZip[i], "files"); - zip1.SaveSelfExtractor(zipFileToCreate, - SelfExtractorFlavor.ConsoleApplication); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // unpack the zip archive via 7z.exe - Directory.CreateDirectory("extract"); - Directory.SetCurrentDirectory("extract"); - this.Exec(sevenZip, String.Format("x {0}", zipFileToCreate)); - - // check the files in the extract dir - Directory.SetCurrentDirectory(TopLevelDir); - - VerifyChecksums(Path.Combine("extract", "files"), filesToZip, checksums); - } - - - - [TestMethod] - public void Winzip_Zip() - { - Winzip_Zip_Variable(""); - } - - - [TestMethod] - public void Winzip_Zip_Password() - { - if (!WinZipIsPresent) - throw new Exception("[Winzip_Zip_Password] : winzip is not present"); - - - string password = Path.GetRandomFileName().Replace(".", "@"); - TestContext.WriteLine("creating zip with password ({0})", password); - string zipfile = Winzip_Zip_Variable("-s" + password, false); - string extractDir = "extract"; - - // unzip with DotNetZip - //Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = ZipFile.Read(zipfile)) - { - zip1.Password = password; - zip1.ExtractAll(extractDir); - } - } - - - [TestMethod] - public void Winzip_Zip_Normal() - { - Winzip_Zip_Variable("-en"); - } - - [TestMethod] - public void Winzip_Zip_Fast() - { - Winzip_Zip_Variable("-ef"); - } - - [TestMethod] - public void Winzip_Zip_SuperFast() - { - Winzip_Zip_Variable("-es"); - } - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void Winzip_Zip_EZ() - { - if (!WinZipIsPresent) throw new Exception("no winzip"); - // Unsupported compression method - Winzip_Zip_Variable("-ez"); - } - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void Winzip_Zip_PPMd() - { - if (!WinZipIsPresent) throw new Exception("no winzip"); - // Unsupported compression method - Winzip_Zip_Variable("-ep"); - } - - [TestMethod] - public void Winzip_Zip_Bzip2() - { - if (!WinZipIsPresent) throw new Exception("no winzip"); - Winzip_Zip_Variable("-eb"); - } - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void Winzip_Zip_Enhanced() - { - if (!WinZipIsPresent) throw new Exception("no winzip"); - // Unsupported compression method - Winzip_Zip_Variable("-ee"); - } - - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void Winzip_Zip_LZMA() - { - if (!WinZipIsPresent) throw new Exception("no winzip"); - // Unsupported compression method - Winzip_Zip_Variable("-el"); - } - - - public string Winzip_Zip_Variable(string options) - { - return Winzip_Zip_Variable(options, true); - } - - public string Winzip_Zip_Variable(string options, bool wantVerify) - { - if (!WinZipIsPresent) - throw new Exception(String.Format("[options({0})] : winzip is not present", options)); - - // options: - // -sPassword - // -ep - PPMd compression. - // -el - LZMA compression - // -eb - bzip2 compression - // -ee - "enhanced" compression. - // -en - normal compression. - // -ef - fast compression. - // -es - superfast compression. - // -ez - select best method at runtime. Requires WinZip12 to extract. - // empty string = default - string zipFileToCreate = Path.Combine(TopLevelDir, "Winzip_Zip.zip"); - - string dirInZip = "files"; - string subdir = Path.Combine(TopLevelDir, dirInZip); - - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - // delay between file creation and zip creation - System.Threading.Thread.Sleep(1200); - - // exec wzzip.exe to create the zip file - string formatString = "-a -p " + options + " -yx {0} {1}\\*.*"; - string wzzipOut = this.Exec(wzzip, String.Format(formatString, zipFileToCreate, subdir)); - - if (wantVerify) - { - // unzip with DotNetZip - string extractDir = "extract"; - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - zip1.ExtractAll(extractDir); - } - - // check the files in the extract dir - VerifyChecksums(extractDir, filesToZip, checksums); - - // verify the file times. - VerifyTimesNtfs(extractDir, filesToZip); - } - - return zipFileToCreate; - } - - - - [TestMethod] - [Timeout(9 * 60 * 1000)] // in ms, 60 * 1000 = 1min - public void Winzip_Unzip_2() - { - if (!WinZipIsPresent) - throw new Exception("[Winzip_Unzip_2] : winzip is not present"); - - string zipFileToCreate = "Winzip_Unzip_2.zip"; - - // create and fill the directories - string extractDir = "extract"; - //string subdir = "files"; - Dictionary checksums = new Dictionary(); - var filesToZip = GetSelectionOfTempFiles(_rnd.Next(13) + 8, checksums); - - // Create the zip archive - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddFiles(filesToZip, "files"); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Count, - "Incorrect number of entries in the zip file."); - - // now, extract the zip - // eg, wzunzip.exe -d test.zip - Directory.CreateDirectory(extractDir); - this.Exec(wzunzip, String.Format("-d -yx {0} \"{1}\"", - zipFileToCreate, extractDir)); - - // check the files in the extract dir - VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); - - // verify the file times - VerifyTimesDos(Path.Combine(extractDir, "files"), filesToZip); - } - - - - - [TestMethod] - public void Winzip_Unzip_ZeroLengthFile() - { - if (!WinZipIsPresent) - throw new Exception("[Winzip_Unzip_ZeroLengthFile] : winzip is not present"); - - string password = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - - // pass 1 for one regular zero length file. - // pass 2 for zero-length file with WinZip encryption (which does not actually - // get applied) - // pass 3 for PKZip encryption (ditto) - for (int k=0; k < 3; k++) - { - string zipFileToCreate = "ZLF.zip"; - - // create an empty file - string filename = Path.GetRandomFileName(); - using (StreamWriter sw = File.CreateText(filename)) { } - - // Create the zip archive - using (ZipFile zip1 = new ZipFile()) - { - if(k==1) - { - zip1.Encryption = EncryptionAlgorithm.WinZipAes256; - zip1.Password = password; - } - else if (k==2) - { - zip1.Password = password; - zip1.Encryption = EncryptionAlgorithm.PkzipWeak; - } - zip1.AddFile(filename, ""); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(1, TestUtilities.CountEntries(zipFileToCreate), - "Incorrect number of entries in the zip file."); - - // now, test the zip. Possibly need a password. - // eg, wzunzip.exe -t test.zip - string args = "-t " + zipFileToCreate; - if (k!=0) - args = "-s" + password + " " + args; - string wzunzipOut = this.Exec(wzunzip, args); - - TestContext.WriteLine("{0}", wzunzipOut); - Assert.IsTrue(wzunzipOut.Contains("No errors")); - Assert.IsFalse(wzunzipOut.Contains("At least one error was detected")); - } - } - - - - [TestMethod] - public void Winzip_Unzip_Password() - { - if (!WinZipIsPresent) - throw new Exception("[Winzip_Unzip_Password] : winzip is not present"); - - //Directory.SetCurrentDirectory(TopLevelDir); - string zipFileToCreate = "Winzip_Unzip_Password.zip"; - string extractDir = "extract"; - string subdir = "fodder"; - // create a bunch of files - var filesToZip = TestUtilities.GenerateFilesFlat(subdir); - string password = Path.GetRandomFileName(); - - // Create the zip archive - using (ZipFile zip1 = new ZipFile()) - { - zip1.Password = password; - zip1.AddFiles(filesToZip, ""); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(filesToZip.Length, TestUtilities.CountEntries(zipFileToCreate), - "Incorrect number of entries in the zip file."); - - // now, test the zip - // eg, wzunzip.exe -t test.zip - string args = String.Format("-t -s{0} {1}", password, zipFileToCreate); - string wzunzipOut = this.Exec(wzunzip, args); - TestContext.WriteLine("{0}", wzunzipOut); - - Assert.IsTrue(wzunzipOut.Contains("No errors")); - Assert.IsFalse(wzunzipOut.Contains("At least one error was detected")); - - // extract the zip - // eg, wzunzip.exe -d -yx -sPassword test.zip - args = String.Format("-d -yx -s{0} {1} {2}", - password, zipFileToCreate, extractDir); - Directory.CreateDirectory(extractDir); - wzunzipOut = this.Exec(wzunzip, args); - - Assert.IsFalse(wzunzipOut.Contains("skipping")); - Assert.IsFalse(wzunzipOut.Contains("incorrect")); - } - - - - [TestMethod] - public void Winzip_Unzip_Password_NonSeekableOutput() - { - if (!WinZipIsPresent) - throw new Exception("[Winzip_Unzip_Password_NonSeekableOutput] : winzip is not present"); - - - // create a bunch of files - string subdir = "fodder"; - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - var compressionLevels = Enum.GetValues(typeof(Ionic.Zlib.CompressionLevel)); - int i = 0; - foreach (var compLevel in compressionLevels) - { - string zipFileToCreate = - Path.Combine(TopLevelDir, - String.Format("Winzip_Unzip_Pwd_NonSeek.{0}.zip", - i)); - string extractDir = "extract" + i.ToString(); - string password = Path.GetRandomFileName(); - - // Want to test the library when saving to non-seekable - // output streams. Like stdout or ASPNET's - // Response.OutputStream. This simulates it. - using (var rawOut = System.IO.File.Create(zipFileToCreate)) - { - using (var nonSeekableOut = new Ionic.Zip.Tests.NonSeekableOutputStream(rawOut)) - { - // Create the zip archive - using (ZipFile zip1 = new ZipFile()) - { - zip1.CompressionLevel = (Ionic.Zlib.CompressionLevel)compLevel; - zip1.Password = password; - zip1.AddFiles(filesToZip, "files"); - zip1.Save(nonSeekableOut); - } - } - } - - // Verify the number of files in the zip - Assert.AreEqual(filesToZip.Length, - TestUtilities.CountEntries(zipFileToCreate), - "Incorrect number of entries in the zip file."); - - // now, test the zip - // eg, wzunzip.exe -t test.zip - string wzunzipOut = this.Exec(wzunzip, String.Format("-t -s{0} {1}", - password, zipFileToCreate)); - TestContext.WriteLine("{0}", wzunzipOut); - - Assert.IsTrue(wzunzipOut.Contains("No errors")); - Assert.IsFalse(wzunzipOut.Contains("At least one error was detected")); - - // extract the zip - Directory.CreateDirectory(extractDir); - // eg, wzunzip.exe -d -yx -sPassword test.zip - wzunzipOut = this.Exec(wzunzip, String.Format("-d -yx -s{0} {1} {2}", - password, zipFileToCreate, extractDir)); - Assert.IsFalse(wzunzipOut.Contains("skipping")); - Assert.IsFalse(wzunzipOut.Contains("incorrect")); - - // check the files in the extract dir - VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); - - i++; - } - } - - - - [TestMethod] - public void Winzip_Unzip_SFX() - { - if (!WinZipIsPresent) - throw new Exception("[Winzip_Unzip_SFX] : winzip is not present"); - - string zipFileToCreate = "Winzip_Unzip_SFX.exe"; - - // create and fill the directories - string extractDir = Path.Combine(TopLevelDir, "extract"); - string subdir = Path.Combine(TopLevelDir, "files"); - - Dictionary checksums = new Dictionary(); - var filesToZip = GetSelectionOfTempFiles(_rnd.Next(13) + 8, checksums); - - // Create the zip archive - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddFiles(filesToZip, "files"); - zip1.SaveSelfExtractor(zipFileToCreate, - SelfExtractorFlavor.ConsoleApplication); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Count, - "Incorrect number of entries in the zip file."); - - // now, extract the zip - // eg, wzunzip.exe -d test.zip [] - Directory.CreateDirectory(extractDir); - Directory.SetCurrentDirectory(extractDir); - - // -d = restore folder structure - // -yx = restore extended timestamps to extracted files - this.Exec(wzunzip, "-d -yx " + Path.Combine("..", zipFileToCreate)); - - // check the files in the extract dir - VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); - - // verify the file times - VerifyTimesDos(Path.Combine(extractDir, "files"), filesToZip); - } - - - [TestMethod] - public void Winzip_Unzip_Bzip2() - { - if (!WinZipIsPresent) throw new Exception("no winzip"); - - string zipFileToCreate = "Winzip_Unzip.zip"; - - string dirInZip = "files"; - string extractDir = "extract"; - string subdir = Path.Combine(TopLevelDir, dirInZip); - - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - var additionalFiles = GetSelectionOfTempFiles(checksums); - - // Now, Create the zip archive with DotNetZip - using (ZipFile zip1 = new ZipFile()) - { - zip1.CompressionMethod = CompressionMethod.BZip2; - zip1.AddFiles(filesToZip, dirInZip); - zip1.AddFiles(additionalFiles, dirInZip); - zip1.Save(zipFileToCreate); - } - - TestContext.WriteLine("Verifying the number of files in the zip"); - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length + additionalFiles.Count, - "Incorrect number of entries in the zip file."); - - - // verify that the output states that the compression method - // used for each entry was BZIP2... - TestContext.WriteLine("Verifying that BZIP2 was the comp method used..."); - - // examine and unpack the zip archive via WinZip - // first, examine the zip entry metadata: - string wzzipOut = this.Exec(wzzip, "-vt " + zipFileToCreate); - - var numBzipped = TestUtilities.CountOccurrences(wzzipOut, "Compression Method: BZipped"); - TestContext.WriteLine("Found {0} bzipped entries.", numBzipped); - - // Not all of the files will be bzipped. Some of the files - // may be "stored" because they are incompressible. This - // should be the exception, though. - var numStored = TestUtilities.CountOccurrences(wzzipOut, "Compression Method: Stored"); - TestContext.WriteLine("Found {0} stored entries.", numStored); - - Assert.AreEqual( numBzipped + numStored, - filesToZip.Length + additionalFiles.Count); - Assert.IsTrue( numBzipped > 2*numStored, - "The number of bzipped files is too low."); - - TestContext.WriteLine("Extracting..."); - // now, extract the zip - // eg, wzunzip.exe -d test.zip - Directory.CreateDirectory(extractDir); - Directory.SetCurrentDirectory(extractDir); - this.Exec(wzunzip, String.Format("-d -yx \"{0}\"", - Path.Combine(TopLevelDir,zipFileToCreate))); - - // check the files in the extract dir - Directory.SetCurrentDirectory(TopLevelDir); - String[] filesToCheck = new String[filesToZip.Length + additionalFiles.Count]; - filesToZip.CopyTo(filesToCheck, 0); - additionalFiles.ToArray().CopyTo(filesToCheck, filesToZip.Length); - - VerifyChecksums(Path.Combine("extract", dirInZip), filesToCheck, checksums); - - VerifyFileTimes1(extractDir, additionalFiles); - } - - - [TestMethod] - public void Winzip_Unzip_Bzip2_Large() - { - // BZip2 uses work buffers of 900k (ish). When compressing files that - // can be Run-length-encoded into a buffer smaller than 900k, only one - // "block" is used in the compressed output. Multiple blocks get - // emitted with input files that cannot be run-length encoded into - // 900k (ish). This test verifies that everything works correctly when - // compressing larger files that require multiple blocks in the - // compressed output. (At one point there was a problem combining CRCs - // from multiple blocks.) - if (!WinZipIsPresent) throw new Exception("no winzip"); - - TestContext.WriteLine("Creating the fodder files..."); - string zipFileToCreate = "BZ_Large.zip"; - int n = _rnd.Next(5) + 5; - int baseSize = _rnd.Next(0x80000) + 0x3000ff; - int delta = 0x80000; - string dirInZip = "files"; - string extractDir = "extract"; - string subdir = Path.Combine(TopLevelDir, dirInZip); - var filesToZip = TestUtilities.GenerateFilesFlat(subdir, n, baseSize, baseSize+delta); - - TestContext.WriteLine("Creating the zip..."); - // Now, Create the zip archive with DotNetZip - using (ZipFile zip1 = new ZipFile()) - { - zip1.CompressionMethod = CompressionMethod.BZip2; - zip1.AddFiles(filesToZip, dirInZip); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - TestContext.WriteLine("Verifying the number of files in the zip..."); - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length, - "Incorrect number of entries in the zip file."); - - // examine and unpack the zip archive via WinZip - // first, examine the zip entry metadata: - string wzzipOut = this.Exec(wzzip, "-vt " + zipFileToCreate); - - // verify that the output states that the compression method - // used for each entry was BZIP2... - TestContext.WriteLine("Verifying that BZIP2 was the comp method used..."); - Assert.AreEqual(TestUtilities.CountOccurrences(wzzipOut, "Compression Method: BZipped"), - filesToZip.Length); - - // now, extract the zip - // eg, wzunzip.exe -d test.zip - TestContext.WriteLine("Extracting..."); - Directory.CreateDirectory(extractDir); - Directory.SetCurrentDirectory(extractDir); - this.Exec(wzunzip, String.Format("-d -yx \"{0}\"", - Path.Combine("..",zipFileToCreate))); - } - - - - - [TestMethod] - public void Winzip_Unzip_Basic() - { - if (!WinZipIsPresent) - throw new Exception("[Winzip_Unzip_Basic] : winzip is not present"); - - string zipFileToCreate = "Winzip_Unzip_Basic.zip"; - - string dirInZip = "files"; - string extractDir = "extract"; - string subdir = Path.Combine(TopLevelDir, dirInZip); - - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - var additionalFiles = GetSelectionOfTempFiles(checksums); - - int i = 0; - // set R and S attributes on the first file - if (!File.Exists(filesToZip[i])) throw new Exception("Something is berry berry wrong."); - File.SetAttributes(filesToZip[i], FileAttributes.ReadOnly | FileAttributes.System); - - // set H attribute on the second file - i++; - if (i == filesToZip.Length) throw new Exception("Not enough files??."); - if (!File.Exists(filesToZip[i])) throw new Exception("Something is berry berry wrong."); - File.SetAttributes(filesToZip[i], FileAttributes.Hidden); - - // Now, Create the zip archive with DotNetZip - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddFiles(filesToZip, dirInZip); - zip1.AddFiles(additionalFiles, dirInZip); - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length + additionalFiles.Count, - "Incorrect number of entries in the zip file."); - - // examine and unpack the zip archive via WinZip - // first, examine the zip entry metadata: - string wzzipOut = this.Exec(wzzip, "-vt " + zipFileToCreate); - - string[] expectedAttrStrings = { "s-r-", "-hw-", "--w-" }; - - // example: Filename: folder5\Test8.txt - for (i = 0; i < expectedAttrStrings.Length; i++) - { - var f = Path.GetFileName(filesToZip[i]); - var fileInZip = Path.Combine(dirInZip, f); - string textToLookFor = String.Format("Filename: {0}", fileInZip.Replace("/", "\\")); - int x = wzzipOut.IndexOf(textToLookFor); - Assert.IsTrue(x > 0, "Could not find expected text ({0}) in WZZIP output.", textToLookFor); - textToLookFor = "Attributes: "; - x = wzzipOut.IndexOf(textToLookFor, x); - string attrs = wzzipOut.Substring(x + textToLookFor.Length, 4); - Assert.AreEqual(expectedAttrStrings[i], attrs, "Unexpected attributes on File {0}.", i); - } - - // now, extract the zip - // eg, wzunzip.exe -d test.zip - Directory.CreateDirectory(extractDir); - Directory.SetCurrentDirectory(extractDir); - this.Exec(wzunzip, String.Format("-d -yx ..\\{0}", zipFileToCreate)); - - // check the files in the extract dir - Directory.SetCurrentDirectory(TopLevelDir); - String[] filesToCheck = new String[filesToZip.Length + additionalFiles.Count]; - filesToZip.CopyTo(filesToCheck, 0); - additionalFiles.ToArray().CopyTo(filesToCheck, filesToZip.Length); - - VerifyChecksums(Path.Combine("extract", dirInZip), filesToCheck, checksums); - - VerifyFileTimes1(extractDir, additionalFiles); - } - - - private void VerifyFileTimes1(string extractDir, List additionalFiles) - { - // verify the file times - DateTime atMidnight = new DateTime(DateTime.Now.Year, - DateTime.Now.Month, - DateTime.Now.Day); - DateTime fortyFiveDaysAgo = atMidnight - new TimeSpan(45, 0, 0, 0); - - string[] extractedFiles = Directory.GetFiles(extractDir); - - foreach (var fqPath in extractedFiles) - { - string filename = Path.GetFileName(fqPath); - DateTime stamp = File.GetLastWriteTime(fqPath); - if (filename.StartsWith("testfile")) - { - Assert.IsTrue((stamp == atMidnight || stamp == fortyFiveDaysAgo), - "The timestamp on the file {0} is incorrect ({1}).", - fqPath, stamp.ToString("yyyy-MM-dd HH:mm:ss")); - } - else - { - var orig = (from f in additionalFiles - where Path.GetFileName(f) == filename - select f) - .First(); - - DateTime t1 = File.GetLastWriteTime(filename); - DateTime t2 = File.GetLastWriteTime(orig); - Assert.AreEqual(t1, t2); - t1 = File.GetCreationTime(filename); - t2 = File.GetCreationTime(orig); - Assert.AreEqual(t1, t2); - } - } - } - - private List GetSelectionOfTempFiles(Dictionary checksums) - { - return GetSelectionOfTempFiles(_rnd.Next(23) + 9, checksums); - } - - private List excludedFilenames = new List(); - - - private List GetSelectionOfTempFiles(int numFilesWanted, Dictionary checksums) - { - string tmpPath = Environment.GetEnvironmentVariable("TEMP"); // C:\Users\dinoch\AppData\Local\Temp - String[] candidates = Directory.GetFiles(tmpPath); - var theChosenOnes = new List(); - int trials = 0; - int otherSide = 0; - int minOtherSide = numFilesWanted / 3 + 1; - do - { - if (theChosenOnes.Count > numFilesWanted && otherSide >= minOtherSide) break; - - // randomly select a candidate - var f = candidates[_rnd.Next(candidates.Length)]; - if (excludedFilenames.Contains(f)) continue; - - try - { - var fi = new FileInfo(f); - if (Path.GetFileName(f)[0] == '~' - || theChosenOnes.Contains(f) - || fi.Length > 10000000 // too large - || fi.Length < 100) // too small - { - excludedFilenames.Add(f); - } - else - { - DateTime lastwrite = File.GetLastWriteTime(f); - bool onOtherSideOfDst = - (DateTime.Now.IsDaylightSavingTime() && !lastwrite.IsDaylightSavingTime()) || - (!DateTime.Now.IsDaylightSavingTime() && lastwrite.IsDaylightSavingTime()); - - if (onOtherSideOfDst) - otherSide++; - - // If it's on the other side of DST, - // or - // there are zero or one on *this side* - // or - // we can still reach the "other side" quota. - if (onOtherSideOfDst || (theChosenOnes.Count - otherSide < 2) || - ((otherSide < minOtherSide) && (numFilesWanted - theChosenOnes.Count > minOtherSide - otherSide))) - { - var key = Path.GetFileName(f); - var chk = TestUtilities.ComputeChecksum(f); - checksums.Add(key, chk); - theChosenOnes.Add(f); - } - } - } - catch { /* gulp! */ } - trials++; - } - while (trials < 1000); - - theChosenOnes.Sort(); - return theChosenOnes; - } - - - - - - [TestMethod] - public void Extract_WinZip_SelfExtractor() - { - _Extract_ZipFile("winzip-sfx.exe"); - } - - [TestMethod] - public void Extract_Docx() - { - _Extract_ZipFile("Vanishing Oatmeal Cookies.docx"); - } - - [TestMethod] - public void Extract_ZipWithDuplicateNames_wi10330() - { - _Extract_ZipFile("wi10330-badzip.zip"); - } - - [TestMethod] - public void Extract_Xlsx() - { - _Extract_ZipFile("Book1.xlsx"); - } - - [TestMethod] - public void Extract_DWF() - { - _Extract_ZipFile("plot.dwf"); - } - - [TestMethod] - public void Extract_InfoZipAppNote() - { - _Extract_ZipFile("appnote-iz-latest.zip"); - } - - [TestMethod] - public void Extract_AndroidApp() - { - _Extract_ZipFile("Calendar.apk"); - } - - - [TestMethod] - public void Extract_ZipWithRelativePathsOutside() - { - _Extract_ZipFile("relative-paths-outside.zip"); - Assert.IsTrue(File.Exists(@"extract\good.txt")); - Assert.IsTrue(File.Exists(@"extract\Temp\evil.txt")); - } - - [TestMethod] - public void Extract_ZipWithRelativePathsInSubdir() - { - _Extract_ZipFile("relative-paths-in-subdir.zip"); - Assert.IsTrue(File.Exists(@"extract\good.txt")); - Assert.IsTrue(File.Exists(@"extract\Temp\evil.txt")); - } - - [TestMethod] - public void Extract_ZipWithRelativePathsInSubdirOutside() - { - _Extract_ZipFile("relative-paths-in-subdir-outside.zip"); - Assert.IsTrue(File.Exists(@"extract\good.txt")); - Assert.IsTrue(File.Exists(@"extract\Temp\evil.txt")); - } - - private void _Extract_ZipFile(string fileName) - { - TestContext.WriteLine("Current Dir: {0}", CurrentDir); - string sourceDir = CurrentDir; - for (int i = 0; i < 3; i++) - sourceDir = Path.GetDirectoryName(sourceDir); - - string fqFileName = Path.Combine(Path.Combine(sourceDir, - "Zip Tests\\bin\\Debug\\zips"), - fileName); - - TestContext.WriteLine("Reading zip file: '{0}'", fqFileName); - using (ZipFile zip = ZipFile.Read(fqFileName)) - { - string extractDir = "extract"; - foreach (ZipEntry e in zip) - { - - TestContext.WriteLine("{1,-22} {2,9} {3,5:F0}% {4,9} {5,3} {6:X8} {0}", - e.FileName, - e.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), - e.UncompressedSize, - e.CompressionRatio, - e.CompressedSize, - (e.UsesEncryption) ? "Y" : "N", - e.Crc); - e.Extract(extractDir); - } - } - } - - - - } - - -} +// Compatibility.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009-2011 Dino Chiesa . +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-August-05 18:32:33> +// +// ------------------------------------------------------------------ +// +// This module defines the tests for compatibility for DotNetZip. The +// idea is to verify that DotNetZip can read the zip files produced by +// other tools, and that other tools can read the output produced +// by DotNetZip. The tools and libraries tested are: +// - WinZip +// - 7zip +// - Infozip (unzip 6.0, zip 3.0) +// - Perl's IO::Compress +// - zipfldr.dll (via script) +// - the Visual Studio DLL +// - MS-Word +// +// ------------------------------------------------------------------ + + +using System; +using System.Text; +using System.Collections.Generic; +using System.Linq; +using Microsoft.VisualStudio.TestTools.UnitTesting; + +using Ionic.Zip; +using Ionic.Zip.Tests.Utilities; +using System.IO; + + +namespace Ionic.Zip.Tests +{ + /// + /// Summary description for Compatibility + /// + [TestClass] + public class Compatibility : IonicTestClass + { + EncryptionAlgorithm[] crypto = + { + EncryptionAlgorithm.None, + EncryptionAlgorithm.PkzipWeak, + EncryptionAlgorithm.WinZipAes128, + EncryptionAlgorithm.WinZipAes256, + }; + + Ionic.Zlib.CompressionLevel[] compLevels = + { + Ionic.Zlib.CompressionLevel.None, + Ionic.Zlib.CompressionLevel.BestSpeed, + Ionic.Zlib.CompressionLevel.Default, + Ionic.Zlib.CompressionLevel.BestCompression, + }; + + + [ClassInitialize()] + public static void MyClassInitialize(TestContext testContext) + { + // get the path to the DotNetZip DLL + string SourceDir = System.IO.Directory.GetCurrentDirectory(); + for (int i = 0; i < 3; i++) + SourceDir = Path.GetDirectoryName(SourceDir); + + IonicZipDll = Path.Combine(SourceDir, "Zip\\bin\\Debug\\DotNetZip.dll"); + + Assert.IsTrue(File.Exists(IonicZipDll), "DLL ({0}) does not exist", IonicZipDll); + + // register it for COM interop + string output; + + int rc = TestUtilities.Exec_NoContext(RegAsm, String.Format("\"{0}\" /codebase /verbose", IonicZipDll), out output); + if (rc != 0) + { + string cmd = String.Format("{0} \"{1}\" /codebase /verbose", RegAsm, IonicZipDll); + throw new Exception(String.Format("Failed to register DotNetZip with COM rc({0}) cmd({1}) out({2})", rc, cmd, output)); + } + } + + + [ClassCleanup()] + public static void MyClassCleanup() + { + string output; + // unregister the DLL for COM interop + int rc = TestUtilities.Exec_NoContext(RegAsm, String.Format("\"{0}\" /unregister /verbose", IonicZipDll), out output); + if (rc != 0) + throw new Exception(String.Format("Failed to unregister DotNetZip with COM rc({0}) ({1})", rc, output)); + } + + + private static string IonicZipDll; + private static string RegAsm = "c:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\regasm.exe"; + + + + private System.Reflection.Assembly _myself; + private System.Reflection.Assembly myself + { + get + { + if (_myself == null) + { + _myself = System.Reflection.Assembly.GetExecutingAssembly(); + } + return _myself; + } + } + + + private string _windir = null; + private string windir + { + get + { + if (_windir == null) + { + _windir = System.Environment.GetEnvironmentVariable("Windir"); + Assert.IsTrue(Directory.Exists(_windir), "%windir% does not exist ({0})", _windir); + } + return _windir; + } + } + + + + private string _perl = null; + private string perl + { + get + { + if (_perl == null) + { + var sysPath = Environment.GetEnvironmentVariable("Path"); + var pathElts = sysPath.Split(';'); + foreach (var elt in pathElts) + { + var putative = Path.Combine(elt, "perl.exe"); + if (File.Exists(putative)) + { + _perl = putative; + break; + } + } + Assert.IsTrue(File.Exists(_perl), "Cannot find perl.exe"); + } + return _perl; + } + } + + + + private string _cscriptExe = null; + private string cscriptExe + { + get + { + if (_cscriptExe == null) + { + _cscriptExe = Path.Combine(Path.Combine(windir, "system32"), "cscript.exe"); + Assert.IsTrue(File.Exists(_cscriptExe), "cscript.exe does not exist ({0})", _cscriptExe); + } + return _cscriptExe; + } + } + + + private string GetScript(string scriptName) + { + // check existence of script and script engine + string testBin = TestUtilities.GetTestBinDir(CurrentDir); + string resourceDir = Path.Combine(testBin, "Resources"); + string script = Path.Combine(resourceDir, scriptName); + Assert.IsTrue(File.Exists(script), "script ({0}) does not exist", script); + return script; + } + + private void VerifyFileTimes(string extractDir, + IEnumerable filesToCheck, + bool applyShellAllowance, + bool checkNtfsTimes, + int thresholdNanoseconds) + { + TestContext.WriteLine(""); + TestContext.WriteLine("Verify file times..."); + TimeSpan threshold = new TimeSpan(thresholdNanoseconds); + TestContext.WriteLine("Using threshold: ({0})", threshold.ToString()); + + foreach (var fqPath in filesToCheck) + { + var f = Path.GetFileName(fqPath); + var extractedFile = Path.Combine(extractDir, f); + Assert.IsTrue(File.Exists(extractedFile), "File does not exist ({0})", extractedFile); + + // check times + DateTime t1 = File.GetLastWriteTimeUtc(fqPath); + DateTime t2 = File.GetLastWriteTimeUtc(extractedFile); + TestContext.WriteLine("{0} lastwrite orig({1}) extracted({2})", + Path.GetFileName(fqPath), + t1.ToString("G"), + t2.ToString("G")); + + TimeSpan delta = (t1 > t2) ? t1 - t2 : t2 - t1; + if (checkNtfsTimes) + { + Assert.AreEqual(t1, t2, "LastWriteTime delta actual({0}) expected({1})", delta.ToString(), threshold.ToString()); + t1 = File.GetCreationTimeUtc(fqPath); + t2 = File.GetCreationTimeUtc(extractedFile); + delta = (t1 > t2) ? t1 - t2 : t2 - t1; + Assert.IsTrue(delta <= threshold, "CreationTime delta actual({0}) expected({1})", delta.ToString(), threshold.ToString()); + } + else + { + if (applyShellAllowance) + { + if (delta > threshold) + { + // In some cases - specifically when the file lastmod time + // is on the other side of a DST event - extracting with the + // shell gets a time on the extracted file that is 1 hour + // off the expected value. This doesn't happen when WinZip + // or DotNetZip is used for extraction - only when using the + // shell extension. In those cases we can allow for the + // extra hour. + TestContext.WriteLine("Adjusting delta for shell allowance..."); + delta -= new TimeSpan(1, 0, 0); // 1 hour + } + } + + Assert.IsTrue(delta <= threshold, + "LastWriteTime delta actual({0}) expected({1})", + delta.ToString(), + threshold.ToString()); + } + } + } + + + private void VerifyTimesUnix(string extractDir, IEnumerable filesToCheck) + { + VerifyFileTimes(extractDir, filesToCheck, true, false, + 10000 * 1000); // 1 second for unix + } + + private void VerifyTimesNtfs(string extractDir, IEnumerable filesToCheck) + { + VerifyFileTimes(extractDir, filesToCheck, true, false, + 100 * 1000); // default 0.01s for NTFS + } + + private void VerifyTimesDos(string extractDir, IEnumerable filesToCheck) + { + VerifyFileTimes(extractDir, filesToCheck, false, false, + 20000 * 1000); // 2 seconds for DOS times + + } + + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void Error_ZipFile_Initialize_Error() + { + string notaZipFile = GetScript("VbsUnzip-ShellApp.vbs"); + + // try to read a bogus zip archive + //Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + zip1.Initialize(notaZipFile); + } + } + + + + + [TestMethod] + public void ShellApplication_Unzip() + { + // get a set of files to zip up + string subdir = Path.Combine(TopLevelDir, "files"); + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + var script = GetScript("VbsUnzip-ShellApp.vbs"); + + int i = 0; + foreach (var compLevel in compLevels) + { + // create and fill the directories + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("ShellApplication_Unzip.{0}.zip", i)); + string extractDir = Path.Combine(TopLevelDir, String.Format("extract.{0}", i)); + + // Create the zip archive + //Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + zip1.CompressionLevel = (Ionic.Zlib.CompressionLevel)compLevel; + //zip.StatusMessageTextWriter = System.Console.Out; + for (int j = 0; j < filesToZip.Length; j++) + zip1.AddItem(filesToZip[j], "files"); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // run the unzip script + this.Exec(cscriptExe, + String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, extractDir)); + + // check the files in the extract dir + VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); + + // verify the file times + VerifyTimesDos(Path.Combine(extractDir, "files"), filesToZip); + i++; + } + } + + + [TestMethod] + public void ShellApplication_Unzip_NonSeekableOutput() + { + // get a set of files to zip up + string subdir = Path.Combine(TopLevelDir, "files"); + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + var script = GetScript("VbsUnzip-ShellApp.vbs"); + + int i = 0; + foreach (var compLevel in compLevels) + { + // create and fill the directories + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("ShellApplication_Unzip_NonSeekableOutput.{0}.zip", i)); + string extractDir = Path.Combine(TopLevelDir, String.Format("extract.{0}", i)); + + // Create the zip archive + //Directory.SetCurrentDirectory(TopLevelDir); + + // Want to test the library when saving to non-seekable output streams. Like + // stdout or ASPNET's Response.OutputStream. This simulates it. + using (var rawOut = System.IO.File.Create(zipFileToCreate)) + { + using (var nonSeekableOut = new Ionic.Zip.Tests.NonSeekableOutputStream(rawOut)) + { + using (ZipFile zip1 = new ZipFile()) + { + zip1.CompressionLevel = (Ionic.Zlib.CompressionLevel)compLevel; + for (int j = 0; j < filesToZip.Length; j++) + zip1.AddItem(filesToZip[j], "files"); + zip1.Save(nonSeekableOut); + } + } + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // run the unzip script + this.Exec(cscriptExe, + String.Format("\"{0}\" {1} {2}", script, + Path.GetFileName(zipFileToCreate), + Path.GetFileName(extractDir))); + + // check the files in the extract dir + VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); + + VerifyFileTimes(Path.Combine(extractDir, "files"), filesToZip, + false, false, 20000 * 1000); // 2s threshold for DOS times + i++; + } + } + + +#if SHELLAPP_UNZIP_SFX + + [TestMethod] + public void ShellApplication_Unzip_SFX() + { + // get a set of files to zip up + string subdir = Path.Combine(TopLevelDir, "files"); + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + var script = GetScript("VbsUnzip-ShellApp.vbs"); + + int i=0; + foreach (var compLevel in compLevels) + { + // create and fill the directories + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("ShellApp_Unzip_SFX.{0}.exe", i)); + string extractDir = Path.Combine(TopLevelDir, String.Format("extract.{0}",i)); + + // Create the zip archive + using (ZipFile zip1 = new ZipFile()) + { + zip1.CompressionLevel = (Ionic.Zlib.CompressionLevel) compLevel; + //zip.StatusMessageTextWriter = System.Console.Out; + for (int j = 0; j < filesToZip.Length; j++) + zip1.AddItem(filesToZip[j], "files"); + zip1.SaveSelfExtractor(zipFileToCreate, SelfExtractorFlavor.ConsoleApplication); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // run the unzip script + this.Exec(cscriptExe, + String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, extractDir)); + + // check the files in the extract dir + VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); + + // verify the file times + VerifyTimesDos(Path.Combine(extractDir, "files"), filesToZip); + i++; + } + } +#endif + + + + [TestMethod] + public void ShellApplication_Unzip_2() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "ShellApplication_Unzip-2.zip"); + // create and fill the directories + string extractDir = Path.Combine(TopLevelDir, "extract"); + var checksums = new Dictionary(); + var filesToZip = GetSelectionOfTempFiles(_rnd.Next(13) + 8, checksums); + + // Create the zip archive + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddFiles(filesToZip, "files"); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Count, + "Incorrect number of entries in the zip file."); + + // run the unzip script + string script = GetScript("VbsUnzip-ShellApp.vbs"); + + this.Exec(cscriptExe, + String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, extractDir)); + + // check the files in the extract dir + VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); + + #if IN_A_SANE_WORLD + // !! + // I think the file times get messed up using the Shell to unzip. + // !! + + // verify the file times + VerifyTimesDos(Path.Combine(extractDir, "files"), filesToZip); + #endif + } + + + + [TestMethod] + public void ShellApplication_SelectedFiles_Unzip() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "ShellApplication_SelectedFiles_Unzip.zip"); + + TestContext.WriteLine("ZipFile version: {0}", ZipFile.LibraryVersion); + + // create and fill the directories + string extractDir = "extract"; + string dirToZip = "files"; + TestContext.WriteLine("creating dir '{0}' with files", dirToZip); + Directory.CreateDirectory(dirToZip); + + int numFilesToAdd = _rnd.Next(5) + 6; + int numFilesAdded = 0; + int baseSize = _rnd.Next(0x100ff) + 8000; + int nFilesInSubfolders = 0; + Dictionary checksums = new Dictionary(); + var flist = new List(); + for (int i = 0; i < numFilesToAdd && nFilesInSubfolders < 2; i++) + { + string fileName = string.Format("Test{0}.txt", i); + if (i != 0) + { + int x = _rnd.Next(4); + if (x != 0) + { + string folderName = string.Format("folder{0}", x); + fileName = Path.Combine(folderName, fileName); + if (!Directory.Exists(Path.Combine(dirToZip, folderName))) + Directory.CreateDirectory(Path.Combine(dirToZip, folderName)); + nFilesInSubfolders++; + } + } + fileName = Path.Combine(dirToZip, fileName); + TestUtilities.CreateAndFillFileBinary(fileName, baseSize + _rnd.Next(28000)); + var key = Path.GetFileName(fileName); + var chk = TestUtilities.ComputeChecksum(fileName); + checksums.Add(key, chk); + flist.Add(fileName); + numFilesAdded++; + } + + // Create the zip archive + var sw = new System.IO.StringWriter(); + using (ZipFile zip1 = new ZipFile()) + { + zip1.StatusMessageTextWriter = sw; + //zip1.StatusMessageTextWriter = Console.Out; + zip1.AddSelectedFiles("*.*", dirToZip, "", true); + zip1.Save(zipFileToCreate); + } + TestContext.WriteLine(sw.ToString()); + + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), numFilesAdded, + "Incorrect number of entries in the zip file."); + + // run the unzip script + string script = GetScript("VbsUnzip-ShellApp.vbs"); + + this.Exec(cscriptExe, + String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, Path.Combine(TopLevelDir, extractDir))); + + // check the files in the extract dir + foreach (var fqPath in flist) + { + var f = Path.GetFileName(fqPath); + var extractedFile = fqPath.Replace("files", "extract"); + Assert.IsTrue(File.Exists(extractedFile), "File does not exist ({0})", extractedFile); + var chk = TestUtilities.ComputeChecksum(extractedFile); + Assert.AreEqual(TestUtilities.CheckSumToString(checksums[f]), + TestUtilities.CheckSumToString(chk), + String.Format("Checksums for file {0} do not match.", f)); + checksums.Remove(f); + } + + Assert.AreEqual(0, checksums.Count, "Not all of the expected files were found in the extract directory."); + } + + + + + [TestMethod] + public void ShellApplication_Zip() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "ShellApplication_Zip.zip"); + //Directory.SetCurrentDirectory(TopLevelDir); + + string subdir = Path.Combine(TopLevelDir, "files"); + string extractDir = "extract"; + + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + // Create the zip archive via script + string script = GetScript("VbsCreateZip-ShellApp.vbs"); + + this.Exec(cscriptExe, + String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, subdir)); + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // unzip + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + zip1.ExtractAll(extractDir); + } + + // check the files in the extract dir + VerifyChecksums(extractDir, filesToZip, checksums); + + VerifyTimesDos(extractDir, filesToZip); + } + + + [TestMethod] + public void ShellApplication_Zip_2() + { + string zipFileToCreate = "ShellApplication_Zip.zip"; + string subdir = "files"; + string extractDir = "extract"; + + TestContext.WriteLine("======================================================"); + + Dictionary checksums = new Dictionary(); + var filesToZip = GetSelectionOfTempFiles(_rnd.Next(33) + 11, checksums); + + Directory.CreateDirectory(subdir); + Directory.SetCurrentDirectory(subdir); + var w = System.Environment.GetEnvironmentVariable("Windir"); + Assert.IsTrue(Directory.Exists(w), "%windir% does not exist ({0})", w); + var fsutil = Path.Combine(Path.Combine(w, "system32"), "fsutil.exe"); + Assert.IsTrue(File.Exists(fsutil), "fsutil.exe does not exist ({0})", fsutil); + string ignored; + + TestContext.WriteLine("validating the list of files..."); + List markedForRemoval = new List (); + // remove those with spaces in the names. The ShellApp (zipfldr.dll) doesn't + // deal with these files very well. Or something. + foreach (var f in filesToZip) + { + if (Path.GetFileName(f).IndexOf(' ') > 0) + markedForRemoval.Add(f); + } + + foreach (var f in markedForRemoval) + { + TestContext.WriteLine("removing {0}...", Path.GetFileName(f)); + filesToZip.Remove(f); + checksums.Remove(Path.GetFileName(f)); + } + + TestContext.WriteLine("--------------------------------------------"); + TestContext.WriteLine("creating links..."); + foreach (var f in filesToZip) + { + string shortfile= Path.GetFileName(f); + Assert.IsTrue(File.Exists(f)); + string cmd = String.Format("hardlink create \"{0}\" \"{1}\"", shortfile, f); + TestUtilities.Exec_NoContext(fsutil, cmd, out ignored); + } + + TestContext.WriteLine("++++++++++++++++++++++++++++++++++++++++++++++++++++++"); + // Create the zip archive via script + Directory.SetCurrentDirectory(TopLevelDir); + string script = GetScript("VbsCreateZip-ShellApp.vbs"); + + this.Exec(cscriptExe, + String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, subdir)); + + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + // DEBUGGING! + if (TestUtilities.CountEntries(zipFileToCreate) != filesToZip.Count) + { + string[] linkedFiles = Directory.GetFiles(subdir); + + Action, string> ListFiles = (list, name) => + { + TestContext.WriteLine("**********************************"); + TestContext.WriteLine("files in ({0})", name); + foreach (var s in list) + { + TestContext.WriteLine(" {0}", Path.GetFileName(s)); + } + TestContext.WriteLine("----------------------------------"); + TestContext.WriteLine(" {0} total files", list.Count()); + }; + + ListFiles(linkedFiles, "Linked Files"); + ListFiles(filesToZip, "selected Files"); + + IEnumerable selection = null; + using (var zip = ZipFile.Read(zipFileToCreate)) + { + selection = from e in zip.Entries select e.FileName; + } + + ListFiles(selection, "zipped Files"); + + foreach (var file in linkedFiles) + { + if (!selection.Contains(Path.GetFileName(file))) + { + TestContext.WriteLine("Missing: {0}", Path.GetFileName(file)); + } + } + } + // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Count, + "Incorrect number of entries in the zip file."); + + // unzip + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + zip1.ExtractAll(extractDir); + } + + // check the files in the extract dir + VerifyChecksums(extractDir, filesToZip, checksums); + + VerifyTimesDos(extractDir, filesToZip); + } + + + + [TestMethod] + public void VStudio_Zip() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "VStudio_Zip.zip"); + string subdir = Path.Combine(TopLevelDir, "files"); + string extractDir = "extract"; + + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + //Directory.SetCurrentDirectory(TopLevelDir); + + String[] a = Array.ConvertAll(filesToZip, x => Path.GetFileName(x)); + Microsoft.VisualStudio.Zip.ZipFileCompressor zfc = new Microsoft.VisualStudio.Zip.ZipFileCompressor(zipFileToCreate, "files", a, true); + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // unzip + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + zip1.ExtractAll(extractDir); + } + + // check the files in the extract dir + VerifyChecksums(extractDir, filesToZip, checksums); + + // visual Studio's ZIP library doesn't bother with times... + //VerifyNtfsTimes(extractDir, filesToZip); + } + + + + [TestMethod] + [Timeout(3 * 60 * 1000)] // timeout in ms. + public void VStudio_UnZip() + { + string zipFileToCreate = "VStudio_UnZip.zip"; + string shortDir = "files"; + string subdir = Path.Combine(TopLevelDir, shortDir); + string extractDir = "extract"; + + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + // Create the zip archive + //Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + for (int i = 0; i < filesToZip.Length; i++) + zip1.AddItem(filesToZip[i], shortDir); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // unzip + var decompressor = new Microsoft.VisualStudio.Zip.ZipFileDecompressor(zipFileToCreate, false, true, false); + decompressor.UncompressToFolder(extractDir, false); + + // check the files in the extract dir + VerifyChecksums(Path.Combine(extractDir, shortDir), filesToZip, checksums); + + // visual Studio's ZIP library doesn't bother with times... + //VerifyNtfsTimes(Path.Combine(extractDir, "files"), filesToZip); + } + + + + [TestMethod] + public void COM_Zip() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "COM_Zip.zip"); + string shortDir = "files"; + string subdir = Path.Combine(TopLevelDir, shortDir); + string extractDir = "extract"; + + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + // run the COM script to create the ZIP archive + string script = GetScript("VbsCreateZip-DotNetZip.vbs"); + + this.Exec(cscriptExe, + String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, subdir)); + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // unzip + //Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + zip1.ExtractAll(extractDir); + } + + // check the files in the extract dir + VerifyChecksums(extractDir, filesToZip, checksums); + + VerifyTimesNtfs(extractDir, filesToZip); + } + + + + [TestMethod] + public void COM_Unzip() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "COM_Unzip.zip"); + + // construct the directories + //string ExtractDir = Path.Combine(TopLevelDir, "extract"); + string extractDir = "extract"; + string shortDir = "files"; + string subdir = Path.Combine(TopLevelDir, shortDir); + + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + // Create the zip archive + //Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + for (int i = 0; i < filesToZip.Length; i++) + zip1.AddItem(filesToZip[i], shortDir); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "Incorrect number of entries in the zip file."); + + + // run the COM script to unzip the ZIP archive + string script = GetScript("VbsUnzip-DotNetZip.vbs"); + this.Exec(cscriptExe, + String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, extractDir)); + + // check the files in the extract dir + VerifyChecksums(Path.Combine(extractDir, shortDir), filesToZip, checksums); + + VerifyTimesNtfs(Path.Combine(extractDir, shortDir), filesToZip); + } + + + [TestMethod] + public void COM_Check() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "COM_Check.zip"); + + // create and fill the directories + string subdir = Path.Combine(TopLevelDir, "files"); + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + // Create the zip archive + //Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + for (int i = 0; i < filesToZip.Length; i++) + zip1.AddItem(filesToZip[i], "files"); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // run the COM script to check the ZIP archive + string script = GetScript("TestCheckZip.js"); + + string testOut = this.Exec(cscriptExe, + String.Format("\"{0}\" {1}", script, zipFileToCreate)); + + Assert.IsTrue(testOut.StartsWith("That zip is OK")); + } + + + [TestMethod] + public void COM_CheckWithExtract() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "COM_CheckWithExtract.zip"); + + // create and fill the directories + string subdir = Path.Combine(TopLevelDir, "files"); + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + // Create the zip archive + //Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + for (int i = 0; i < filesToZip.Length; i++) + zip1.AddItem(filesToZip[i], "files"); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // run the COM script to check and test-extract the ZIP archive + string script = GetScript("TestCheckZip.js"); + + string testOut = this.Exec(cscriptExe, + String.Format("\"{0}\" -x {1}", script, zipFileToCreate)); + + Assert.IsTrue(testOut.StartsWith("That zip is OK"), "output: {0}", testOut); + } + + + [TestMethod] + public void COM_CheckError() + { + //Directory.SetCurrentDirectory(TopLevelDir); + + // run the COM script to check the (not) ZIP archive + string script = GetScript("TestCheckZip.js"); + + string testOut = this.Exec(cscriptExe, + String.Format("\"{0}\" {1}", script, cscriptExe)); + + Assert.IsTrue(testOut.StartsWith("That zip is not OK")); + } + + [TestMethod] + public void COM_CheckPassword() + { + // create and fill the directories + string subdir = Path.Combine(TopLevelDir, "files"); + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + // first case - all entries have same password - should pass the check. + // second case - last entry uses a different password - should fail the check. + for (int k=0; k < 2; k++) + { + string password = GeneratePassword(11); + string zipFileToCreate= String.Format("COM_CheckPass-{0}.zip", k); + zipFileToCreate = Path.Combine(TopLevelDir, zipFileToCreate); + // Create the zip archive + using (ZipFile zip1 = new ZipFile()) + { + //zip1.Password = password; + for (int i = 0; i < filesToZip.Length; i++) + { + var e = zip1.AddFile(filesToZip[i], "files"); + e.Password = (k == 1 && i == filesToZip.Length-1) + ? "7" + : password; + } + zip1.Save(zipFileToCreate); + } + + TestContext.WriteLine("Checking the count..."); + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length, + "Incorrect number of entries in the zip file."); + + TestContext.WriteLine("Checking the password (case {0})...", k); + string script = GetScript("TestCheckZipPassword.js"); + string testOut = this.Exec(cscriptExe, + String.Format("\"{0}\" {1} {2}", + script, zipFileToCreate, password)); + + if (k==0) + Assert.IsTrue(testOut.StartsWith("That zip is OK")); + else + Assert.IsFalse(testOut.StartsWith("That zip is OK")); + } + } + + + private string GeneratePassword(int n) + { + // not good for passwords used on the command line with cmd line tools!! + // return TestUtilities.GenerateRandomPassword(); + + return TestUtilities.GenerateRandomAsciiString(n).Replace(" ","_"); + //return "Alphabet"; + } + + + + [TestMethod] + public void InfoZip_Unzip() + { + if (!InfoZipIsPresent) + throw new Exception("[InfoZip_Unzip] : InfoZip is not present"); + + string shortDir = "filesToZip"; + string subdir = Path.Combine(TopLevelDir, shortDir); + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + for (int j=0; j < 2; j++) // crypto.Length + { + // Cannot do WinZipAES encryption - not supported by InfoZip + int i = 0; + foreach (var compLevel in compLevels) + { + string zipFileToCreate = + String.Format("InfoZip_Unzip.{0}.{1}.zip", i,j); + + string password = GeneratePassword(9); + // Create the zip archive + using (ZipFile zip1 = new ZipFile()) + { + zip1.CompressionLevel = (Ionic.Zlib.CompressionLevel)compLevel; + if (j!=0) + { + zip1.Encryption = crypto[j]; + zip1.Password = password; + } + for (int n = 0; n < filesToZip.Length; n++) + zip1.AddItem(filesToZip[n], shortDir); + zip1.Save(zipFileToCreate); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length, + "Incorrect number of entries in the zip file"+ + " (i,j)=({0},{1}).", i,j); + + string extractDir = String.Format("extract.{0}.{1}", i,j); + + if (j==0) + { + this.Exec(infoZipUnzip, + String.Format("{0} -d {1}", + Path.GetFileName(zipFileToCreate), + Path.GetFileName(extractDir))); + } + else + { + this.Exec(infoZipUnzip, + String.Format("-P {0} {1} -d {2}", + password, + Path.GetFileName(zipFileToCreate), + Path.GetFileName(extractDir))); + } + + var extractedFiles = Directory.GetFiles(Path.Combine(extractDir, shortDir)); + Assert.AreEqual + (filesToZip.Length, extractedFiles.Length, + "Incorrect number of extracted files. (i,j)={0},{1}", + i,j); + + VerifyChecksums(Path.Combine(extractDir, shortDir), + filesToZip, checksums); + + i++; + } + } + } + + + [TestMethod] + public void InfoZip_Zip() + { + if (!InfoZipIsPresent) + throw new Exception("InfoZip is not present"); + + // create and fill the directories + string shortDir = "filesToZip"; + string subdir = Path.Combine(TopLevelDir, shortDir); + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + // infozip usage: + // zip.exe zipfile.zip -r + // zip.exe zipfile.zip + + for (int k=0; k < 2; k++) + { + string zipFileToCreate = String.Format("InfoZip_Zip-{0}.zip", k); + string extractDir = "extractDir-" + k; + + var relativePath = Path.GetFileName(subdir); + + if (k==0) + { + // Create the zip archive via Infozip.exe + // zip.exe zipfile.zip -r + this.Exec(infoZip, String.Format("{0} -r {1}", + zipFileToCreate, relativePath)); + } + else + { + string[] relPathFiles = + Array.ConvertAll(filesToZip, + path => + Path.Combine(relativePath, + Path.GetFileName(path))); + + // zip.exe zipfile.zip + this.Exec(infoZip, zipFileToCreate + " " + + String.Join(" ", relPathFiles)); + } + + // delay a bit between file creation and check/unzip + System.Threading.Thread.Sleep(1200); + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // run the COM script to unzip the ZIP archive + string script = GetScript("VbsUnZip-DotNetZip.vbs"); + + this.Exec(cscriptExe, + String.Format("\"{0}\" {1} {2}", + script, + Path.GetFileName(zipFileToCreate), + extractDir)); + // check the files in the extract dir + VerifyChecksums(Path.Combine(extractDir,shortDir), filesToZip, checksums); + VerifyTimesUnix(Path.Combine(extractDir,shortDir), filesToZip); + } + } + + + + [TestMethod] + public void InfoZip_Zip_Password() + { + if (!InfoZipIsPresent) + throw new Exception("[InfoZip_Zip_Password] : InfoZip is not present"); + + // create and fill the directories + string extractDir = "extractDir"; + string shortDir = "filesToZip"; + string subdir = Path.Combine(TopLevelDir, shortDir); + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + // infozip usage: + // zip.exe zipfile.zip -r -P + + string password = GeneratePassword(9); + string zipFileToCreate = "InfoZip_Zip_Password.zip"; + + // Create the zip archive via Infozip.exe + this.Exec(infoZip, String.Format("{0} -r -P {1} {2}", + zipFileToCreate, + password, + shortDir)); + + // delay a bit between file creation and check/unzip + System.Threading.Thread.Sleep(1200); + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // extract + using (var zip = ZipFile.Read(zipFileToCreate)) + { + zip.Password = password; + zip.ExtractAll(extractDir); + } + + // check the files in the extract dir + VerifyChecksums(Path.Combine(extractDir, shortDir), filesToZip, checksums); + VerifyTimesNtfs(Path.Combine(extractDir, shortDir), filesToZip); + } + + + + [TestMethod] + public void InfoZip_Zip_Split() + { + if (!InfoZipIsPresent) + throw new Exception("InfoZip is not present"); + + string dirToZip = "dirToZip"; + int numFiles = _rnd.Next(17) + 12; + string[] filesToZip; + string msg; + Dictionary checksums; + int[] segmentSizes = { 256, 512, 1024, 4096, 8192 }; // in kb + + _txrx = TestUtilities.StartProgressMonitor("InfoZip-compat", + "InfoZip split archives", + "Creating "+numFiles+" files"); + _txrx.Send("pb 0 max 2"); + _txrx.Send("pb 1 max " + numFiles); + + var update = new Action( (x,y,z) => { + switch (x) + { + case 0: + break; + case 1: + break; + case 2: + _txrx.Send("pb 1 step"); + msg = String.Format("status created {0}/{1} files", + y+1, + ((int)z)); + _txrx.Send(msg); + break; + } + }); + + CreateLargeFilesWithChecksums(dirToZip, numFiles, update, + out filesToZip, out checksums); + + _txrx.Send("pb 0 step"); + _txrx.Send("pb 1 max " + segmentSizes.Length); + _txrx.Send("pb 1 value 0"); + for (int i=0; i < segmentSizes.Length; i++) + { + _txrx.Send("status zip with " + segmentSizes[i] + "k segments"); + string trialDir = segmentSizes[i] + "k"; + Directory.CreateDirectory(trialDir); + string zipFileToCreate = Path.Combine(trialDir, trialDir + ".zip"); + // Create the zip archive via Infozip.exe + this.Exec(infoZip, String.Format("{0} -r -s {1}k -sv {2}", + zipFileToCreate, + segmentSizes[i], + dirToZip)); + + string extractDir = segmentSizes[i] + "k.extract"; + using (var zip = ZipFile.Read(zipFileToCreate)) + { + zip.ExtractAll(extractDir); + } + + VerifyChecksums(Path.Combine(extractDir, dirToZip), filesToZip, checksums); + + _txrx.Send("pb 1 step"); + } + } + + + + +#if NOT + // warning [256k/256k.zip]: zipfile claims to be last disk of a + // multi-part archive; attempting to process anyway, assuming + // all parts have been concatenated together in order. Expect + // "errors" and warnings...true multi-part support doesn't exist + // yet (coming soon). + + [TestMethod] + public void InfoZip_Unzip_Split() + { + if (!InfoZipIsPresent) + throw new Exception("InfoZip is not present"); + + string dirToZip = "dirToZip"; + int numFiles = _rnd.Next(17) + 12; + string[] filesToZip; + string msg; + Dictionary checksums; + int[] segmentSizes = { 256, 512, 1024, 4096, 8192 }; // in kb + + _txrx = TestUtilities.StartProgressMonitor("InfoZip-compat", + "InfoZip split archives", + "Creating "+numFiles+" files"); + _txrx.Send("pb 0 max 2"); + _txrx.Send("pb 1 max " + numFiles); + + var update = new Action( (x,y,z) => { + switch (x) + { + case 0: + break; + case 1: + break; + case 2: + _txrx.Send("pb 1 step"); + msg = String.Format("status created {0}/{1} files", + y+1, + ((int)z)); + _txrx.Send(msg); + break; + } + }); + + CreateLargeFilesWithChecksums(dirToZip, numFiles, update, + out filesToZip, out checksums); + + _txrx.Send("pb 0 step"); + _txrx.Send("pb 1 max " + segmentSizes.Length); + _txrx.Send("pb 1 value 0"); + for (int i=0; i < segmentSizes.Length; i++) + { + //Directory.SetCurrentDirectory(TopLevelDir); + _txrx.Send("status zip with " + segmentSizes[i] + "k segments"); + string trialDir = segmentSizes[i] + "k"; + Directory.CreateDirectory(trialDir); + string zipFileToCreate = Path.Combine(trialDir, trialDir + ".zip"); + // Create the zip archive via DotNetZip + using (var zip = new ZipFile()) + { + zip.AddFiles(filesToZip); + zip.MaxOutputSegmentSize = segmentSizes[i]*1024; + zip.Save(zipFileToCreate); + } + + // extract using InfoZip + string extractDir = segmentSizes[i] + "k.extract"; + //Directory.SetCurrentDirectory(TopLevelDir); + this.Exec(infoZipUnzip, + String.Format("{0} -d {1}", + zipFileToCreate, + extractDir)); + + VerifyChecksums(Path.Combine(extractDir, dirToZip), filesToZip, checksums); + + _txrx.Send("pb 1 step"); + } + } +#endif + + + [TestMethod] + public void InfoZip_Unzip_z64_wi11936() + { + if (!InfoZipIsPresent) + throw new Exception("InfoZip is not present"); + + string dirToZip = "dirToZip"; + int numFiles = _rnd.Next(17) + 12; + string[] filesToZip; + string msg; + Dictionary checksums; + + _txrx = TestUtilities.StartProgressMonitor("InfoZip-compat", + "InfoZip split archives", + "Creating "+numFiles+" files"); + _txrx.Send("pb 0 max 3"); + _txrx.Send("pb 1 max " + numFiles); + + var update = new Action( (x,y,z) => { + switch (x) + { + case 0: + break; + case 1: + break; + case 2: + _txrx.Send("pb 1 step"); + msg = String.Format("status created {0}/{1} files", + y+1, + ((int)z)); + _txrx.Send(msg); + break; + } + }); + + CreateLargeFilesWithChecksums(dirToZip, numFiles, update, + out filesToZip, out checksums); + + _txrx.Send("pb 0 step"); + _txrx.Send("pb 1 max 3"); + _txrx.Send("pb 1 value 0"); + + string zipFileToCreate = "infozip-z64-unzip.zip"; + // Create the zip archive via DotNetZip + using (var zip = new ZipFile()) + { + zip.AddFiles(filesToZip); + zip.UseZip64WhenSaving = Zip64Option.Always; + zip.Save(zipFileToCreate); + } + _txrx.Send("pb 1 step"); + + // extract using InfoZip + string extractDir = "extract"; + this.Exec(infoZipUnzip, + String.Format("{0} -d {1}", + zipFileToCreate, + extractDir)); + _txrx.Send("pb 1 step"); + + VerifyChecksums(Path.Combine(extractDir, dirToZip), filesToZip, checksums); + _txrx.Send("pb 1 step"); + } + + + [TestMethod] + public void InfoZip_Unzip_ZeroLengthFile() + { + if (!InfoZipIsPresent) + throw new Exception("InfoZip is not present"); + + string password = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + + // pass 1 for one regular zero length file. + // pass 2 for zero-length file with WinZip encryption (which does not actually + // get applied) + // pass 3 for PKZip encryption (ditto) + for (int k=0; k < 3; k++) + { + string zipFileToCreate = "ZLF.zip"; + + // create an empty file + string filename = Path.GetRandomFileName(); + using (StreamWriter sw = File.CreateText(filename)) { } + + // Create the zip archive + using (ZipFile zip1 = new ZipFile()) + { + if(k==1) + { + zip1.Encryption = EncryptionAlgorithm.WinZipAes256; + zip1.Password = password; + } + else if (k==2) + { + zip1.Password = password; + zip1.Encryption = EncryptionAlgorithm.PkzipWeak; + } + zip1.AddFile(filename, ""); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(1, TestUtilities.CountEntries(zipFileToCreate), + "Incorrect number of entries in the zip file."); + + string extractDir = "extract." + k; + Directory.CreateDirectory(extractDir); + + // now, extract the zip. Possibly need a password. + // eg, unzip.exe -P test.zip -d + string args = zipFileToCreate + " -d " + extractDir; + if (k!=0) + args = "-P " + password + " " + args; + string infozipOut = this.Exec(infoZipUnzip, args); + + TestContext.WriteLine("{0}", infozipOut); + Assert.IsFalse(infozipOut.Contains("signature not found")); + } + } + + + + + [TestMethod] + public void Perl_Zip() + { + if (perl == null) + throw new Exception("[Perl_Zip] : Perl is not present"); + + string zipFileToCreate = "newzip.zip"; + string shortDir = "filesToZip"; + string dirToZip = Path.Combine(TopLevelDir, shortDir); + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(dirToZip, out filesToZip, out checksums); + + // create a zip with perl: + TestContext.WriteLine("Creating a zip with perl..."); + string createZipPl = GetScript("CreateZip.pl"); + this.Exec(perl, + String.Format("\"{0}\" {1} \"{2}\"", + createZipPl, + zipFileToCreate, + shortDir)); + + TestContext.WriteLine(""); + TestContext.WriteLine("Extracting that zip with DotNetZip..."); + string extractDir = "extract"; + using (var zip = ZipFile.Read(zipFileToCreate)) + { + zip.ExtractAll(extractDir); + } + + TestContext.WriteLine(""); + TestContext.WriteLine("Verifying checksums..."); + VerifyChecksums(Path.Combine(extractDir, dirToZip), filesToZip, checksums); + } + + + + + [TestMethod] + public void SevenZip_Zip_1() + { + if (!SevenZipIsPresent) + throw new Exception("[7z_Zip_1] : SevenZip is not present"); + + string zipFileToCreate = Path.Combine(TopLevelDir, "7z_Zip_1.zip"); + // create and fill the directories + string extractDir = "extract"; + string subdir = Path.Combine(TopLevelDir, "files"); + + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + // Create the zip archive via 7z.exe + this.Exec(sevenZip, String.Format("a {0} {1}", zipFileToCreate, subdir)); + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // run the COM script to unzip the ZIP archive + string script = GetScript("VbsUnZip-DotNetZip.vbs"); + + this.Exec(cscriptExe, + String.Format("\"{0}\" {1} {2}", script, zipFileToCreate, extractDir)); + + // check the files in the extract dir + VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); + VerifyTimesNtfs(Path.Combine(extractDir, "files"), filesToZip); + } + + + + [TestMethod] + public void SevenZip_Zip_2() + { + if (!SevenZipIsPresent) + throw new Exception("[7z_Zip_2] : SevenZip is not present"); + + string zipFileToCreate = Path.Combine(TopLevelDir, "7z_Zip_2.zip"); + + // create and fill the directories + string extractDir = "extract"; + string subdir = Path.Combine(TopLevelDir, "files"); + + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + // Create the zip archive via 7z.exe + //Directory.SetCurrentDirectory(TopLevelDir); + + this.Exec(sevenZip, String.Format("a {0} {1}", zipFileToCreate, subdir)); + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // unzip + //Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + zip1.ExtractAll(extractDir); + } + + // check the files in the extract dir + VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); + + VerifyTimesNtfs(Path.Combine(extractDir, "files"), filesToZip); + } + + + + [TestMethod] + public void SevenZip_Unzip() + { + if (!SevenZipIsPresent) + throw new Exception("[7z_Unzip] : SevenZip is not present"); + + string zipFileToCreate = Path.Combine(TopLevelDir, "7z_Unzip.zip"); + + // create and fill the directories + string subdir = Path.Combine(TopLevelDir, "files"); + + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + // Create the zip archive with DotNetZip + //Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + for (int i = 0; i < filesToZip.Length; i++) + zip1.AddItem(filesToZip[i], "files"); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // unpack the zip archive via 7z.exe + Directory.CreateDirectory("extract"); + Directory.SetCurrentDirectory("extract"); + this.Exec(sevenZip, String.Format("x {0}", zipFileToCreate)); + + // check the files in the extract dir + Directory.SetCurrentDirectory(TopLevelDir); + + VerifyChecksums(Path.Combine("extract", "files"), filesToZip, checksums); + } + + + [TestMethod] + public void SevenZip_Unzip_Password() + { + if (!SevenZipIsPresent) + throw new Exception("[7z_Unzip_Password] : SevenZip is not present"); + + string zipFileToCreate = Path.Combine(TopLevelDir, "7z_Unzip_Password.zip"); + string password = Path.GetRandomFileName(); + string subdir = Path.Combine(TopLevelDir, "files"); + + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + // Create the zip archive with DotNetZip + //Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + zip1.Password = password; + zip1.AddFiles(filesToZip, "files"); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // unpack the zip archive via 7z.exe + Directory.CreateDirectory("extract"); + Directory.SetCurrentDirectory("extract"); + this.Exec(sevenZip, String.Format("x -p{0} {1}", password, zipFileToCreate)); + + // check the files in the extract dir + Directory.SetCurrentDirectory(TopLevelDir); + + VerifyChecksums(Path.Combine("extract", "files"), filesToZip, checksums); + } + + + + + [TestMethod] + public void SevenZip_Unzip_Password_NonSeekableOutput() + { + if (!SevenZipIsPresent) + throw new Exception("[7z_Unzip_Password_NonSeekableOutput] : SevenZip is not present"); + + string subdir = Path.Combine(TopLevelDir, "files"); + + string[] filesToZip; + Dictionary checksums = null; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + //CreateFilesAndChecksums(subdir, 2, 32, out filesToZip, out checksums); + +#if NOT + // debugging + Directory.CreateDirectory(subdir); + DateTime atMidnight = new DateTime(DateTime.Now.Year, + DateTime.Now.Month, + DateTime.Now.Day, + 11,11,11); + filesToZip = new String[2]; + for (int z=0; z < 2; z++) + { + string fname = Path.Combine(subdir, String.Format("file{0:D3}.txt", z)); + File.WriteAllText(fname, "12341234123412341234123412341234"); + File.SetLastWriteTime(fname, atMidnight); + File.SetLastAccessTime(fname, atMidnight); + File.SetCreationTime(fname, atMidnight); + filesToZip[z]= fname; + } +#endif + TestContext.WriteLine("Test Unzip with 7zip"); + TestContext.WriteLine("============================================"); + + // marker file + // using (File.Create(Path.Combine(TopLevelDir, "DotNetZip-" + ZipFile.LibraryVersion.ToString()))) ; + + int i = 0; + foreach (var compLevel in compLevels) + { + TestContext.WriteLine("---------------------------------"); + TestContext.WriteLine("Trial {0}", i); + TestContext.WriteLine("CompressionLevel = {0}", compLevel); + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("7z_Unzip_Password_NonSeekableOutput.{0}.zip", i)); + string password = Path.GetRandomFileName(); + //string password = "0123456789ABCDEF"; + string extractDir = Path.Combine(TopLevelDir, String.Format("extract.{0}", i)); + + TestContext.WriteLine("Password = {0}", password); + + // Create the zip archive with DotNetZip + //Directory.SetCurrentDirectory(TopLevelDir); + // Want to test the library when saving to non-seekable output streams. Like + // stdout or ASPNET's Response.OutputStream. This simulates it. + using (var rawOut = System.IO.File.Create(zipFileToCreate)) + { + using (var nonSeekableOut = new Ionic.Zip.Tests.NonSeekableOutputStream(rawOut)) + { + using (ZipFile zip1 = new ZipFile()) + { + zip1.CompressionLevel = (Ionic.Zlib.CompressionLevel)compLevel; + zip1.Password = password; + zip1.AddFiles(filesToZip, "files"); + zip1.Save(nonSeekableOut); + } + } + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // unpack the zip archive via 7z.exe + Directory.CreateDirectory(extractDir); + this.Exec(sevenZip, String.Format("x -o{0} -p{1} {2}", + Path.GetFileName(extractDir), + password, + zipFileToCreate)); + + // check the files in the extract dir + //Directory.SetCurrentDirectory(TopLevelDir); + + VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); + i++; + } + } + + + + [TestMethod] + public void SevenZip_Unzip_SFX() + { + if (!SevenZipIsPresent) + throw new Exception("[7z_Unzip_SFX] : SevenZip is not present"); + + string zipFileToCreate = Path.Combine(TopLevelDir, "7z_Unzip_SFX.exe"); + + // create and fill the directories + string subdir = Path.Combine(TopLevelDir, "files"); + + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + // Create the zip archive with DotNetZip + //Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + for (int i = 0; i < filesToZip.Length; i++) + zip1.AddItem(filesToZip[i], "files"); + zip1.SaveSelfExtractor(zipFileToCreate, + SelfExtractorFlavor.ConsoleApplication); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // unpack the zip archive via 7z.exe + Directory.CreateDirectory("extract"); + Directory.SetCurrentDirectory("extract"); + this.Exec(sevenZip, String.Format("x {0}", zipFileToCreate)); + + // check the files in the extract dir + Directory.SetCurrentDirectory(TopLevelDir); + + VerifyChecksums(Path.Combine("extract", "files"), filesToZip, checksums); + } + + + + [TestMethod] + public void Winzip_Zip() + { + Winzip_Zip_Variable(""); + } + + + [TestMethod] + public void Winzip_Zip_Password() + { + if (!WinZipIsPresent) + throw new Exception("[Winzip_Zip_Password] : winzip is not present"); + + + string password = Path.GetRandomFileName().Replace(".", "@"); + TestContext.WriteLine("creating zip with password ({0})", password); + string zipfile = Winzip_Zip_Variable("-s" + password, false); + string extractDir = "extract"; + + // unzip with DotNetZip + //Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = ZipFile.Read(zipfile)) + { + zip1.Password = password; + zip1.ExtractAll(extractDir); + } + } + + + [TestMethod] + public void Winzip_Zip_Normal() + { + Winzip_Zip_Variable("-en"); + } + + [TestMethod] + public void Winzip_Zip_Fast() + { + Winzip_Zip_Variable("-ef"); + } + + [TestMethod] + public void Winzip_Zip_SuperFast() + { + Winzip_Zip_Variable("-es"); + } + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void Winzip_Zip_EZ() + { + if (!WinZipIsPresent) throw new Exception("no winzip"); + // Unsupported compression method + Winzip_Zip_Variable("-ez"); + } + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void Winzip_Zip_PPMd() + { + if (!WinZipIsPresent) throw new Exception("no winzip"); + // Unsupported compression method + Winzip_Zip_Variable("-ep"); + } + + [TestMethod] + public void Winzip_Zip_Bzip2() + { + if (!WinZipIsPresent) throw new Exception("no winzip"); + Winzip_Zip_Variable("-eb"); + } + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void Winzip_Zip_Enhanced() + { + if (!WinZipIsPresent) throw new Exception("no winzip"); + // Unsupported compression method + Winzip_Zip_Variable("-ee"); + } + + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void Winzip_Zip_LZMA() + { + if (!WinZipIsPresent) throw new Exception("no winzip"); + // Unsupported compression method + Winzip_Zip_Variable("-el"); + } + + + public string Winzip_Zip_Variable(string options) + { + return Winzip_Zip_Variable(options, true); + } + + public string Winzip_Zip_Variable(string options, bool wantVerify) + { + if (!WinZipIsPresent) + throw new Exception(String.Format("[options({0})] : winzip is not present", options)); + + // options: + // -sPassword + // -ep - PPMd compression. + // -el - LZMA compression + // -eb - bzip2 compression + // -ee - "enhanced" compression. + // -en - normal compression. + // -ef - fast compression. + // -es - superfast compression. + // -ez - select best method at runtime. Requires WinZip12 to extract. + // empty string = default + string zipFileToCreate = Path.Combine(TopLevelDir, "Winzip_Zip.zip"); + + string dirInZip = "files"; + string subdir = Path.Combine(TopLevelDir, dirInZip); + + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + // delay between file creation and zip creation + System.Threading.Thread.Sleep(1200); + + // exec wzzip.exe to create the zip file + string formatString = "-a -p " + options + " -yx {0} {1}\\*.*"; + string wzzipOut = this.Exec(wzzip, String.Format(formatString, zipFileToCreate, subdir)); + + if (wantVerify) + { + // unzip with DotNetZip + string extractDir = "extract"; + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + zip1.ExtractAll(extractDir); + } + + // check the files in the extract dir + VerifyChecksums(extractDir, filesToZip, checksums); + + // verify the file times. + VerifyTimesNtfs(extractDir, filesToZip); + } + + return zipFileToCreate; + } + + + + [TestMethod] + [Timeout(9 * 60 * 1000)] // in ms, 60 * 1000 = 1min + public void Winzip_Unzip_2() + { + if (!WinZipIsPresent) + throw new Exception("[Winzip_Unzip_2] : winzip is not present"); + + string zipFileToCreate = "Winzip_Unzip_2.zip"; + + // create and fill the directories + string extractDir = "extract"; + //string subdir = "files"; + Dictionary checksums = new Dictionary(); + var filesToZip = GetSelectionOfTempFiles(_rnd.Next(13) + 8, checksums); + + // Create the zip archive + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddFiles(filesToZip, "files"); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Count, + "Incorrect number of entries in the zip file."); + + // now, extract the zip + // eg, wzunzip.exe -d test.zip + Directory.CreateDirectory(extractDir); + this.Exec(wzunzip, String.Format("-d -yx {0} \"{1}\"", + zipFileToCreate, extractDir)); + + // check the files in the extract dir + VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); + + // verify the file times + VerifyTimesDos(Path.Combine(extractDir, "files"), filesToZip); + } + + + + + [TestMethod] + public void Winzip_Unzip_ZeroLengthFile() + { + if (!WinZipIsPresent) + throw new Exception("[Winzip_Unzip_ZeroLengthFile] : winzip is not present"); + + string password = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + + // pass 1 for one regular zero length file. + // pass 2 for zero-length file with WinZip encryption (which does not actually + // get applied) + // pass 3 for PKZip encryption (ditto) + for (int k=0; k < 3; k++) + { + string zipFileToCreate = "ZLF.zip"; + + // create an empty file + string filename = Path.GetRandomFileName(); + using (StreamWriter sw = File.CreateText(filename)) { } + + // Create the zip archive + using (ZipFile zip1 = new ZipFile()) + { + if(k==1) + { + zip1.Encryption = EncryptionAlgorithm.WinZipAes256; + zip1.Password = password; + } + else if (k==2) + { + zip1.Password = password; + zip1.Encryption = EncryptionAlgorithm.PkzipWeak; + } + zip1.AddFile(filename, ""); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(1, TestUtilities.CountEntries(zipFileToCreate), + "Incorrect number of entries in the zip file."); + + // now, test the zip. Possibly need a password. + // eg, wzunzip.exe -t test.zip + string args = "-t " + zipFileToCreate; + if (k!=0) + args = "-s" + password + " " + args; + string wzunzipOut = this.Exec(wzunzip, args); + + TestContext.WriteLine("{0}", wzunzipOut); + Assert.IsTrue(wzunzipOut.Contains("No errors")); + Assert.IsFalse(wzunzipOut.Contains("At least one error was detected")); + } + } + + + + [TestMethod] + public void Winzip_Unzip_Password() + { + if (!WinZipIsPresent) + throw new Exception("[Winzip_Unzip_Password] : winzip is not present"); + + //Directory.SetCurrentDirectory(TopLevelDir); + string zipFileToCreate = "Winzip_Unzip_Password.zip"; + string extractDir = "extract"; + string subdir = "fodder"; + // create a bunch of files + var filesToZip = TestUtilities.GenerateFilesFlat(subdir); + string password = Path.GetRandomFileName(); + + // Create the zip archive + using (ZipFile zip1 = new ZipFile()) + { + zip1.Password = password; + zip1.AddFiles(filesToZip, ""); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(filesToZip.Length, TestUtilities.CountEntries(zipFileToCreate), + "Incorrect number of entries in the zip file."); + + // now, test the zip + // eg, wzunzip.exe -t test.zip + string args = String.Format("-t -s{0} {1}", password, zipFileToCreate); + string wzunzipOut = this.Exec(wzunzip, args); + TestContext.WriteLine("{0}", wzunzipOut); + + Assert.IsTrue(wzunzipOut.Contains("No errors")); + Assert.IsFalse(wzunzipOut.Contains("At least one error was detected")); + + // extract the zip + // eg, wzunzip.exe -d -yx -sPassword test.zip + args = String.Format("-d -yx -s{0} {1} {2}", + password, zipFileToCreate, extractDir); + Directory.CreateDirectory(extractDir); + wzunzipOut = this.Exec(wzunzip, args); + + Assert.IsFalse(wzunzipOut.Contains("skipping")); + Assert.IsFalse(wzunzipOut.Contains("incorrect")); + } + + + + [TestMethod] + public void Winzip_Unzip_Password_NonSeekableOutput() + { + if (!WinZipIsPresent) + throw new Exception("[Winzip_Unzip_Password_NonSeekableOutput] : winzip is not present"); + + + // create a bunch of files + string subdir = "fodder"; + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + var compressionLevels = Enum.GetValues(typeof(Ionic.Zlib.CompressionLevel)); + int i = 0; + foreach (var compLevel in compressionLevels) + { + string zipFileToCreate = + Path.Combine(TopLevelDir, + String.Format("Winzip_Unzip_Pwd_NonSeek.{0}.zip", + i)); + string extractDir = "extract" + i.ToString(); + string password = Path.GetRandomFileName(); + + // Want to test the library when saving to non-seekable + // output streams. Like stdout or ASPNET's + // Response.OutputStream. This simulates it. + using (var rawOut = System.IO.File.Create(zipFileToCreate)) + { + using (var nonSeekableOut = new Ionic.Zip.Tests.NonSeekableOutputStream(rawOut)) + { + // Create the zip archive + using (ZipFile zip1 = new ZipFile()) + { + zip1.CompressionLevel = (Ionic.Zlib.CompressionLevel)compLevel; + zip1.Password = password; + zip1.AddFiles(filesToZip, "files"); + zip1.Save(nonSeekableOut); + } + } + } + + // Verify the number of files in the zip + Assert.AreEqual(filesToZip.Length, + TestUtilities.CountEntries(zipFileToCreate), + "Incorrect number of entries in the zip file."); + + // now, test the zip + // eg, wzunzip.exe -t test.zip + string wzunzipOut = this.Exec(wzunzip, String.Format("-t -s{0} {1}", + password, zipFileToCreate)); + TestContext.WriteLine("{0}", wzunzipOut); + + Assert.IsTrue(wzunzipOut.Contains("No errors")); + Assert.IsFalse(wzunzipOut.Contains("At least one error was detected")); + + // extract the zip + Directory.CreateDirectory(extractDir); + // eg, wzunzip.exe -d -yx -sPassword test.zip + wzunzipOut = this.Exec(wzunzip, String.Format("-d -yx -s{0} {1} {2}", + password, zipFileToCreate, extractDir)); + Assert.IsFalse(wzunzipOut.Contains("skipping")); + Assert.IsFalse(wzunzipOut.Contains("incorrect")); + + // check the files in the extract dir + VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); + + i++; + } + } + + + + [TestMethod] + public void Winzip_Unzip_SFX() + { + if (!WinZipIsPresent) + throw new Exception("[Winzip_Unzip_SFX] : winzip is not present"); + + string zipFileToCreate = "Winzip_Unzip_SFX.exe"; + + // create and fill the directories + string extractDir = Path.Combine(TopLevelDir, "extract"); + string subdir = Path.Combine(TopLevelDir, "files"); + + Dictionary checksums = new Dictionary(); + var filesToZip = GetSelectionOfTempFiles(_rnd.Next(13) + 8, checksums); + + // Create the zip archive + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddFiles(filesToZip, "files"); + zip1.SaveSelfExtractor(zipFileToCreate, + SelfExtractorFlavor.ConsoleApplication); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Count, + "Incorrect number of entries in the zip file."); + + // now, extract the zip + // eg, wzunzip.exe -d test.zip [] + Directory.CreateDirectory(extractDir); + Directory.SetCurrentDirectory(extractDir); + + // -d = restore folder structure + // -yx = restore extended timestamps to extracted files + this.Exec(wzunzip, "-d -yx " + Path.Combine("..", zipFileToCreate)); + + // check the files in the extract dir + VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); + + // verify the file times + VerifyTimesDos(Path.Combine(extractDir, "files"), filesToZip); + } + + + [TestMethod] + public void Winzip_Unzip_Bzip2() + { + if (!WinZipIsPresent) throw new Exception("no winzip"); + + string zipFileToCreate = "Winzip_Unzip.zip"; + + string dirInZip = "files"; + string extractDir = "extract"; + string subdir = Path.Combine(TopLevelDir, dirInZip); + + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + var additionalFiles = GetSelectionOfTempFiles(checksums); + + // Now, Create the zip archive with DotNetZip + using (ZipFile zip1 = new ZipFile()) + { + zip1.CompressionMethod = CompressionMethod.BZip2; + zip1.AddFiles(filesToZip, dirInZip); + zip1.AddFiles(additionalFiles, dirInZip); + zip1.Save(zipFileToCreate); + } + + TestContext.WriteLine("Verifying the number of files in the zip"); + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length + additionalFiles.Count, + "Incorrect number of entries in the zip file."); + + + // verify that the output states that the compression method + // used for each entry was BZIP2... + TestContext.WriteLine("Verifying that BZIP2 was the comp method used..."); + + // examine and unpack the zip archive via WinZip + // first, examine the zip entry metadata: + string wzzipOut = this.Exec(wzzip, "-vt " + zipFileToCreate); + + var numBzipped = TestUtilities.CountOccurrences(wzzipOut, "Compression Method: BZipped"); + TestContext.WriteLine("Found {0} bzipped entries.", numBzipped); + + // Not all of the files will be bzipped. Some of the files + // may be "stored" because they are incompressible. This + // should be the exception, though. + var numStored = TestUtilities.CountOccurrences(wzzipOut, "Compression Method: Stored"); + TestContext.WriteLine("Found {0} stored entries.", numStored); + + Assert.AreEqual( numBzipped + numStored, + filesToZip.Length + additionalFiles.Count); + Assert.IsTrue( numBzipped > 2*numStored, + "The number of bzipped files is too low."); + + TestContext.WriteLine("Extracting..."); + // now, extract the zip + // eg, wzunzip.exe -d test.zip + Directory.CreateDirectory(extractDir); + Directory.SetCurrentDirectory(extractDir); + this.Exec(wzunzip, String.Format("-d -yx \"{0}\"", + Path.Combine(TopLevelDir,zipFileToCreate))); + + // check the files in the extract dir + Directory.SetCurrentDirectory(TopLevelDir); + String[] filesToCheck = new String[filesToZip.Length + additionalFiles.Count]; + filesToZip.CopyTo(filesToCheck, 0); + additionalFiles.ToArray().CopyTo(filesToCheck, filesToZip.Length); + + VerifyChecksums(Path.Combine("extract", dirInZip), filesToCheck, checksums); + + VerifyFileTimes1(extractDir, additionalFiles); + } + + + [TestMethod] + public void Winzip_Unzip_Bzip2_Large() + { + // BZip2 uses work buffers of 900k (ish). When compressing files that + // can be Run-length-encoded into a buffer smaller than 900k, only one + // "block" is used in the compressed output. Multiple blocks get + // emitted with input files that cannot be run-length encoded into + // 900k (ish). This test verifies that everything works correctly when + // compressing larger files that require multiple blocks in the + // compressed output. (At one point there was a problem combining CRCs + // from multiple blocks.) + if (!WinZipIsPresent) throw new Exception("no winzip"); + + TestContext.WriteLine("Creating the fodder files..."); + string zipFileToCreate = "BZ_Large.zip"; + int n = _rnd.Next(5) + 5; + int baseSize = _rnd.Next(0x80000) + 0x3000ff; + int delta = 0x80000; + string dirInZip = "files"; + string extractDir = "extract"; + string subdir = Path.Combine(TopLevelDir, dirInZip); + var filesToZip = TestUtilities.GenerateFilesFlat(subdir, n, baseSize, baseSize+delta); + + TestContext.WriteLine("Creating the zip..."); + // Now, Create the zip archive with DotNetZip + using (ZipFile zip1 = new ZipFile()) + { + zip1.CompressionMethod = CompressionMethod.BZip2; + zip1.AddFiles(filesToZip, dirInZip); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + TestContext.WriteLine("Verifying the number of files in the zip..."); + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length, + "Incorrect number of entries in the zip file."); + + // examine and unpack the zip archive via WinZip + // first, examine the zip entry metadata: + string wzzipOut = this.Exec(wzzip, "-vt " + zipFileToCreate); + + // verify that the output states that the compression method + // used for each entry was BZIP2... + TestContext.WriteLine("Verifying that BZIP2 was the comp method used..."); + Assert.AreEqual(TestUtilities.CountOccurrences(wzzipOut, "Compression Method: BZipped"), + filesToZip.Length); + + // now, extract the zip + // eg, wzunzip.exe -d test.zip + TestContext.WriteLine("Extracting..."); + Directory.CreateDirectory(extractDir); + Directory.SetCurrentDirectory(extractDir); + this.Exec(wzunzip, String.Format("-d -yx \"{0}\"", + Path.Combine("..",zipFileToCreate))); + } + + + + + [TestMethod] + public void Winzip_Unzip_Basic() + { + if (!WinZipIsPresent) + throw new Exception("[Winzip_Unzip_Basic] : winzip is not present"); + + string zipFileToCreate = "Winzip_Unzip_Basic.zip"; + + string dirInZip = "files"; + string extractDir = "extract"; + string subdir = Path.Combine(TopLevelDir, dirInZip); + + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + var additionalFiles = GetSelectionOfTempFiles(checksums); + + int i = 0; + // set R and S attributes on the first file + if (!File.Exists(filesToZip[i])) throw new Exception("Something is berry berry wrong."); + File.SetAttributes(filesToZip[i], FileAttributes.ReadOnly | FileAttributes.System); + + // set H attribute on the second file + i++; + if (i == filesToZip.Length) throw new Exception("Not enough files??."); + if (!File.Exists(filesToZip[i])) throw new Exception("Something is berry berry wrong."); + File.SetAttributes(filesToZip[i], FileAttributes.Hidden); + + // Now, Create the zip archive with DotNetZip + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddFiles(filesToZip, dirInZip); + zip1.AddFiles(additionalFiles, dirInZip); + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length + additionalFiles.Count, + "Incorrect number of entries in the zip file."); + + // examine and unpack the zip archive via WinZip + // first, examine the zip entry metadata: + string wzzipOut = this.Exec(wzzip, "-vt " + zipFileToCreate); + + string[] expectedAttrStrings = { "s-r-", "-hw-", "--w-" }; + + // example: Filename: folder5\Test8.txt + for (i = 0; i < expectedAttrStrings.Length; i++) + { + var f = Path.GetFileName(filesToZip[i]); + var fileInZip = Path.Combine(dirInZip, f); + string textToLookFor = String.Format("Filename: {0}", fileInZip.Replace("/", "\\")); + int x = wzzipOut.IndexOf(textToLookFor); + Assert.IsTrue(x > 0, "Could not find expected text ({0}) in WZZIP output.", textToLookFor); + textToLookFor = "Attributes: "; + x = wzzipOut.IndexOf(textToLookFor, x); + string attrs = wzzipOut.Substring(x + textToLookFor.Length, 4); + Assert.AreEqual(expectedAttrStrings[i], attrs, "Unexpected attributes on File {0}.", i); + } + + // now, extract the zip + // eg, wzunzip.exe -d test.zip + Directory.CreateDirectory(extractDir); + Directory.SetCurrentDirectory(extractDir); + this.Exec(wzunzip, String.Format("-d -yx ..\\{0}", zipFileToCreate)); + + // check the files in the extract dir + Directory.SetCurrentDirectory(TopLevelDir); + String[] filesToCheck = new String[filesToZip.Length + additionalFiles.Count]; + filesToZip.CopyTo(filesToCheck, 0); + additionalFiles.ToArray().CopyTo(filesToCheck, filesToZip.Length); + + VerifyChecksums(Path.Combine("extract", dirInZip), filesToCheck, checksums); + + VerifyFileTimes1(extractDir, additionalFiles); + } + + + private void VerifyFileTimes1(string extractDir, List additionalFiles) + { + // verify the file times + DateTime atMidnight = new DateTime(DateTime.Now.Year, + DateTime.Now.Month, + DateTime.Now.Day); + DateTime fortyFiveDaysAgo = atMidnight - new TimeSpan(45, 0, 0, 0); + + string[] extractedFiles = Directory.GetFiles(extractDir); + + foreach (var fqPath in extractedFiles) + { + string filename = Path.GetFileName(fqPath); + DateTime stamp = File.GetLastWriteTime(fqPath); + if (filename.StartsWith("testfile")) + { + Assert.IsTrue((stamp == atMidnight || stamp == fortyFiveDaysAgo), + "The timestamp on the file {0} is incorrect ({1}).", + fqPath, stamp.ToString("yyyy-MM-dd HH:mm:ss")); + } + else + { + var orig = (from f in additionalFiles + where Path.GetFileName(f) == filename + select f) + .First(); + + DateTime t1 = File.GetLastWriteTime(filename); + DateTime t2 = File.GetLastWriteTime(orig); + Assert.AreEqual(t1, t2); + t1 = File.GetCreationTime(filename); + t2 = File.GetCreationTime(orig); + Assert.AreEqual(t1, t2); + } + } + } + + private List GetSelectionOfTempFiles(Dictionary checksums) + { + return GetSelectionOfTempFiles(_rnd.Next(23) + 9, checksums); + } + + private List excludedFilenames = new List(); + + + private List GetSelectionOfTempFiles(int numFilesWanted, Dictionary checksums) + { + string tmpPath = Environment.GetEnvironmentVariable("TEMP"); // C:\Users\dinoch\AppData\Local\Temp + String[] candidates = Directory.GetFiles(tmpPath); + var theChosenOnes = new List(); + int trials = 0; + int otherSide = 0; + int minOtherSide = numFilesWanted / 3 + 1; + do + { + if (theChosenOnes.Count > numFilesWanted && otherSide >= minOtherSide) break; + + // randomly select a candidate + var f = candidates[_rnd.Next(candidates.Length)]; + if (excludedFilenames.Contains(f)) continue; + + try + { + var fi = new FileInfo(f); + if (Path.GetFileName(f)[0] == '~' + || theChosenOnes.Contains(f) + || fi.Length > 10000000 // too large + || fi.Length < 100) // too small + { + excludedFilenames.Add(f); + } + else + { + DateTime lastwrite = File.GetLastWriteTime(f); + bool onOtherSideOfDst = + (DateTime.Now.IsDaylightSavingTime() && !lastwrite.IsDaylightSavingTime()) || + (!DateTime.Now.IsDaylightSavingTime() && lastwrite.IsDaylightSavingTime()); + + if (onOtherSideOfDst) + otherSide++; + + // If it's on the other side of DST, + // or + // there are zero or one on *this side* + // or + // we can still reach the "other side" quota. + if (onOtherSideOfDst || (theChosenOnes.Count - otherSide < 2) || + ((otherSide < minOtherSide) && (numFilesWanted - theChosenOnes.Count > minOtherSide - otherSide))) + { + var key = Path.GetFileName(f); + var chk = TestUtilities.ComputeChecksum(f); + checksums.Add(key, chk); + theChosenOnes.Add(f); + } + } + } + catch { /* gulp! */ } + trials++; + } + while (trials < 1000); + + theChosenOnes.Sort(); + return theChosenOnes; + } + + + + + + [TestMethod] + public void Extract_WinZip_SelfExtractor() + { + _Extract_ZipFile("winzip-sfx.exe"); + } + + [TestMethod] + public void Extract_Docx() + { + _Extract_ZipFile("Vanishing Oatmeal Cookies.docx"); + } + + [TestMethod] + public void Extract_ZipWithDuplicateNames_wi10330() + { + _Extract_ZipFile("wi10330-badzip.zip"); + } + + [TestMethod] + public void Extract_Xlsx() + { + _Extract_ZipFile("Book1.xlsx"); + } + + [TestMethod] + public void Extract_DWF() + { + _Extract_ZipFile("plot.dwf"); + } + + [TestMethod] + public void Extract_InfoZipAppNote() + { + _Extract_ZipFile("appnote-iz-latest.zip"); + } + + [TestMethod] + public void Extract_AndroidApp() + { + _Extract_ZipFile("Calendar.apk"); + } + + + [TestMethod] + public void Extract_ZipWithRelativePathsOutside() + { + _Extract_ZipFile("relative-paths-outside.zip"); + Assert.IsTrue(File.Exists(@"extract\good.txt")); + Assert.IsTrue(File.Exists(@"extract\Temp\evil.txt")); + } + + [TestMethod] + public void Extract_ZipWithRelativePathsInSubdir() + { + _Extract_ZipFile("relative-paths-in-subdir.zip"); + Assert.IsTrue(File.Exists(@"extract\good.txt")); + Assert.IsTrue(File.Exists(@"extract\Temp\evil.txt")); + } + + [TestMethod] + public void Extract_ZipWithRelativePathsInSubdirOutside() + { + _Extract_ZipFile("relative-paths-in-subdir-outside.zip"); + Assert.IsTrue(File.Exists(@"extract\good.txt")); + Assert.IsTrue(File.Exists(@"extract\Temp\evil.txt")); + } + + private void _Extract_ZipFile(string fileName) + { + TestContext.WriteLine("Current Dir: {0}", CurrentDir); + string sourceDir = CurrentDir; + for (int i = 0; i < 3; i++) + sourceDir = Path.GetDirectoryName(sourceDir); + + string fqFileName = Path.Combine(Path.Combine(sourceDir, + "Zip Tests\\bin\\Debug\\zips"), + fileName); + + TestContext.WriteLine("Reading zip file: '{0}'", fqFileName); + using (ZipFile zip = ZipFile.Read(fqFileName)) + { + string extractDir = "extract"; + foreach (ZipEntry e in zip) + { + + TestContext.WriteLine("{1,-22} {2,9} {3,5:F0}% {4,9} {5,3} {6:X8} {0}", + e.FileName, + e.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), + e.UncompressedSize, + e.CompressionRatio, + e.CompressedSize, + (e.UsesEncryption) ? "Y" : "N", + e.Crc); + e.Extract(extractDir); + } + } + } + + + + } + + +} diff --git a/src/Zip Tests/ErrorTests.cs b/old/src/Zip Tests/ErrorTests.cs similarity index 97% rename from src/Zip Tests/ErrorTests.cs rename to old/src/Zip Tests/ErrorTests.cs index e0ce9aa..0ec5a27 100644 --- a/src/Zip Tests/ErrorTests.cs +++ b/old/src/Zip Tests/ErrorTests.cs @@ -1,887 +1,887 @@ -// ErrorTests.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009-2011 Dino Chiesa . -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-July-28 12:58:36> -// -// ------------------------------------------------------------------ -// -// This module defines some "error tests" - tests that the expected -// errors or exceptions occur in DotNetZip under exceptional conditions. -// These conditions include corrupted zip files, bad input, and so on. -// -// ------------------------------------------------------------------ - -using System; -using System.Text; -using System.IO; -using Microsoft.VisualStudio.TestTools.UnitTesting; - -//using Ionic.Zip; -using Ionic.Zip.Tests.Utilities; - - -namespace Ionic.Zip.Tests.Error -{ - /// - /// Summary description for ErrorTests - /// - [TestClass] - public class ErrorTests : IonicTestClass - { - public ErrorTests() : base() { } - - - [TestMethod] - [ExpectedException(typeof(FileNotFoundException))] - public void Error_AddFile_NonExistentFile() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "Error_AddFile_NonExistentFile.zip"); - using (Ionic.Zip.ZipFile zip = new Ionic.Zip.ZipFile(zipFileToCreate)) - { - zip.AddFile("ThisFileDoesNotExist.txt"); - zip.Comment = "This is a Comment On the Archive"; - zip.Save(); - } - } - - - [TestMethod] - [ExpectedException(typeof(System.ArgumentNullException))] - public void Error_Read_NullStream() - { - System.IO.Stream s = null; - using (var zip = ZipFile.Read(s)) - { - foreach (var e in zip) - { - Console.WriteLine("entry: {0}", e.FileName); - } - } - } - - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void CreateZip_AddDirectory_BlankName() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "CreateZip_AddDirectory_BlankName.zip"); - using (ZipFile zip = new ZipFile(zipFileToCreate)) - { - zip.AddDirectoryByName(""); - zip.Save(); - } - } - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void CreateZip_AddEntry_String_BlankName() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "CreateZip_AddEntry_String_BlankName.zip"); - using (ZipFile zip = new ZipFile()) - { - zip.AddEntry("", "This is the content."); - zip.Save(zipFileToCreate); - } - } - - - private void OverwriteDecider(object sender, ExtractProgressEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Extracting_ExtractEntryWouldOverwrite: - // randomly choose whether to overwrite or not - e.CurrentEntry.ExtractExistingFile = (_rnd.Next(2) == 0) - ? ExtractExistingFileAction.DoNotOverwrite - : ExtractExistingFileAction.OverwriteSilently; - break; - } - } - - - - private void _Internal_ExtractExisting(int flavor) - { - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Error-Extract-ExistingFileWithoutOverwrite-{0}.zip", flavor)); - - string testBin = TestUtilities.GetTestBinDir(CurrentDir); - string resourceDir = Path.Combine(testBin, "Resources"); - - Assert.IsTrue(Directory.Exists(resourceDir)); - - Directory.SetCurrentDirectory(TopLevelDir); - var filenames = Directory.GetFiles(resourceDir); - - using (ZipFile zip = new ZipFile(zipFileToCreate)) - { - zip.AddFiles(filenames, ""); - zip.Comment = "This is a Comment On the Archive"; - zip.Save(); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filenames.Length, - "The zip file created has the wrong number of entries."); - - // Extract twice: the first time should succeed. - // The second, should fail, because of a failed file overwrite. - // Unless flavor==3, in which case we overwrite silently. - for (int k = 0; k < 2; k++) - { - using (ZipFile zip = ZipFile.Read(zipFileToCreate)) - { - if (flavor > 10) - zip.ExtractProgress += OverwriteDecider; - for (int j = 0; j < filenames.Length; j++) - { - ZipEntry e = zip[Path.GetFileName(filenames[j])]; - if (flavor == 4) - e.Extract("unpack"); - else - e.Extract("unpack", (ExtractExistingFileAction) flavor); - } - } - } - } - - - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void Error_Extract_ExistingFileWithoutOverwrite_Throw() - { - _Internal_ExtractExisting((int)ExtractExistingFileAction.Throw); - } - - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void Error_Extract_ExistingFileWithoutOverwrite_NoArg() - { - _Internal_ExtractExisting(4); - } - - - // not an error test - [TestMethod] - public void Extract_ExistingFileWithOverwrite_OverwriteSilently() - { - _Internal_ExtractExisting((int)ExtractExistingFileAction.OverwriteSilently); - } - - // not an error test - [TestMethod] - public void Extract_ExistingFileWithOverwrite_DoNotOverwrite() - { - _Internal_ExtractExisting((int)ExtractExistingFileAction.DoNotOverwrite); - } - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void Error_Extract_ExistingFileWithoutOverwrite_InvokeProgress() - { - _Internal_ExtractExisting((int)ExtractExistingFileAction.InvokeExtractProgressEvent); - } - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void Error_Extract_ExistingFileWithoutOverwrite_InvokeProgress_2() - { - _Internal_ExtractExisting(10+(int)ExtractExistingFileAction.InvokeExtractProgressEvent); - } - - - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void Error_Extract_ExistingFileWithoutOverwrite_7() - { - // this is a test of the test! - _Internal_ExtractExisting(7); - } - - - [TestMethod] - public void Error_EmptySplitZip() - { - string zipFileToCreate = "zftc.zip"; - using (var zip = new ZipFile()) - { - zip.MaxOutputSegmentSize = 1024*1024; - zip.Save(zipFileToCreate); - } - - string extractDir = "extract"; - using (var zip = ZipFile.Read(zipFileToCreate)) - { - zip.ExtractAll(extractDir); - Assert.IsTrue(zip.Entries.Count == 0); - } - } - - - - [TestMethod] - [ExpectedException(typeof(ZipException))] - public void Error_Read_InvalidZip() - { - string filename = zipit; - // try reading the invalid zipfile - this must fail. - using (ZipFile zip = ZipFile.Read(filename)) - { - foreach (ZipEntry e in zip) - { - System.Console.WriteLine("name: {0} compressed: {1} has password?: {2}", - e.FileName, e.CompressedSize, e.UsesEncryption); - } - } - } - - - - [TestMethod] - [ExpectedException(typeof(ZipException))] - public void Error_NonZipFile_wi11743() - { - // try reading an empty, extant file as a zip file - string zipFileToRead = Path.GetTempFileName(); - _FilesToRemove.Add(zipFileToRead); - using (ZipFile zip = new ZipFile(zipFileToRead)) - { - zip.AddEntry("EntryName1.txt", "This is the content"); - zip.Save(); - } - - } - - - private void CreateSmallZip(string zipFileToCreate) - { - string sourceDir = CurrentDir; - for (int i = 0; i < 3; i++) - sourceDir = Path.GetDirectoryName(sourceDir); - - // the list of filenames to add to the zip - string[] fileNames = - { - Path.Combine(sourceDir, "Tools\\Zipit\\bin\\Debug\\Zipit.exe"), - Path.Combine(sourceDir, "Zip\\bin\\Debug\\DotNetZip.xml"), - Path.Combine(sourceDir, "Tools\\WinFormsApp\\Icon2.res"), - }; - - using (ZipFile zip = new ZipFile()) - { - for (int j = 0; j < fileNames.Length; j++) - zip.AddFile(fileNames[j], ""); - zip.Save(zipFileToCreate); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - fileNames.Length, - "Wrong number of entries."); - } - - [TestMethod] - [ExpectedException(typeof(ZipException))] - public void MalformedZip() - { - string filePath = Path.GetTempFileName(); - _FilesToRemove.Add(filePath); - File.WriteAllText( filePath , "asdfasdf" ); - string outputDirectory = Path.GetTempPath(); - using ( ZipFile zipFile = ZipFile.Read( filePath ) ) - { - zipFile.ExtractAll( outputDirectory ); - } - } - - - - [TestMethod] - [ExpectedException(typeof(InvalidOperationException))] - public void Error_UseZipEntryExtractWith_ZIS_wi10355() - { - string zipFileToCreate = "UseOpenReaderWith_ZIS.zip"; - CreateSmallZip(zipFileToCreate); - - // mixing ZipEntry.Extract and ZipInputStream is a no-no!! - - string extractDir = "extract"; - - // Use ZipEntry.Extract with ZipInputStream. - // This must fail. - TestContext.WriteLine("Reading with ZipInputStream"); - using (var zip = new ZipInputStream(zipFileToCreate)) - { - ZipEntry entry; - while ((entry = zip.GetNextEntry()) != null) - { - entry.Extract(extractDir, Ionic.Zip.ExtractExistingFileAction.OverwriteSilently); - } - } - } - - - - - [TestMethod] - [ExpectedException(typeof(InvalidOperationException))] - public void Error_UseOpenReaderWith_ZIS_wi10923() - { - string zipFileToCreate = "UseOpenReaderWith_ZIS.zip"; - CreateSmallZip(zipFileToCreate); - - // mixing OpenReader and ZipInputStream is a no-no!! - int n; - var buffer = new byte[2048]; - - // Use OpenReader with ZipInputStream. - // This must fail. - TestContext.WriteLine("Reading with ZipInputStream"); - using (var zip = new ZipInputStream(zipFileToCreate)) - { - ZipEntry entry; - while ((entry = zip.GetNextEntry()) != null) - { - TestContext.WriteLine(" Entry: {0}", entry.FileName); - using (Stream file = entry.OpenReader()) - { - while((n= file.Read(buffer,0,buffer.Length)) > 0) ; - } - TestContext.WriteLine(" -- OpenReader() is done. "); - } - } - } - - - - [TestMethod] - [ExpectedException(typeof(ZipException))] - public void Error_Save_InvalidLocation() - { - string badLocation = "c:\\Windows\\"; - Assert.IsTrue(Directory.Exists(badLocation)); - - // Add an entry to the zipfile, then try saving to a directory. - // This must fail. - using (ZipFile zip = new ZipFile()) - { - zip.AddEntry("This is a file.txt", "Content for the file goes here."); - zip.Save(badLocation); // fail - } - } - - - [TestMethod] - public void Error_Save_NonExistentFile() - { - int j; - string repeatedLine; - string filename; - string zipFileToCreate = Path.Combine(TopLevelDir, "Error_Save_NonExistentFile.zip"); - - // create the subdirectory - string Subdir = Path.Combine(TopLevelDir, "DirToZip"); - Directory.CreateDirectory(Subdir); - - int entriesAdded = 0; - // create the files - int numFilesToCreate = _rnd.Next(20) + 18; - for (j = 0; j < numFilesToCreate; j++) - { - filename = Path.Combine(Subdir, String.Format("file{0:D3}.txt", j)); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - Path.GetFileName(filename)); - TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(1800) + 1500); - entriesAdded++; - } - - string tempFileFolder = Path.Combine(TopLevelDir, "Temp"); - Directory.CreateDirectory(tempFileFolder); - TestContext.WriteLine("Using {0} as the temp file folder....", tempFileFolder); - String[] tfiles = Directory.GetFiles(tempFileFolder); - int nTemp = tfiles.Length; - TestContext.WriteLine("There are {0} files in the temp file folder.", nTemp); - String[] filenames = Directory.GetFiles(Subdir); - - var a1 = System.Reflection.Assembly.GetExecutingAssembly(); - String myName = a1.GetName().ToString(); - string toDay = System.DateTime.Now.ToString("yyyy-MMM-dd"); - - try - { - using (ZipFile zip = new ZipFile(zipFileToCreate)) - { - zip.TempFileFolder = tempFileFolder; - zip.CompressionLevel = Ionic.Zlib.CompressionLevel.None; - - TestContext.WriteLine("Zipping {0} files...", filenames.Length); - - int count = 0; - foreach (string fn in filenames) - { - count++; - TestContext.WriteLine(" {0}", fn); - - string file = fn; - - if (count == filenames.Length - 2) - { - file += "xx"; - TestContext.WriteLine("(Injecting a failure...)"); - } - - zip.UpdateFile(file, myName + '-' + toDay + "_done"); - } - TestContext.WriteLine("\n"); - zip.Save(); - TestContext.WriteLine("Zip Completed '{0}'", zipFileToCreate); - } - } - catch (Exception ex) - { - TestContext.WriteLine("Zip Failed (EXPECTED): {0}", ex.Message); - } - - tfiles = Directory.GetFiles(tempFileFolder); - - Assert.AreEqual(nTemp, tfiles.Length, - "There are unexpected files remaining in the TempFileFolder."); - } - - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.BadStateException))] - public void Error_Save_NoFilename() - { - string testBin = TestUtilities.GetTestBinDir(CurrentDir); - string resourceDir = Path.Combine(testBin, "Resources"); - Directory.SetCurrentDirectory(TopLevelDir); - string filename = Path.Combine(resourceDir, "TestStrings.txt"); - Assert.IsTrue(File.Exists(filename), String.Format("The file '{0}' doesnot exist.", filename)); - - // add an entry to the zipfile, then try saving, never having specified a filename. This should fail. - using (ZipFile zip = new ZipFile()) - { - zip.AddFile(filename, ""); - zip.Save(); // FAIL: don't know where to save! - } - - // should never reach this - Assert.IsTrue(false); - } - - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.BadStateException))] - public void Error_Extract_WithoutSave() - { - string testBin = TestUtilities.GetTestBinDir(CurrentDir); - string resourceDir = Path.Combine(testBin, "Resources"); - Directory.SetCurrentDirectory(TopLevelDir); - - // add a directory to the zipfile, then try - // extracting, without a Save. This should fail. - using (ZipFile zip = new ZipFile()) - { - zip.AddDirectory(resourceDir, ""); - Assert.IsTrue(zip.Entries.Count > 0); - zip[0].Extract(); // FAIL: has not been saved - } - - // should never reach this - Assert.IsTrue(false); - } - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.BadStateException))] - public void Error_Read_WithoutSave() - { - string testBin = TestUtilities.GetTestBinDir(CurrentDir); - string resourceDir = Path.Combine(testBin, "Resources"); - Directory.SetCurrentDirectory(TopLevelDir); - - // add a directory to the zipfile, then try - // extracting, without a Save. This should fail. - using (ZipFile zip = new ZipFile()) - { - zip.AddDirectory(resourceDir, ""); - Assert.IsTrue(zip.Entries.Count > 0); - - using (var s = zip[0].OpenReader()) // FAIL: has not been saved - { - byte[] buffer= new byte[1024]; - int n; - while ((n= s.Read(buffer,0,buffer.Length)) > 0) ; - } - } - - // should never reach this - Assert.IsTrue(false); - } - - - [TestMethod] - [ExpectedException(typeof(System.IO.IOException))] - public void Error_AddDirectory_SpecifyingFile() - { - string zipFileToCreate = "AddDirectory_SpecifyingFile.zip"; - string filename = "ThisIsAFile"; - File.Copy(zipit, filename); - string baddirname = Path.Combine(TopLevelDir, filename); - using (ZipFile zip = new ZipFile()) - { - zip.AddDirectory(baddirname); // FAIL - zip.Save(zipFileToCreate); - } - } - - - [TestMethod] - [ExpectedException(typeof(FileNotFoundException))] - public void Error_AddFile_SpecifyingDirectory() - { - string zipFileToCreate = "AddFile_SpecifyingDirectory.zip"; - string badfilename = "ThisIsADirectory.txt"; - Directory.CreateDirectory(badfilename); - - using (ZipFile zip = new ZipFile()) - { - zip.AddFile(badfilename); // should fail - zip.Save(zipFileToCreate); - } - } - - private void IntroduceCorruption(string filename) - { - // now corrupt the zip archive - using (FileStream fs = File.OpenWrite(filename)) - { - byte[] corruption = new byte[_rnd.Next(100) + 12]; - int min = 5; - int max = (int)fs.Length - 20; - int offsetForCorruption, lengthOfCorruption; - - int numCorruptions = _rnd.Next(2) + 2; - for (int i = 0; i < numCorruptions; i++) - { - _rnd.NextBytes(corruption); - offsetForCorruption = _rnd.Next(min, max); - lengthOfCorruption = _rnd.Next(2) + 3; - fs.Seek(offsetForCorruption, SeekOrigin.Begin); - fs.Write(corruption, 0, lengthOfCorruption); - } - } - } - - - [TestMethod] - [ExpectedException(typeof(BadReadException))] - public void Error_TestCorruptedZipFile() - { - string filename = Path.Combine(CurrentDir, "zips\\wizzquiz.zip"); - using (ZipFile zip = ZipFile.Read(filename)) - { - foreach (ZipEntry ze in zip) - { - ze.FileName = "newname"; - break; - } - zip.Save(); - } - } - - - [TestMethod] - [ExpectedException(typeof(ZipException))] // not sure which exception - could be one of several. - public void Error_ReadCorruptedZipFile_Passwords() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "Read_CorruptedZipFile_Passwords.zip"); - string sourceDir = CurrentDir; - for (int i = 0; i < 3; i++) - sourceDir = Path.GetDirectoryName(sourceDir); - - Directory.SetCurrentDirectory(TopLevelDir); - - // the list of filenames to add to the zip - string[] filenames = - { - Path.Combine(sourceDir, "Tools\\Zipit\\bin\\Debug\\Zipit.exe"), - Path.Combine(sourceDir, "Zip\\bin\\Debug\\DotNetZip.xml"), - Path.Combine(sourceDir, "Tools\\WinFormsApp\\Icon2.res"), - }; - - // passwords to use for those entries - string[] passwords = { "12345678", "0987654321", }; - - // create the zipfile, adding the files - int j = 0; - using (ZipFile zip = new ZipFile()) - { - for (j = 0; j < filenames.Length; j++) - { - zip.Password = passwords[j % passwords.Length]; - zip.AddFile(filenames[j], ""); - } - zip.Save(zipFileToCreate); - } - - IntroduceCorruption(zipFileToCreate); - - try - { - // read the corrupted zip - this should fail in some way - using (ZipFile zip = ZipFile.Read(zipFileToCreate)) - { - for (j = 0; j < filenames.Length; j++) - { - ZipEntry e = zip[Path.GetFileName(filenames[j])]; - - System.Console.WriteLine("name: {0} compressed: {1} has password?: {2}", - e.FileName, e.CompressedSize, e.UsesEncryption); - Assert.IsTrue(e.UsesEncryption, "The entry does not use encryption"); - e.ExtractWithPassword("unpack", passwords[j % passwords.Length]); - } - } - } - catch (Exception exc1) - { - throw new ZipException("expected", exc1); - } - } - - - - [TestMethod] - [ExpectedException(typeof(ZipException))] // not sure which exception - could be one of several. - public void Error_ReadCorruptedZipFile() - { - int i; - string zipFileToCreate = Path.Combine(TopLevelDir, "Read_CorruptedZipFile.zip"); - - string sourceDir = CurrentDir; - for (i = 0; i < 3; i++) - sourceDir = Path.GetDirectoryName(sourceDir); - - Directory.SetCurrentDirectory(TopLevelDir); - - // the list of filenames to add to the zip - string[] filenames = - { - Path.Combine(sourceDir, "Tools\\Zipit\\bin\\Debug\\Zipit.exe"), - Path.Combine(sourceDir, "Tools\\Unzip\\bin\\Debug\\Unzip.exe"), - Path.Combine(sourceDir, "Zip\\bin\\Debug\\DotNetZip.xml"), - Path.Combine(sourceDir, "Tools\\WinFormsApp\\Icon2.res"), - }; - - // create the zipfile, adding the files - using (ZipFile zip = new ZipFile()) - { - for (i = 0; i < filenames.Length; i++) - zip.AddFile(filenames[i], ""); - zip.Save(zipFileToCreate); - } - - // now corrupt the zip archive - IntroduceCorruption(zipFileToCreate); - - try - { - // read the corrupted zip - this should fail in some way - using (ZipFile zip = new ZipFile(zipFileToCreate)) - { - foreach (var e in zip) - { - System.Console.WriteLine("name: {0} compressed: {1} has password?: {2}", - e.FileName, e.CompressedSize, e.UsesEncryption); - e.Extract("extract"); - } - } - } - catch (Exception exc1) - { - throw new ZipException("expected", exc1); - } - } - - - [TestMethod] - public void Error_LockedFile_wi13903() - { - TestContext.WriteLine("==Error_LockedFile_wi13903()"); - string fname = Path.GetRandomFileName(); - TestContext.WriteLine("create file {0}", fname); - TestUtilities.CreateAndFillFileText(fname, _rnd.Next(10000) + 5000); - string zipFileToCreate = "wi13903.zip"; - - var zipErrorHandler = new EventHandler( (sender, e) => - { - TestContext.WriteLine("Error reading entry {0}", e.CurrentEntry); - TestContext.WriteLine(" (this was expected)"); - e.CurrentEntry.ZipErrorAction = ZipErrorAction.Skip; - }); - - // lock the file - TestContext.WriteLine("lock file {0}", fname); - using (var s = System.IO.File.Open(fname, - FileMode.Open, - FileAccess.Read, - FileShare.None)) - { - using (var rawOut = File.Create(zipFileToCreate)) - { - using (var nonSeekableOut = new Ionic.Zip.Tests.NonSeekableOutputStream(rawOut)) - { - TestContext.WriteLine("create zip file {0}", zipFileToCreate); - using (var zip = new ZipFile()) - { - zip.ZipError += zipErrorHandler; - zip.AddFile(fname); - // should trigger a read error, - // which should be skipped. Result will be - // a zero-entry zip file. - zip.Save(nonSeekableOut); - } - } - } - } - TestContext.WriteLine("all done, A-OK"); - } - - - [TestMethod] - [ExpectedException(typeof(ZipException))] - public void Error_Read_EmptyZipFile() - { - string zipFileToRead = Path.Combine(TopLevelDir, "Read_BadFile.zip"); - string newFile = Path.GetTempFileName(); - _FilesToRemove.Add(newFile); - File.Move(newFile, zipFileToRead); - newFile = Path.GetTempFileName(); - _FilesToRemove.Add(newFile); - string fileToAdd = Path.Combine(TopLevelDir, "EmptyFile.txt"); - File.Move(newFile, fileToAdd); - - try - { - using (ZipFile zip = ZipFile.Read(zipFileToRead)) - { - zip.AddFile(fileToAdd, ""); - zip.Save(); - } - } - catch (System.Exception exc1) - { - throw new ZipException("expected", exc1); - } - - } - - - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Error_AddFile_Twice() - { - int i; - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "Error_AddFile_Twice.zip"); - - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "files"); - Directory.CreateDirectory(subdir); - - // create a bunch of files - int numFilesToCreate = _rnd.Next(23) + 14; - for (i = 0; i < numFilesToCreate; i++) - TestUtilities.CreateUniqueFile("bin", subdir, _rnd.Next(10000) + 5000); - - // Create the zip archive - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile(zipFileToCreate)) - { - zip1.StatusMessageTextWriter = System.Console.Out; - string[] files = Directory.GetFiles(subdir); - zip1.AddFiles(files, "files"); - zip1.Save(); - } - - - // this should fail - adding the same file twice - using (ZipFile zip2 = new ZipFile(zipFileToCreate)) - { - zip2.StatusMessageTextWriter = System.Console.Out; - string[] files = Directory.GetFiles(subdir); - for (i = 0; i < files.Length; i++) - zip2.AddFile(files[i], "files"); - zip2.Save(); - } - } - - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void Error_FileNotAvailableFails() - { - // verify the correct exception is being thrown - string zipFileToCreate = Path.Combine(TopLevelDir, "Error_FileNotAvailableFails.zip"); - - // create a zip file with no entries - using (var zipfile = new ZipFile(zipFileToCreate)) { zipfile.Save(); } - - // open and lock - using (new FileStream(zipFileToCreate, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.None)) - { - using (new ZipFile(zipFileToCreate)) { } - } - } - - - - [TestMethod] - [ExpectedException(typeof(ZipException))] - public void IncorrectZipContentTest1_wi10459() - { - byte[] content = Encoding.UTF8.GetBytes("wrong zipfile content"); - using (var ms = new MemoryStream(content)) - { - using (var zipFile = ZipFile.Read(ms)) { } - } - } - - [TestMethod] - [ExpectedException(typeof(ZipException))] - public void IncorrectZipContentTest2_wi10459() - { - using (var ms = new MemoryStream()) - { - using (var zipFile = ZipFile.Read(ms)) { } - } - } - - [TestMethod] - [ExpectedException(typeof(ZipException))] - public void IncorrectZipContentTest3_wi10459() - { - byte[] content = new byte[8192]; - using (var ms = new MemoryStream(content)) - { - using (var zipFile = ZipFile.Read(ms)) { } - } - } - - } -} +// ErrorTests.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009-2011 Dino Chiesa . +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-July-28 12:58:36> +// +// ------------------------------------------------------------------ +// +// This module defines some "error tests" - tests that the expected +// errors or exceptions occur in DotNetZip under exceptional conditions. +// These conditions include corrupted zip files, bad input, and so on. +// +// ------------------------------------------------------------------ + +using System; +using System.Text; +using System.IO; +using Microsoft.VisualStudio.TestTools.UnitTesting; + +//using Ionic.Zip; +using Ionic.Zip.Tests.Utilities; + + +namespace Ionic.Zip.Tests.Error +{ + /// + /// Summary description for ErrorTests + /// + [TestClass] + public class ErrorTests : IonicTestClass + { + public ErrorTests() : base() { } + + + [TestMethod] + [ExpectedException(typeof(FileNotFoundException))] + public void Error_AddFile_NonExistentFile() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "Error_AddFile_NonExistentFile.zip"); + using (Ionic.Zip.ZipFile zip = new Ionic.Zip.ZipFile(zipFileToCreate)) + { + zip.AddFile("ThisFileDoesNotExist.txt"); + zip.Comment = "This is a Comment On the Archive"; + zip.Save(); + } + } + + + [TestMethod] + [ExpectedException(typeof(System.ArgumentNullException))] + public void Error_Read_NullStream() + { + System.IO.Stream s = null; + using (var zip = ZipFile.Read(s)) + { + foreach (var e in zip) + { + Console.WriteLine("entry: {0}", e.FileName); + } + } + } + + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void CreateZip_AddDirectory_BlankName() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "CreateZip_AddDirectory_BlankName.zip"); + using (ZipFile zip = new ZipFile(zipFileToCreate)) + { + zip.AddDirectoryByName(""); + zip.Save(); + } + } + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void CreateZip_AddEntry_String_BlankName() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "CreateZip_AddEntry_String_BlankName.zip"); + using (ZipFile zip = new ZipFile()) + { + zip.AddEntry("", "This is the content."); + zip.Save(zipFileToCreate); + } + } + + + private void OverwriteDecider(object sender, ExtractProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Extracting_ExtractEntryWouldOverwrite: + // randomly choose whether to overwrite or not + e.CurrentEntry.ExtractExistingFile = (_rnd.Next(2) == 0) + ? ExtractExistingFileAction.DoNotOverwrite + : ExtractExistingFileAction.OverwriteSilently; + break; + } + } + + + + private void _Internal_ExtractExisting(int flavor) + { + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Error-Extract-ExistingFileWithoutOverwrite-{0}.zip", flavor)); + + string testBin = TestUtilities.GetTestBinDir(CurrentDir); + string resourceDir = Path.Combine(testBin, "Resources"); + + Assert.IsTrue(Directory.Exists(resourceDir)); + + Directory.SetCurrentDirectory(TopLevelDir); + var filenames = Directory.GetFiles(resourceDir); + + using (ZipFile zip = new ZipFile(zipFileToCreate)) + { + zip.AddFiles(filenames, ""); + zip.Comment = "This is a Comment On the Archive"; + zip.Save(); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filenames.Length, + "The zip file created has the wrong number of entries."); + + // Extract twice: the first time should succeed. + // The second, should fail, because of a failed file overwrite. + // Unless flavor==3, in which case we overwrite silently. + for (int k = 0; k < 2; k++) + { + using (ZipFile zip = ZipFile.Read(zipFileToCreate)) + { + if (flavor > 10) + zip.ExtractProgress += OverwriteDecider; + for (int j = 0; j < filenames.Length; j++) + { + ZipEntry e = zip[Path.GetFileName(filenames[j])]; + if (flavor == 4) + e.Extract("unpack"); + else + e.Extract("unpack", (ExtractExistingFileAction) flavor); + } + } + } + } + + + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void Error_Extract_ExistingFileWithoutOverwrite_Throw() + { + _Internal_ExtractExisting((int)ExtractExistingFileAction.Throw); + } + + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void Error_Extract_ExistingFileWithoutOverwrite_NoArg() + { + _Internal_ExtractExisting(4); + } + + + // not an error test + [TestMethod] + public void Extract_ExistingFileWithOverwrite_OverwriteSilently() + { + _Internal_ExtractExisting((int)ExtractExistingFileAction.OverwriteSilently); + } + + // not an error test + [TestMethod] + public void Extract_ExistingFileWithOverwrite_DoNotOverwrite() + { + _Internal_ExtractExisting((int)ExtractExistingFileAction.DoNotOverwrite); + } + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void Error_Extract_ExistingFileWithoutOverwrite_InvokeProgress() + { + _Internal_ExtractExisting((int)ExtractExistingFileAction.InvokeExtractProgressEvent); + } + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void Error_Extract_ExistingFileWithoutOverwrite_InvokeProgress_2() + { + _Internal_ExtractExisting(10+(int)ExtractExistingFileAction.InvokeExtractProgressEvent); + } + + + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void Error_Extract_ExistingFileWithoutOverwrite_7() + { + // this is a test of the test! + _Internal_ExtractExisting(7); + } + + + [TestMethod] + public void Error_EmptySplitZip() + { + string zipFileToCreate = "zftc.zip"; + using (var zip = new ZipFile()) + { + zip.MaxOutputSegmentSize = 1024*1024; + zip.Save(zipFileToCreate); + } + + string extractDir = "extract"; + using (var zip = ZipFile.Read(zipFileToCreate)) + { + zip.ExtractAll(extractDir); + Assert.IsTrue(zip.Entries.Count == 0); + } + } + + + + [TestMethod] + [ExpectedException(typeof(ZipException))] + public void Error_Read_InvalidZip() + { + string filename = zipit; + // try reading the invalid zipfile - this must fail. + using (ZipFile zip = ZipFile.Read(filename)) + { + foreach (ZipEntry e in zip) + { + System.Console.WriteLine("name: {0} compressed: {1} has password?: {2}", + e.FileName, e.CompressedSize, e.UsesEncryption); + } + } + } + + + + [TestMethod] + [ExpectedException(typeof(ZipException))] + public void Error_NonZipFile_wi11743() + { + // try reading an empty, extant file as a zip file + string zipFileToRead = Path.GetTempFileName(); + _FilesToRemove.Add(zipFileToRead); + using (ZipFile zip = new ZipFile(zipFileToRead)) + { + zip.AddEntry("EntryName1.txt", "This is the content"); + zip.Save(); + } + + } + + + private void CreateSmallZip(string zipFileToCreate) + { + string sourceDir = CurrentDir; + for (int i = 0; i < 3; i++) + sourceDir = Path.GetDirectoryName(sourceDir); + + // the list of filenames to add to the zip + string[] fileNames = + { + Path.Combine(sourceDir, "Tools\\Zipit\\bin\\Debug\\Zipit.exe"), + Path.Combine(sourceDir, "Zip\\bin\\Debug\\DotNetZip.xml"), + Path.Combine(sourceDir, "Tools\\WinFormsApp\\Icon2.res"), + }; + + using (ZipFile zip = new ZipFile()) + { + for (int j = 0; j < fileNames.Length; j++) + zip.AddFile(fileNames[j], ""); + zip.Save(zipFileToCreate); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + fileNames.Length, + "Wrong number of entries."); + } + + [TestMethod] + [ExpectedException(typeof(ZipException))] + public void MalformedZip() + { + string filePath = Path.GetTempFileName(); + _FilesToRemove.Add(filePath); + File.WriteAllText( filePath , "asdfasdf" ); + string outputDirectory = Path.GetTempPath(); + using ( ZipFile zipFile = ZipFile.Read( filePath ) ) + { + zipFile.ExtractAll( outputDirectory ); + } + } + + + + [TestMethod] + [ExpectedException(typeof(InvalidOperationException))] + public void Error_UseZipEntryExtractWith_ZIS_wi10355() + { + string zipFileToCreate = "UseOpenReaderWith_ZIS.zip"; + CreateSmallZip(zipFileToCreate); + + // mixing ZipEntry.Extract and ZipInputStream is a no-no!! + + string extractDir = "extract"; + + // Use ZipEntry.Extract with ZipInputStream. + // This must fail. + TestContext.WriteLine("Reading with ZipInputStream"); + using (var zip = new ZipInputStream(zipFileToCreate)) + { + ZipEntry entry; + while ((entry = zip.GetNextEntry()) != null) + { + entry.Extract(extractDir, Ionic.Zip.ExtractExistingFileAction.OverwriteSilently); + } + } + } + + + + + [TestMethod] + [ExpectedException(typeof(InvalidOperationException))] + public void Error_UseOpenReaderWith_ZIS_wi10923() + { + string zipFileToCreate = "UseOpenReaderWith_ZIS.zip"; + CreateSmallZip(zipFileToCreate); + + // mixing OpenReader and ZipInputStream is a no-no!! + int n; + var buffer = new byte[2048]; + + // Use OpenReader with ZipInputStream. + // This must fail. + TestContext.WriteLine("Reading with ZipInputStream"); + using (var zip = new ZipInputStream(zipFileToCreate)) + { + ZipEntry entry; + while ((entry = zip.GetNextEntry()) != null) + { + TestContext.WriteLine(" Entry: {0}", entry.FileName); + using (Stream file = entry.OpenReader()) + { + while((n= file.Read(buffer,0,buffer.Length)) > 0) ; + } + TestContext.WriteLine(" -- OpenReader() is done. "); + } + } + } + + + + [TestMethod] + [ExpectedException(typeof(ZipException))] + public void Error_Save_InvalidLocation() + { + string badLocation = "c:\\Windows\\"; + Assert.IsTrue(Directory.Exists(badLocation)); + + // Add an entry to the zipfile, then try saving to a directory. + // This must fail. + using (ZipFile zip = new ZipFile()) + { + zip.AddEntry("This is a file.txt", "Content for the file goes here."); + zip.Save(badLocation); // fail + } + } + + + [TestMethod] + public void Error_Save_NonExistentFile() + { + int j; + string repeatedLine; + string filename; + string zipFileToCreate = Path.Combine(TopLevelDir, "Error_Save_NonExistentFile.zip"); + + // create the subdirectory + string Subdir = Path.Combine(TopLevelDir, "DirToZip"); + Directory.CreateDirectory(Subdir); + + int entriesAdded = 0; + // create the files + int numFilesToCreate = _rnd.Next(20) + 18; + for (j = 0; j < numFilesToCreate; j++) + { + filename = Path.Combine(Subdir, String.Format("file{0:D3}.txt", j)); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + Path.GetFileName(filename)); + TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(1800) + 1500); + entriesAdded++; + } + + string tempFileFolder = Path.Combine(TopLevelDir, "Temp"); + Directory.CreateDirectory(tempFileFolder); + TestContext.WriteLine("Using {0} as the temp file folder....", tempFileFolder); + String[] tfiles = Directory.GetFiles(tempFileFolder); + int nTemp = tfiles.Length; + TestContext.WriteLine("There are {0} files in the temp file folder.", nTemp); + String[] filenames = Directory.GetFiles(Subdir); + + var a1 = System.Reflection.Assembly.GetExecutingAssembly(); + String myName = a1.GetName().ToString(); + string toDay = System.DateTime.Now.ToString("yyyy-MMM-dd"); + + try + { + using (ZipFile zip = new ZipFile(zipFileToCreate)) + { + zip.TempFileFolder = tempFileFolder; + zip.CompressionLevel = Ionic.Zlib.CompressionLevel.None; + + TestContext.WriteLine("Zipping {0} files...", filenames.Length); + + int count = 0; + foreach (string fn in filenames) + { + count++; + TestContext.WriteLine(" {0}", fn); + + string file = fn; + + if (count == filenames.Length - 2) + { + file += "xx"; + TestContext.WriteLine("(Injecting a failure...)"); + } + + zip.UpdateFile(file, myName + '-' + toDay + "_done"); + } + TestContext.WriteLine("\n"); + zip.Save(); + TestContext.WriteLine("Zip Completed '{0}'", zipFileToCreate); + } + } + catch (Exception ex) + { + TestContext.WriteLine("Zip Failed (EXPECTED): {0}", ex.Message); + } + + tfiles = Directory.GetFiles(tempFileFolder); + + Assert.AreEqual(nTemp, tfiles.Length, + "There are unexpected files remaining in the TempFileFolder."); + } + + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.BadStateException))] + public void Error_Save_NoFilename() + { + string testBin = TestUtilities.GetTestBinDir(CurrentDir); + string resourceDir = Path.Combine(testBin, "Resources"); + Directory.SetCurrentDirectory(TopLevelDir); + string filename = Path.Combine(resourceDir, "TestStrings.txt"); + Assert.IsTrue(File.Exists(filename), String.Format("The file '{0}' doesnot exist.", filename)); + + // add an entry to the zipfile, then try saving, never having specified a filename. This should fail. + using (ZipFile zip = new ZipFile()) + { + zip.AddFile(filename, ""); + zip.Save(); // FAIL: don't know where to save! + } + + // should never reach this + Assert.IsTrue(false); + } + + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.BadStateException))] + public void Error_Extract_WithoutSave() + { + string testBin = TestUtilities.GetTestBinDir(CurrentDir); + string resourceDir = Path.Combine(testBin, "Resources"); + Directory.SetCurrentDirectory(TopLevelDir); + + // add a directory to the zipfile, then try + // extracting, without a Save. This should fail. + using (ZipFile zip = new ZipFile()) + { + zip.AddDirectory(resourceDir, ""); + Assert.IsTrue(zip.Entries.Count > 0); + zip[0].Extract(); // FAIL: has not been saved + } + + // should never reach this + Assert.IsTrue(false); + } + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.BadStateException))] + public void Error_Read_WithoutSave() + { + string testBin = TestUtilities.GetTestBinDir(CurrentDir); + string resourceDir = Path.Combine(testBin, "Resources"); + Directory.SetCurrentDirectory(TopLevelDir); + + // add a directory to the zipfile, then try + // extracting, without a Save. This should fail. + using (ZipFile zip = new ZipFile()) + { + zip.AddDirectory(resourceDir, ""); + Assert.IsTrue(zip.Entries.Count > 0); + + using (var s = zip[0].OpenReader()) // FAIL: has not been saved + { + byte[] buffer= new byte[1024]; + int n; + while ((n= s.Read(buffer,0,buffer.Length)) > 0) ; + } + } + + // should never reach this + Assert.IsTrue(false); + } + + + [TestMethod] + [ExpectedException(typeof(System.IO.IOException))] + public void Error_AddDirectory_SpecifyingFile() + { + string zipFileToCreate = "AddDirectory_SpecifyingFile.zip"; + string filename = "ThisIsAFile"; + File.Copy(zipit, filename); + string baddirname = Path.Combine(TopLevelDir, filename); + using (ZipFile zip = new ZipFile()) + { + zip.AddDirectory(baddirname); // FAIL + zip.Save(zipFileToCreate); + } + } + + + [TestMethod] + [ExpectedException(typeof(FileNotFoundException))] + public void Error_AddFile_SpecifyingDirectory() + { + string zipFileToCreate = "AddFile_SpecifyingDirectory.zip"; + string badfilename = "ThisIsADirectory.txt"; + Directory.CreateDirectory(badfilename); + + using (ZipFile zip = new ZipFile()) + { + zip.AddFile(badfilename); // should fail + zip.Save(zipFileToCreate); + } + } + + private void IntroduceCorruption(string filename) + { + // now corrupt the zip archive + using (FileStream fs = File.OpenWrite(filename)) + { + byte[] corruption = new byte[_rnd.Next(100) + 12]; + int min = 5; + int max = (int)fs.Length - 20; + int offsetForCorruption, lengthOfCorruption; + + int numCorruptions = _rnd.Next(2) + 2; + for (int i = 0; i < numCorruptions; i++) + { + _rnd.NextBytes(corruption); + offsetForCorruption = _rnd.Next(min, max); + lengthOfCorruption = _rnd.Next(2) + 3; + fs.Seek(offsetForCorruption, SeekOrigin.Begin); + fs.Write(corruption, 0, lengthOfCorruption); + } + } + } + + + [TestMethod] + [ExpectedException(typeof(BadReadException))] + public void Error_TestCorruptedZipFile() + { + string filename = Path.Combine(CurrentDir, "zips\\wizzquiz.zip"); + using (ZipFile zip = ZipFile.Read(filename)) + { + foreach (ZipEntry ze in zip) + { + ze.FileName = "newname"; + break; + } + zip.Save(); + } + } + + + [TestMethod] + [ExpectedException(typeof(ZipException))] // not sure which exception - could be one of several. + public void Error_ReadCorruptedZipFile_Passwords() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "Read_CorruptedZipFile_Passwords.zip"); + string sourceDir = CurrentDir; + for (int i = 0; i < 3; i++) + sourceDir = Path.GetDirectoryName(sourceDir); + + Directory.SetCurrentDirectory(TopLevelDir); + + // the list of filenames to add to the zip + string[] filenames = + { + Path.Combine(sourceDir, "Tools\\Zipit\\bin\\Debug\\Zipit.exe"), + Path.Combine(sourceDir, "Zip\\bin\\Debug\\DotNetZip.xml"), + Path.Combine(sourceDir, "Tools\\WinFormsApp\\Icon2.res"), + }; + + // passwords to use for those entries + string[] passwords = { "12345678", "0987654321", }; + + // create the zipfile, adding the files + int j = 0; + using (ZipFile zip = new ZipFile()) + { + for (j = 0; j < filenames.Length; j++) + { + zip.Password = passwords[j % passwords.Length]; + zip.AddFile(filenames[j], ""); + } + zip.Save(zipFileToCreate); + } + + IntroduceCorruption(zipFileToCreate); + + try + { + // read the corrupted zip - this should fail in some way + using (ZipFile zip = ZipFile.Read(zipFileToCreate)) + { + for (j = 0; j < filenames.Length; j++) + { + ZipEntry e = zip[Path.GetFileName(filenames[j])]; + + System.Console.WriteLine("name: {0} compressed: {1} has password?: {2}", + e.FileName, e.CompressedSize, e.UsesEncryption); + Assert.IsTrue(e.UsesEncryption, "The entry does not use encryption"); + e.ExtractWithPassword("unpack", passwords[j % passwords.Length]); + } + } + } + catch (Exception exc1) + { + throw new ZipException("expected", exc1); + } + } + + + + [TestMethod] + [ExpectedException(typeof(ZipException))] // not sure which exception - could be one of several. + public void Error_ReadCorruptedZipFile() + { + int i; + string zipFileToCreate = Path.Combine(TopLevelDir, "Read_CorruptedZipFile.zip"); + + string sourceDir = CurrentDir; + for (i = 0; i < 3; i++) + sourceDir = Path.GetDirectoryName(sourceDir); + + Directory.SetCurrentDirectory(TopLevelDir); + + // the list of filenames to add to the zip + string[] filenames = + { + Path.Combine(sourceDir, "Tools\\Zipit\\bin\\Debug\\Zipit.exe"), + Path.Combine(sourceDir, "Tools\\Unzip\\bin\\Debug\\Unzip.exe"), + Path.Combine(sourceDir, "Zip\\bin\\Debug\\DotNetZip.xml"), + Path.Combine(sourceDir, "Tools\\WinFormsApp\\Icon2.res"), + }; + + // create the zipfile, adding the files + using (ZipFile zip = new ZipFile()) + { + for (i = 0; i < filenames.Length; i++) + zip.AddFile(filenames[i], ""); + zip.Save(zipFileToCreate); + } + + // now corrupt the zip archive + IntroduceCorruption(zipFileToCreate); + + try + { + // read the corrupted zip - this should fail in some way + using (ZipFile zip = new ZipFile(zipFileToCreate)) + { + foreach (var e in zip) + { + System.Console.WriteLine("name: {0} compressed: {1} has password?: {2}", + e.FileName, e.CompressedSize, e.UsesEncryption); + e.Extract("extract"); + } + } + } + catch (Exception exc1) + { + throw new ZipException("expected", exc1); + } + } + + + [TestMethod] + public void Error_LockedFile_wi13903() + { + TestContext.WriteLine("==Error_LockedFile_wi13903()"); + string fname = Path.GetRandomFileName(); + TestContext.WriteLine("create file {0}", fname); + TestUtilities.CreateAndFillFileText(fname, _rnd.Next(10000) + 5000); + string zipFileToCreate = "wi13903.zip"; + + var zipErrorHandler = new EventHandler( (sender, e) => + { + TestContext.WriteLine("Error reading entry {0}", e.CurrentEntry); + TestContext.WriteLine(" (this was expected)"); + e.CurrentEntry.ZipErrorAction = ZipErrorAction.Skip; + }); + + // lock the file + TestContext.WriteLine("lock file {0}", fname); + using (var s = System.IO.File.Open(fname, + FileMode.Open, + FileAccess.Read, + FileShare.None)) + { + using (var rawOut = File.Create(zipFileToCreate)) + { + using (var nonSeekableOut = new Ionic.Zip.Tests.NonSeekableOutputStream(rawOut)) + { + TestContext.WriteLine("create zip file {0}", zipFileToCreate); + using (var zip = new ZipFile()) + { + zip.ZipError += zipErrorHandler; + zip.AddFile(fname); + // should trigger a read error, + // which should be skipped. Result will be + // a zero-entry zip file. + zip.Save(nonSeekableOut); + } + } + } + } + TestContext.WriteLine("all done, A-OK"); + } + + + [TestMethod] + [ExpectedException(typeof(ZipException))] + public void Error_Read_EmptyZipFile() + { + string zipFileToRead = Path.Combine(TopLevelDir, "Read_BadFile.zip"); + string newFile = Path.GetTempFileName(); + _FilesToRemove.Add(newFile); + File.Move(newFile, zipFileToRead); + newFile = Path.GetTempFileName(); + _FilesToRemove.Add(newFile); + string fileToAdd = Path.Combine(TopLevelDir, "EmptyFile.txt"); + File.Move(newFile, fileToAdd); + + try + { + using (ZipFile zip = ZipFile.Read(zipFileToRead)) + { + zip.AddFile(fileToAdd, ""); + zip.Save(); + } + } + catch (System.Exception exc1) + { + throw new ZipException("expected", exc1); + } + + } + + + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Error_AddFile_Twice() + { + int i; + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "Error_AddFile_Twice.zip"); + + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "files"); + Directory.CreateDirectory(subdir); + + // create a bunch of files + int numFilesToCreate = _rnd.Next(23) + 14; + for (i = 0; i < numFilesToCreate; i++) + TestUtilities.CreateUniqueFile("bin", subdir, _rnd.Next(10000) + 5000); + + // Create the zip archive + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile(zipFileToCreate)) + { + zip1.StatusMessageTextWriter = System.Console.Out; + string[] files = Directory.GetFiles(subdir); + zip1.AddFiles(files, "files"); + zip1.Save(); + } + + + // this should fail - adding the same file twice + using (ZipFile zip2 = new ZipFile(zipFileToCreate)) + { + zip2.StatusMessageTextWriter = System.Console.Out; + string[] files = Directory.GetFiles(subdir); + for (i = 0; i < files.Length; i++) + zip2.AddFile(files[i], "files"); + zip2.Save(); + } + } + + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void Error_FileNotAvailableFails() + { + // verify the correct exception is being thrown + string zipFileToCreate = Path.Combine(TopLevelDir, "Error_FileNotAvailableFails.zip"); + + // create a zip file with no entries + using (var zipfile = new ZipFile(zipFileToCreate)) { zipfile.Save(); } + + // open and lock + using (new FileStream(zipFileToCreate, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.None)) + { + using (new ZipFile(zipFileToCreate)) { } + } + } + + + + [TestMethod] + [ExpectedException(typeof(ZipException))] + public void IncorrectZipContentTest1_wi10459() + { + byte[] content = Encoding.UTF8.GetBytes("wrong zipfile content"); + using (var ms = new MemoryStream(content)) + { + using (var zipFile = ZipFile.Read(ms)) { } + } + } + + [TestMethod] + [ExpectedException(typeof(ZipException))] + public void IncorrectZipContentTest2_wi10459() + { + using (var ms = new MemoryStream()) + { + using (var zipFile = ZipFile.Read(ms)) { } + } + } + + [TestMethod] + [ExpectedException(typeof(ZipException))] + public void IncorrectZipContentTest3_wi10459() + { + byte[] content = new byte[8192]; + using (var ms = new MemoryStream(content)) + { + using (var zipFile = ZipFile.Read(ms)) { } + } + } + + } +} diff --git a/src/Zip Tests/ExtendedTests.cs b/old/src/Zip Tests/ExtendedTests.cs similarity index 97% rename from src/Zip Tests/ExtendedTests.cs rename to old/src/Zip Tests/ExtendedTests.cs index 1dde36e..6be3a82 100644 --- a/src/Zip Tests/ExtendedTests.cs +++ b/old/src/Zip Tests/ExtendedTests.cs @@ -1,2240 +1,2240 @@ -// ExtendedTests.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2008-2011 Dino Chiesa. -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-August-06 17:04:31> -// -// ------------------------------------------------------------------ -// -// This module defines some extended tests for DotNetZip. It gets into -// advanced features - file selection, encryption, and more. -// -// ------------------------------------------------------------------ - -using System; -using System.IO; -using System.Text; -using System.Collections.Generic; -using Microsoft.VisualStudio.TestTools.UnitTesting; - -using Ionic.Zip; -using Ionic.Zip.Tests.Utilities; - - -namespace Ionic.Zip.Tests.Extended -{ - - public class XTWFND : System.Xml.XmlTextWriter - { - public XTWFND(TextWriter w) : base(w) { Formatting = System.Xml.Formatting.Indented; } - public override void WriteStartDocument() { } - } - - /// - /// Summary description for ExtendedTests - /// - [TestClass] - public class ExtendedTests : IonicTestClass - { - public ExtendedTests() : base() { } - - - static String StreamToStringUTF8(Stream s) - { - string result = null; - // UTF-8 is the default, but I want to be explicit here. - using (var f = new StreamReader(s, System.Text.Encoding.UTF8)) - { - result = f.ReadToEnd(); - } - return result; - } - - - static bool IsEncodable(String s, Encoding e) - { - bool result = false; - try - { - byte[] b = e.GetBytes(s); - var s2 = e.GetString(b); - result = (s == s2); - } - catch - { - result = false; - } - return result; - } - - - - EncryptionAlgorithm[] crypto = - { - EncryptionAlgorithm.None, - EncryptionAlgorithm.PkzipWeak, - EncryptionAlgorithm.WinZipAes128, - EncryptionAlgorithm.WinZipAes256, - }; - - EncryptionAlgorithm[] cryptoNoPkzip = - { - EncryptionAlgorithm.None, - EncryptionAlgorithm.WinZipAes128, - EncryptionAlgorithm.WinZipAes256, - }; - - Ionic.Zlib.CompressionLevel[] compLevels = - { - Ionic.Zlib.CompressionLevel.None, - Ionic.Zlib.CompressionLevel.BestSpeed, - Ionic.Zlib.CompressionLevel.Default, - Ionic.Zlib.CompressionLevel.BestCompression, - }; - - Zip64Option[] z64 = - { - Zip64Option.Never, - Zip64Option.AsNecessary, - Zip64Option.Always, - }; - - - - - [TestMethod] - [Timeout(22 * 60*1000)] - public void Bzip2_Perf() - { - // Verify that the parallel compress option works properly - // with BZip2. - TestContext.WriteLine("Creating the fodder files..."); - - _txrx = TestUtilities.StartProgressMonitor("BZip2PerfTest", - "BZip2 Performance Test", - "Creating files"); - var update = new Action((op,ix,sz) => { - switch(op) - { - case 0: - _txrx.Send("pb 1 max " + sz); - _txrx.Send("status Creating file " + ix); - break; - case 1: - _txrx.Send("pb 1 value " + sz); - break; - case 2: - _txrx.Send("pb 0 step"); - _txrx.Send("pb 1 value 0"); - break; - } - }); - _txrx.Send("bars 2"); - int threshold = 1024 * 1024; - int n = _rnd.Next(3) + 3; - int minSize = 0x2000000 + this._rnd.Next(0x4000000); - int maxSize = 0x2000000 + minSize + this._rnd.Next(0x80000); - string dirInZip = "files"; - string extractDir = "extract"; - string subdir = dirInZip; - _txrx.Send("pb 0 max " + n); - - var filesToZip = TestUtilities.GenerateFilesFlat(subdir, n, - minSize, maxSize, update); - var fi = new FileInfo(filesToZip[_rnd.Next(filesToZip.Length)]); - Assert.IsTrue(fi.Length > threshold, - "For file {1}, length ({0}) does not meet threshold", - fi.Name, fi.Length); - - // Get the unzip.exe tool: - string dnzDir = CurrentDir; - for (int i = 0; i < 3; i++) - dnzDir = Path.GetDirectoryName(dnzDir); - string unzip = Path.Combine(dnzDir, "Tools\\Unzip\\bin\\debug\\Unzip.exe"); - Assert.IsTrue(File.Exists(unzip), - "The unzip.exe tool is not available."); - - _txrx.Send("pb 0 max " + (4*2)); - _txrx.Send("status done creating files..."); - // two passes: once for regular, once for parallel compress - var ts = new TimeSpan[2]; - var fileSize = new Int64[2]; - for (int k=0; k < 2; k++) - { - System.Threading.Thread.Sleep(1200); - var msg = string.Format("test BZip2 perf check, cycle {0}/2 (est. time: 22 mins)",k+1); - _txrx.Send(msg); - string zipFileToCreate = "BZip2_Perf."+k+".zip"; - TestContext.WriteLine("pass {0}, Creating the zip...", k); - var stopwatch = new System.Diagnostics.Stopwatch(); - stopwatch.Start(); - - // Now, Create the zip archive with DotNetZip - _cancelIndex = -1; - using (ZipFile zip1 = new ZipFile()) - { - zip1.ParallelDeflateThreshold = (k==0) - ? -1 : threshold; - zip1.CompressionMethod = CompressionMethod.BZip2; - zip1.AddFiles(filesToZip, dirInZip); - zip1.SaveProgress += SaveProgress; - zip1.Save(zipFileToCreate); - } - stopwatch.Stop(); - ts[k] = stopwatch.Elapsed; - fi = new FileInfo(zipFileToCreate); - fileSize[k] = fi.Length; - TestContext.WriteLine("size of resulting zip: {0}k", - fileSize[k] / 1024); - - _txrx.Send("pb 0 step"); - - _txrx.Send("status verifying the number of files"); - // Verify the number of files in the zip - TestContext.WriteLine("Verifying the number of files in the zip..."); - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length, - "Incorrect number of entries in the zip file."); - - _txrx.Send("pb 0 step"); - // examine and unpack the zip archive via DNZ tools. - // Get info on the zip file: - string unzipOut = this.Exec(unzip, "-i " + zipFileToCreate); - - // Verify that the output states that the compression method - // used for each entry was BZIP2... - _txrx.Send("status checking for BZIP compression..."); - TestContext.WriteLine("Verifying that BZIP2 was used..."); - Assert.AreEqual - (TestUtilities.CountOccurrences(unzipOut, "Compression: BZip2"), n); - - _txrx.Send("pb 0 step"); - - _txrx.Send("status Extracting via infozip unzip.exe..."); - // Extract the zip. eg, unzip.exe test.zip -d - TestContext.WriteLine("Extracting via unzip.exe..."); - this.Exec(unzip, zipFileToCreate + " -d " + extractDir); - - // Verify the count of extracted files - int fileCount = Directory.GetFiles(Path.Combine(extractDir,dirInZip)).Length; - Assert.IsTrue(fileCount == n, - "Not all files were extracted? (found {0}, expected {1})", - fileCount, n); - Directory.Delete(extractDir, true); - - _txrx.Send("pb 0 step"); - } - - var delta = (ts[0].TotalSeconds - ts[1].TotalSeconds) / - (0.01 * ts[0].TotalSeconds); - TestContext.WriteLine("Parallel compression reduced compression time by {0:N1}%", - delta); - - // verify the time required for parallel compression is lower. - Assert.IsTrue(ts[1] < ts[0], - "Parallel compression took MORE time."); - - delta = Math.Abs((int)(fileSize[1]-fileSize[0])) / - (0.01 * fileSize[0]); - - Assert.IsTrue(delta < 5.0, - "Parallel compression is not within 5% of normal filesize."); - TestContext.WriteLine("A-ok"); - } - - - - - [TestMethod] - public void TestZip_IsZipFile() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "TestZip_IsZipFile.zip"); - int entriesAdded = 0; - String filename = null; - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - int fileCount = _rnd.Next(10) + 10; - for (int j = 0; j < fileCount; j++) - { - filename = Path.Combine(subdir, String.Format("FileToBeAdded-{0:D2}.txt", j)); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - entriesAdded++; - } - - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddDirectory(subdir, Path.GetFileName(subdir)); - zip1.Save(zipFileToCreate); - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, - "The Zip file has the wrong number of entries."); - - Assert.IsTrue(ZipFile.IsZipFile(zipFileToCreate), - "The IsZipFile() method returned an unexpected result for an existing zip file."); - - Assert.IsTrue(ZipFile.IsZipFile(zipFileToCreate, true), - "The IsZipFile() method returned an unexpected result for an existing zip file."); - - Assert.IsTrue(!ZipFile.IsZipFile(filename), - "The IsZipFile() method returned an unexpected result for a extant file that is not a zip."); - - filename = Path.Combine(subdir, String.Format("ThisFileDoesNotExist.{0:D2}.txt", _rnd.Next(2000))); - Assert.IsTrue(!ZipFile.IsZipFile(filename), - "The IsZipFile() method returned an unexpected result for a non-existent file."); - - } - - - [TestMethod] - public void TestZip_IsZipFile_Stream() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "TestZip_IsZipFile_Stream.zip"); - int entriesAdded = 0; - String filename = null; - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - int fileCount = _rnd.Next(10) + 10; - for (int j = 0; j < fileCount; j++) - { - filename = Path.Combine(subdir, String.Format("FileToBeAdded-{0:D2}.txt", j)); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - entriesAdded++; - } - - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddDirectory(subdir, Path.GetFileName(subdir)); - zip1.Save(zipFileToCreate); - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, - "The Zip file has the wrong number of entries."); - - using (FileStream input = File.OpenRead(zipFileToCreate)) - { - Assert.IsTrue(ZipFile.IsZipFile(input, false), - "The IsZipFile() method returned an unexpected result for an existing zip file."); - } - - using (FileStream input = File.OpenRead(zipFileToCreate)) - { - Assert.IsTrue(ZipFile.IsZipFile(input, true), - "The IsZipFile() method returned an unexpected result for an existing zip file."); - } - } - - - - - - - [TestMethod] - public void ReadZip_DirectoryBitSetForEmptyDirectories() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "ReadZip_DirectoryBitSetForEmptyDirectories.zip"); - - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddDirectoryByName("Directory1"); - // must retrieve with a trailing slash. - ZipEntry e1 = zip1["Directory1/"]; - Assert.AreNotEqual(null, e1); - Assert.IsTrue(e1.IsDirectory, - "The IsDirectory property was not set as expected."); - zip1.AddDirectoryByName("Directory2"); - zip1.AddEntry(Path.Combine("Directory2", "Readme.txt"), "This is the content"); - Assert.IsTrue(zip1["Directory2/"].IsDirectory, - "The IsDirectory property was not set as expected."); - zip1.Save(zipFileToCreate); - Assert.IsTrue(zip1["Directory1/"].IsDirectory, - "The IsDirectory property was not set as expected."); - } - - // read the zip and retrieve the dir entries again - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - Assert.IsTrue(zip2["Directory1/"].IsDirectory, - "The IsDirectory property was not set as expected."); - - Assert.IsTrue(zip2["Directory2/"].IsDirectory, - "The IsDirectory property was not set as expected."); - } - - // now specify dir names with backslash - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - Assert.IsTrue(zip3["Directory1\\"].IsDirectory, - "The IsDirectory property was not set as expected."); - - Assert.IsTrue(zip3["Directory2\\"].IsDirectory, - "The IsDirectory property was not set as expected."); - - Assert.IsNull(zip3["Directory1"]); - Assert.IsNull(zip3["Directory2"]); - } - - } - - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Create_DuplicateEntries_wi8047() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "Create_DuplicateEntries_wi8047.zip"); - string filename = "file.test"; - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - - using (var zip = new ZipFile()) - { - int n = _rnd.Next(files.Length); - zip.UpdateFile(files[n]).FileName = filename; - int n2 = 0; - while ((n2 = _rnd.Next(files.Length)) == n) ; - zip.UpdateFile(files[n2]).FileName = filename; - zip.Save(zipFileToCreate); - } - } - - - [TestMethod] - public void Create_RenameRemoveAndRenameAgain_wi8047() - { - string filename = "file.test"; - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - - for (int m = 0; m < 2; m++) - { - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Create_RenameRemoveAndRenameAgain_wi8047-{0}.zip", m)); - - using (var zip = new ZipFile()) - { - // select a single file from the list - int n = _rnd.Next(files.Length); - - // insert the selected file into the zip, and also rename it - zip.UpdateFile(files[n]).FileName = filename; - - // conditionally save - if (m > 0) zip.Save(zipFileToCreate); - - // remove the original file - zip.RemoveEntry(zip[filename]); - - // select another file from the list, making sure it is not the same file - int n2 = 0; - while ((n2 = _rnd.Next(files.Length)) == n) ; - - // insert that other file and rename it - zip.UpdateFile(files[n2]).FileName = filename; - zip.Save(zipFileToCreate); - } - - Assert.AreEqual(1, TestUtilities.CountEntries(zipFileToCreate), "Trial {0}: The Zip file has the wrong number of entries.", m); - } - } - - - [TestMethod] - public void Create_EmitTimestampOptions() - { - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - - for (int j = 0; j < 3; j++) - { - for (int k = 0; k < 3; k++) - { - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Create_EmitTimestampOptions-{0}-{1}.zip", j, k)); - using (var zip = new ZipFile()) - { - if (j == 1) zip.EmitTimesInUnixFormatWhenSaving = false; - else if (j == 2) zip.EmitTimesInUnixFormatWhenSaving = true; - - if (k == 1) zip.EmitTimesInWindowsFormatWhenSaving = false; - else if (k == 2) zip.EmitTimesInWindowsFormatWhenSaving = true; - - zip.AddFiles(files, "files"); - zip.Save(zipFileToCreate); - } - - Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate), "The Zip file has the wrong number of entries."); - - using (var zip = ZipFile.Read(zipFileToCreate)) - { - for (int i = 0; i < zip.Entries.Count; i++) - { - if (j == 2) - Assert.AreEqual(ZipEntryTimestamp.Unix, zip[i].Timestamp & ZipEntryTimestamp.Unix, - "Missing Unix timestamp (cycle {0},{1}) (entry {2}).", j, k, i); - else - Assert.AreEqual(ZipEntryTimestamp.None, zip[i].Timestamp & ZipEntryTimestamp.Unix, - "Unix timestamp is present when none is expected (cycle {0},{1}) (entry {2}).", j, k, i); - - if (k == 1) - Assert.AreEqual(ZipEntryTimestamp.None, zip[i].Timestamp & ZipEntryTimestamp.Windows, - "Windows timestamp is present when none is expected (cycle {0},{1}) (entry {2}).", j, k, i); - else - Assert.AreEqual(ZipEntryTimestamp.Windows, zip[i].Timestamp & ZipEntryTimestamp.Windows, - "Missing Windows timestamp (cycle {0},{1}) (entry {2}).", j, k, i); - - Assert.AreEqual(ZipEntryTimestamp.DOS, zip[i].Timestamp & ZipEntryTimestamp.DOS, - "Missing DOS timestamp (entry (cycle {0},{1}) (entry {2}).", j, k, i); - } - } - } - } - } - - - - [TestMethod] - public void Extract_AfterSaveNoDispose() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "Extract_AfterSaveNoDispose.zip"); - string inputString = ""; - - using (ZipFile zip1 = new ZipFile()) - { - MemoryStream ms1 = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(inputString)); - zip1.AddEntry("woo\\Test.xml", ms1); - zip1.Save(zipFileToCreate); - - MemoryStream ms2 = new MemoryStream(); - zip1["Woo/Test.xml"].Extract(ms2); - ms2.Seek(0, SeekOrigin.Begin); - - var sw1 = new StringWriter(); - var w1 = new XTWFND(sw1); - - var d1 = new System.Xml.XmlDocument(); - d1.Load(ms2); - d1.Save(w1); - - var sw2 = new StringWriter(); - var w2 = new XTWFND(sw2); - var d2 = new System.Xml.XmlDocument(); - d2.Load(new MemoryStream(System.Text.Encoding.UTF8.GetBytes(inputString))); - d2.Save(w2); - - Assert.AreEqual(sw2.ToString(), sw1.ToString(), "Unexpected value on extract ({0}).", sw1.ToString()); - } - } - - - - [TestMethod] - public void Test_AddUpdateFileFromStream() - { - string[] passwords = { null, "Password", TestUtilities.GenerateRandomPassword(), "A" }; - for (int k = 0; k < passwords.Length; k++) - { - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Test_AddUpdateFileFromStream-{0}.zip", k)); - string[] inputStrings = new string[] - { - TestUtilities.LoremIpsum.Substring(_rnd.Next(5), 170 + _rnd.Next(25)), - TestUtilities.LoremIpsum.Substring(100 + _rnd.Next(40), 180+ _rnd.Next(30)) - }; - - // add entries to a zipfile. - // use a password.(possibly null) - using (ZipFile zip1 = new ZipFile()) - { - zip1.Password = passwords[k]; - for (int i = 0; i < inputStrings.Length; i++) - { - zip1.AddEntry(String.Format("Lorem{0}.txt", i + 1), inputStrings[i]); - } - zip1.Save(zipFileToCreate); - } - - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - zip2["Lorem2.txt"].Password = passwords[k]; - string output = StreamToStringUTF8(zip2["Lorem2.txt"].OpenReader()); - - Assert.AreEqual(output, inputStrings[1], "Trial {0}: Read entry 2 after create: Unexpected value on extract.", k); - - zip2["Lorem1.txt"].Password = passwords[k]; - Stream s = zip2["Lorem1.txt"].OpenReader(); - output = StreamToStringUTF8(s); - - Assert.AreEqual(output, inputStrings[0], "Trial {0}: Read entry 1 after create: Unexpected value on extract.", k); - } - - - // update an entry in the zipfile. For this pass, don't use a password. - string UpdateString = "This is the updated content. It will replace the original content, added from a string."; - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - var ms1 = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(UpdateString)); - zip3.UpdateEntry("Lorem1.txt", ms1); - zip3.Save(); - } - - using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) - { - string output = StreamToStringUTF8(zip4["Lorem1.txt"].OpenReader()); - Assert.AreEqual(output, UpdateString, "Trial {0}: Reading after update: Unexpected value on extract.", k); - } - } - } - - - - [TestMethod] - public void Test_AddEntry_String() - { - string[] passwords = { null, "Password", TestUtilities.GenerateRandomPassword(), "A" }; - - Encoding[] encodings = { Encoding.UTF8, - Encoding.Default, - Encoding.ASCII, - Encoding.GetEncoding("Big5"), - Encoding.GetEncoding("iso-8859-1"), - Encoding.GetEncoding("Windows-1252"), - }; - - string testBin = TestUtilities.GetTestBinDir(CurrentDir); - string testStringsFile = Path.Combine(testBin, "Resources\\TestStrings.txt"); - var contentStrings = File.ReadAllLines(testStringsFile); - - int[] successfulEncodings = new int[contentStrings.Length]; - - for (int a = 0; a < crypto.Length; a++) - { - for (int b = 0; b < passwords.Length; b++) - { - for (int c = 0; c < encodings.Length; c++) - { - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Test_AddEntry_String-{0}.{1}.{2}.zip", a, b, c)); - Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); - - - // add entries to a zipfile. - // use a password.(possibly null) - using (ZipFile zip1 = new ZipFile(zipFileToCreate)) - { - zip1.Comment = String.Format("Test zip file.\nEncryption({0}) Pw({1}) fileEncoding({2})", - crypto[a].ToString(), - passwords[b], - encodings[c].ToString()); - zip1.Encryption = crypto[a]; - zip1.Password = passwords[b]; - for (int d = 0; d < contentStrings.Length; d++) - { - string entryName = String.Format("File{0}.txt", d + 1); - // add each string using the given encoding - zip1.AddEntry(entryName, contentStrings[d], encodings[c]); - } - zip1.Save(); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), contentStrings.Length, - "Incorrect number of entries in the zip file."); - - - - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - zip2.Password = passwords[b]; - for (int d = 0; d < contentStrings.Length; d++) - { - try - { - string entryName = String.Format("File{0}.txt", d + 1); - //zip2[entryName].Password = Passwords[b]; // should not be necessary - using (Stream s = zip2[entryName].OpenReader()) - { - using (var sr = new StreamReader(s, encodings[c])) - { - try - { - Assert.AreNotEqual(null, sr); - string retrievedContent = sr.ReadLine(); - if (IsEncodable(contentStrings[d], encodings[c])) - { - Assert.AreEqual(contentStrings[d], retrievedContent, - "encryption({0}) pw({1}) encoding({2}), contentString({3}) file({4}): the content did not match.", - a, b, c, d, entryName); - successfulEncodings[d]++; - } - else - { - Assert.AreNotEqual(Encoding.UTF8, encodings[c]); - Assert.AreNotEqual(contentStrings[d], retrievedContent, - "encryption({0}) pw({1}) encoding({2}), contentString({3}) file({4}): the content should not match, but does.", - a, b, c, d, entryName); - } - } - catch (Exception exc1) - { - TestContext.WriteLine("Exception while reading: a({0}) b({1}) c({2}) d({3})", - a, b, c, d); - throw new Exception("broken", exc1); - } - } - } - - } - catch (Exception e1) - { - TestContext.WriteLine("Exception in OpenReader: Encryption({0}) pw({1}) c({2}) d({3})", - crypto[a].ToString(), - passwords[b], - encodings[c].ToString(), - d); - - throw new Exception("broken", e1); - } - } - } - } - } - } - - for (int d = 0; d < successfulEncodings.Length; d++) - Assert.AreNotEqual(0, successfulEncodings[d], "Content item #{0} ({1}) was never encoded successfully.", d, contentStrings[d]); - - } - - - - [TestMethod] - public void Test_AddDirectoryByName() - { - for (int n = 1; n <= 10; n++) - { - var dirsAdded = new System.Collections.Generic.List(); - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Test_AddDirectoryByName{0:N2}.zip", n)); - using (ZipFile zip1 = new ZipFile()) - { - for (int i = 0; i < n; i++) - { - // create an arbitrary directory name, add it to the zip archive - string dirName = TestUtilities.GenerateRandomName(24); - zip1.AddDirectoryByName(dirName); - dirsAdded.Add(dirName + "/"); - } - zip1.Save(zipFileToCreate); - } - - - int dirCount = 0; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (var e in zip2) - { - TestContext.WriteLine("dir: {0}", e.FileName); - Assert.IsTrue(dirsAdded.Contains(e.FileName), "Cannot find the expected entry"); - Assert.IsTrue(e.IsDirectory); - dirCount++; - } - } - Assert.AreEqual(n, dirCount); - } - } - - - - [TestMethod] - public void Test_AddDirectoryByName_Nested() - { - Directory.SetCurrentDirectory(TopLevelDir); - var dirsAdded = new System.Collections.Generic.List(); - string zipFileToCreate = Path.Combine(TopLevelDir, "Test_AddDirectoryByName_Nested.zip"); - using (ZipFile zip1 = new ZipFile(zipFileToCreate)) - { - for (int n = 1; n <= 14; n++) - { - string DirName = n.ToString(); - for (int i = 0; i < n; i++) - { - // create an arbitrary directory name, add it to the zip archive - DirName = Path.Combine(DirName, TestUtilities.GenerateRandomAsciiString(11)); - } - zip1.AddDirectoryByName(DirName); - dirsAdded.Add(DirName.Replace("\\", "/") + "/"); - } - zip1.Save(); - } - - int dirCount = 0; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (var e in zip2) - { - TestContext.WriteLine("dir: {0}", e.FileName); - Assert.IsTrue(dirsAdded.Contains(e.FileName), "Cannot find the expected directory."); - Assert.IsTrue(e.IsDirectory); - dirCount++; - } - } - Assert.AreEqual(dirsAdded.Count, dirCount); - } - - - [TestMethod] - public void Test_AddDirectoryByName_WithFiles() - { - Directory.SetCurrentDirectory(TopLevelDir); - - var dirsAdded = new System.Collections.Generic.List(); - string password = TestUtilities.GenerateRandomPassword(); - string zipFileToCreate = Path.Combine(TopLevelDir, "Test_AddDirectoryByName_WithFiles.zip"); - using (ZipFile zip1 = new ZipFile(zipFileToCreate)) - { - string dirName = null; - int T = 3 + _rnd.Next(4); - for (int n = 0; n < T; n++) - { - // nested directories - dirName = (n == 0) ? "root" : - Path.Combine(dirName, TestUtilities.GenerateRandomAsciiString(8)); - - zip1.AddDirectoryByName(dirName); - dirsAdded.Add(dirName.Replace("\\", "/") + "/"); - if (n % 2 == 0) zip1.Password = password; - zip1.AddEntry(Path.Combine(dirName, new System.String((char)(n + 48), 3) + ".txt"), "Hello, Dolly!"); - if (n % 2 == 0) zip1.Password = null; - } - zip1.Save(); - } - - int entryCount = 0; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (var e in zip2) - { - TestContext.WriteLine("e: {0}", e.FileName); - if (e.IsDirectory) - Assert.IsTrue(dirsAdded.Contains(e.FileName), "Cannot find the expected directory."); - else - { - if ((entryCount - 1) % 4 == 0) e.Password = password; - string output = StreamToStringUTF8(e.OpenReader()); - Assert.AreEqual("Hello, Dolly!", output); - } - entryCount++; - } - } - Assert.AreEqual(dirsAdded.Count * 2, entryCount); - } - - - - - int _progressEventCalls, _numSaving, _totalToSave, _cancelIndex, spCycles; - bool _pb2Set, _pb1Set; - - Int64 maxBytesXferred = 0; - void SaveProgress(object sender, SaveProgressEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Saving_Started: - if (_txrx != null) - { - _txrx.Send("status saving started..."); - _pb1Set = false; - _numSaving= 1; - } - break; - case ZipProgressEventType.Saving_BeforeWriteEntry: - if (_txrx != null) - { - _txrx.Send("status Compressing " + e.CurrentEntry.FileName); - spCycles = 0; - if (!_pb1Set) - { - _txrx.Send("pb 1 max " + e.EntriesTotal); - _pb1Set = true; - } - _totalToSave = e.EntriesTotal; - _pb2Set = false; - } - break; - case ZipProgressEventType.Saving_AfterWriteEntry: - _progressEventCalls++; - TestContext.WriteLine("{0}: {1} ({2}/{3})", e.EventType.ToString(), e.CurrentEntry.FileName, e.EntriesSaved, e.EntriesTotal); - if (_cancelIndex == _progressEventCalls) - { - e.Cancel = true; - TestContext.WriteLine("Cancelling..."); - } - if (_txrx != null) - { - _txrx.Send("pb 1 step"); - _numSaving++; - } - break; - - case ZipProgressEventType.Saving_EntryBytesRead: - Assert.IsTrue(e.BytesTransferred <= e.TotalBytesToTransfer, - "For entry {0}, BytesTransferred is greater than TotalBytesToTransfer: ({1} > {2})", - e.CurrentEntry.FileName, e.BytesTransferred, e.TotalBytesToTransfer); - maxBytesXferred = e.BytesTransferred; - if (_txrx!=null) - { - spCycles++; - if ((spCycles % 128) == 0) - { - if (!_pb2Set) - { - _txrx.Send("pb 2 max " + e.TotalBytesToTransfer); - _pb2Set = true; - } - _txrx.Send(String.Format("status Saving entry {0}/{1} :: {2} :: {3}/{4}mb {5:N0}%", - _numSaving, _totalToSave, - e.CurrentEntry.FileName, - e.BytesTransferred/(1024*1024), e.TotalBytesToTransfer/(1024*1024), - ((double)e.BytesTransferred) / (0.01 * e.TotalBytesToTransfer))); - _txrx.Send("pb 2 value " + e.BytesTransferred); - } - } - break; - - case ZipProgressEventType.Saving_Completed: - if (_txrx != null) - { - _txrx.Send("status Save completed"); - _pb2Set = false; - _txrx.Send("pb 1 max 1"); - _txrx.Send("pb 1 value 1"); - } - break; - - default: - break; - } - } - - bool _wasCanceled = false; - void AddProgress(object sender, AddProgressEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Adding_AfterAddEntry: - _progressEventCalls++; - TestContext.WriteLine("{0}: {1}", e.EventType.ToString(), e.CurrentEntry.FileName); - if (_cancelIndex == _progressEventCalls) - { - e.Cancel = true; - TestContext.WriteLine("Cancelling..."); - _wasCanceled = true; - } - break; - } - } - - - void ExtractProgress(object sender, ExtractProgressEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Extracting_AfterExtractEntry: - _progressEventCalls++; - TestContext.WriteLine("Extracted: {0} ({1}/{2})", e.CurrentEntry.FileName, e.EntriesExtracted, e.EntriesTotal); - // synthetic cancellation - if (_cancelIndex == _progressEventCalls) - { - e.Cancel = true; - TestContext.WriteLine("Cancelling..."); - } - break; - - case ZipProgressEventType.Extracting_EntryBytesWritten: - maxBytesXferred = e.BytesTransferred; - break; - - default: - break; - } - } - - - [TestMethod] - public void Create_WithEvents() - { - string dirToZip = Path.Combine(TopLevelDir, "EventTest"); - Directory.CreateDirectory(dirToZip); - - var randomizerSettings = new int[] - { - 6, 4, // dircount - 7, 8, // filecount - 10000, 15000 // filesize - }; - int subdirCount = 0; - int entriesAdded = TestUtilities.GenerateFilesOneLevelDeep(TestContext, "Create_WithEvents", dirToZip, randomizerSettings, null, out subdirCount); - - for (int m = 0; m < 2; m++) - { - TestContext.WriteLine("======================================================="); - TestContext.WriteLine("Trial {0}", m); - - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Create_WithEvents-{0}.zip", m)); - string targetDirectory = Path.Combine(TopLevelDir, "unpack" + m.ToString()); - - _progressEventCalls = 0; - _cancelIndex = -1; // don't cancel this Save - - // create a zip file - using (ZipFile zip1 = new ZipFile()) - { - zip1.SaveProgress += SaveProgress; - zip1.Comment = "This is the comment on the zip archive."; - zip1.AddDirectory(dirToZip, Path.GetFileName(dirToZip)); - zip1.Save(zipFileToCreate); - } - - if (m > 0) - { - // update the zip file - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - zip1.SaveProgress += SaveProgress; - zip1.Comment = "This is the comment on the zip archive."; - zip1.AddEntry("ReadThis.txt", "This is the content for the readme file in the archive."); - zip1.Save(); - } - entriesAdded++; - } - - int expectedNumberOfProgressCalls = (entriesAdded + subdirCount) * (m + 1) + 1; - Assert.AreEqual(expectedNumberOfProgressCalls, _progressEventCalls, - "The number of progress events was unexpected ({0}!={1}).", expectedNumberOfProgressCalls, _progressEventCalls); - - _progressEventCalls = 0; - _cancelIndex = -1; // don't cancel this Extract - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - zip2.ExtractProgress += ExtractProgress; - zip2.ExtractAll(targetDirectory); - } - - Assert.AreEqual(_progressEventCalls, entriesAdded + subdirCount + 1, - "The number of Entries added is not equal to the number of entries extracted."); - - } - - } - - - - - [TestMethod] - public void CreateZip_AddDirectory_NoFilesInRoot_WI5893() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "CreateZip_AddDirectory_NoFilesInRoot_WI5893.zip"); - int i, j; - int entries = 0; - int subdirCount = _rnd.Next(5) + 5; - for (i = 0; i < subdirCount; i++) - { - string subdir = Path.Combine(TopLevelDir, "DirectoryToZip.test." + i); - Directory.CreateDirectory(subdir); - - int fileCount = _rnd.Next(13) + 7; - for (j = 0; j < fileCount; j++) - { - String file = Path.Combine(subdir, String.Format("file{0:D3}.a", j)); - TestUtilities.CreateAndFillFile(file, _rnd.Next(100) + 500); - entries++; - } - } - - using (ZipFile zip = new ZipFile()) - { - zip.AddDirectory(TopLevelDir, string.Empty); - zip.Save(zipFileToCreate); - } - - BasicVerifyZip(zipFileToCreate); - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries, "The Zip file has the wrong number of entries."); - } - - - [TestMethod] - public void Create_AddDirectory_NoFilesInRoot_WI5893a() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "Create_AddDirectory_NoFilesInRoot_WI5893a.zip"); - - int i, j; - int entries = 0; - int subdirCount = _rnd.Next(4) + 4; - for (i = 0; i < subdirCount; i++) - { - string subdir = Path.Combine(TopLevelDir, "DirectoryToZip.test." + i); - Directory.CreateDirectory(subdir); - - int fileCount = _rnd.Next(16) + 8; - for (j = 0; j < fileCount; j++) - { - String file = Path.Combine(subdir, String.Format("testfile{0:D3}.a", j)); - TestUtilities.CreateAndFillFile(file, _rnd.Next(100) + 500); - entries++; - } - } - - using (ZipFile zip = new ZipFile()) - { - zip.AddDirectory(TopLevelDir, string.Empty); - zip.Save(zipFileToCreate); - } - - BasicVerifyZip(zipFileToCreate); - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries, "The Zip file has the wrong number of entries."); - } - - - - - [TestMethod] - public void Create_SaveCancellation() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "Create_SaveCancellation.zip"); - - string dirToZip = Path.Combine(TopLevelDir, "EventTest"); - Directory.CreateDirectory(dirToZip); - int subdirCount = 0; - int entriesAdded = TestUtilities.GenerateFilesOneLevelDeep(TestContext, "Create_SaveCancellation", dirToZip, null, out subdirCount); - - _cancelIndex = entriesAdded - _rnd.Next(entriesAdded / 2); - _progressEventCalls = 0; - using (ZipFile zip1 = new ZipFile()) - { - zip1.SaveProgress += SaveProgress; - zip1.Comment = "The save on this zip archive will be canceled."; - zip1.AddDirectory(dirToZip, Path.GetFileName(dirToZip)); - zip1.Save(zipFileToCreate); - } - - Assert.AreEqual(_progressEventCalls, _cancelIndex); - - Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file save should have been canceled."); - } - - - [TestMethod] - public void Create_AddCancellation_wi13371() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "Create_AddCancellation.zip"); - - string dirToZip = Path.Combine(TopLevelDir, "EventTest"); - Directory.CreateDirectory(dirToZip); - int subdirCount = 0; - int entriesAdded = TestUtilities.GenerateFilesOneLevelDeep(TestContext, "Create_AddCancellation", dirToZip, null, out subdirCount); - - _cancelIndex = entriesAdded - _rnd.Next(entriesAdded / 2); - _progressEventCalls = 0; - _wasCanceled = false; - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddProgress += AddProgress; - zip1.Comment = "The add of files into this zip archive will be canceled."; - zip1.AddDirectory(dirToZip, Path.GetFileName(dirToZip)); - if (!_wasCanceled) - zip1.Save(zipFileToCreate); - } - - Assert.AreEqual(_progressEventCalls, _cancelIndex); - - Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file should not exist."); - } - - - - [TestMethod] - public void ExtractAll_Cancellation() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "ExtractAll_Cancellation.zip"); - string targetDirectory = Path.Combine(TopLevelDir, "unpack"); - string dirToZip = Path.Combine(TopLevelDir, "EventTest"); - Directory.CreateDirectory(dirToZip); - int subdirCount = 0; - int entriesAdded = TestUtilities.GenerateFilesOneLevelDeep(TestContext, "ExtractAll_Cancellation", dirToZip, null, out subdirCount); - - using (ZipFile zip1 = new ZipFile()) - { - zip1.Comment = "The extract on this zip archive will be canceled."; - zip1.AddDirectory(dirToZip, Path.GetFileName(dirToZip)); - zip1.Save(zipFileToCreate); - } - - BasicVerifyZip(zipFileToCreate); - - _cancelIndex = entriesAdded - _rnd.Next(entriesAdded / 2); - _progressEventCalls = 0; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - zip2.ExtractProgress += ExtractProgress; - zip2.ExtractAll(targetDirectory); - } - - Assert.AreEqual(_progressEventCalls, _cancelIndex); - } - - - - [TestMethod] - public void ExtractAll_WithPassword() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "ExtractAll_WithPassword.zip"); - string targetDirectory = Path.Combine(TopLevelDir, "unpack"); - string dirToZip = Path.Combine(TopLevelDir, "dirToZip"); - Directory.CreateDirectory(dirToZip); - int subdirCount = 0; - - int entriesAdded = TestUtilities.GenerateFilesOneLevelDeep(TestContext, "ExtractAll_WithPassword", dirToZip, null, out subdirCount); - string password = TestUtilities.GenerateRandomPassword(); - using (ZipFile zip1 = new ZipFile()) - { - zip1.Password = password; - zip1.Comment = "Brick walls are there for a reason: to let you show how badly you want your goal."; - zip1.AddDirectory(dirToZip, Path.GetFileName(dirToZip)); - zip1.Save(zipFileToCreate); - } - - BasicVerifyZip(zipFileToCreate, password); - - _cancelIndex = -1; // don't cancel this Extract - _progressEventCalls = 0; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - zip2.Password = password; - zip2.ExtractProgress += ExtractProgress; - zip2.ExtractAll(targetDirectory); - } - - Assert.AreEqual(_progressEventCalls, entriesAdded + subdirCount + 1); - } - - - - - - [TestMethod] - public void Extract_ImplicitPassword() - { - for (int k = 0; k < compLevels.Length; k++) - { - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Extract_ImplicitPassword-{0}.zip", k)); - Directory.SetCurrentDirectory(TopLevelDir); - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - string[] passwords = new string[files.Length]; - - using (ZipFile zip1 = new ZipFile()) - { - zip1.Comment = "Brick walls are there for a reason: to let you show how badly you want your goal."; - zip1.CompressionLevel = compLevels[k]; - for (int i = 0; i < files.Length; i++) - { - passwords[i] = TestUtilities.GenerateRandomPassword(); - zip1.Password = passwords[i]; - TestContext.WriteLine(" Adding entry: {0} pw({1})", files[i], passwords[i]); - zip1.AddFile(files[i], Path.GetFileName(dirToZip)); - } - zip1.Save(zipFileToCreate); - } - TestContext.WriteLine("\n"); - - // extract using the entry from the enumerator - int nExtracted = 0; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (ZipEntry e in zip2) - { - e.Password = passwords[nExtracted]; - TestContext.WriteLine(" Extracting entry: {0} pw({1})", e.FileName, passwords[nExtracted]); - e.Extract("unpack1"); - nExtracted++; - } - } - - Assert.AreEqual(files.Length, nExtracted); - - // extract using the filename indexer - nExtracted = 0; - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - foreach (var name in zip3.EntryFileNames) - { - zip3.Password = passwords[nExtracted]; - zip3[name].Extract("unpack2"); - nExtracted++; - } - } - - Assert.AreEqual(files.Length, nExtracted); - } - } - - - - [TestMethod] - public void Extract_MultiThreaded_wi6637() - { - int nConcurrentZipFiles = 5; - for (int k = 0; k < 1; k++) - { - TestContext.WriteLine("\n-----------------------------\r\n{0}: Trial {1}...", - DateTime.Now.ToString("HH:mm:ss"), - k); - - Directory.SetCurrentDirectory(TopLevelDir); - - string[] zipFileToCreate = new string[nConcurrentZipFiles]; - for (int m = 0; m < nConcurrentZipFiles; m++) - { - zipFileToCreate[m] = Path.Combine(TopLevelDir, String.Format("Extract_MultiThreaded-{0}-{1}.zip", k, m)); - TestContext.WriteLine(" Creating file: {0}", zipFileToCreate[m]); - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - - var files = TestUtilities.GenerateFilesFlat(dirToZip); - TestContext.WriteLine("Zipping {0} files from dir '{1}'...", files.Length, dirToZip); - - using (ZipFile zip1 = new ZipFile()) - { - zip1.Comment = "Brick walls are there for a reason: to let you show how badly you want your goal."; - for (int i = 0; i < files.Length; i++) - { - TestContext.WriteLine(" Adding entry: {0}", files[i]); - zip1.AddFile(files[i], Path.GetFileName(dirToZip)); - } - zip1.Save(zipFileToCreate[m]); - } - TestContext.WriteLine("\n"); - BasicVerifyZip(zipFileToCreate[m]); - } - - - // multi-thread extract - foreach (string fileName in zipFileToCreate) - { - TestContext.WriteLine("queueing unzip for file: {0}", fileName); - System.Threading.ThreadPool.QueueUserWorkItem(processZip, fileName); - } - - while (completedEntries != zipFileToCreate.Length) - System.Threading.Thread.Sleep(400); - - TestContext.WriteLine("done."); - - } - } - - - - private int _completedEntries; - private int completedEntries - { - get { return _completedEntries; } - set - { - lock (this) - { - _completedEntries = value; - } - } - } - - - - private void processZip(object o) - { - string fileName = o as string; - - string zDir = Path.Combine("extract", - Path.GetFileNameWithoutExtension(fileName.ToString())); - - TestContext.WriteLine("extracting {0}...", fileName); - - using (var zFile = ZipFile.Read(fileName)) - { - zFile.ExtractAll(zDir, ExtractExistingFileAction.OverwriteSilently); - } - completedEntries++; - } - - - - - - void OverwriteDecider(object sender, ExtractProgressEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Extracting_ExtractEntryWouldOverwrite: - // randomly choose whether to overwrite or not - e.CurrentEntry.ExtractExistingFile = (_rnd.Next(2) == 0) - ? ExtractExistingFileAction.DoNotOverwrite - : ExtractExistingFileAction.OverwriteSilently; - break; - } - } - - - - [TestMethod] - public void Extract_ExistingFile() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "Extract_ExistingFile.zip"); - string sourceDir = CurrentDir; - for (int i = 0; i < 3; i++) - sourceDir = Path.GetDirectoryName(sourceDir); - - Directory.SetCurrentDirectory(TopLevelDir); - - string[] filenames = - { - Path.Combine(sourceDir, "Tools\\Zipit\\bin\\Debug\\Zipit.exe"), - Path.Combine(sourceDir, "Zip\\bin\\Debug\\DotNetZip.dll"), - Path.Combine(sourceDir, "Zip\\bin\\Debug\\DotNetZip.pdb"), - Path.Combine(sourceDir, "Zip\\bin\\Debug\\DotNetZip.xml"), - //Path.Combine(SourceDir, "AppNote.txt") - }; - - int j = 0; - using (ZipFile zip = new ZipFile()) - { - for (j = 0; j < filenames.Length; j++) - zip.AddFile(filenames[j], ""); - zip.Comment = "This is a Comment On the Archive"; - zip.Save(zipFileToCreate); - } - - - BasicVerifyZip(zipFileToCreate); - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filenames.Length, - "The zip file created has the wrong number of entries."); - - TestContext.WriteLine("- - - - - - - - - - - - - - - - - - - - - - - - - - - -"); - TestContext.WriteLine("1. first extract - this should succeed"); - var options = new ReadOptions { StatusMessageWriter = new StringWriter() }; - using (ZipFile zip = ZipFile.Read(zipFileToCreate, options)) - { - for (j = 0; j < filenames.Length; j++) - { - var f = Path.GetFileName(filenames[j]); - zip[f].Extract("unpack", ExtractExistingFileAction.Throw); - } - } - TestContext.WriteLine(options.StatusMessageWriter.ToString()); - - TestContext.WriteLine("- - - - - - - - - - - - - - - - - - - - - - - - - - - -"); - TestContext.WriteLine("2. extract again - DoNotOverwrite"); - options.StatusMessageWriter = new StringWriter(); - using (ZipFile zip = ZipFile.Read(zipFileToCreate, options)) - { - for (j = 0; j < filenames.Length; j++) - { - var f = Path.GetFileName(filenames[j]); - zip[f].Extract("unpack", ExtractExistingFileAction.DoNotOverwrite); - } - } - TestContext.WriteLine(options.StatusMessageWriter.ToString()); - - TestContext.WriteLine("- - - - - - - - - - - - - - - - - - - - - - - - - - - -"); - TestContext.WriteLine("3. extract again - OverwriteSilently"); - options.StatusMessageWriter = new StringWriter(); - using (ZipFile zip = ZipFile.Read(zipFileToCreate, options)) - { - for (j = 0; j < filenames.Length; j++) - { - var f = Path.GetFileName(filenames[j]); - zip[f].Extract("unpack", ExtractExistingFileAction.OverwriteSilently); - } - } - TestContext.WriteLine(options.StatusMessageWriter.ToString()); - - TestContext.WriteLine("- - - - - - - - - - - - - - - - - - - - - - - - - - - -"); - TestContext.WriteLine("4. extract again - InvokeExtractProgressEvent"); - options.StatusMessageWriter = new StringWriter(); - using (ZipFile zip = ZipFile.Read(zipFileToCreate, options)) - { - zip.ExtractProgress += OverwriteDecider; - for (j = 0; j < filenames.Length; j++) - { - var f = Path.GetFileName(filenames[j]); - zip[f].Extract("unpack", ExtractExistingFileAction.InvokeExtractProgressEvent); - } - } - TestContext.WriteLine(options.StatusMessageWriter.ToString()); - } - - - - - [TestMethod] - public void Extended_CheckZip1() - { - string[] dirNames = { "", Path.GetFileName(Path.GetRandomFileName()) }; - - string textToEncode = - "Pay no attention to this: " + - "We've read in the regular entry header, the extra field, and any " + - "encryption header. The pointer in the file is now at the start of " + - "the filedata, which is potentially compressed and encrypted. Just " + - "ahead in the file, there are _CompressedFileDataSize bytes of data, " + - "followed by potentially a non-zero length trailer, consisting of " + - "optionally, some encryption stuff (10 byte MAC for AES), " + - "and then the bit-3 trailer (16 or 24 bytes). "; - - for (int i = 0; i < crypto.Length; i++) - { - for (int j = 0; j < z64.Length; j++) - { - for (int k = 0; k < dirNames.Length; k++) - { - string zipFile = String.Format("Extended-CheckZip1-{0}.{1}.{2}.zip", i, j, k); - string password = Path.GetRandomFileName(); - - TestContext.WriteLine("================================="); - TestContext.WriteLine("Creating {0}...", Path.GetFileName(zipFile)); - - using (var zip = new ZipFile()) - { - zip.Comment = String.Format("Encryption={0} Zip64={1} pw={2}", - crypto[i].ToString(), z64[j].ToString(), password); - if (crypto[i] != EncryptionAlgorithm.None) - { - TestContext.WriteLine("Encryption({0}) Zip64({1}) pw({2})", - crypto[i].ToString(), z64[j].ToString(), password); - zip.Encryption = crypto[i]; - zip.Password = password; - } - else - TestContext.WriteLine("Encryption({0}) Zip64({1})", - crypto[i].ToString(), z64[j].ToString()); - - zip.UseZip64WhenSaving = z64[j]; - if (!String.IsNullOrEmpty(dirNames[k])) - zip.AddDirectoryByName(dirNames[k]); - zip.AddEntry(Path.Combine(dirNames[k], "File1.txt"), textToEncode); - zip.Save(zipFile); - } - - BasicVerifyZip(zipFile, password); - TestContext.WriteLine("Checking zip..."); - using (var sw = new StringWriter()) - { - bool result = ZipFile.CheckZip(zipFile, false, sw); - Assert.IsTrue(result, "Zip ({0}) does not check OK", zipFile); - var msgs = sw.ToString().Split('\n'); - foreach (var msg in msgs) - TestContext.WriteLine("{0}", msg); - } - } - } - } - } - - - - [TestMethod] - public void Extended_CheckZip2() - { - string textToEncode = - "Pay no attention to this: " + - "We've read in the regular entry header, the extra field, and any " + - "encryption header. The pointer in the file is now at the start of " + - "the filedata, which is potentially compressed and encrypted. Just " + - "ahead in the file, there are _CompressedFileDataSize bytes of " + - "data, followed by potentially a non-zero length trailer, " + - "consisting of optionally, some encryption stuff (10 byte MAC for " + - "AES), and then the bit-3 trailer (16 or 24 bytes). " + - " " + - "The encryption can be either PKZIP 2.0 (weak) encryption, or " + - "WinZip-compatible AES encryption, which is considered to be " + - "strong and for that reason is preferred. In the WinZip AES " + - "option, there are two different keystrengths supported: 128 bits " + - "and 256 bits. " + - " " + - "The extra field, which I mentioned previously, specifies " + - "additional metadata about the entry, which is strictly-speaking, " + - "optional. These data are things like high-resolution timestamps, " + - "data sizes that exceed 2^^32, and other encryption " + - "possibilities. In each case the library that reads a zip file " + - "needs to be able to correctly deal with the various fields, " + - "validating the values within them. " + - " " + - "Now, cross all that with the variety of usage patterns - creating a " + - "zip, or reading, or extracting, or updating, or updating several " + - "times. And also, remember that the metadata may change during " + - "updates: an application can apply a password where none was used " + - "previously, or it may wish to remove an entry from the zip entirely. " + - " " + - "The huge variety of combinations of possibilities is what makes " + - "testing a zip library so challenging. " ; - - string testBin = TestUtilities.GetTestBinDir(CurrentDir); - string fileToZip = Path.Combine(testBin, "DotNetZip.dll"); - - for (int i = 0; i < crypto.Length; i++) - { - for (int j = 0; j < z64.Length; j++) - { - string zipFile = String.Format("Extended-CheckZip2-{0}.{1}.zip", i, j); - string password = Path.GetRandomFileName(); - - TestContext.WriteLine("================================="); - TestContext.WriteLine("Creating {0}...", Path.GetFileName(zipFile)); - - string dir = Path.GetRandomFileName(); - using (var zip = new ZipFile()) - { - zip.Comment = String.Format("Encryption={0} Zip64={1} pw={2}", - crypto[i].ToString(), z64[j].ToString(), password); - - zip.Encryption = crypto[i]; - if (crypto[i] != EncryptionAlgorithm.None) - { - TestContext.WriteLine("Encryption({0}) Zip64({1}) pw({2})", - crypto[i].ToString(), z64[j].ToString(), password); - zip.Password = password; - } - else - TestContext.WriteLine("Encryption({0}) Zip64({1})", - crypto[i].ToString(), z64[j].ToString()); - - zip.UseZip64WhenSaving = z64[j]; - int N = _rnd.Next(11) + 5; - for (int k = 0; k < N; k++) - zip.AddDirectoryByName(Path.GetRandomFileName()); - - zip.AddEntry("File1.txt", textToEncode); - zip.AddFile(fileToZip, Path.GetRandomFileName()); - zip.Save(zipFile); - } - - BasicVerifyZip(zipFile, password, false); - - TestContext.WriteLine("Checking zip..."); - - using (var sw = new StringWriter()) - { - bool result = ZipFile.CheckZip(zipFile, false, sw); - Assert.IsTrue(result, "Zip ({0}) does not check OK", zipFile); - var msgs = sw.ToString().Split('\n'); - foreach (var msg in msgs) - TestContext.WriteLine("{0}", msg); - } - TestContext.WriteLine("OK"); - TestContext.WriteLine(""); - } - } - } - - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Create_DuplicateNames_DifferentFolders_wi8982_flat() - { - _Internal_DuplicateNames_DifferentFolders_wi8982(true); - } - - [TestMethod] - public void Create_DuplicateNames_DifferentFolders_wi8982_PreserveHierarchy() - { - _Internal_DuplicateNames_DifferentFolders_wi8982(false); - } - - public void _Internal_DuplicateNames_DifferentFolders_wi8982(bool flat) - { - Directory.SetCurrentDirectory(TopLevelDir); - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - TestUtilities.GenerateFilesFlat(dirToZip, 3); - string subdir = Path.Combine(dirToZip, "subdir1"); - TestUtilities.GenerateFilesFlat(subdir, 2); - - for (int i = 0; i < 2; i++) - { - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Create_DuplicateNames_DifferentFolders.{0}.zip", i)); - - using (var zip = new ZipFile()) - { - zip.ZipErrorAction = ZipErrorAction.Throw; - if (i == 0) - zip.AddDirectory(dirToZip, "fodder"); - else - { - var files = Directory.GetFiles(dirToZip, "*.*", SearchOption.AllDirectories); - if (flat) - zip.AddFiles(files, "fodder"); - else - zip.AddFiles(files, true, "fodder"); - - } - - zip.Save(zipFileToCreate); - } - - BasicVerifyZip(zipFileToCreate); - - Assert.AreEqual(5, TestUtilities.CountEntries(zipFileToCreate), - "Trial {0}: The zip file created has the wrong number of entries.", i); - } - } - - - - [TestMethod] - [ExpectedException(typeof(System.IO.IOException))] - public void Create_ZipErrorAction_Throw() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "Create_ZipErrorAction_Throw.zip"); - Directory.SetCurrentDirectory(TopLevelDir); - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - int n = _rnd.Next(files.Length); - - TestContext.WriteLine("Locking file {0}...", files[n]); - using (Stream lockStream = new FileStream(files[n], FileMode.Open, FileAccess.Read, FileShare.None)) - { - using (var zip = new ZipFile()) - { - zip.ZipErrorAction = ZipErrorAction.Throw; - zip.AddFiles(files, "fodder"); - zip.Save(zipFileToCreate); - } - } - } - - - - - - [TestMethod] - public void Create_ZipErrorAction_Skip() - { - Directory.SetCurrentDirectory(TopLevelDir); - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - - // m is the number of files to lock - for (int m = 1; m < 4; m++) - { - // k is the type of locking. 0 == whole file, 1 == range lock - for (int k = 0; k < 2; k++) - { - TestContext.WriteLine("Trial {0}.{1}...", m, k); - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Create_ZipErrorAction_Skip-{0}-{1}.zip", m, k)); - var locked = new Dictionary(); - try - { - for (int i = 0; i < m; i++) - { - int n = 0; - do - { - n = _rnd.Next(files.Length); - } while (locked.ContainsKey(files[n])); - - TestContext.WriteLine(" Locking file {0}...", files[n]); - - FileStream lockStream = null; - if (k == 0) - { - lockStream = new FileStream(files[n], FileMode.Open, FileAccess.Read, FileShare.None); - } - else - { - lockStream = new FileStream(files[n], FileMode.Open, FileAccess.Read, FileShare.ReadWrite); - int r = _rnd.Next((int)(lockStream.Length / 2)); - int s = _rnd.Next((int)(lockStream.Length / 2)); - lockStream.Lock(s, r); - } - - locked.Add(files[n], lockStream); - } - - using (var zip = new ZipFile()) - { - zip.ZipErrorAction = ZipErrorAction.Skip; - zip.AddFiles(files, "fodder"); - zip.Save(zipFileToCreate); - } - - using (var zip = new ZipFile(zipFileToCreate)) - { - // Writing the info as a single block puts everything on the - // same line, makes it unreadable. So we split the strings on - // newline boundaries and write them individually. - foreach (string s in zip.Info.Split('\r', '\n')) - { - Console.WriteLine("{0}", s); - } - } - - BasicVerifyZip(zipFileToCreate); - - Assert.AreEqual(files.Length - m, TestUtilities.CountEntries(zipFileToCreate), - "The zip file created has the wrong number of entries."); - } - finally - { - foreach (String s in locked.Keys) - { - locked[s].Close(); - } - } - - TestContext.WriteLine(" ..."); - System.Threading.Thread.Sleep(320); - } - } - } - - - - private int _retryCount; - void ErrorHandler_RetryAndEventuallySkip(object sender, ZipErrorEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Error_Saving: - _retryCount++; - if (_retryCount < 29) - e.CurrentEntry.ZipErrorAction = ZipErrorAction.Retry; - else - e.CurrentEntry.ZipErrorAction = ZipErrorAction.Skip; - break; - } - } - - void ErrorHandler_RetryAndEventuallyThrow(object sender, ZipErrorEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Error_Saving: - _retryCount++; - if (_retryCount < 29) - e.CurrentEntry.ZipErrorAction = ZipErrorAction.Retry; - else - e.CurrentEntry.ZipErrorAction = ZipErrorAction.Throw; - break; - } - } - - - - [TestMethod] - public void Create_ZipErrorAction_RetryAndEventuallySkip() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "Create_ZipErrorAction_RetryAndEventuallySkip.zip"); - Directory.SetCurrentDirectory(TopLevelDir); - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - int n = _rnd.Next(files.Length); - - TestContext.WriteLine("Locking file {0}...", files[n]); - using (Stream lockStream = new FileStream(files[n], FileMode.Open, FileAccess.Read, FileShare.None)) - { - _retryCount = 0; - using (var zip = new ZipFile()) - { - zip.ZipErrorAction = ZipErrorAction.InvokeErrorEvent; - zip.ZipError += ErrorHandler_RetryAndEventuallySkip; - zip.AddFiles(files, "fodder"); - zip.Save(zipFileToCreate); - } - } - - BasicVerifyZip(zipFileToCreate); - - Assert.AreEqual(files.Length - 1, TestUtilities.CountEntries(zipFileToCreate), - "The zip file created has the wrong number of entries."); - } - - - - [TestMethod] - [ExpectedException(typeof(System.IO.IOException))] - public void Create_ZipErrorAction_RetryAndEventuallyThrow() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "Create_ZipErrorAction_RetryAndEventuallyThrow.zip"); - Directory.SetCurrentDirectory(TopLevelDir); - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - int n = _rnd.Next(files.Length); - - TestContext.WriteLine("Locking file {0}...", files[n]); - using (Stream lockStream = new FileStream(files[n], FileMode.Open, FileAccess.Read, FileShare.None)) - { - _retryCount = 0; - using (var zip = new ZipFile()) - { - zip.ZipErrorAction = ZipErrorAction.InvokeErrorEvent; - zip.ZipError += ErrorHandler_RetryAndEventuallyThrow; - zip.AddFiles(files, "fodder"); - zip.Save(zipFileToCreate); - } - } - } - - - private void lockFile(object state) - { - Object[] a = (Object[])state; - string filename = (string)a[0]; - int duration = (int)a[1]; - - using (Stream lockStream = new FileStream(filename, FileMode.Open, FileAccess.Read, FileShare.None)) - { - // hold the lock for a specified period of time - System.Threading.Thread.Sleep(duration); - } - } - - - - [TestMethod] - public void Create_ZipErrorAction_RetryAndEventuallySucceed() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "Create_ZipErrorAction_RetryAndEventuallySucceed.zip"); - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - int n = _rnd.Next(files.Length); - - TestContext.WriteLine("Locking file {0}...", files[n]); - - // This will lock the file for 3 seconds, then release it. - // The goal is to test whether the retry actually succeeds. - System.Threading.ThreadPool.QueueUserWorkItem(lockFile, new Object[] { files[n], 3000 }); - System.Threading.Thread.Sleep(200); - - _retryCount = 0; - using (var zip = new ZipFile()) - { - zip.ZipErrorAction = ZipErrorAction.Retry; - zip.AddFiles(files, "fodder"); - zip.Save(zipFileToCreate); - } - - BasicVerifyZip(zipFileToCreate); - - Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate), - "The zip file created has the wrong number of entries."); - } - - - - - - [TestMethod] - public void ParallelDeflateStream_Create() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "ParallelDeflateStream_Create.zip"); - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip, _rnd.Next(5) + 5, 128 * 1024 + _rnd.Next(20000)); - - using (var zip = new ZipFile()) - { - zip.ParallelDeflateThreshold = 65536; - zip.AddFiles(files, "fodder"); - zip.Save(zipFileToCreate); - } - - BasicVerifyZip(zipFileToCreate); - - Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate), - "The zip file created has the wrong number of entries."); - } - - - - [TestMethod] - public void ParallelDeflateStream_Create_CompareSpeeds() - { - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip, _rnd.Next(5) + 5, 2048 * 1024 + _rnd.Next(200000)); - - var ts = new TimeSpan[2]; - - // 2 sets of 2 cycles: first set is warmup, 2nd is timed. - // Actually they're both timed but times for the 2nd set - // overwrite the times for the 1st set. - // Within a set, the first run is non-parallel, 2nd is timed parallel. - for (int i = 0; i < 2; i++) - { - for (int j = 0; j < 2; j++) - { - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("ParallelDeflateStream_Create.{0}.{1}.zip", i, j)); - - var sw = new System.Diagnostics.Stopwatch(); - sw.Start(); - using (var zip = new ZipFile()) - { - if (j == 0) - zip.ParallelDeflateThreshold = -1L; // disable parallel deflate - else - zip.ParallelDeflateThreshold = 128 * 1024; // threshold for parallel deflating - - zip.AddFiles(files, "fodder"); - - zip.Save(zipFileToCreate); - } - sw.Stop(); - - BasicVerifyZip(zipFileToCreate); - - Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate), - "The zip file created has the wrong number of entries."); - ts[j] = sw.Elapsed; - TestContext.WriteLine("Cycle {0},{1}, Timespan: {2}", i, j, ts[j]); - } - } - Assert.IsTrue(ts[1] < ts[0], "Parallel deflating is NOT faster than single-threaded, for large files."); - } - - - - [TestMethod] - [ExpectedException(typeof(System.ArgumentOutOfRangeException))] - public void ParallelDeflateStream_Create_InvalidThreshold() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "ParallelDeflateStream_Create_InvalidThreshold.zip"); - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip, _rnd.Next(5) + 5, 128 * 1024 + _rnd.Next(20000)); - - using (var zip = new ZipFile()) - { - zip.ParallelDeflateThreshold = 17129; - zip.AddFiles(files, "fodder"); - zip.Save(zipFileToCreate); - } - - // not reached - } - - - - - - [TestMethod] - public void CompressTiff_Level9_wi8647() - { - string testBin = TestUtilities.GetTestBinDir(CurrentDir); - - string tifFile = Path.Combine(testBin, "Resources\\wi8647.tif"); - Assert.IsTrue(File.Exists(tifFile), "tif file does not exist ({0})", tifFile); - - byte[] chk1 = TestUtilities.ComputeChecksum(tifFile); - string chk1String = TestUtilities.CheckSumToString(chk1); - - for (int x = 0; x < (int)(Ionic.Zlib.CompressionLevel.BestCompression); x++) - { - string zipFileToCreate = Path.Combine(TopLevelDir, - String.Format("CompressTiff_Level9-{0}.zip", x)); - byte[] chk2 = null; - - using (var zip = new ZipFile()) - { - zip.CompressionLevel = (Ionic.Zlib.CompressionLevel)x; - zip.AddFile(tifFile, "fodder"); - zip.Save(zipFileToCreate); - } - - BasicVerifyZip(zipFileToCreate); - - Assert.AreEqual(1, TestUtilities.CountEntries(zipFileToCreate), - "The zip file created has the wrong number of entries."); - - TestContext.WriteLine("---------------Reading {0}...", zipFileToCreate); - string extractDir = String.Format("extract{0}", x); - using (ZipFile zip = ZipFile.Read(zipFileToCreate)) - { - var e = zip[0]; - - TestContext.WriteLine(" Entry: {0} c({1}) u({2})", - e.FileName, - e.CompressedSize, - e.UncompressedSize); - e.Extract(extractDir); - string filename = Path.Combine(extractDir, e.FileName); - chk2 = TestUtilities.ComputeChecksum(filename); - } - - string chk2String = TestUtilities.CheckSumToString(chk2); - - Assert.AreEqual(chk1String, chk2String, "Cycle {0}, Checksums for ({1}) do not match.", x, tifFile); - TestContext.WriteLine(" Cycle {0}: Checksums match ({1}).\n", x, chk1String); - } - } - - - - - [TestMethod] - [Timeout(30000)] // timeout in ms. 30000 = 30s - public void AddDirectory_ReparsePoint_wi8617() - { - _Internal_AddDirectory_ReparsePoint_wi8617(1); - } - - - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void AddDirectory_ReparsePoint_wi8617_Error1() - { - _Internal_AddDirectory_ReparsePoint_wi8617(2); - } - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void AddDirectory_ReparsePoint_wi8617_Error2() - { - _Internal_AddDirectory_ReparsePoint_wi8617(0); - } - - - private void _Internal_AddDirectory_ReparsePoint_wi8617(int flavor) - { - string zipFileToCreate = Path.Combine(TopLevelDir, - String.Format("AddDirectory_ReparsePoint-{0}.zip", - flavor)); - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - - string junction = Path.Combine(dirToZip, "cycle"); - Ionic.IO.JunctionPoint.Create(junction, dirToZip); - - using (var zip = new ZipFile()) - { - if (flavor == 1) - zip.AddDirectoryWillTraverseReparsePoints = false; - else if (flavor == 2) - zip.AddDirectoryWillTraverseReparsePoints = true; - // else nothing - zip.AddDirectory(dirToZip, "fodder"); - zip.Save(zipFileToCreate); - } - - BasicVerifyZip(zipFileToCreate); - - Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate), - "The zip file created has the wrong number of entries."); - } - - [TestMethod] - public void ContainsEntryTest() - { - string zipFileToCreate = "ContainsEntry.zip"; - string dirToZip = "dirToZip"; - var files = TestUtilities.GenerateFilesFlat(dirToZip); - - using (var zip = new ZipFile()) - { - zip.AddFiles(files); - zip.Save(zipFileToCreate); - } - - Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate)); - using (var zip2 = ZipFile.Read(zipFileToCreate)) - { - for (int i=0; i < 28; i++) - { - int n = _rnd.Next(files.Length); - TestContext.WriteLine("Checking {0}", files[n]); - Assert.IsTrue(zip2.ContainsEntry(files[n]), "missing entry"); - } - } - } - - - [TestMethod] - public void SortedSave() - { - var rtg = new RandomTextGenerator(); - - WriteDelegate writer = (name, stream) => - { - byte[] buffer = System.Text.Encoding.ASCII.GetBytes(rtg.Generate(_rnd.Next(2000) + 200)); - stream.Write(buffer, 0, buffer.Length); - }; - - int numEntries = _rnd.Next(256) + 48; - - // Two trials, one with sorted output, and the other with non-sorted output. - for (int m = 0; m < 2; m++) - { - string zipFileToCreate = Path.Combine(TopLevelDir, - String.Format("SortedSave-{0}.zip", m)); - using (var zip = new ZipFile()) - { - for (int i = 0; i < numEntries; i++) - { - // I need the randomness in the first part, to force the sort. - string filename = String.Format("{0}-{1:000}.txt", - TestUtilities.GenerateRandomAsciiString(6), i); - zip.AddEntry(filename, writer); - } - - zip.SortEntriesBeforeSaving = (m == 1); - zip.Save(zipFileToCreate); - } - - using (var zip = ZipFile.Read(zipFileToCreate)) - { - bool sorted = true; - for (int i = 0; i < zip.Entries.Count - 1 && sorted; i++) - { - for (int j = i; j < zip.Entries.Count && sorted; j++) - { - if (String.Compare(zip[i].FileName, zip[j].FileName, StringComparison.OrdinalIgnoreCase) > 0) - { - sorted = false; - } - } - } - - Assert.IsTrue((((m == 1) && sorted) || ((m == 0) && !sorted)), - "Unexpected sort results"); - } - } - } - - [TestMethod] - public void DoubleSave_wi10735() - { - string zipFileToCreate1 = "DoubleSave.1.zip"; - string zipFileToCreate2 = "DoubleSave.2.zip"; - string dirToZip = "dirToZip"; - var files = TestUtilities.GenerateFilesFlat(dirToZip); - - using (var zip = new ZipFile()) - { - zip.AddFiles(files); - zip.Save(zipFileToCreate1); - zip.Save(zipFileToCreate2); - } - } - - } - -} +// ExtendedTests.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2008-2011 Dino Chiesa. +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-August-06 17:04:31> +// +// ------------------------------------------------------------------ +// +// This module defines some extended tests for DotNetZip. It gets into +// advanced features - file selection, encryption, and more. +// +// ------------------------------------------------------------------ + +using System; +using System.IO; +using System.Text; +using System.Collections.Generic; +using Microsoft.VisualStudio.TestTools.UnitTesting; + +using Ionic.Zip; +using Ionic.Zip.Tests.Utilities; + + +namespace Ionic.Zip.Tests.Extended +{ + + public class XTWFND : System.Xml.XmlTextWriter + { + public XTWFND(TextWriter w) : base(w) { Formatting = System.Xml.Formatting.Indented; } + public override void WriteStartDocument() { } + } + + /// + /// Summary description for ExtendedTests + /// + [TestClass] + public class ExtendedTests : IonicTestClass + { + public ExtendedTests() : base() { } + + + static String StreamToStringUTF8(Stream s) + { + string result = null; + // UTF-8 is the default, but I want to be explicit here. + using (var f = new StreamReader(s, System.Text.Encoding.UTF8)) + { + result = f.ReadToEnd(); + } + return result; + } + + + static bool IsEncodable(String s, Encoding e) + { + bool result = false; + try + { + byte[] b = e.GetBytes(s); + var s2 = e.GetString(b); + result = (s == s2); + } + catch + { + result = false; + } + return result; + } + + + + EncryptionAlgorithm[] crypto = + { + EncryptionAlgorithm.None, + EncryptionAlgorithm.PkzipWeak, + EncryptionAlgorithm.WinZipAes128, + EncryptionAlgorithm.WinZipAes256, + }; + + EncryptionAlgorithm[] cryptoNoPkzip = + { + EncryptionAlgorithm.None, + EncryptionAlgorithm.WinZipAes128, + EncryptionAlgorithm.WinZipAes256, + }; + + Ionic.Zlib.CompressionLevel[] compLevels = + { + Ionic.Zlib.CompressionLevel.None, + Ionic.Zlib.CompressionLevel.BestSpeed, + Ionic.Zlib.CompressionLevel.Default, + Ionic.Zlib.CompressionLevel.BestCompression, + }; + + Zip64Option[] z64 = + { + Zip64Option.Never, + Zip64Option.AsNecessary, + Zip64Option.Always, + }; + + + + + [TestMethod] + [Timeout(22 * 60*1000)] + public void Bzip2_Perf() + { + // Verify that the parallel compress option works properly + // with BZip2. + TestContext.WriteLine("Creating the fodder files..."); + + _txrx = TestUtilities.StartProgressMonitor("BZip2PerfTest", + "BZip2 Performance Test", + "Creating files"); + var update = new Action((op,ix,sz) => { + switch(op) + { + case 0: + _txrx.Send("pb 1 max " + sz); + _txrx.Send("status Creating file " + ix); + break; + case 1: + _txrx.Send("pb 1 value " + sz); + break; + case 2: + _txrx.Send("pb 0 step"); + _txrx.Send("pb 1 value 0"); + break; + } + }); + _txrx.Send("bars 2"); + int threshold = 1024 * 1024; + int n = _rnd.Next(3) + 3; + int minSize = 0x2000000 + this._rnd.Next(0x4000000); + int maxSize = 0x2000000 + minSize + this._rnd.Next(0x80000); + string dirInZip = "files"; + string extractDir = "extract"; + string subdir = dirInZip; + _txrx.Send("pb 0 max " + n); + + var filesToZip = TestUtilities.GenerateFilesFlat(subdir, n, + minSize, maxSize, update); + var fi = new FileInfo(filesToZip[_rnd.Next(filesToZip.Length)]); + Assert.IsTrue(fi.Length > threshold, + "For file {1}, length ({0}) does not meet threshold", + fi.Name, fi.Length); + + // Get the unzip.exe tool: + string dnzDir = CurrentDir; + for (int i = 0; i < 3; i++) + dnzDir = Path.GetDirectoryName(dnzDir); + string unzip = Path.Combine(dnzDir, "Tools\\Unzip\\bin\\debug\\Unzip.exe"); + Assert.IsTrue(File.Exists(unzip), + "The unzip.exe tool is not available."); + + _txrx.Send("pb 0 max " + (4*2)); + _txrx.Send("status done creating files..."); + // two passes: once for regular, once for parallel compress + var ts = new TimeSpan[2]; + var fileSize = new Int64[2]; + for (int k=0; k < 2; k++) + { + System.Threading.Thread.Sleep(1200); + var msg = string.Format("test BZip2 perf check, cycle {0}/2 (est. time: 22 mins)",k+1); + _txrx.Send(msg); + string zipFileToCreate = "BZip2_Perf."+k+".zip"; + TestContext.WriteLine("pass {0}, Creating the zip...", k); + var stopwatch = new System.Diagnostics.Stopwatch(); + stopwatch.Start(); + + // Now, Create the zip archive with DotNetZip + _cancelIndex = -1; + using (ZipFile zip1 = new ZipFile()) + { + zip1.ParallelDeflateThreshold = (k==0) + ? -1 : threshold; + zip1.CompressionMethod = CompressionMethod.BZip2; + zip1.AddFiles(filesToZip, dirInZip); + zip1.SaveProgress += SaveProgress; + zip1.Save(zipFileToCreate); + } + stopwatch.Stop(); + ts[k] = stopwatch.Elapsed; + fi = new FileInfo(zipFileToCreate); + fileSize[k] = fi.Length; + TestContext.WriteLine("size of resulting zip: {0}k", + fileSize[k] / 1024); + + _txrx.Send("pb 0 step"); + + _txrx.Send("status verifying the number of files"); + // Verify the number of files in the zip + TestContext.WriteLine("Verifying the number of files in the zip..."); + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length, + "Incorrect number of entries in the zip file."); + + _txrx.Send("pb 0 step"); + // examine and unpack the zip archive via DNZ tools. + // Get info on the zip file: + string unzipOut = this.Exec(unzip, "-i " + zipFileToCreate); + + // Verify that the output states that the compression method + // used for each entry was BZIP2... + _txrx.Send("status checking for BZIP compression..."); + TestContext.WriteLine("Verifying that BZIP2 was used..."); + Assert.AreEqual + (TestUtilities.CountOccurrences(unzipOut, "Compression: BZip2"), n); + + _txrx.Send("pb 0 step"); + + _txrx.Send("status Extracting via infozip unzip.exe..."); + // Extract the zip. eg, unzip.exe test.zip -d + TestContext.WriteLine("Extracting via unzip.exe..."); + this.Exec(unzip, zipFileToCreate + " -d " + extractDir); + + // Verify the count of extracted files + int fileCount = Directory.GetFiles(Path.Combine(extractDir,dirInZip)).Length; + Assert.IsTrue(fileCount == n, + "Not all files were extracted? (found {0}, expected {1})", + fileCount, n); + Directory.Delete(extractDir, true); + + _txrx.Send("pb 0 step"); + } + + var delta = (ts[0].TotalSeconds - ts[1].TotalSeconds) / + (0.01 * ts[0].TotalSeconds); + TestContext.WriteLine("Parallel compression reduced compression time by {0:N1}%", + delta); + + // verify the time required for parallel compression is lower. + Assert.IsTrue(ts[1] < ts[0], + "Parallel compression took MORE time."); + + delta = Math.Abs((int)(fileSize[1]-fileSize[0])) / + (0.01 * fileSize[0]); + + Assert.IsTrue(delta < 5.0, + "Parallel compression is not within 5% of normal filesize."); + TestContext.WriteLine("A-ok"); + } + + + + + [TestMethod] + public void TestZip_IsZipFile() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "TestZip_IsZipFile.zip"); + int entriesAdded = 0; + String filename = null; + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + int fileCount = _rnd.Next(10) + 10; + for (int j = 0; j < fileCount; j++) + { + filename = Path.Combine(subdir, String.Format("FileToBeAdded-{0:D2}.txt", j)); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + entriesAdded++; + } + + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddDirectory(subdir, Path.GetFileName(subdir)); + zip1.Save(zipFileToCreate); + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, + "The Zip file has the wrong number of entries."); + + Assert.IsTrue(ZipFile.IsZipFile(zipFileToCreate), + "The IsZipFile() method returned an unexpected result for an existing zip file."); + + Assert.IsTrue(ZipFile.IsZipFile(zipFileToCreate, true), + "The IsZipFile() method returned an unexpected result for an existing zip file."); + + Assert.IsTrue(!ZipFile.IsZipFile(filename), + "The IsZipFile() method returned an unexpected result for a extant file that is not a zip."); + + filename = Path.Combine(subdir, String.Format("ThisFileDoesNotExist.{0:D2}.txt", _rnd.Next(2000))); + Assert.IsTrue(!ZipFile.IsZipFile(filename), + "The IsZipFile() method returned an unexpected result for a non-existent file."); + + } + + + [TestMethod] + public void TestZip_IsZipFile_Stream() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "TestZip_IsZipFile_Stream.zip"); + int entriesAdded = 0; + String filename = null; + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + int fileCount = _rnd.Next(10) + 10; + for (int j = 0; j < fileCount; j++) + { + filename = Path.Combine(subdir, String.Format("FileToBeAdded-{0:D2}.txt", j)); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + entriesAdded++; + } + + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddDirectory(subdir, Path.GetFileName(subdir)); + zip1.Save(zipFileToCreate); + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, + "The Zip file has the wrong number of entries."); + + using (FileStream input = File.OpenRead(zipFileToCreate)) + { + Assert.IsTrue(ZipFile.IsZipFile(input, false), + "The IsZipFile() method returned an unexpected result for an existing zip file."); + } + + using (FileStream input = File.OpenRead(zipFileToCreate)) + { + Assert.IsTrue(ZipFile.IsZipFile(input, true), + "The IsZipFile() method returned an unexpected result for an existing zip file."); + } + } + + + + + + + [TestMethod] + public void ReadZip_DirectoryBitSetForEmptyDirectories() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "ReadZip_DirectoryBitSetForEmptyDirectories.zip"); + + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddDirectoryByName("Directory1"); + // must retrieve with a trailing slash. + ZipEntry e1 = zip1["Directory1/"]; + Assert.AreNotEqual(null, e1); + Assert.IsTrue(e1.IsDirectory, + "The IsDirectory property was not set as expected."); + zip1.AddDirectoryByName("Directory2"); + zip1.AddEntry(Path.Combine("Directory2", "Readme.txt"), "This is the content"); + Assert.IsTrue(zip1["Directory2/"].IsDirectory, + "The IsDirectory property was not set as expected."); + zip1.Save(zipFileToCreate); + Assert.IsTrue(zip1["Directory1/"].IsDirectory, + "The IsDirectory property was not set as expected."); + } + + // read the zip and retrieve the dir entries again + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + Assert.IsTrue(zip2["Directory1/"].IsDirectory, + "The IsDirectory property was not set as expected."); + + Assert.IsTrue(zip2["Directory2/"].IsDirectory, + "The IsDirectory property was not set as expected."); + } + + // now specify dir names with backslash + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + Assert.IsTrue(zip3["Directory1\\"].IsDirectory, + "The IsDirectory property was not set as expected."); + + Assert.IsTrue(zip3["Directory2\\"].IsDirectory, + "The IsDirectory property was not set as expected."); + + Assert.IsNull(zip3["Directory1"]); + Assert.IsNull(zip3["Directory2"]); + } + + } + + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Create_DuplicateEntries_wi8047() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "Create_DuplicateEntries_wi8047.zip"); + string filename = "file.test"; + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + + using (var zip = new ZipFile()) + { + int n = _rnd.Next(files.Length); + zip.UpdateFile(files[n]).FileName = filename; + int n2 = 0; + while ((n2 = _rnd.Next(files.Length)) == n) ; + zip.UpdateFile(files[n2]).FileName = filename; + zip.Save(zipFileToCreate); + } + } + + + [TestMethod] + public void Create_RenameRemoveAndRenameAgain_wi8047() + { + string filename = "file.test"; + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + + for (int m = 0; m < 2; m++) + { + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Create_RenameRemoveAndRenameAgain_wi8047-{0}.zip", m)); + + using (var zip = new ZipFile()) + { + // select a single file from the list + int n = _rnd.Next(files.Length); + + // insert the selected file into the zip, and also rename it + zip.UpdateFile(files[n]).FileName = filename; + + // conditionally save + if (m > 0) zip.Save(zipFileToCreate); + + // remove the original file + zip.RemoveEntry(zip[filename]); + + // select another file from the list, making sure it is not the same file + int n2 = 0; + while ((n2 = _rnd.Next(files.Length)) == n) ; + + // insert that other file and rename it + zip.UpdateFile(files[n2]).FileName = filename; + zip.Save(zipFileToCreate); + } + + Assert.AreEqual(1, TestUtilities.CountEntries(zipFileToCreate), "Trial {0}: The Zip file has the wrong number of entries.", m); + } + } + + + [TestMethod] + public void Create_EmitTimestampOptions() + { + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + + for (int j = 0; j < 3; j++) + { + for (int k = 0; k < 3; k++) + { + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Create_EmitTimestampOptions-{0}-{1}.zip", j, k)); + using (var zip = new ZipFile()) + { + if (j == 1) zip.EmitTimesInUnixFormatWhenSaving = false; + else if (j == 2) zip.EmitTimesInUnixFormatWhenSaving = true; + + if (k == 1) zip.EmitTimesInWindowsFormatWhenSaving = false; + else if (k == 2) zip.EmitTimesInWindowsFormatWhenSaving = true; + + zip.AddFiles(files, "files"); + zip.Save(zipFileToCreate); + } + + Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate), "The Zip file has the wrong number of entries."); + + using (var zip = ZipFile.Read(zipFileToCreate)) + { + for (int i = 0; i < zip.Entries.Count; i++) + { + if (j == 2) + Assert.AreEqual(ZipEntryTimestamp.Unix, zip[i].Timestamp & ZipEntryTimestamp.Unix, + "Missing Unix timestamp (cycle {0},{1}) (entry {2}).", j, k, i); + else + Assert.AreEqual(ZipEntryTimestamp.None, zip[i].Timestamp & ZipEntryTimestamp.Unix, + "Unix timestamp is present when none is expected (cycle {0},{1}) (entry {2}).", j, k, i); + + if (k == 1) + Assert.AreEqual(ZipEntryTimestamp.None, zip[i].Timestamp & ZipEntryTimestamp.Windows, + "Windows timestamp is present when none is expected (cycle {0},{1}) (entry {2}).", j, k, i); + else + Assert.AreEqual(ZipEntryTimestamp.Windows, zip[i].Timestamp & ZipEntryTimestamp.Windows, + "Missing Windows timestamp (cycle {0},{1}) (entry {2}).", j, k, i); + + Assert.AreEqual(ZipEntryTimestamp.DOS, zip[i].Timestamp & ZipEntryTimestamp.DOS, + "Missing DOS timestamp (entry (cycle {0},{1}) (entry {2}).", j, k, i); + } + } + } + } + } + + + + [TestMethod] + public void Extract_AfterSaveNoDispose() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "Extract_AfterSaveNoDispose.zip"); + string inputString = ""; + + using (ZipFile zip1 = new ZipFile()) + { + MemoryStream ms1 = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(inputString)); + zip1.AddEntry("woo\\Test.xml", ms1); + zip1.Save(zipFileToCreate); + + MemoryStream ms2 = new MemoryStream(); + zip1["Woo/Test.xml"].Extract(ms2); + ms2.Seek(0, SeekOrigin.Begin); + + var sw1 = new StringWriter(); + var w1 = new XTWFND(sw1); + + var d1 = new System.Xml.XmlDocument(); + d1.Load(ms2); + d1.Save(w1); + + var sw2 = new StringWriter(); + var w2 = new XTWFND(sw2); + var d2 = new System.Xml.XmlDocument(); + d2.Load(new MemoryStream(System.Text.Encoding.UTF8.GetBytes(inputString))); + d2.Save(w2); + + Assert.AreEqual(sw2.ToString(), sw1.ToString(), "Unexpected value on extract ({0}).", sw1.ToString()); + } + } + + + + [TestMethod] + public void Test_AddUpdateFileFromStream() + { + string[] passwords = { null, "Password", TestUtilities.GenerateRandomPassword(), "A" }; + for (int k = 0; k < passwords.Length; k++) + { + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Test_AddUpdateFileFromStream-{0}.zip", k)); + string[] inputStrings = new string[] + { + TestUtilities.LoremIpsum.Substring(_rnd.Next(5), 170 + _rnd.Next(25)), + TestUtilities.LoremIpsum.Substring(100 + _rnd.Next(40), 180+ _rnd.Next(30)) + }; + + // add entries to a zipfile. + // use a password.(possibly null) + using (ZipFile zip1 = new ZipFile()) + { + zip1.Password = passwords[k]; + for (int i = 0; i < inputStrings.Length; i++) + { + zip1.AddEntry(String.Format("Lorem{0}.txt", i + 1), inputStrings[i]); + } + zip1.Save(zipFileToCreate); + } + + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + zip2["Lorem2.txt"].Password = passwords[k]; + string output = StreamToStringUTF8(zip2["Lorem2.txt"].OpenReader()); + + Assert.AreEqual(output, inputStrings[1], "Trial {0}: Read entry 2 after create: Unexpected value on extract.", k); + + zip2["Lorem1.txt"].Password = passwords[k]; + Stream s = zip2["Lorem1.txt"].OpenReader(); + output = StreamToStringUTF8(s); + + Assert.AreEqual(output, inputStrings[0], "Trial {0}: Read entry 1 after create: Unexpected value on extract.", k); + } + + + // update an entry in the zipfile. For this pass, don't use a password. + string UpdateString = "This is the updated content. It will replace the original content, added from a string."; + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + var ms1 = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(UpdateString)); + zip3.UpdateEntry("Lorem1.txt", ms1); + zip3.Save(); + } + + using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) + { + string output = StreamToStringUTF8(zip4["Lorem1.txt"].OpenReader()); + Assert.AreEqual(output, UpdateString, "Trial {0}: Reading after update: Unexpected value on extract.", k); + } + } + } + + + + [TestMethod] + public void Test_AddEntry_String() + { + string[] passwords = { null, "Password", TestUtilities.GenerateRandomPassword(), "A" }; + + Encoding[] encodings = { Encoding.UTF8, + Encoding.Default, + Encoding.ASCII, + Encoding.GetEncoding("Big5"), + Encoding.GetEncoding("iso-8859-1"), + Encoding.GetEncoding("Windows-1252"), + }; + + string testBin = TestUtilities.GetTestBinDir(CurrentDir); + string testStringsFile = Path.Combine(testBin, "Resources\\TestStrings.txt"); + var contentStrings = File.ReadAllLines(testStringsFile); + + int[] successfulEncodings = new int[contentStrings.Length]; + + for (int a = 0; a < crypto.Length; a++) + { + for (int b = 0; b < passwords.Length; b++) + { + for (int c = 0; c < encodings.Length; c++) + { + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Test_AddEntry_String-{0}.{1}.{2}.zip", a, b, c)); + Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); + + + // add entries to a zipfile. + // use a password.(possibly null) + using (ZipFile zip1 = new ZipFile(zipFileToCreate)) + { + zip1.Comment = String.Format("Test zip file.\nEncryption({0}) Pw({1}) fileEncoding({2})", + crypto[a].ToString(), + passwords[b], + encodings[c].ToString()); + zip1.Encryption = crypto[a]; + zip1.Password = passwords[b]; + for (int d = 0; d < contentStrings.Length; d++) + { + string entryName = String.Format("File{0}.txt", d + 1); + // add each string using the given encoding + zip1.AddEntry(entryName, contentStrings[d], encodings[c]); + } + zip1.Save(); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), contentStrings.Length, + "Incorrect number of entries in the zip file."); + + + + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + zip2.Password = passwords[b]; + for (int d = 0; d < contentStrings.Length; d++) + { + try + { + string entryName = String.Format("File{0}.txt", d + 1); + //zip2[entryName].Password = Passwords[b]; // should not be necessary + using (Stream s = zip2[entryName].OpenReader()) + { + using (var sr = new StreamReader(s, encodings[c])) + { + try + { + Assert.AreNotEqual(null, sr); + string retrievedContent = sr.ReadLine(); + if (IsEncodable(contentStrings[d], encodings[c])) + { + Assert.AreEqual(contentStrings[d], retrievedContent, + "encryption({0}) pw({1}) encoding({2}), contentString({3}) file({4}): the content did not match.", + a, b, c, d, entryName); + successfulEncodings[d]++; + } + else + { + Assert.AreNotEqual(Encoding.UTF8, encodings[c]); + Assert.AreNotEqual(contentStrings[d], retrievedContent, + "encryption({0}) pw({1}) encoding({2}), contentString({3}) file({4}): the content should not match, but does.", + a, b, c, d, entryName); + } + } + catch (Exception exc1) + { + TestContext.WriteLine("Exception while reading: a({0}) b({1}) c({2}) d({3})", + a, b, c, d); + throw new Exception("broken", exc1); + } + } + } + + } + catch (Exception e1) + { + TestContext.WriteLine("Exception in OpenReader: Encryption({0}) pw({1}) c({2}) d({3})", + crypto[a].ToString(), + passwords[b], + encodings[c].ToString(), + d); + + throw new Exception("broken", e1); + } + } + } + } + } + } + + for (int d = 0; d < successfulEncodings.Length; d++) + Assert.AreNotEqual(0, successfulEncodings[d], "Content item #{0} ({1}) was never encoded successfully.", d, contentStrings[d]); + + } + + + + [TestMethod] + public void Test_AddDirectoryByName() + { + for (int n = 1; n <= 10; n++) + { + var dirsAdded = new System.Collections.Generic.List(); + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Test_AddDirectoryByName{0:N2}.zip", n)); + using (ZipFile zip1 = new ZipFile()) + { + for (int i = 0; i < n; i++) + { + // create an arbitrary directory name, add it to the zip archive + string dirName = TestUtilities.GenerateRandomName(24); + zip1.AddDirectoryByName(dirName); + dirsAdded.Add(dirName + "/"); + } + zip1.Save(zipFileToCreate); + } + + + int dirCount = 0; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (var e in zip2) + { + TestContext.WriteLine("dir: {0}", e.FileName); + Assert.IsTrue(dirsAdded.Contains(e.FileName), "Cannot find the expected entry"); + Assert.IsTrue(e.IsDirectory); + dirCount++; + } + } + Assert.AreEqual(n, dirCount); + } + } + + + + [TestMethod] + public void Test_AddDirectoryByName_Nested() + { + Directory.SetCurrentDirectory(TopLevelDir); + var dirsAdded = new System.Collections.Generic.List(); + string zipFileToCreate = Path.Combine(TopLevelDir, "Test_AddDirectoryByName_Nested.zip"); + using (ZipFile zip1 = new ZipFile(zipFileToCreate)) + { + for (int n = 1; n <= 14; n++) + { + string DirName = n.ToString(); + for (int i = 0; i < n; i++) + { + // create an arbitrary directory name, add it to the zip archive + DirName = Path.Combine(DirName, TestUtilities.GenerateRandomAsciiString(11)); + } + zip1.AddDirectoryByName(DirName); + dirsAdded.Add(DirName.Replace("\\", "/") + "/"); + } + zip1.Save(); + } + + int dirCount = 0; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (var e in zip2) + { + TestContext.WriteLine("dir: {0}", e.FileName); + Assert.IsTrue(dirsAdded.Contains(e.FileName), "Cannot find the expected directory."); + Assert.IsTrue(e.IsDirectory); + dirCount++; + } + } + Assert.AreEqual(dirsAdded.Count, dirCount); + } + + + [TestMethod] + public void Test_AddDirectoryByName_WithFiles() + { + Directory.SetCurrentDirectory(TopLevelDir); + + var dirsAdded = new System.Collections.Generic.List(); + string password = TestUtilities.GenerateRandomPassword(); + string zipFileToCreate = Path.Combine(TopLevelDir, "Test_AddDirectoryByName_WithFiles.zip"); + using (ZipFile zip1 = new ZipFile(zipFileToCreate)) + { + string dirName = null; + int T = 3 + _rnd.Next(4); + for (int n = 0; n < T; n++) + { + // nested directories + dirName = (n == 0) ? "root" : + Path.Combine(dirName, TestUtilities.GenerateRandomAsciiString(8)); + + zip1.AddDirectoryByName(dirName); + dirsAdded.Add(dirName.Replace("\\", "/") + "/"); + if (n % 2 == 0) zip1.Password = password; + zip1.AddEntry(Path.Combine(dirName, new System.String((char)(n + 48), 3) + ".txt"), "Hello, Dolly!"); + if (n % 2 == 0) zip1.Password = null; + } + zip1.Save(); + } + + int entryCount = 0; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (var e in zip2) + { + TestContext.WriteLine("e: {0}", e.FileName); + if (e.IsDirectory) + Assert.IsTrue(dirsAdded.Contains(e.FileName), "Cannot find the expected directory."); + else + { + if ((entryCount - 1) % 4 == 0) e.Password = password; + string output = StreamToStringUTF8(e.OpenReader()); + Assert.AreEqual("Hello, Dolly!", output); + } + entryCount++; + } + } + Assert.AreEqual(dirsAdded.Count * 2, entryCount); + } + + + + + int _progressEventCalls, _numSaving, _totalToSave, _cancelIndex, spCycles; + bool _pb2Set, _pb1Set; + + Int64 maxBytesXferred = 0; + void SaveProgress(object sender, SaveProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Saving_Started: + if (_txrx != null) + { + _txrx.Send("status saving started..."); + _pb1Set = false; + _numSaving= 1; + } + break; + case ZipProgressEventType.Saving_BeforeWriteEntry: + if (_txrx != null) + { + _txrx.Send("status Compressing " + e.CurrentEntry.FileName); + spCycles = 0; + if (!_pb1Set) + { + _txrx.Send("pb 1 max " + e.EntriesTotal); + _pb1Set = true; + } + _totalToSave = e.EntriesTotal; + _pb2Set = false; + } + break; + case ZipProgressEventType.Saving_AfterWriteEntry: + _progressEventCalls++; + TestContext.WriteLine("{0}: {1} ({2}/{3})", e.EventType.ToString(), e.CurrentEntry.FileName, e.EntriesSaved, e.EntriesTotal); + if (_cancelIndex == _progressEventCalls) + { + e.Cancel = true; + TestContext.WriteLine("Cancelling..."); + } + if (_txrx != null) + { + _txrx.Send("pb 1 step"); + _numSaving++; + } + break; + + case ZipProgressEventType.Saving_EntryBytesRead: + Assert.IsTrue(e.BytesTransferred <= e.TotalBytesToTransfer, + "For entry {0}, BytesTransferred is greater than TotalBytesToTransfer: ({1} > {2})", + e.CurrentEntry.FileName, e.BytesTransferred, e.TotalBytesToTransfer); + maxBytesXferred = e.BytesTransferred; + if (_txrx!=null) + { + spCycles++; + if ((spCycles % 128) == 0) + { + if (!_pb2Set) + { + _txrx.Send("pb 2 max " + e.TotalBytesToTransfer); + _pb2Set = true; + } + _txrx.Send(String.Format("status Saving entry {0}/{1} :: {2} :: {3}/{4}mb {5:N0}%", + _numSaving, _totalToSave, + e.CurrentEntry.FileName, + e.BytesTransferred/(1024*1024), e.TotalBytesToTransfer/(1024*1024), + ((double)e.BytesTransferred) / (0.01 * e.TotalBytesToTransfer))); + _txrx.Send("pb 2 value " + e.BytesTransferred); + } + } + break; + + case ZipProgressEventType.Saving_Completed: + if (_txrx != null) + { + _txrx.Send("status Save completed"); + _pb2Set = false; + _txrx.Send("pb 1 max 1"); + _txrx.Send("pb 1 value 1"); + } + break; + + default: + break; + } + } + + bool _wasCanceled = false; + void AddProgress(object sender, AddProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Adding_AfterAddEntry: + _progressEventCalls++; + TestContext.WriteLine("{0}: {1}", e.EventType.ToString(), e.CurrentEntry.FileName); + if (_cancelIndex == _progressEventCalls) + { + e.Cancel = true; + TestContext.WriteLine("Cancelling..."); + _wasCanceled = true; + } + break; + } + } + + + void ExtractProgress(object sender, ExtractProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Extracting_AfterExtractEntry: + _progressEventCalls++; + TestContext.WriteLine("Extracted: {0} ({1}/{2})", e.CurrentEntry.FileName, e.EntriesExtracted, e.EntriesTotal); + // synthetic cancellation + if (_cancelIndex == _progressEventCalls) + { + e.Cancel = true; + TestContext.WriteLine("Cancelling..."); + } + break; + + case ZipProgressEventType.Extracting_EntryBytesWritten: + maxBytesXferred = e.BytesTransferred; + break; + + default: + break; + } + } + + + [TestMethod] + public void Create_WithEvents() + { + string dirToZip = Path.Combine(TopLevelDir, "EventTest"); + Directory.CreateDirectory(dirToZip); + + var randomizerSettings = new int[] + { + 6, 4, // dircount + 7, 8, // filecount + 10000, 15000 // filesize + }; + int subdirCount = 0; + int entriesAdded = TestUtilities.GenerateFilesOneLevelDeep(TestContext, "Create_WithEvents", dirToZip, randomizerSettings, null, out subdirCount); + + for (int m = 0; m < 2; m++) + { + TestContext.WriteLine("======================================================="); + TestContext.WriteLine("Trial {0}", m); + + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Create_WithEvents-{0}.zip", m)); + string targetDirectory = Path.Combine(TopLevelDir, "unpack" + m.ToString()); + + _progressEventCalls = 0; + _cancelIndex = -1; // don't cancel this Save + + // create a zip file + using (ZipFile zip1 = new ZipFile()) + { + zip1.SaveProgress += SaveProgress; + zip1.Comment = "This is the comment on the zip archive."; + zip1.AddDirectory(dirToZip, Path.GetFileName(dirToZip)); + zip1.Save(zipFileToCreate); + } + + if (m > 0) + { + // update the zip file + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + zip1.SaveProgress += SaveProgress; + zip1.Comment = "This is the comment on the zip archive."; + zip1.AddEntry("ReadThis.txt", "This is the content for the readme file in the archive."); + zip1.Save(); + } + entriesAdded++; + } + + int expectedNumberOfProgressCalls = (entriesAdded + subdirCount) * (m + 1) + 1; + Assert.AreEqual(expectedNumberOfProgressCalls, _progressEventCalls, + "The number of progress events was unexpected ({0}!={1}).", expectedNumberOfProgressCalls, _progressEventCalls); + + _progressEventCalls = 0; + _cancelIndex = -1; // don't cancel this Extract + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + zip2.ExtractProgress += ExtractProgress; + zip2.ExtractAll(targetDirectory); + } + + Assert.AreEqual(_progressEventCalls, entriesAdded + subdirCount + 1, + "The number of Entries added is not equal to the number of entries extracted."); + + } + + } + + + + + [TestMethod] + public void CreateZip_AddDirectory_NoFilesInRoot_WI5893() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "CreateZip_AddDirectory_NoFilesInRoot_WI5893.zip"); + int i, j; + int entries = 0; + int subdirCount = _rnd.Next(5) + 5; + for (i = 0; i < subdirCount; i++) + { + string subdir = Path.Combine(TopLevelDir, "DirectoryToZip.test." + i); + Directory.CreateDirectory(subdir); + + int fileCount = _rnd.Next(13) + 7; + for (j = 0; j < fileCount; j++) + { + String file = Path.Combine(subdir, String.Format("file{0:D3}.a", j)); + TestUtilities.CreateAndFillFile(file, _rnd.Next(100) + 500); + entries++; + } + } + + using (ZipFile zip = new ZipFile()) + { + zip.AddDirectory(TopLevelDir, string.Empty); + zip.Save(zipFileToCreate); + } + + BasicVerifyZip(zipFileToCreate); + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries, "The Zip file has the wrong number of entries."); + } + + + [TestMethod] + public void Create_AddDirectory_NoFilesInRoot_WI5893a() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "Create_AddDirectory_NoFilesInRoot_WI5893a.zip"); + + int i, j; + int entries = 0; + int subdirCount = _rnd.Next(4) + 4; + for (i = 0; i < subdirCount; i++) + { + string subdir = Path.Combine(TopLevelDir, "DirectoryToZip.test." + i); + Directory.CreateDirectory(subdir); + + int fileCount = _rnd.Next(16) + 8; + for (j = 0; j < fileCount; j++) + { + String file = Path.Combine(subdir, String.Format("testfile{0:D3}.a", j)); + TestUtilities.CreateAndFillFile(file, _rnd.Next(100) + 500); + entries++; + } + } + + using (ZipFile zip = new ZipFile()) + { + zip.AddDirectory(TopLevelDir, string.Empty); + zip.Save(zipFileToCreate); + } + + BasicVerifyZip(zipFileToCreate); + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries, "The Zip file has the wrong number of entries."); + } + + + + + [TestMethod] + public void Create_SaveCancellation() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "Create_SaveCancellation.zip"); + + string dirToZip = Path.Combine(TopLevelDir, "EventTest"); + Directory.CreateDirectory(dirToZip); + int subdirCount = 0; + int entriesAdded = TestUtilities.GenerateFilesOneLevelDeep(TestContext, "Create_SaveCancellation", dirToZip, null, out subdirCount); + + _cancelIndex = entriesAdded - _rnd.Next(entriesAdded / 2); + _progressEventCalls = 0; + using (ZipFile zip1 = new ZipFile()) + { + zip1.SaveProgress += SaveProgress; + zip1.Comment = "The save on this zip archive will be canceled."; + zip1.AddDirectory(dirToZip, Path.GetFileName(dirToZip)); + zip1.Save(zipFileToCreate); + } + + Assert.AreEqual(_progressEventCalls, _cancelIndex); + + Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file save should have been canceled."); + } + + + [TestMethod] + public void Create_AddCancellation_wi13371() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "Create_AddCancellation.zip"); + + string dirToZip = Path.Combine(TopLevelDir, "EventTest"); + Directory.CreateDirectory(dirToZip); + int subdirCount = 0; + int entriesAdded = TestUtilities.GenerateFilesOneLevelDeep(TestContext, "Create_AddCancellation", dirToZip, null, out subdirCount); + + _cancelIndex = entriesAdded - _rnd.Next(entriesAdded / 2); + _progressEventCalls = 0; + _wasCanceled = false; + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddProgress += AddProgress; + zip1.Comment = "The add of files into this zip archive will be canceled."; + zip1.AddDirectory(dirToZip, Path.GetFileName(dirToZip)); + if (!_wasCanceled) + zip1.Save(zipFileToCreate); + } + + Assert.AreEqual(_progressEventCalls, _cancelIndex); + + Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file should not exist."); + } + + + + [TestMethod] + public void ExtractAll_Cancellation() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "ExtractAll_Cancellation.zip"); + string targetDirectory = Path.Combine(TopLevelDir, "unpack"); + string dirToZip = Path.Combine(TopLevelDir, "EventTest"); + Directory.CreateDirectory(dirToZip); + int subdirCount = 0; + int entriesAdded = TestUtilities.GenerateFilesOneLevelDeep(TestContext, "ExtractAll_Cancellation", dirToZip, null, out subdirCount); + + using (ZipFile zip1 = new ZipFile()) + { + zip1.Comment = "The extract on this zip archive will be canceled."; + zip1.AddDirectory(dirToZip, Path.GetFileName(dirToZip)); + zip1.Save(zipFileToCreate); + } + + BasicVerifyZip(zipFileToCreate); + + _cancelIndex = entriesAdded - _rnd.Next(entriesAdded / 2); + _progressEventCalls = 0; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + zip2.ExtractProgress += ExtractProgress; + zip2.ExtractAll(targetDirectory); + } + + Assert.AreEqual(_progressEventCalls, _cancelIndex); + } + + + + [TestMethod] + public void ExtractAll_WithPassword() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "ExtractAll_WithPassword.zip"); + string targetDirectory = Path.Combine(TopLevelDir, "unpack"); + string dirToZip = Path.Combine(TopLevelDir, "dirToZip"); + Directory.CreateDirectory(dirToZip); + int subdirCount = 0; + + int entriesAdded = TestUtilities.GenerateFilesOneLevelDeep(TestContext, "ExtractAll_WithPassword", dirToZip, null, out subdirCount); + string password = TestUtilities.GenerateRandomPassword(); + using (ZipFile zip1 = new ZipFile()) + { + zip1.Password = password; + zip1.Comment = "Brick walls are there for a reason: to let you show how badly you want your goal."; + zip1.AddDirectory(dirToZip, Path.GetFileName(dirToZip)); + zip1.Save(zipFileToCreate); + } + + BasicVerifyZip(zipFileToCreate, password); + + _cancelIndex = -1; // don't cancel this Extract + _progressEventCalls = 0; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + zip2.Password = password; + zip2.ExtractProgress += ExtractProgress; + zip2.ExtractAll(targetDirectory); + } + + Assert.AreEqual(_progressEventCalls, entriesAdded + subdirCount + 1); + } + + + + + + [TestMethod] + public void Extract_ImplicitPassword() + { + for (int k = 0; k < compLevels.Length; k++) + { + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Extract_ImplicitPassword-{0}.zip", k)); + Directory.SetCurrentDirectory(TopLevelDir); + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + string[] passwords = new string[files.Length]; + + using (ZipFile zip1 = new ZipFile()) + { + zip1.Comment = "Brick walls are there for a reason: to let you show how badly you want your goal."; + zip1.CompressionLevel = compLevels[k]; + for (int i = 0; i < files.Length; i++) + { + passwords[i] = TestUtilities.GenerateRandomPassword(); + zip1.Password = passwords[i]; + TestContext.WriteLine(" Adding entry: {0} pw({1})", files[i], passwords[i]); + zip1.AddFile(files[i], Path.GetFileName(dirToZip)); + } + zip1.Save(zipFileToCreate); + } + TestContext.WriteLine("\n"); + + // extract using the entry from the enumerator + int nExtracted = 0; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (ZipEntry e in zip2) + { + e.Password = passwords[nExtracted]; + TestContext.WriteLine(" Extracting entry: {0} pw({1})", e.FileName, passwords[nExtracted]); + e.Extract("unpack1"); + nExtracted++; + } + } + + Assert.AreEqual(files.Length, nExtracted); + + // extract using the filename indexer + nExtracted = 0; + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + foreach (var name in zip3.EntryFileNames) + { + zip3.Password = passwords[nExtracted]; + zip3[name].Extract("unpack2"); + nExtracted++; + } + } + + Assert.AreEqual(files.Length, nExtracted); + } + } + + + + [TestMethod] + public void Extract_MultiThreaded_wi6637() + { + int nConcurrentZipFiles = 5; + for (int k = 0; k < 1; k++) + { + TestContext.WriteLine("\n-----------------------------\r\n{0}: Trial {1}...", + DateTime.Now.ToString("HH:mm:ss"), + k); + + Directory.SetCurrentDirectory(TopLevelDir); + + string[] zipFileToCreate = new string[nConcurrentZipFiles]; + for (int m = 0; m < nConcurrentZipFiles; m++) + { + zipFileToCreate[m] = Path.Combine(TopLevelDir, String.Format("Extract_MultiThreaded-{0}-{1}.zip", k, m)); + TestContext.WriteLine(" Creating file: {0}", zipFileToCreate[m]); + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + + var files = TestUtilities.GenerateFilesFlat(dirToZip); + TestContext.WriteLine("Zipping {0} files from dir '{1}'...", files.Length, dirToZip); + + using (ZipFile zip1 = new ZipFile()) + { + zip1.Comment = "Brick walls are there for a reason: to let you show how badly you want your goal."; + for (int i = 0; i < files.Length; i++) + { + TestContext.WriteLine(" Adding entry: {0}", files[i]); + zip1.AddFile(files[i], Path.GetFileName(dirToZip)); + } + zip1.Save(zipFileToCreate[m]); + } + TestContext.WriteLine("\n"); + BasicVerifyZip(zipFileToCreate[m]); + } + + + // multi-thread extract + foreach (string fileName in zipFileToCreate) + { + TestContext.WriteLine("queueing unzip for file: {0}", fileName); + System.Threading.ThreadPool.QueueUserWorkItem(processZip, fileName); + } + + while (completedEntries != zipFileToCreate.Length) + System.Threading.Thread.Sleep(400); + + TestContext.WriteLine("done."); + + } + } + + + + private int _completedEntries; + private int completedEntries + { + get { return _completedEntries; } + set + { + lock (this) + { + _completedEntries = value; + } + } + } + + + + private void processZip(object o) + { + string fileName = o as string; + + string zDir = Path.Combine("extract", + Path.GetFileNameWithoutExtension(fileName.ToString())); + + TestContext.WriteLine("extracting {0}...", fileName); + + using (var zFile = ZipFile.Read(fileName)) + { + zFile.ExtractAll(zDir, ExtractExistingFileAction.OverwriteSilently); + } + completedEntries++; + } + + + + + + void OverwriteDecider(object sender, ExtractProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Extracting_ExtractEntryWouldOverwrite: + // randomly choose whether to overwrite or not + e.CurrentEntry.ExtractExistingFile = (_rnd.Next(2) == 0) + ? ExtractExistingFileAction.DoNotOverwrite + : ExtractExistingFileAction.OverwriteSilently; + break; + } + } + + + + [TestMethod] + public void Extract_ExistingFile() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "Extract_ExistingFile.zip"); + string sourceDir = CurrentDir; + for (int i = 0; i < 3; i++) + sourceDir = Path.GetDirectoryName(sourceDir); + + Directory.SetCurrentDirectory(TopLevelDir); + + string[] filenames = + { + Path.Combine(sourceDir, "Tools\\Zipit\\bin\\Debug\\Zipit.exe"), + Path.Combine(sourceDir, "Zip\\bin\\Debug\\DotNetZip.dll"), + Path.Combine(sourceDir, "Zip\\bin\\Debug\\DotNetZip.pdb"), + Path.Combine(sourceDir, "Zip\\bin\\Debug\\DotNetZip.xml"), + //Path.Combine(SourceDir, "AppNote.txt") + }; + + int j = 0; + using (ZipFile zip = new ZipFile()) + { + for (j = 0; j < filenames.Length; j++) + zip.AddFile(filenames[j], ""); + zip.Comment = "This is a Comment On the Archive"; + zip.Save(zipFileToCreate); + } + + + BasicVerifyZip(zipFileToCreate); + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filenames.Length, + "The zip file created has the wrong number of entries."); + + TestContext.WriteLine("- - - - - - - - - - - - - - - - - - - - - - - - - - - -"); + TestContext.WriteLine("1. first extract - this should succeed"); + var options = new ReadOptions { StatusMessageWriter = new StringWriter() }; + using (ZipFile zip = ZipFile.Read(zipFileToCreate, options)) + { + for (j = 0; j < filenames.Length; j++) + { + var f = Path.GetFileName(filenames[j]); + zip[f].Extract("unpack", ExtractExistingFileAction.Throw); + } + } + TestContext.WriteLine(options.StatusMessageWriter.ToString()); + + TestContext.WriteLine("- - - - - - - - - - - - - - - - - - - - - - - - - - - -"); + TestContext.WriteLine("2. extract again - DoNotOverwrite"); + options.StatusMessageWriter = new StringWriter(); + using (ZipFile zip = ZipFile.Read(zipFileToCreate, options)) + { + for (j = 0; j < filenames.Length; j++) + { + var f = Path.GetFileName(filenames[j]); + zip[f].Extract("unpack", ExtractExistingFileAction.DoNotOverwrite); + } + } + TestContext.WriteLine(options.StatusMessageWriter.ToString()); + + TestContext.WriteLine("- - - - - - - - - - - - - - - - - - - - - - - - - - - -"); + TestContext.WriteLine("3. extract again - OverwriteSilently"); + options.StatusMessageWriter = new StringWriter(); + using (ZipFile zip = ZipFile.Read(zipFileToCreate, options)) + { + for (j = 0; j < filenames.Length; j++) + { + var f = Path.GetFileName(filenames[j]); + zip[f].Extract("unpack", ExtractExistingFileAction.OverwriteSilently); + } + } + TestContext.WriteLine(options.StatusMessageWriter.ToString()); + + TestContext.WriteLine("- - - - - - - - - - - - - - - - - - - - - - - - - - - -"); + TestContext.WriteLine("4. extract again - InvokeExtractProgressEvent"); + options.StatusMessageWriter = new StringWriter(); + using (ZipFile zip = ZipFile.Read(zipFileToCreate, options)) + { + zip.ExtractProgress += OverwriteDecider; + for (j = 0; j < filenames.Length; j++) + { + var f = Path.GetFileName(filenames[j]); + zip[f].Extract("unpack", ExtractExistingFileAction.InvokeExtractProgressEvent); + } + } + TestContext.WriteLine(options.StatusMessageWriter.ToString()); + } + + + + + [TestMethod] + public void Extended_CheckZip1() + { + string[] dirNames = { "", Path.GetFileName(Path.GetRandomFileName()) }; + + string textToEncode = + "Pay no attention to this: " + + "We've read in the regular entry header, the extra field, and any " + + "encryption header. The pointer in the file is now at the start of " + + "the filedata, which is potentially compressed and encrypted. Just " + + "ahead in the file, there are _CompressedFileDataSize bytes of data, " + + "followed by potentially a non-zero length trailer, consisting of " + + "optionally, some encryption stuff (10 byte MAC for AES), " + + "and then the bit-3 trailer (16 or 24 bytes). "; + + for (int i = 0; i < crypto.Length; i++) + { + for (int j = 0; j < z64.Length; j++) + { + for (int k = 0; k < dirNames.Length; k++) + { + string zipFile = String.Format("Extended-CheckZip1-{0}.{1}.{2}.zip", i, j, k); + string password = Path.GetRandomFileName(); + + TestContext.WriteLine("================================="); + TestContext.WriteLine("Creating {0}...", Path.GetFileName(zipFile)); + + using (var zip = new ZipFile()) + { + zip.Comment = String.Format("Encryption={0} Zip64={1} pw={2}", + crypto[i].ToString(), z64[j].ToString(), password); + if (crypto[i] != EncryptionAlgorithm.None) + { + TestContext.WriteLine("Encryption({0}) Zip64({1}) pw({2})", + crypto[i].ToString(), z64[j].ToString(), password); + zip.Encryption = crypto[i]; + zip.Password = password; + } + else + TestContext.WriteLine("Encryption({0}) Zip64({1})", + crypto[i].ToString(), z64[j].ToString()); + + zip.UseZip64WhenSaving = z64[j]; + if (!String.IsNullOrEmpty(dirNames[k])) + zip.AddDirectoryByName(dirNames[k]); + zip.AddEntry(Path.Combine(dirNames[k], "File1.txt"), textToEncode); + zip.Save(zipFile); + } + + BasicVerifyZip(zipFile, password); + TestContext.WriteLine("Checking zip..."); + using (var sw = new StringWriter()) + { + bool result = ZipFile.CheckZip(zipFile, false, sw); + Assert.IsTrue(result, "Zip ({0}) does not check OK", zipFile); + var msgs = sw.ToString().Split('\n'); + foreach (var msg in msgs) + TestContext.WriteLine("{0}", msg); + } + } + } + } + } + + + + [TestMethod] + public void Extended_CheckZip2() + { + string textToEncode = + "Pay no attention to this: " + + "We've read in the regular entry header, the extra field, and any " + + "encryption header. The pointer in the file is now at the start of " + + "the filedata, which is potentially compressed and encrypted. Just " + + "ahead in the file, there are _CompressedFileDataSize bytes of " + + "data, followed by potentially a non-zero length trailer, " + + "consisting of optionally, some encryption stuff (10 byte MAC for " + + "AES), and then the bit-3 trailer (16 or 24 bytes). " + + " " + + "The encryption can be either PKZIP 2.0 (weak) encryption, or " + + "WinZip-compatible AES encryption, which is considered to be " + + "strong and for that reason is preferred. In the WinZip AES " + + "option, there are two different keystrengths supported: 128 bits " + + "and 256 bits. " + + " " + + "The extra field, which I mentioned previously, specifies " + + "additional metadata about the entry, which is strictly-speaking, " + + "optional. These data are things like high-resolution timestamps, " + + "data sizes that exceed 2^^32, and other encryption " + + "possibilities. In each case the library that reads a zip file " + + "needs to be able to correctly deal with the various fields, " + + "validating the values within them. " + + " " + + "Now, cross all that with the variety of usage patterns - creating a " + + "zip, or reading, or extracting, or updating, or updating several " + + "times. And also, remember that the metadata may change during " + + "updates: an application can apply a password where none was used " + + "previously, or it may wish to remove an entry from the zip entirely. " + + " " + + "The huge variety of combinations of possibilities is what makes " + + "testing a zip library so challenging. " ; + + string testBin = TestUtilities.GetTestBinDir(CurrentDir); + string fileToZip = Path.Combine(testBin, "DotNetZip.dll"); + + for (int i = 0; i < crypto.Length; i++) + { + for (int j = 0; j < z64.Length; j++) + { + string zipFile = String.Format("Extended-CheckZip2-{0}.{1}.zip", i, j); + string password = Path.GetRandomFileName(); + + TestContext.WriteLine("================================="); + TestContext.WriteLine("Creating {0}...", Path.GetFileName(zipFile)); + + string dir = Path.GetRandomFileName(); + using (var zip = new ZipFile()) + { + zip.Comment = String.Format("Encryption={0} Zip64={1} pw={2}", + crypto[i].ToString(), z64[j].ToString(), password); + + zip.Encryption = crypto[i]; + if (crypto[i] != EncryptionAlgorithm.None) + { + TestContext.WriteLine("Encryption({0}) Zip64({1}) pw({2})", + crypto[i].ToString(), z64[j].ToString(), password); + zip.Password = password; + } + else + TestContext.WriteLine("Encryption({0}) Zip64({1})", + crypto[i].ToString(), z64[j].ToString()); + + zip.UseZip64WhenSaving = z64[j]; + int N = _rnd.Next(11) + 5; + for (int k = 0; k < N; k++) + zip.AddDirectoryByName(Path.GetRandomFileName()); + + zip.AddEntry("File1.txt", textToEncode); + zip.AddFile(fileToZip, Path.GetRandomFileName()); + zip.Save(zipFile); + } + + BasicVerifyZip(zipFile, password, false); + + TestContext.WriteLine("Checking zip..."); + + using (var sw = new StringWriter()) + { + bool result = ZipFile.CheckZip(zipFile, false, sw); + Assert.IsTrue(result, "Zip ({0}) does not check OK", zipFile); + var msgs = sw.ToString().Split('\n'); + foreach (var msg in msgs) + TestContext.WriteLine("{0}", msg); + } + TestContext.WriteLine("OK"); + TestContext.WriteLine(""); + } + } + } + + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Create_DuplicateNames_DifferentFolders_wi8982_flat() + { + _Internal_DuplicateNames_DifferentFolders_wi8982(true); + } + + [TestMethod] + public void Create_DuplicateNames_DifferentFolders_wi8982_PreserveHierarchy() + { + _Internal_DuplicateNames_DifferentFolders_wi8982(false); + } + + public void _Internal_DuplicateNames_DifferentFolders_wi8982(bool flat) + { + Directory.SetCurrentDirectory(TopLevelDir); + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + TestUtilities.GenerateFilesFlat(dirToZip, 3); + string subdir = Path.Combine(dirToZip, "subdir1"); + TestUtilities.GenerateFilesFlat(subdir, 2); + + for (int i = 0; i < 2; i++) + { + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Create_DuplicateNames_DifferentFolders.{0}.zip", i)); + + using (var zip = new ZipFile()) + { + zip.ZipErrorAction = ZipErrorAction.Throw; + if (i == 0) + zip.AddDirectory(dirToZip, "fodder"); + else + { + var files = Directory.GetFiles(dirToZip, "*.*", SearchOption.AllDirectories); + if (flat) + zip.AddFiles(files, "fodder"); + else + zip.AddFiles(files, true, "fodder"); + + } + + zip.Save(zipFileToCreate); + } + + BasicVerifyZip(zipFileToCreate); + + Assert.AreEqual(5, TestUtilities.CountEntries(zipFileToCreate), + "Trial {0}: The zip file created has the wrong number of entries.", i); + } + } + + + + [TestMethod] + [ExpectedException(typeof(System.IO.IOException))] + public void Create_ZipErrorAction_Throw() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "Create_ZipErrorAction_Throw.zip"); + Directory.SetCurrentDirectory(TopLevelDir); + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + int n = _rnd.Next(files.Length); + + TestContext.WriteLine("Locking file {0}...", files[n]); + using (Stream lockStream = new FileStream(files[n], FileMode.Open, FileAccess.Read, FileShare.None)) + { + using (var zip = new ZipFile()) + { + zip.ZipErrorAction = ZipErrorAction.Throw; + zip.AddFiles(files, "fodder"); + zip.Save(zipFileToCreate); + } + } + } + + + + + + [TestMethod] + public void Create_ZipErrorAction_Skip() + { + Directory.SetCurrentDirectory(TopLevelDir); + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + + // m is the number of files to lock + for (int m = 1; m < 4; m++) + { + // k is the type of locking. 0 == whole file, 1 == range lock + for (int k = 0; k < 2; k++) + { + TestContext.WriteLine("Trial {0}.{1}...", m, k); + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Create_ZipErrorAction_Skip-{0}-{1}.zip", m, k)); + var locked = new Dictionary(); + try + { + for (int i = 0; i < m; i++) + { + int n = 0; + do + { + n = _rnd.Next(files.Length); + } while (locked.ContainsKey(files[n])); + + TestContext.WriteLine(" Locking file {0}...", files[n]); + + FileStream lockStream = null; + if (k == 0) + { + lockStream = new FileStream(files[n], FileMode.Open, FileAccess.Read, FileShare.None); + } + else + { + lockStream = new FileStream(files[n], FileMode.Open, FileAccess.Read, FileShare.ReadWrite); + int r = _rnd.Next((int)(lockStream.Length / 2)); + int s = _rnd.Next((int)(lockStream.Length / 2)); + lockStream.Lock(s, r); + } + + locked.Add(files[n], lockStream); + } + + using (var zip = new ZipFile()) + { + zip.ZipErrorAction = ZipErrorAction.Skip; + zip.AddFiles(files, "fodder"); + zip.Save(zipFileToCreate); + } + + using (var zip = new ZipFile(zipFileToCreate)) + { + // Writing the info as a single block puts everything on the + // same line, makes it unreadable. So we split the strings on + // newline boundaries and write them individually. + foreach (string s in zip.Info.Split('\r', '\n')) + { + Console.WriteLine("{0}", s); + } + } + + BasicVerifyZip(zipFileToCreate); + + Assert.AreEqual(files.Length - m, TestUtilities.CountEntries(zipFileToCreate), + "The zip file created has the wrong number of entries."); + } + finally + { + foreach (String s in locked.Keys) + { + locked[s].Close(); + } + } + + TestContext.WriteLine(" ..."); + System.Threading.Thread.Sleep(320); + } + } + } + + + + private int _retryCount; + void ErrorHandler_RetryAndEventuallySkip(object sender, ZipErrorEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Error_Saving: + _retryCount++; + if (_retryCount < 29) + e.CurrentEntry.ZipErrorAction = ZipErrorAction.Retry; + else + e.CurrentEntry.ZipErrorAction = ZipErrorAction.Skip; + break; + } + } + + void ErrorHandler_RetryAndEventuallyThrow(object sender, ZipErrorEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Error_Saving: + _retryCount++; + if (_retryCount < 29) + e.CurrentEntry.ZipErrorAction = ZipErrorAction.Retry; + else + e.CurrentEntry.ZipErrorAction = ZipErrorAction.Throw; + break; + } + } + + + + [TestMethod] + public void Create_ZipErrorAction_RetryAndEventuallySkip() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "Create_ZipErrorAction_RetryAndEventuallySkip.zip"); + Directory.SetCurrentDirectory(TopLevelDir); + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + int n = _rnd.Next(files.Length); + + TestContext.WriteLine("Locking file {0}...", files[n]); + using (Stream lockStream = new FileStream(files[n], FileMode.Open, FileAccess.Read, FileShare.None)) + { + _retryCount = 0; + using (var zip = new ZipFile()) + { + zip.ZipErrorAction = ZipErrorAction.InvokeErrorEvent; + zip.ZipError += ErrorHandler_RetryAndEventuallySkip; + zip.AddFiles(files, "fodder"); + zip.Save(zipFileToCreate); + } + } + + BasicVerifyZip(zipFileToCreate); + + Assert.AreEqual(files.Length - 1, TestUtilities.CountEntries(zipFileToCreate), + "The zip file created has the wrong number of entries."); + } + + + + [TestMethod] + [ExpectedException(typeof(System.IO.IOException))] + public void Create_ZipErrorAction_RetryAndEventuallyThrow() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "Create_ZipErrorAction_RetryAndEventuallyThrow.zip"); + Directory.SetCurrentDirectory(TopLevelDir); + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + int n = _rnd.Next(files.Length); + + TestContext.WriteLine("Locking file {0}...", files[n]); + using (Stream lockStream = new FileStream(files[n], FileMode.Open, FileAccess.Read, FileShare.None)) + { + _retryCount = 0; + using (var zip = new ZipFile()) + { + zip.ZipErrorAction = ZipErrorAction.InvokeErrorEvent; + zip.ZipError += ErrorHandler_RetryAndEventuallyThrow; + zip.AddFiles(files, "fodder"); + zip.Save(zipFileToCreate); + } + } + } + + + private void lockFile(object state) + { + Object[] a = (Object[])state; + string filename = (string)a[0]; + int duration = (int)a[1]; + + using (Stream lockStream = new FileStream(filename, FileMode.Open, FileAccess.Read, FileShare.None)) + { + // hold the lock for a specified period of time + System.Threading.Thread.Sleep(duration); + } + } + + + + [TestMethod] + public void Create_ZipErrorAction_RetryAndEventuallySucceed() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "Create_ZipErrorAction_RetryAndEventuallySucceed.zip"); + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + int n = _rnd.Next(files.Length); + + TestContext.WriteLine("Locking file {0}...", files[n]); + + // This will lock the file for 3 seconds, then release it. + // The goal is to test whether the retry actually succeeds. + System.Threading.ThreadPool.QueueUserWorkItem(lockFile, new Object[] { files[n], 3000 }); + System.Threading.Thread.Sleep(200); + + _retryCount = 0; + using (var zip = new ZipFile()) + { + zip.ZipErrorAction = ZipErrorAction.Retry; + zip.AddFiles(files, "fodder"); + zip.Save(zipFileToCreate); + } + + BasicVerifyZip(zipFileToCreate); + + Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate), + "The zip file created has the wrong number of entries."); + } + + + + + + [TestMethod] + public void ParallelDeflateStream_Create() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "ParallelDeflateStream_Create.zip"); + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip, _rnd.Next(5) + 5, 128 * 1024 + _rnd.Next(20000)); + + using (var zip = new ZipFile()) + { + zip.ParallelDeflateThreshold = 65536; + zip.AddFiles(files, "fodder"); + zip.Save(zipFileToCreate); + } + + BasicVerifyZip(zipFileToCreate); + + Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate), + "The zip file created has the wrong number of entries."); + } + + + + [TestMethod] + public void ParallelDeflateStream_Create_CompareSpeeds() + { + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip, _rnd.Next(5) + 5, 2048 * 1024 + _rnd.Next(200000)); + + var ts = new TimeSpan[2]; + + // 2 sets of 2 cycles: first set is warmup, 2nd is timed. + // Actually they're both timed but times for the 2nd set + // overwrite the times for the 1st set. + // Within a set, the first run is non-parallel, 2nd is timed parallel. + for (int i = 0; i < 2; i++) + { + for (int j = 0; j < 2; j++) + { + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("ParallelDeflateStream_Create.{0}.{1}.zip", i, j)); + + var sw = new System.Diagnostics.Stopwatch(); + sw.Start(); + using (var zip = new ZipFile()) + { + if (j == 0) + zip.ParallelDeflateThreshold = -1L; // disable parallel deflate + else + zip.ParallelDeflateThreshold = 128 * 1024; // threshold for parallel deflating + + zip.AddFiles(files, "fodder"); + + zip.Save(zipFileToCreate); + } + sw.Stop(); + + BasicVerifyZip(zipFileToCreate); + + Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate), + "The zip file created has the wrong number of entries."); + ts[j] = sw.Elapsed; + TestContext.WriteLine("Cycle {0},{1}, Timespan: {2}", i, j, ts[j]); + } + } + Assert.IsTrue(ts[1] < ts[0], "Parallel deflating is NOT faster than single-threaded, for large files."); + } + + + + [TestMethod] + [ExpectedException(typeof(System.ArgumentOutOfRangeException))] + public void ParallelDeflateStream_Create_InvalidThreshold() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "ParallelDeflateStream_Create_InvalidThreshold.zip"); + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip, _rnd.Next(5) + 5, 128 * 1024 + _rnd.Next(20000)); + + using (var zip = new ZipFile()) + { + zip.ParallelDeflateThreshold = 17129; + zip.AddFiles(files, "fodder"); + zip.Save(zipFileToCreate); + } + + // not reached + } + + + + + + [TestMethod] + public void CompressTiff_Level9_wi8647() + { + string testBin = TestUtilities.GetTestBinDir(CurrentDir); + + string tifFile = Path.Combine(testBin, "Resources\\wi8647.tif"); + Assert.IsTrue(File.Exists(tifFile), "tif file does not exist ({0})", tifFile); + + byte[] chk1 = TestUtilities.ComputeChecksum(tifFile); + string chk1String = TestUtilities.CheckSumToString(chk1); + + for (int x = 0; x < (int)(Ionic.Zlib.CompressionLevel.BestCompression); x++) + { + string zipFileToCreate = Path.Combine(TopLevelDir, + String.Format("CompressTiff_Level9-{0}.zip", x)); + byte[] chk2 = null; + + using (var zip = new ZipFile()) + { + zip.CompressionLevel = (Ionic.Zlib.CompressionLevel)x; + zip.AddFile(tifFile, "fodder"); + zip.Save(zipFileToCreate); + } + + BasicVerifyZip(zipFileToCreate); + + Assert.AreEqual(1, TestUtilities.CountEntries(zipFileToCreate), + "The zip file created has the wrong number of entries."); + + TestContext.WriteLine("---------------Reading {0}...", zipFileToCreate); + string extractDir = String.Format("extract{0}", x); + using (ZipFile zip = ZipFile.Read(zipFileToCreate)) + { + var e = zip[0]; + + TestContext.WriteLine(" Entry: {0} c({1}) u({2})", + e.FileName, + e.CompressedSize, + e.UncompressedSize); + e.Extract(extractDir); + string filename = Path.Combine(extractDir, e.FileName); + chk2 = TestUtilities.ComputeChecksum(filename); + } + + string chk2String = TestUtilities.CheckSumToString(chk2); + + Assert.AreEqual(chk1String, chk2String, "Cycle {0}, Checksums for ({1}) do not match.", x, tifFile); + TestContext.WriteLine(" Cycle {0}: Checksums match ({1}).\n", x, chk1String); + } + } + + + + + [TestMethod] + [Timeout(30000)] // timeout in ms. 30000 = 30s + public void AddDirectory_ReparsePoint_wi8617() + { + _Internal_AddDirectory_ReparsePoint_wi8617(1); + } + + + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void AddDirectory_ReparsePoint_wi8617_Error1() + { + _Internal_AddDirectory_ReparsePoint_wi8617(2); + } + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void AddDirectory_ReparsePoint_wi8617_Error2() + { + _Internal_AddDirectory_ReparsePoint_wi8617(0); + } + + + private void _Internal_AddDirectory_ReparsePoint_wi8617(int flavor) + { + string zipFileToCreate = Path.Combine(TopLevelDir, + String.Format("AddDirectory_ReparsePoint-{0}.zip", + flavor)); + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + + string junction = Path.Combine(dirToZip, "cycle"); + Ionic.IO.JunctionPoint.Create(junction, dirToZip); + + using (var zip = new ZipFile()) + { + if (flavor == 1) + zip.AddDirectoryWillTraverseReparsePoints = false; + else if (flavor == 2) + zip.AddDirectoryWillTraverseReparsePoints = true; + // else nothing + zip.AddDirectory(dirToZip, "fodder"); + zip.Save(zipFileToCreate); + } + + BasicVerifyZip(zipFileToCreate); + + Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate), + "The zip file created has the wrong number of entries."); + } + + [TestMethod] + public void ContainsEntryTest() + { + string zipFileToCreate = "ContainsEntry.zip"; + string dirToZip = "dirToZip"; + var files = TestUtilities.GenerateFilesFlat(dirToZip); + + using (var zip = new ZipFile()) + { + zip.AddFiles(files); + zip.Save(zipFileToCreate); + } + + Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate)); + using (var zip2 = ZipFile.Read(zipFileToCreate)) + { + for (int i=0; i < 28; i++) + { + int n = _rnd.Next(files.Length); + TestContext.WriteLine("Checking {0}", files[n]); + Assert.IsTrue(zip2.ContainsEntry(files[n]), "missing entry"); + } + } + } + + + [TestMethod] + public void SortedSave() + { + var rtg = new RandomTextGenerator(); + + WriteDelegate writer = (name, stream) => + { + byte[] buffer = System.Text.Encoding.ASCII.GetBytes(rtg.Generate(_rnd.Next(2000) + 200)); + stream.Write(buffer, 0, buffer.Length); + }; + + int numEntries = _rnd.Next(256) + 48; + + // Two trials, one with sorted output, and the other with non-sorted output. + for (int m = 0; m < 2; m++) + { + string zipFileToCreate = Path.Combine(TopLevelDir, + String.Format("SortedSave-{0}.zip", m)); + using (var zip = new ZipFile()) + { + for (int i = 0; i < numEntries; i++) + { + // I need the randomness in the first part, to force the sort. + string filename = String.Format("{0}-{1:000}.txt", + TestUtilities.GenerateRandomAsciiString(6), i); + zip.AddEntry(filename, writer); + } + + zip.SortEntriesBeforeSaving = (m == 1); + zip.Save(zipFileToCreate); + } + + using (var zip = ZipFile.Read(zipFileToCreate)) + { + bool sorted = true; + for (int i = 0; i < zip.Entries.Count - 1 && sorted; i++) + { + for (int j = i; j < zip.Entries.Count && sorted; j++) + { + if (String.Compare(zip[i].FileName, zip[j].FileName, StringComparison.OrdinalIgnoreCase) > 0) + { + sorted = false; + } + } + } + + Assert.IsTrue((((m == 1) && sorted) || ((m == 0) && !sorted)), + "Unexpected sort results"); + } + } + } + + [TestMethod] + public void DoubleSave_wi10735() + { + string zipFileToCreate1 = "DoubleSave.1.zip"; + string zipFileToCreate2 = "DoubleSave.2.zip"; + string dirToZip = "dirToZip"; + var files = TestUtilities.GenerateFilesFlat(dirToZip); + + using (var zip = new ZipFile()) + { + zip.AddFiles(files); + zip.Save(zipFileToCreate1); + zip.Save(zipFileToCreate2); + } + } + + } + +} diff --git a/src/Zip Tests/IonicTestClass.cs b/old/src/Zip Tests/IonicTestClass.cs similarity index 97% rename from src/Zip Tests/IonicTestClass.cs rename to old/src/Zip Tests/IonicTestClass.cs index 2fc4cab..c3ed421 100644 --- a/src/Zip Tests/IonicTestClass.cs +++ b/old/src/Zip Tests/IonicTestClass.cs @@ -1,558 +1,558 @@ -// IonicTestClass.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009 Dino Chiesa. -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-July-26 10:04:54> -// -// ------------------------------------------------------------------ -// -// This module defines the base class for DotNetZip test classes. -// -// ------------------------------------------------------------------ - -using System; -using System.Collections.Generic; -using System.Text; -using System.Text.RegularExpressions; -using System.Net; -using System.Linq; -using System.IO; -using Ionic.Zip; -using Microsoft.VisualStudio.TestTools.UnitTesting; - -namespace Ionic.Zip.Tests.Utilities -{ - [TestClass] - public class IonicTestClass - { - protected System.Random _rnd; - protected System.Collections.Generic.List _FilesToRemove; - protected static string CurrentDir = null; - protected string TopLevelDir = null; - private string _wzunzip = null; - private string _wzzip = null; - private string _sevenzip = null; - private string _zipit = null; - private string _infozipzip = null; - private string _infozipunzip = null; - private bool? _ZipitIsPresent; - private bool? _WinZipIsPresent; - private bool? _SevenZipIsPresent; - private bool? _InfoZipIsPresent; - - protected Ionic.CopyData.Transceiver _txrx; - - - public IonicTestClass() - { - _rnd = new System.Random(); - _FilesToRemove = new System.Collections.Generic.List(); - } - - #region Context - private TestContext testContextInstance; - - /// - ///Gets or sets the test context which provides - ///information about and functionality for the current test run. - /// - public TestContext TestContext - { - get - { - return testContextInstance; - } - set - { - testContextInstance = value; - } - } - - #endregion - - - - #region Test Init and Cleanup - // - // You can use the following additional attributes as you write your tests: - // - // Use ClassInitialize to run code before running the first test in the class - [ClassInitialize] - public static void BaseClassInitialize(TestContext testContext) - { - CurrentDir = Directory.GetCurrentDirectory(); - Assert.AreNotEqual(Path.GetFileName(CurrentDir), "Temp", "at startup"); - } - - // - // Use ClassCleanup to run code after all tests in a class have run - // [ClassCleanup()] - // public static void MyClassCleanup() { } - // - - - // Use TestInitialize to run code before running each test - [TestInitialize()] - public void MyTestInitialize() - { - if (CurrentDir == null) CurrentDir = Directory.GetCurrentDirectory(); - TestUtilities.Initialize(out TopLevelDir); - _FilesToRemove.Add(TopLevelDir); - Directory.SetCurrentDirectory(TopLevelDir); - } - - // Use TestCleanup to run code after each test has run - [TestCleanup()] - public void MyTestCleanup() - { - // The CWD of the monitoring process is the CurrentDir, - // therefore this test must shut down the monitoring process - // FIRST, to allow the deletion of the directory. - if (_txrx!=null) - { - try - { - _txrx.Send("stop"); - _txrx = null; - } - catch { } - } - - TestUtilities.Cleanup(CurrentDir, _FilesToRemove); - } - - #endregion - - - - internal string Exec(string program, string args) - { - return Exec(program, args, true); - } - - internal string Exec(string program, string args, bool waitForExit) - { - return Exec(program, args, waitForExit, true); - } - - internal string Exec(string program, string args, bool waitForExit, bool emitOutput) - { - if (program == null) - throw new ArgumentException("program"); - - if (args == null) - throw new ArgumentException("args"); - - // Microsoft.VisualStudio.TestTools.UnitTesting - this.TestContext.WriteLine("running command: {0} {1}", program, args); - - string output; - int rc = TestUtilities.Exec_NoContext(program, args, waitForExit, out output); - - if (rc != 0) - throw new Exception(String.Format("Non-zero RC {0}: {1}", program, output)); - - if (emitOutput) - this.TestContext.WriteLine("output: {0}", output); - else - this.TestContext.WriteLine("A-OK. (output suppressed)"); - - return output; - } - - - public class AsyncReadState - { - public System.IO.Stream s; - public byte[] buf= new byte[1024]; - } - - - internal int ExecRedirectStdOut(string program, string args, string outFile) - { - if (program == null) - throw new ArgumentException("program"); - - if (args == null) - throw new ArgumentException("args"); - - this.TestContext.WriteLine("running command: {0} {1}", program, args); - - Stream fs = File.Create(outFile); - try - { - System.Diagnostics.Process p = new System.Diagnostics.Process - { - StartInfo = - { - FileName = program, - CreateNoWindow = true, - Arguments = args, - WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden, - UseShellExecute = false, - RedirectStandardOutput = true, - RedirectStandardError = true, - } - }; - - p.Start(); - - var stdout = p.StandardOutput.BaseStream; - var rs = new AsyncReadState { s = stdout }; - Action readAsync1 = null; - var readAsync = new Action( (ar) => { - AsyncReadState state = (AsyncReadState) ar.AsyncState; - int n = state.s.EndRead(ar); - if (n > 0) - { - fs.Write(state.buf, 0, n); - state.s.BeginRead(state.buf, - 0, - state.buf.Length, - new System.AsyncCallback(readAsync1), - state); - } - }); - readAsync1 = readAsync; // ?? - - // kickoff - stdout.BeginRead(rs.buf, - 0, - rs.buf.Length, - new System.AsyncCallback(readAsync), - rs); - - p.WaitForExit(); - - this.TestContext.WriteLine("Process exited, rc={0}", p.ExitCode); - - return p.ExitCode; - } - finally - { - if (fs != null) - fs.Dispose(); - } - } - - - protected string sevenZip - { - get { return SevenZipIsPresent ? _sevenzip : null; } - } - - protected string zipit - { - get { return ZipitIsPresent ? _zipit : null; } - } - - protected string infoZip - { - get { return InfoZipIsPresent ? _infozipzip : null; } - } - - protected string infoZipUnzip - { - get { return InfoZipIsPresent ? _infozipunzip : null; } - } - - protected string wzzip - { - get { return WinZipIsPresent ? _wzzip : null; } - } - - protected string wzunzip - { - get { return WinZipIsPresent ? _wzunzip : null; } - } - - protected bool ZipitIsPresent - { - get - { - if (_ZipitIsPresent == null) - { - string sourceDir = CurrentDir; - for (int i = 0; i < 3; i++) - sourceDir = Path.GetDirectoryName(sourceDir); - - _zipit = - Path.Combine(sourceDir, "Tools\\Zipit\\bin\\Debug\\Zipit.exe"); - - _ZipitIsPresent = new Nullable(File.Exists(_zipit)); - } - return _ZipitIsPresent.Value; - } - } - - protected bool WinZipIsPresent - { - get - { - if (_WinZipIsPresent == null) - { - var programFilesRoots = new[] - { - System.Environment.GetEnvironmentVariable("ProgramFiles(x86)"), - System.Environment.GetEnvironmentVariable("ProgramW6432") - }; - foreach (var programFiles in programFilesRoots) - { - _wzunzip = Path.Combine(programFiles, "winzip\\wzunzip.exe"); - _wzzip = Path.Combine(programFiles, "winzip\\wzzip.exe"); - _WinZipIsPresent = File.Exists(_wzunzip) && File.Exists(_wzzip); - if (_WinZipIsPresent.Value) - { - break; - } - } - } - - return _WinZipIsPresent.Value; - } - } - - protected bool SevenZipIsPresent - { - get - { - if (_SevenZipIsPresent == null) - { - string progfiles = null; - if (_sevenzip == null) - { - progfiles = System.Environment.GetEnvironmentVariable("ProgramFiles"); - _sevenzip = Path.Combine(progfiles, "7-zip\\7z.exe"); - } - _SevenZipIsPresent = new Nullable(File.Exists(_sevenzip)); - } - return _SevenZipIsPresent.Value; - } - } - - - protected bool InfoZipIsPresent - { - get - { - if (_InfoZipIsPresent == null) - { - string progfiles = null; - if (_infozipzip == null) - { - progfiles = System.Environment.GetEnvironmentVariable("ProgramFiles(x86)"); - _infozipzip = Path.Combine(progfiles, "infozip.org\\zip.exe"); - _infozipunzip = Path.Combine(progfiles, "infozip.org\\unzip.exe"); - } - _InfoZipIsPresent = new Nullable(File.Exists(_infozipzip) && - File.Exists(_infozipunzip)); - } - return _InfoZipIsPresent.Value; - } - } - - internal string BasicVerifyZip(string zipfile) - { - return BasicVerifyZip(zipfile, null); - } - - - internal string BasicVerifyZip(string zipfile, string password) - { - return BasicVerifyZip(zipfile, password, true); - } - - internal string BasicVerifyZip(string zipfile, string password, bool emitOutput) - { - return BasicVerifyZip(zipfile, password, emitOutput, null); - } - - - internal string BasicVerifyZip(string zipfile, string password, bool emitOutput, - EventHandler extractProgress) - { - // basic verification of the zip file - can it be extracted? - // The extraction tool will verify checksums and passwords, as appropriate -#if NOT - if (WinZipIsPresent) - { - TestContext.WriteLine("Verifying zip file {0} with WinZip", zipfile); - string args = (password == null) - ? String.Format("-t {0}", zipfile) - : String.Format("-s{0} -t {1}", password, zipfile); - - string wzunzipOut = this.Exec(wzunzip, args, true, emitOutput); - } - else -#endif - { - TestContext.WriteLine("Verifying zip file {0} with DotNetZip", zipfile); - ReadOptions options = new ReadOptions(); - if (emitOutput) - options.StatusMessageWriter = new StringWriter(); - - string extractDir = "verify"; - int c = 0; - while (Directory.Exists(extractDir + c)) c++; - extractDir += c; - - using (ZipFile zip2 = ZipFile.Read(zipfile, options)) - { - zip2.Password = password; - if (extractProgress != null) - zip2.ExtractProgress += extractProgress; - zip2.ExtractAll(extractDir); - } - // emit output, as desired - if (emitOutput) - TestContext.WriteLine("{0}",options.StatusMessageWriter.ToString()); - - return extractDir; - } - } - - - - internal static void CreateFilesAndChecksums(string subdir, - out string[] filesToZip, - out Dictionary checksums) - { - CreateFilesAndChecksums(subdir, 0, 0, out filesToZip, out checksums); - } - - - internal static void CreateFilesAndChecksums(string subdir, - int numFiles, - int baseSize, - out string[] filesToZip, - out Dictionary checksums) - { - // create a bunch of files - filesToZip = TestUtilities.GenerateFilesFlat(subdir, numFiles, baseSize); - DateTime atMidnight = new DateTime(DateTime.Now.Year, - DateTime.Now.Month, - DateTime.Now.Day); - DateTime fortyFiveDaysAgo = atMidnight - new TimeSpan(45, 0, 0, 0); - - // get checksums for each one - checksums = new Dictionary(); - - var rnd = new System.Random(); - foreach (var f in filesToZip) - { - if (rnd.Next(3) == 0) - File.SetLastWriteTime(f, fortyFiveDaysAgo); - else - File.SetLastWriteTime(f, atMidnight); - - var key = Path.GetFileName(f); - var chk = TestUtilities.ComputeChecksum(f); - checksums.Add(key, chk); - } - } - - protected static void CreateLargeFilesWithChecksums - (string subdir, - int numFiles, - Action update, - out string[] filesToZip, - out Dictionary checksums) - { - var rnd = new System.Random(); - // create a bunch of files - filesToZip = TestUtilities.GenerateFilesFlat(subdir, - numFiles, - 256 * 1024, - 3 * 1024 * 1024, - update); - - var dates = new DateTime[rnd.Next(6) + 7]; - // midnight - dates[0] = new DateTime(DateTime.Now.Year, - DateTime.Now.Month, - DateTime.Now.Day); - - for (int i=1; i < dates.Length; i++) - { - dates[i] = DateTime.Now - - new TimeSpan(rnd.Next(300), - rnd.Next(23), - rnd.Next(60), - rnd.Next(60)); - } - - // get checksums for each one - checksums = new Dictionary(); - - foreach (var f in filesToZip) - { - File.SetLastWriteTime(f, dates[rnd.Next(dates.Length)]); - var key = Path.GetFileName(f); - var chk = TestUtilities.ComputeChecksum(f); - checksums.Add(key, chk); - } - } - - - - protected void VerifyChecksums(string extractDir, - System.Collections.Generic.IEnumerable filesToCheck, - Dictionary checksums) - { - TestContext.WriteLine(""); - TestContext.WriteLine("Verify checksums..."); - int count = 0; - foreach (var fqPath in filesToCheck) - { - var f = Path.GetFileName(fqPath); - var extractedFile = Path.Combine(extractDir, f); - Assert.IsTrue(File.Exists(extractedFile), "File does not exist ({0})", extractedFile); - var chk = TestUtilities.ComputeChecksum(extractedFile); - Assert.AreEqual(TestUtilities.CheckSumToString(checksums[f]), - TestUtilities.CheckSumToString(chk), - String.Format("Checksums for file {0} do not match.", f)); - count++; - } - - if (checksums.Count < count) - { - TestContext.WriteLine("There are {0} more extracted files than checksums", count - checksums.Count); - foreach (var file in filesToCheck) - { - if (!checksums.ContainsKey(file)) - TestContext.WriteLine("Missing: {0}", Path.GetFileName(file)); - } - } - - if (checksums.Count > count) - { - TestContext.WriteLine("There are {0} more checksums than extracted files", checksums.Count - count); - foreach (var file in checksums.Keys) - { - var selection = from f in filesToCheck where Path.GetFileName(f).Equals(file) select f; - - if (selection.Count() == 0) - TestContext.WriteLine("Missing: {0}", Path.GetFileName(file)); - } - } - - - Assert.AreEqual(checksums.Count, count, "There's a mismatch between the checksums and the filesToCheck."); - } - } - - -} +// IonicTestClass.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009 Dino Chiesa. +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-July-26 10:04:54> +// +// ------------------------------------------------------------------ +// +// This module defines the base class for DotNetZip test classes. +// +// ------------------------------------------------------------------ + +using System; +using System.Collections.Generic; +using System.Text; +using System.Text.RegularExpressions; +using System.Net; +using System.Linq; +using System.IO; +using Ionic.Zip; +using Microsoft.VisualStudio.TestTools.UnitTesting; + +namespace Ionic.Zip.Tests.Utilities +{ + [TestClass] + public class IonicTestClass + { + protected System.Random _rnd; + protected System.Collections.Generic.List _FilesToRemove; + protected static string CurrentDir = null; + protected string TopLevelDir = null; + private string _wzunzip = null; + private string _wzzip = null; + private string _sevenzip = null; + private string _zipit = null; + private string _infozipzip = null; + private string _infozipunzip = null; + private bool? _ZipitIsPresent; + private bool? _WinZipIsPresent; + private bool? _SevenZipIsPresent; + private bool? _InfoZipIsPresent; + + protected Ionic.CopyData.Transceiver _txrx; + + + public IonicTestClass() + { + _rnd = new System.Random(); + _FilesToRemove = new System.Collections.Generic.List(); + } + + #region Context + private TestContext testContextInstance; + + /// + ///Gets or sets the test context which provides + ///information about and functionality for the current test run. + /// + public TestContext TestContext + { + get + { + return testContextInstance; + } + set + { + testContextInstance = value; + } + } + + #endregion + + + + #region Test Init and Cleanup + // + // You can use the following additional attributes as you write your tests: + // + // Use ClassInitialize to run code before running the first test in the class + [ClassInitialize] + public static void BaseClassInitialize(TestContext testContext) + { + CurrentDir = Directory.GetCurrentDirectory(); + Assert.AreNotEqual(Path.GetFileName(CurrentDir), "Temp", "at startup"); + } + + // + // Use ClassCleanup to run code after all tests in a class have run + // [ClassCleanup()] + // public static void MyClassCleanup() { } + // + + + // Use TestInitialize to run code before running each test + [TestInitialize()] + public void MyTestInitialize() + { + if (CurrentDir == null) CurrentDir = Directory.GetCurrentDirectory(); + TestUtilities.Initialize(out TopLevelDir); + _FilesToRemove.Add(TopLevelDir); + Directory.SetCurrentDirectory(TopLevelDir); + } + + // Use TestCleanup to run code after each test has run + [TestCleanup()] + public void MyTestCleanup() + { + // The CWD of the monitoring process is the CurrentDir, + // therefore this test must shut down the monitoring process + // FIRST, to allow the deletion of the directory. + if (_txrx!=null) + { + try + { + _txrx.Send("stop"); + _txrx = null; + } + catch { } + } + + TestUtilities.Cleanup(CurrentDir, _FilesToRemove); + } + + #endregion + + + + internal string Exec(string program, string args) + { + return Exec(program, args, true); + } + + internal string Exec(string program, string args, bool waitForExit) + { + return Exec(program, args, waitForExit, true); + } + + internal string Exec(string program, string args, bool waitForExit, bool emitOutput) + { + if (program == null) + throw new ArgumentException("program"); + + if (args == null) + throw new ArgumentException("args"); + + // Microsoft.VisualStudio.TestTools.UnitTesting + this.TestContext.WriteLine("running command: {0} {1}", program, args); + + string output; + int rc = TestUtilities.Exec_NoContext(program, args, waitForExit, out output); + + if (rc != 0) + throw new Exception(String.Format("Non-zero RC {0}: {1}", program, output)); + + if (emitOutput) + this.TestContext.WriteLine("output: {0}", output); + else + this.TestContext.WriteLine("A-OK. (output suppressed)"); + + return output; + } + + + public class AsyncReadState + { + public System.IO.Stream s; + public byte[] buf= new byte[1024]; + } + + + internal int ExecRedirectStdOut(string program, string args, string outFile) + { + if (program == null) + throw new ArgumentException("program"); + + if (args == null) + throw new ArgumentException("args"); + + this.TestContext.WriteLine("running command: {0} {1}", program, args); + + Stream fs = File.Create(outFile); + try + { + System.Diagnostics.Process p = new System.Diagnostics.Process + { + StartInfo = + { + FileName = program, + CreateNoWindow = true, + Arguments = args, + WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden, + UseShellExecute = false, + RedirectStandardOutput = true, + RedirectStandardError = true, + } + }; + + p.Start(); + + var stdout = p.StandardOutput.BaseStream; + var rs = new AsyncReadState { s = stdout }; + Action readAsync1 = null; + var readAsync = new Action( (ar) => { + AsyncReadState state = (AsyncReadState) ar.AsyncState; + int n = state.s.EndRead(ar); + if (n > 0) + { + fs.Write(state.buf, 0, n); + state.s.BeginRead(state.buf, + 0, + state.buf.Length, + new System.AsyncCallback(readAsync1), + state); + } + }); + readAsync1 = readAsync; // ?? + + // kickoff + stdout.BeginRead(rs.buf, + 0, + rs.buf.Length, + new System.AsyncCallback(readAsync), + rs); + + p.WaitForExit(); + + this.TestContext.WriteLine("Process exited, rc={0}", p.ExitCode); + + return p.ExitCode; + } + finally + { + if (fs != null) + fs.Dispose(); + } + } + + + protected string sevenZip + { + get { return SevenZipIsPresent ? _sevenzip : null; } + } + + protected string zipit + { + get { return ZipitIsPresent ? _zipit : null; } + } + + protected string infoZip + { + get { return InfoZipIsPresent ? _infozipzip : null; } + } + + protected string infoZipUnzip + { + get { return InfoZipIsPresent ? _infozipunzip : null; } + } + + protected string wzzip + { + get { return WinZipIsPresent ? _wzzip : null; } + } + + protected string wzunzip + { + get { return WinZipIsPresent ? _wzunzip : null; } + } + + protected bool ZipitIsPresent + { + get + { + if (_ZipitIsPresent == null) + { + string sourceDir = CurrentDir; + for (int i = 0; i < 3; i++) + sourceDir = Path.GetDirectoryName(sourceDir); + + _zipit = + Path.Combine(sourceDir, "Tools\\Zipit\\bin\\Debug\\Zipit.exe"); + + _ZipitIsPresent = new Nullable(File.Exists(_zipit)); + } + return _ZipitIsPresent.Value; + } + } + + protected bool WinZipIsPresent + { + get + { + if (_WinZipIsPresent == null) + { + var programFilesRoots = new[] + { + System.Environment.GetEnvironmentVariable("ProgramFiles(x86)"), + System.Environment.GetEnvironmentVariable("ProgramW6432") + }; + foreach (var programFiles in programFilesRoots) + { + _wzunzip = Path.Combine(programFiles, "winzip\\wzunzip.exe"); + _wzzip = Path.Combine(programFiles, "winzip\\wzzip.exe"); + _WinZipIsPresent = File.Exists(_wzunzip) && File.Exists(_wzzip); + if (_WinZipIsPresent.Value) + { + break; + } + } + } + + return _WinZipIsPresent.Value; + } + } + + protected bool SevenZipIsPresent + { + get + { + if (_SevenZipIsPresent == null) + { + string progfiles = null; + if (_sevenzip == null) + { + progfiles = System.Environment.GetEnvironmentVariable("ProgramFiles"); + _sevenzip = Path.Combine(progfiles, "7-zip\\7z.exe"); + } + _SevenZipIsPresent = new Nullable(File.Exists(_sevenzip)); + } + return _SevenZipIsPresent.Value; + } + } + + + protected bool InfoZipIsPresent + { + get + { + if (_InfoZipIsPresent == null) + { + string progfiles = null; + if (_infozipzip == null) + { + progfiles = System.Environment.GetEnvironmentVariable("ProgramFiles(x86)"); + _infozipzip = Path.Combine(progfiles, "infozip.org\\zip.exe"); + _infozipunzip = Path.Combine(progfiles, "infozip.org\\unzip.exe"); + } + _InfoZipIsPresent = new Nullable(File.Exists(_infozipzip) && + File.Exists(_infozipunzip)); + } + return _InfoZipIsPresent.Value; + } + } + + internal string BasicVerifyZip(string zipfile) + { + return BasicVerifyZip(zipfile, null); + } + + + internal string BasicVerifyZip(string zipfile, string password) + { + return BasicVerifyZip(zipfile, password, true); + } + + internal string BasicVerifyZip(string zipfile, string password, bool emitOutput) + { + return BasicVerifyZip(zipfile, password, emitOutput, null); + } + + + internal string BasicVerifyZip(string zipfile, string password, bool emitOutput, + EventHandler extractProgress) + { + // basic verification of the zip file - can it be extracted? + // The extraction tool will verify checksums and passwords, as appropriate +#if NOT + if (WinZipIsPresent) + { + TestContext.WriteLine("Verifying zip file {0} with WinZip", zipfile); + string args = (password == null) + ? String.Format("-t {0}", zipfile) + : String.Format("-s{0} -t {1}", password, zipfile); + + string wzunzipOut = this.Exec(wzunzip, args, true, emitOutput); + } + else +#endif + { + TestContext.WriteLine("Verifying zip file {0} with DotNetZip", zipfile); + ReadOptions options = new ReadOptions(); + if (emitOutput) + options.StatusMessageWriter = new StringWriter(); + + string extractDir = "verify"; + int c = 0; + while (Directory.Exists(extractDir + c)) c++; + extractDir += c; + + using (ZipFile zip2 = ZipFile.Read(zipfile, options)) + { + zip2.Password = password; + if (extractProgress != null) + zip2.ExtractProgress += extractProgress; + zip2.ExtractAll(extractDir); + } + // emit output, as desired + if (emitOutput) + TestContext.WriteLine("{0}",options.StatusMessageWriter.ToString()); + + return extractDir; + } + } + + + + internal static void CreateFilesAndChecksums(string subdir, + out string[] filesToZip, + out Dictionary checksums) + { + CreateFilesAndChecksums(subdir, 0, 0, out filesToZip, out checksums); + } + + + internal static void CreateFilesAndChecksums(string subdir, + int numFiles, + int baseSize, + out string[] filesToZip, + out Dictionary checksums) + { + // create a bunch of files + filesToZip = TestUtilities.GenerateFilesFlat(subdir, numFiles, baseSize); + DateTime atMidnight = new DateTime(DateTime.Now.Year, + DateTime.Now.Month, + DateTime.Now.Day); + DateTime fortyFiveDaysAgo = atMidnight - new TimeSpan(45, 0, 0, 0); + + // get checksums for each one + checksums = new Dictionary(); + + var rnd = new System.Random(); + foreach (var f in filesToZip) + { + if (rnd.Next(3) == 0) + File.SetLastWriteTime(f, fortyFiveDaysAgo); + else + File.SetLastWriteTime(f, atMidnight); + + var key = Path.GetFileName(f); + var chk = TestUtilities.ComputeChecksum(f); + checksums.Add(key, chk); + } + } + + protected static void CreateLargeFilesWithChecksums + (string subdir, + int numFiles, + Action update, + out string[] filesToZip, + out Dictionary checksums) + { + var rnd = new System.Random(); + // create a bunch of files + filesToZip = TestUtilities.GenerateFilesFlat(subdir, + numFiles, + 256 * 1024, + 3 * 1024 * 1024, + update); + + var dates = new DateTime[rnd.Next(6) + 7]; + // midnight + dates[0] = new DateTime(DateTime.Now.Year, + DateTime.Now.Month, + DateTime.Now.Day); + + for (int i=1; i < dates.Length; i++) + { + dates[i] = DateTime.Now - + new TimeSpan(rnd.Next(300), + rnd.Next(23), + rnd.Next(60), + rnd.Next(60)); + } + + // get checksums for each one + checksums = new Dictionary(); + + foreach (var f in filesToZip) + { + File.SetLastWriteTime(f, dates[rnd.Next(dates.Length)]); + var key = Path.GetFileName(f); + var chk = TestUtilities.ComputeChecksum(f); + checksums.Add(key, chk); + } + } + + + + protected void VerifyChecksums(string extractDir, + System.Collections.Generic.IEnumerable filesToCheck, + Dictionary checksums) + { + TestContext.WriteLine(""); + TestContext.WriteLine("Verify checksums..."); + int count = 0; + foreach (var fqPath in filesToCheck) + { + var f = Path.GetFileName(fqPath); + var extractedFile = Path.Combine(extractDir, f); + Assert.IsTrue(File.Exists(extractedFile), "File does not exist ({0})", extractedFile); + var chk = TestUtilities.ComputeChecksum(extractedFile); + Assert.AreEqual(TestUtilities.CheckSumToString(checksums[f]), + TestUtilities.CheckSumToString(chk), + String.Format("Checksums for file {0} do not match.", f)); + count++; + } + + if (checksums.Count < count) + { + TestContext.WriteLine("There are {0} more extracted files than checksums", count - checksums.Count); + foreach (var file in filesToCheck) + { + if (!checksums.ContainsKey(file)) + TestContext.WriteLine("Missing: {0}", Path.GetFileName(file)); + } + } + + if (checksums.Count > count) + { + TestContext.WriteLine("There are {0} more checksums than extracted files", checksums.Count - count); + foreach (var file in checksums.Keys) + { + var selection = from f in filesToCheck where Path.GetFileName(f).Equals(file) select f; + + if (selection.Count() == 0) + TestContext.WriteLine("Missing: {0}", Path.GetFileName(file)); + } + } + + + Assert.AreEqual(checksums.Count, count, "There's a mismatch between the checksums and the filesToCheck."); + } + } + + +} diff --git a/src/Zip Tests/LongRunning.cs b/old/src/Zip Tests/LongRunning.cs similarity index 97% rename from src/Zip Tests/LongRunning.cs rename to old/src/Zip Tests/LongRunning.cs index fa4240e..5fd7c21 100644 --- a/src/Zip Tests/LongRunning.cs +++ b/old/src/Zip Tests/LongRunning.cs @@ -1,433 +1,433 @@ -// LongRunning.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2011 Dino Chiesa -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-June-19 21:51:30> -// -// ------------------------------------------------------------------ -// -// This module some long-running unit tests for DotNetZip: tests for -// saving very large numbers of files, very large (multi-GB) files, and so on. -// -// ------------------------------------------------------------------ - -using System; -using System.Text; -using System.Collections.Generic; -using Microsoft.VisualStudio.TestTools.UnitTesting; -using RE = System.Text.RegularExpressions; - -using Ionic.Zip; -using Ionic.Zip.Tests.Utilities; -using System.IO; - -namespace Ionic.Zip.Tests.LongRunning -{ - /// - /// Summary description for LongRunning - /// - [TestClass] - public class LongRunning : IonicTestClass - { - Int64 maxBytesXferred = 0; - bool _pb1Set; - bool _pb2Set; - int _numEntriesSaved = 0; - int _numEntriesToAdd = 0; - int _numEntriesAdded = 0; - int _numFilesToExtract; - int _spCycles; - int _epCycles; - - - void LNSF_SaveProgress(object sender, Ionic.Zip.SaveProgressEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Saving_Started: - _numEntriesSaved = 0; - _txrx.Send("status saving started..."); - _pb1Set = false; - break; - - case ZipProgressEventType.Saving_BeforeWriteEntry: - _numEntriesSaved++; - if (_numEntriesSaved % 64 == 0) - _txrx.Send(String.Format("status Compressing {0}", e.CurrentEntry.FileName)); - if (!_pb1Set) - { - _txrx.Send(String.Format("pb 1 max {0}", e.EntriesTotal)); - _pb1Set = true; - } - break; - - case ZipProgressEventType.Saving_EntryBytesRead: - Assert.IsTrue(e.BytesTransferred <= e.TotalBytesToTransfer); - break; - - case ZipProgressEventType.Saving_AfterWriteEntry: - _txrx.Send("pb 1 step"); - break; - - case ZipProgressEventType.Saving_Completed: - _txrx.Send("status Save completed"); - _pb1Set = false; - _txrx.Send("pb 1 max 1"); - _txrx.Send("pb 1 value 1"); - break; - } - } - - - void LNSF_AddProgress(object sender, AddProgressEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Adding_Started: - _txrx.Send("status Adding files to the zip..."); - _pb1Set = false; - break; - - case ZipProgressEventType.Adding_AfterAddEntry: - if (!_pb1Set) - { - _txrx.Send(String.Format("pb 1 max {0}", _numEntriesToAdd)); - _pb1Set = true; - } - if (!e.CurrentEntry.FileName.EndsWith("/")) - { - _numEntriesAdded++; - if (_numEntriesAdded % 64 == 0) - _txrx.Send(String.Format("status Adding file {0}/{1} :: {2}", - _numEntriesAdded, _numEntriesToAdd, e.CurrentEntry.FileName)); - _txrx.Send("pb 1 step"); - } - break; - - case ZipProgressEventType.Adding_Completed: - _txrx.Send("status Added all files"); - _pb1Set = false; - _txrx.Send("pb 1 max 1"); - _txrx.Send("pb 1 value 1"); - break; - } - } - - - - - [TestMethod, Timeout(120 * 60 * 1000)] - public void CreateZip_AddDirectory_LargeNumberOfSmallFiles() - { - // start the visible progress monitor - _txrx = TestUtilities.StartProgressMonitor("LargeNumberOfSmallFiles", - "Large # of Small Files", - "Creating files"); - int max1 = 0; - Action progressUpdate = (x, y) => { - if (x == 0) - { - _txrx.Send(String.Format("pb 1 max {0}", y)); - max1 = y; - } - else if (x == 2) - { - _txrx.Send(String.Format("pb 1 value {0}", y)); - _txrx.Send(String.Format("status creating directory {0} of {1}", - y, max1)); - } - else if (x == 4) - { - _txrx.Send(String.Format("status done creating {0} files", y)); - } - }; - - int[][] settings = { - // sizes and numbers of files/directories to create - new int[] {71, 21, 97, 27, 200, 200 }, - new int[] {51, 171, 47, 197, 100, 100 }, - }; - _txrx.Send(String.Format("pb 0 max {0}", settings.Length * 2)); - TestContext.WriteLine("============================================"); - TestContext.WriteLine("Test beginning - {0}", DateTime.Now.ToString("G")); - for (int m = 0; m < settings.Length; m++) - { - string zipFileToCreate = String.Format("LrgNumOfSmallFiles-{0}.zip", m); - string dirToZip = "zipthis" + m; - Directory.CreateDirectory(dirToZip); - TestContext.WriteLine("============================================"); - TestContext.WriteLine("Creating files, cycle {0}...", m); - - int subdirCount = 0; - int entries = - TestUtilities.GenerateFilesOneLevelDeep(TestContext, - "LargeNumberOfFiles", - dirToZip, - settings[m], - progressUpdate, - out subdirCount); - _numEntriesToAdd = entries; // used in LNSF_AddProgress - _numEntriesAdded = 0; - - _txrx.Send("pb 0 step"); - TestContext.WriteLine("============================================"); - TestContext.WriteLine("Total of {0} files in {1} subdirs", - entries, subdirCount); - TestContext.WriteLine("Creating zip - {0}", DateTime.Now.ToString("G")); - Directory.SetCurrentDirectory(TopLevelDir); - _pb1Set = false; - using (ZipFile zip = new ZipFile()) - { - zip.AddProgress += LNSF_AddProgress; - zip.AddDirectory(Path.GetFileName(dirToZip)); - _txrx.Send("test Large # of Small Files"); // for good measure - zip.BufferSize = 4096; - zip.SortEntriesBeforeSaving = true; - zip.SaveProgress += LNSF_SaveProgress; - zip.Save(zipFileToCreate); - } - - _txrx.Send("pb 0 step"); - - TestContext.WriteLine("Checking zip - {0}", DateTime.Now.ToString("G")); - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries); - - _txrx.Send("status cleaning up..."); - // clean up for this cycle - Directory.Delete(dirToZip, true); - } - TestContext.WriteLine("============================================"); - TestContext.WriteLine("Test end - {0}", DateTime.Now.ToString("G")); - } - - - - void LF_SaveProgress(object sender, SaveProgressEventArgs e) - { - string msg; - switch (e.EventType) - { - case ZipProgressEventType.Saving_Started: - _txrx.Send("status saving started..."); - _pb1Set = false; - //_txrx.Send(String.Format("pb1 max {0}", e.EntriesTotal)); - //_txrx.Send("pb2 max 1"); - break; - - case ZipProgressEventType.Saving_BeforeWriteEntry: - _txrx.Send(String.Format("status Compressing {0}", e.CurrentEntry.FileName)); - if (!_pb1Set) - { - _txrx.Send(String.Format("pb 1 max {0}", e.EntriesTotal)); - _pb1Set = true; - } - _pb2Set = false; - _spCycles = 0; - break; - - case ZipProgressEventType.Saving_EntryBytesRead: - _spCycles++; - if ((_spCycles % 32) == 0) - { - if (!_pb2Set) - { - _txrx.Send(String.Format("pb 2 max {0}", e.TotalBytesToTransfer)); - _pb2Set = true; - } - _txrx.Send(String.Format("status Saving {0} :: [{1}/{2}mb] ({3:N0}%)", - e.CurrentEntry.FileName, - e.BytesTransferred / (1024 * 1024), e.TotalBytesToTransfer / (1024 * 1024), - ((double)e.BytesTransferred) / (0.01 * e.TotalBytesToTransfer) - )); - msg = String.Format("pb 2 value {0}", e.BytesTransferred); - _txrx.Send(msg); - Assert.IsTrue(e.BytesTransferred <= e.TotalBytesToTransfer); - } - if (maxBytesXferred < e.BytesTransferred) - maxBytesXferred = e.BytesTransferred; - break; - - case ZipProgressEventType.Saving_AfterWriteEntry: - _txrx.Send("pb 1 step"); - break; - - case ZipProgressEventType.Saving_Completed: - _txrx.Send("status Save completed"); - _pb1Set = false; - _pb2Set = false; - _txrx.Send("pb 1 max 1"); - _txrx.Send("pb 1 value 1"); - break; - } - } - - - - void LF_ExtractProgress(object sender, ExtractProgressEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Extracting_BeforeExtractEntry: - if (!_pb1Set) - { - _txrx.Send(String.Format("pb 1 max {0}", _numFilesToExtract)); - _pb1Set = true; - } - _pb2Set = false; - _epCycles=0; - break; - - case ZipProgressEventType.Extracting_EntryBytesWritten: - _epCycles++; - if ((_epCycles % 32) == 0) - { - if (!_pb2Set) - { - _txrx.Send(String.Format("pb 2 max {0}", e.TotalBytesToTransfer)); - _pb2Set = true; - } - _txrx.Send(String.Format("status Extracting {0} :: [{1}/{2}mb] ({3:N0}%)", - e.CurrentEntry.FileName, - e.BytesTransferred/(1024*1024), - e.TotalBytesToTransfer/(1024*1024), - ((double)e.BytesTransferred / (0.01 * e.TotalBytesToTransfer)) - )); - string msg = String.Format("pb 2 value {0}", e.BytesTransferred); - _txrx.Send(msg); - } - if (maxBytesXferred < e.BytesTransferred) - maxBytesXferred = e.BytesTransferred; - break; - - case ZipProgressEventType.Extracting_AfterExtractEntry: - _txrx.Send("pb 1 step"); - break; - } - } - - - void InjectNoise(string fileName) - { - var finfo = new FileInfo(fileName); - var flen = finfo.Length; - var segmentSize = flen/128; - var bytes = new byte[Math.Min(segmentSize,128)]; - using (var fs = File.Open(fileName, FileMode.Open, FileAccess.ReadWrite)) - { - while (fs.Position < flen - segmentSize - 8) - { - var t = _rnd.Next((int)segmentSize) + 8; - fs.Seek(t, SeekOrigin.Current); - _rnd.NextBytes(bytes); - fs.Write(bytes, 0, bytes.Length/2+_rnd.Next(bytes.Length/2)); - } - } - } - - - - [TestMethod, Timeout(60 * 60 * 1000)] - public void LargeFile_WithProgress() - { - // This test checks the Int64 limits in progress events (Save + Extract) - TestContext.WriteLine("Test beginning {0}", System.DateTime.Now.ToString("G")); - - _txrx = TestUtilities.StartProgressMonitor("LargeFile_WithProgress", - "Large File Save and Extract", - "Creating a large file..."); - - _txrx.Send("bars 3"); - System.Threading.Thread.Sleep(120); - _txrx.Send("pb 0 max 3"); - - string zipFileToCreate = "LargeFile_WithProgress.zip"; - string unpackDir = "unpack"; - string dirToZip = "LargeFile"; - string baseName = "LargeFile.bin"; - Directory.CreateDirectory(dirToZip); - - Int64 minFileSize = 0x7FFFFFFFL + _rnd.Next(1000000); - TestContext.WriteLine("Creating a large file, size>={0}", minFileSize); - string filename = Path.Combine(dirToZip, baseName); - _txrx.Send(String.Format("pb 1 max {0}", minFileSize)); - - Action progressUpdate = (x) => - { - _txrx.Send(String.Format("pb 1 value {0}", x)); - _txrx.Send(String.Format("status Creating a large file, ({0}/{1}mb) ({2:N0}%)", - x / (1024 * 1024), minFileSize / (1024 * 1024), - ((double)x) / (0.01 * minFileSize))); - }; - - // this will take about a minute - TestUtilities.CreateAndFillFileBinaryZeroes(filename, minFileSize, progressUpdate); - - InjectNoise(filename); - - _txrx.Send("pb 0 step"); - var finfo = new FileInfo(filename); - var actualFileSize = finfo.Length; - - TestContext.WriteLine("File Create complete {0}", System.DateTime.Now.ToString("G")); - - maxBytesXferred = 0; - using (ZipFile zip1 = new ZipFile()) - { - zip1.SaveProgress += LF_SaveProgress; - zip1.Comment = "This is the comment on the zip archive."; - zip1.AddEntry("Readme.txt", "This is some content."); - zip1.AddDirectory(dirToZip, dirToZip); - zip1.BufferSize = 65536 * 8; // 512k - zip1.CodecBufferSize = 65536 * 2; // 128k - zip1.Save(zipFileToCreate); - } - - _txrx.Send("pb 0 step"); - TestContext.WriteLine("Save complete {0}", System.DateTime.Now.ToString("G")); - Assert.AreEqual(actualFileSize, maxBytesXferred); - var chk1 = TestUtilities.ComputeChecksum(filename); - - // remove the large file before extracting - Directory.Delete(dirToZip, true); - - _pb1Set = _pb2Set = false; - maxBytesXferred = 0; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - _numFilesToExtract = zip2.Entries.Count; - zip2.ExtractProgress += LF_ExtractProgress; - zip2.BufferSize = 65536 * 8; - zip2.ExtractAll(unpackDir); - } - - _txrx.Send("pb 0 step"); - - TestContext.WriteLine("Extract complete {0}", System.DateTime.Now.ToString("G")); - Assert.AreEqual(actualFileSize, maxBytesXferred); - var exFile = Path.Combine(unpackDir, Path.Combine(dirToZip, baseName)); - var chk2 = TestUtilities.ComputeChecksum(exFile); - - string s1 = TestUtilities.CheckSumToString(chk1); - string s2 = TestUtilities.CheckSumToString(chk2); - Assert.AreEqual(s1,s2); - TestContext.WriteLine(" Checksums match ({0}).\n", s2); - TestContext.WriteLine("Test complete {0}", System.DateTime.Now.ToString("G")); - } - - - } - +// LongRunning.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2011 Dino Chiesa +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-June-19 21:51:30> +// +// ------------------------------------------------------------------ +// +// This module some long-running unit tests for DotNetZip: tests for +// saving very large numbers of files, very large (multi-GB) files, and so on. +// +// ------------------------------------------------------------------ + +using System; +using System.Text; +using System.Collections.Generic; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using RE = System.Text.RegularExpressions; + +using Ionic.Zip; +using Ionic.Zip.Tests.Utilities; +using System.IO; + +namespace Ionic.Zip.Tests.LongRunning +{ + /// + /// Summary description for LongRunning + /// + [TestClass] + public class LongRunning : IonicTestClass + { + Int64 maxBytesXferred = 0; + bool _pb1Set; + bool _pb2Set; + int _numEntriesSaved = 0; + int _numEntriesToAdd = 0; + int _numEntriesAdded = 0; + int _numFilesToExtract; + int _spCycles; + int _epCycles; + + + void LNSF_SaveProgress(object sender, Ionic.Zip.SaveProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Saving_Started: + _numEntriesSaved = 0; + _txrx.Send("status saving started..."); + _pb1Set = false; + break; + + case ZipProgressEventType.Saving_BeforeWriteEntry: + _numEntriesSaved++; + if (_numEntriesSaved % 64 == 0) + _txrx.Send(String.Format("status Compressing {0}", e.CurrentEntry.FileName)); + if (!_pb1Set) + { + _txrx.Send(String.Format("pb 1 max {0}", e.EntriesTotal)); + _pb1Set = true; + } + break; + + case ZipProgressEventType.Saving_EntryBytesRead: + Assert.IsTrue(e.BytesTransferred <= e.TotalBytesToTransfer); + break; + + case ZipProgressEventType.Saving_AfterWriteEntry: + _txrx.Send("pb 1 step"); + break; + + case ZipProgressEventType.Saving_Completed: + _txrx.Send("status Save completed"); + _pb1Set = false; + _txrx.Send("pb 1 max 1"); + _txrx.Send("pb 1 value 1"); + break; + } + } + + + void LNSF_AddProgress(object sender, AddProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Adding_Started: + _txrx.Send("status Adding files to the zip..."); + _pb1Set = false; + break; + + case ZipProgressEventType.Adding_AfterAddEntry: + if (!_pb1Set) + { + _txrx.Send(String.Format("pb 1 max {0}", _numEntriesToAdd)); + _pb1Set = true; + } + if (!e.CurrentEntry.FileName.EndsWith("/")) + { + _numEntriesAdded++; + if (_numEntriesAdded % 64 == 0) + _txrx.Send(String.Format("status Adding file {0}/{1} :: {2}", + _numEntriesAdded, _numEntriesToAdd, e.CurrentEntry.FileName)); + _txrx.Send("pb 1 step"); + } + break; + + case ZipProgressEventType.Adding_Completed: + _txrx.Send("status Added all files"); + _pb1Set = false; + _txrx.Send("pb 1 max 1"); + _txrx.Send("pb 1 value 1"); + break; + } + } + + + + + [TestMethod, Timeout(120 * 60 * 1000)] + public void CreateZip_AddDirectory_LargeNumberOfSmallFiles() + { + // start the visible progress monitor + _txrx = TestUtilities.StartProgressMonitor("LargeNumberOfSmallFiles", + "Large # of Small Files", + "Creating files"); + int max1 = 0; + Action progressUpdate = (x, y) => { + if (x == 0) + { + _txrx.Send(String.Format("pb 1 max {0}", y)); + max1 = y; + } + else if (x == 2) + { + _txrx.Send(String.Format("pb 1 value {0}", y)); + _txrx.Send(String.Format("status creating directory {0} of {1}", + y, max1)); + } + else if (x == 4) + { + _txrx.Send(String.Format("status done creating {0} files", y)); + } + }; + + int[][] settings = { + // sizes and numbers of files/directories to create + new int[] {71, 21, 97, 27, 200, 200 }, + new int[] {51, 171, 47, 197, 100, 100 }, + }; + _txrx.Send(String.Format("pb 0 max {0}", settings.Length * 2)); + TestContext.WriteLine("============================================"); + TestContext.WriteLine("Test beginning - {0}", DateTime.Now.ToString("G")); + for (int m = 0; m < settings.Length; m++) + { + string zipFileToCreate = String.Format("LrgNumOfSmallFiles-{0}.zip", m); + string dirToZip = "zipthis" + m; + Directory.CreateDirectory(dirToZip); + TestContext.WriteLine("============================================"); + TestContext.WriteLine("Creating files, cycle {0}...", m); + + int subdirCount = 0; + int entries = + TestUtilities.GenerateFilesOneLevelDeep(TestContext, + "LargeNumberOfFiles", + dirToZip, + settings[m], + progressUpdate, + out subdirCount); + _numEntriesToAdd = entries; // used in LNSF_AddProgress + _numEntriesAdded = 0; + + _txrx.Send("pb 0 step"); + TestContext.WriteLine("============================================"); + TestContext.WriteLine("Total of {0} files in {1} subdirs", + entries, subdirCount); + TestContext.WriteLine("Creating zip - {0}", DateTime.Now.ToString("G")); + Directory.SetCurrentDirectory(TopLevelDir); + _pb1Set = false; + using (ZipFile zip = new ZipFile()) + { + zip.AddProgress += LNSF_AddProgress; + zip.AddDirectory(Path.GetFileName(dirToZip)); + _txrx.Send("test Large # of Small Files"); // for good measure + zip.BufferSize = 4096; + zip.SortEntriesBeforeSaving = true; + zip.SaveProgress += LNSF_SaveProgress; + zip.Save(zipFileToCreate); + } + + _txrx.Send("pb 0 step"); + + TestContext.WriteLine("Checking zip - {0}", DateTime.Now.ToString("G")); + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries); + + _txrx.Send("status cleaning up..."); + // clean up for this cycle + Directory.Delete(dirToZip, true); + } + TestContext.WriteLine("============================================"); + TestContext.WriteLine("Test end - {0}", DateTime.Now.ToString("G")); + } + + + + void LF_SaveProgress(object sender, SaveProgressEventArgs e) + { + string msg; + switch (e.EventType) + { + case ZipProgressEventType.Saving_Started: + _txrx.Send("status saving started..."); + _pb1Set = false; + //_txrx.Send(String.Format("pb1 max {0}", e.EntriesTotal)); + //_txrx.Send("pb2 max 1"); + break; + + case ZipProgressEventType.Saving_BeforeWriteEntry: + _txrx.Send(String.Format("status Compressing {0}", e.CurrentEntry.FileName)); + if (!_pb1Set) + { + _txrx.Send(String.Format("pb 1 max {0}", e.EntriesTotal)); + _pb1Set = true; + } + _pb2Set = false; + _spCycles = 0; + break; + + case ZipProgressEventType.Saving_EntryBytesRead: + _spCycles++; + if ((_spCycles % 32) == 0) + { + if (!_pb2Set) + { + _txrx.Send(String.Format("pb 2 max {0}", e.TotalBytesToTransfer)); + _pb2Set = true; + } + _txrx.Send(String.Format("status Saving {0} :: [{1}/{2}mb] ({3:N0}%)", + e.CurrentEntry.FileName, + e.BytesTransferred / (1024 * 1024), e.TotalBytesToTransfer / (1024 * 1024), + ((double)e.BytesTransferred) / (0.01 * e.TotalBytesToTransfer) + )); + msg = String.Format("pb 2 value {0}", e.BytesTransferred); + _txrx.Send(msg); + Assert.IsTrue(e.BytesTransferred <= e.TotalBytesToTransfer); + } + if (maxBytesXferred < e.BytesTransferred) + maxBytesXferred = e.BytesTransferred; + break; + + case ZipProgressEventType.Saving_AfterWriteEntry: + _txrx.Send("pb 1 step"); + break; + + case ZipProgressEventType.Saving_Completed: + _txrx.Send("status Save completed"); + _pb1Set = false; + _pb2Set = false; + _txrx.Send("pb 1 max 1"); + _txrx.Send("pb 1 value 1"); + break; + } + } + + + + void LF_ExtractProgress(object sender, ExtractProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Extracting_BeforeExtractEntry: + if (!_pb1Set) + { + _txrx.Send(String.Format("pb 1 max {0}", _numFilesToExtract)); + _pb1Set = true; + } + _pb2Set = false; + _epCycles=0; + break; + + case ZipProgressEventType.Extracting_EntryBytesWritten: + _epCycles++; + if ((_epCycles % 32) == 0) + { + if (!_pb2Set) + { + _txrx.Send(String.Format("pb 2 max {0}", e.TotalBytesToTransfer)); + _pb2Set = true; + } + _txrx.Send(String.Format("status Extracting {0} :: [{1}/{2}mb] ({3:N0}%)", + e.CurrentEntry.FileName, + e.BytesTransferred/(1024*1024), + e.TotalBytesToTransfer/(1024*1024), + ((double)e.BytesTransferred / (0.01 * e.TotalBytesToTransfer)) + )); + string msg = String.Format("pb 2 value {0}", e.BytesTransferred); + _txrx.Send(msg); + } + if (maxBytesXferred < e.BytesTransferred) + maxBytesXferred = e.BytesTransferred; + break; + + case ZipProgressEventType.Extracting_AfterExtractEntry: + _txrx.Send("pb 1 step"); + break; + } + } + + + void InjectNoise(string fileName) + { + var finfo = new FileInfo(fileName); + var flen = finfo.Length; + var segmentSize = flen/128; + var bytes = new byte[Math.Min(segmentSize,128)]; + using (var fs = File.Open(fileName, FileMode.Open, FileAccess.ReadWrite)) + { + while (fs.Position < flen - segmentSize - 8) + { + var t = _rnd.Next((int)segmentSize) + 8; + fs.Seek(t, SeekOrigin.Current); + _rnd.NextBytes(bytes); + fs.Write(bytes, 0, bytes.Length/2+_rnd.Next(bytes.Length/2)); + } + } + } + + + + [TestMethod, Timeout(60 * 60 * 1000)] + public void LargeFile_WithProgress() + { + // This test checks the Int64 limits in progress events (Save + Extract) + TestContext.WriteLine("Test beginning {0}", System.DateTime.Now.ToString("G")); + + _txrx = TestUtilities.StartProgressMonitor("LargeFile_WithProgress", + "Large File Save and Extract", + "Creating a large file..."); + + _txrx.Send("bars 3"); + System.Threading.Thread.Sleep(120); + _txrx.Send("pb 0 max 3"); + + string zipFileToCreate = "LargeFile_WithProgress.zip"; + string unpackDir = "unpack"; + string dirToZip = "LargeFile"; + string baseName = "LargeFile.bin"; + Directory.CreateDirectory(dirToZip); + + Int64 minFileSize = 0x7FFFFFFFL + _rnd.Next(1000000); + TestContext.WriteLine("Creating a large file, size>={0}", minFileSize); + string filename = Path.Combine(dirToZip, baseName); + _txrx.Send(String.Format("pb 1 max {0}", minFileSize)); + + Action progressUpdate = (x) => + { + _txrx.Send(String.Format("pb 1 value {0}", x)); + _txrx.Send(String.Format("status Creating a large file, ({0}/{1}mb) ({2:N0}%)", + x / (1024 * 1024), minFileSize / (1024 * 1024), + ((double)x) / (0.01 * minFileSize))); + }; + + // this will take about a minute + TestUtilities.CreateAndFillFileBinaryZeroes(filename, minFileSize, progressUpdate); + + InjectNoise(filename); + + _txrx.Send("pb 0 step"); + var finfo = new FileInfo(filename); + var actualFileSize = finfo.Length; + + TestContext.WriteLine("File Create complete {0}", System.DateTime.Now.ToString("G")); + + maxBytesXferred = 0; + using (ZipFile zip1 = new ZipFile()) + { + zip1.SaveProgress += LF_SaveProgress; + zip1.Comment = "This is the comment on the zip archive."; + zip1.AddEntry("Readme.txt", "This is some content."); + zip1.AddDirectory(dirToZip, dirToZip); + zip1.BufferSize = 65536 * 8; // 512k + zip1.CodecBufferSize = 65536 * 2; // 128k + zip1.Save(zipFileToCreate); + } + + _txrx.Send("pb 0 step"); + TestContext.WriteLine("Save complete {0}", System.DateTime.Now.ToString("G")); + Assert.AreEqual(actualFileSize, maxBytesXferred); + var chk1 = TestUtilities.ComputeChecksum(filename); + + // remove the large file before extracting + Directory.Delete(dirToZip, true); + + _pb1Set = _pb2Set = false; + maxBytesXferred = 0; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + _numFilesToExtract = zip2.Entries.Count; + zip2.ExtractProgress += LF_ExtractProgress; + zip2.BufferSize = 65536 * 8; + zip2.ExtractAll(unpackDir); + } + + _txrx.Send("pb 0 step"); + + TestContext.WriteLine("Extract complete {0}", System.DateTime.Now.ToString("G")); + Assert.AreEqual(actualFileSize, maxBytesXferred); + var exFile = Path.Combine(unpackDir, Path.Combine(dirToZip, baseName)); + var chk2 = TestUtilities.ComputeChecksum(exFile); + + string s1 = TestUtilities.CheckSumToString(chk1); + string s2 = TestUtilities.CheckSumToString(chk2); + Assert.AreEqual(s1,s2); + TestContext.WriteLine(" Checksums match ({0}).\n", s2); + TestContext.WriteLine("Test complete {0}", System.DateTime.Now.ToString("G")); + } + + + } + } \ No newline at end of file diff --git a/src/Zip Tests/NonSeekableOutputStream.cs b/old/src/Zip Tests/NonSeekableOutputStream.cs similarity index 95% rename from src/Zip Tests/NonSeekableOutputStream.cs rename to old/src/Zip Tests/NonSeekableOutputStream.cs index d8ef785..8938f5e 100644 --- a/src/Zip Tests/NonSeekableOutputStream.cs +++ b/old/src/Zip Tests/NonSeekableOutputStream.cs @@ -1,101 +1,101 @@ -// NonSeekableOutputStream.cs -// ------------------------------------------------------------------ -// -// Need a non-seekable output stream to test ZIP construction. -// -// ------------------------------------------------------------------ -// -// Copyright (c) 2009 by Dino Chiesa -// All rights reserved! -// -// ------------------------------------------------------------------ - - -using System; -using System.IO; - - -namespace Ionic.Zip.Tests -{ - public class NonSeekableOutputStream : Stream - { - protected Stream _s; - protected bool _disposed; - - public NonSeekableOutputStream (Stream s) : base() - { - if (!s.CanWrite) - throw new NotSupportedException(); - _s = s; - } - - public override int Read(byte[] buffer, int offset, int count) - { - throw new NotSupportedException(); - } - - public override void Write(byte[] buffer, int offset, int count) - { - _s.Write(buffer, offset, count); - } - - public override bool CanRead - { - get { return false; } - } - - public override bool CanSeek - { - get { return false; } - } - - public override bool CanWrite - { - get { return true; } - } - - public override void Flush() - { - _s.Flush(); - } - - public override long Length - { - get { return _s.Length; } - } - - public override long Position - { - get { return _s.Position; } - set { _s.Position = value; } - } - - public override long Seek(long offset, System.IO.SeekOrigin origin) - { - throw new NotSupportedException(); - } - - public override void SetLength(long value) - { - _s.SetLength(value); - } - - protected override void Dispose(bool disposing) - { - try - { - if (!_disposed) - { - if (disposing && (this._s != null)) - this._s.Dispose(); - _disposed = true; - } - } - finally - { - base.Dispose(disposing); - } - } - - } -} +// NonSeekableOutputStream.cs +// ------------------------------------------------------------------ +// +// Need a non-seekable output stream to test ZIP construction. +// +// ------------------------------------------------------------------ +// +// Copyright (c) 2009 by Dino Chiesa +// All rights reserved! +// +// ------------------------------------------------------------------ + + +using System; +using System.IO; + + +namespace Ionic.Zip.Tests +{ + public class NonSeekableOutputStream : Stream + { + protected Stream _s; + protected bool _disposed; + + public NonSeekableOutputStream (Stream s) : base() + { + if (!s.CanWrite) + throw new NotSupportedException(); + _s = s; + } + + public override int Read(byte[] buffer, int offset, int count) + { + throw new NotSupportedException(); + } + + public override void Write(byte[] buffer, int offset, int count) + { + _s.Write(buffer, offset, count); + } + + public override bool CanRead + { + get { return false; } + } + + public override bool CanSeek + { + get { return false; } + } + + public override bool CanWrite + { + get { return true; } + } + + public override void Flush() + { + _s.Flush(); + } + + public override long Length + { + get { return _s.Length; } + } + + public override long Position + { + get { return _s.Position; } + set { _s.Position = value; } + } + + public override long Seek(long offset, System.IO.SeekOrigin origin) + { + throw new NotSupportedException(); + } + + public override void SetLength(long value) + { + _s.SetLength(value); + } + + protected override void Dispose(bool disposing) + { + try + { + if (!_disposed) + { + if (disposing && (this._s != null)) + this._s.Dispose(); + _disposed = true; + } + } + finally + { + base.Dispose(disposing); + } + } + + } +} diff --git a/src/Zip Tests/PasswordTests.cs b/old/src/Zip Tests/PasswordTests.cs similarity index 100% rename from src/Zip Tests/PasswordTests.cs rename to old/src/Zip Tests/PasswordTests.cs diff --git a/src/Zip Tests/Progress.cs b/old/src/Zip Tests/Progress.cs similarity index 97% rename from src/Zip Tests/Progress.cs rename to old/src/Zip Tests/Progress.cs index 4db2c74..507bd83 100644 --- a/src/Zip Tests/Progress.cs +++ b/old/src/Zip Tests/Progress.cs @@ -1,162 +1,162 @@ -// Progress.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009 Dino Chiesa and Microsoft Corporation. -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2010-January-21 11:14:35> -// -// ------------------------------------------------------------------ -// -// This module defines the tests for progress events in DotNetZip. -// -// ------------------------------------------------------------------ - - -using System; -using System.Text; -using System.Collections.Generic; -using System.Linq; -using Microsoft.VisualStudio.TestTools.UnitTesting; - -using Ionic.Zip; -using Ionic.Zip.Tests.Utilities; -using System.IO; - - -namespace Ionic.Zip.Tests -{ - /// - /// Summary description for Compatibility - /// - [TestClass] - public class Progress : IonicTestClass - { - public Progress() : base() { } - - private System.Reflection.Assembly _myself; - private System.Reflection.Assembly myself - { - get - { - if (_myself == null) - { - _myself = System.Reflection.Assembly.GetExecutingAssembly(); - } - return _myself; - } - } - - - void ReadProgress1(object sender, ReadProgressEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Reading_Started: - TestContext.WriteLine("Reading_Started"); - break; - case ZipProgressEventType.Reading_Completed: - TestContext.WriteLine("Reading_Completed"); - break; - case ZipProgressEventType.Reading_BeforeReadEntry: - TestContext.WriteLine("Reading_BeforeReadEntry"); - break; - case ZipProgressEventType.Reading_AfterReadEntry: - TestContext.WriteLine("Reading_AfterReadEntry: {0}", - e.CurrentEntry.FileName); - break; - case ZipProgressEventType.Reading_ArchiveBytesRead: - break; - } - } - - - - [TestMethod] - public void Progress_ReadFile() - { - Directory.SetCurrentDirectory(TopLevelDir); - string zipFileToCreate = Path.Combine(TopLevelDir, "Progress_ReadFile.zip"); - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - - var files = TestUtilities.GenerateFilesFlat(dirToZip); - - using (ZipFile zip = new ZipFile()) - { - zip.AddFiles(files); - zip.Save(zipFileToCreate); - } - - int count = TestUtilities.CountEntries(zipFileToCreate); - Assert.IsTrue(count>0); - - var options = new ReadOptions { - StatusMessageWriter = new StringWriter(), - ReadProgress = ReadProgress1 - }; - using (ZipFile zip = ZipFile.Read(zipFileToCreate, options)) - { - // this should be fine - zip.RemoveEntry(zip[1]); - zip.Save(); - } - TestContext.WriteLine(options.StatusMessageWriter.ToString()); - Assert.AreEqual(count, TestUtilities.CountEntries(zipFileToCreate)+1); - } - - - void AddProgress1(object sender, AddProgressEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Adding_Started: - TestContext.WriteLine("Adding_Started"); - break; - case ZipProgressEventType.Adding_Completed: - TestContext.WriteLine("Adding_Completed"); - break; - case ZipProgressEventType.Adding_AfterAddEntry: - TestContext.WriteLine("Adding_AfterAddEntry: {0}", - e.CurrentEntry.FileName); - break; - } - } - - - [TestMethod] - public void Progress_AddFiles() - { - Directory.SetCurrentDirectory(TopLevelDir); - string zipFileToCreate = Path.Combine(TopLevelDir, "Progress_AddFiles.zip"); - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - - var files = TestUtilities.GenerateFilesFlat(dirToZip); - - var sw = new StringWriter(); - using (ZipFile zip = new ZipFile(zipFileToCreate, sw)) - { - zip.AddProgress += AddProgress1; - zip.AddFiles(files); - zip.Save(); - } - TestContext.WriteLine(sw.ToString()); - - int count = TestUtilities.CountEntries(zipFileToCreate); - Assert.AreEqual(count, files.Length); - } - - } - - -} +// Progress.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009 Dino Chiesa and Microsoft Corporation. +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2010-January-21 11:14:35> +// +// ------------------------------------------------------------------ +// +// This module defines the tests for progress events in DotNetZip. +// +// ------------------------------------------------------------------ + + +using System; +using System.Text; +using System.Collections.Generic; +using System.Linq; +using Microsoft.VisualStudio.TestTools.UnitTesting; + +using Ionic.Zip; +using Ionic.Zip.Tests.Utilities; +using System.IO; + + +namespace Ionic.Zip.Tests +{ + /// + /// Summary description for Compatibility + /// + [TestClass] + public class Progress : IonicTestClass + { + public Progress() : base() { } + + private System.Reflection.Assembly _myself; + private System.Reflection.Assembly myself + { + get + { + if (_myself == null) + { + _myself = System.Reflection.Assembly.GetExecutingAssembly(); + } + return _myself; + } + } + + + void ReadProgress1(object sender, ReadProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Reading_Started: + TestContext.WriteLine("Reading_Started"); + break; + case ZipProgressEventType.Reading_Completed: + TestContext.WriteLine("Reading_Completed"); + break; + case ZipProgressEventType.Reading_BeforeReadEntry: + TestContext.WriteLine("Reading_BeforeReadEntry"); + break; + case ZipProgressEventType.Reading_AfterReadEntry: + TestContext.WriteLine("Reading_AfterReadEntry: {0}", + e.CurrentEntry.FileName); + break; + case ZipProgressEventType.Reading_ArchiveBytesRead: + break; + } + } + + + + [TestMethod] + public void Progress_ReadFile() + { + Directory.SetCurrentDirectory(TopLevelDir); + string zipFileToCreate = Path.Combine(TopLevelDir, "Progress_ReadFile.zip"); + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + + var files = TestUtilities.GenerateFilesFlat(dirToZip); + + using (ZipFile zip = new ZipFile()) + { + zip.AddFiles(files); + zip.Save(zipFileToCreate); + } + + int count = TestUtilities.CountEntries(zipFileToCreate); + Assert.IsTrue(count>0); + + var options = new ReadOptions { + StatusMessageWriter = new StringWriter(), + ReadProgress = ReadProgress1 + }; + using (ZipFile zip = ZipFile.Read(zipFileToCreate, options)) + { + // this should be fine + zip.RemoveEntry(zip[1]); + zip.Save(); + } + TestContext.WriteLine(options.StatusMessageWriter.ToString()); + Assert.AreEqual(count, TestUtilities.CountEntries(zipFileToCreate)+1); + } + + + void AddProgress1(object sender, AddProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Adding_Started: + TestContext.WriteLine("Adding_Started"); + break; + case ZipProgressEventType.Adding_Completed: + TestContext.WriteLine("Adding_Completed"); + break; + case ZipProgressEventType.Adding_AfterAddEntry: + TestContext.WriteLine("Adding_AfterAddEntry: {0}", + e.CurrentEntry.FileName); + break; + } + } + + + [TestMethod] + public void Progress_AddFiles() + { + Directory.SetCurrentDirectory(TopLevelDir); + string zipFileToCreate = Path.Combine(TopLevelDir, "Progress_AddFiles.zip"); + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + + var files = TestUtilities.GenerateFilesFlat(dirToZip); + + var sw = new StringWriter(); + using (ZipFile zip = new ZipFile(zipFileToCreate, sw)) + { + zip.AddProgress += AddProgress1; + zip.AddFiles(files); + zip.Save(); + } + TestContext.WriteLine(sw.ToString()); + + int count = TestUtilities.CountEntries(zipFileToCreate); + Assert.AreEqual(count, files.Length); + } + + } + + +} diff --git a/src/Zip Tests/Properties/AssemblyInfo.cs b/old/src/Zip Tests/Properties/AssemblyInfo.cs similarity index 100% rename from src/Zip Tests/Properties/AssemblyInfo.cs rename to old/src/Zip Tests/Properties/AssemblyInfo.cs diff --git a/src/Zip Tests/RandomBytesInputStream.cs b/old/src/Zip Tests/RandomBytesInputStream.cs similarity index 100% rename from src/Zip Tests/RandomBytesInputStream.cs rename to old/src/Zip Tests/RandomBytesInputStream.cs diff --git a/src/Zip Tests/RandomTextGenerator.cs b/old/src/Zip Tests/RandomTextGenerator.cs similarity index 96% rename from src/Zip Tests/RandomTextGenerator.cs rename to old/src/Zip Tests/RandomTextGenerator.cs index 8483e21..6c51639 100644 --- a/src/Zip Tests/RandomTextGenerator.cs +++ b/old/src/Zip Tests/RandomTextGenerator.cs @@ -1,461 +1,461 @@ -// RandomTextGenerator.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009 Dino Chiesa -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-July-13 16:37:19> -// -// ------------------------------------------------------------------ -// -// This module defines a class that generates random text sequences -// using a Markov chain. -// -// ------------------------------------------------------------------ - -using System; -using System.Collections.Generic; -using System.Text; -using System.Text.RegularExpressions; -using System.Net; -using System.IO; -using Ionic.Zip; -using Microsoft.VisualStudio.TestTools.UnitTesting; -using System.Threading; - -namespace Ionic.Zip.Tests.Utilities -{ - - public class RandomTextGenerator - { - static string[] uris = new string[] - { - // "Through the Looking Glass", by Lewis Carroll (~181k) - "http://www.gutenberg.org/files/12/12.txt", - - // Decl of Independence (~16k) - "http://www.gutenberg.org/files/16780/16780.txt", - - // Decl of Independence, alternative source - "http://www.constitution.org/usdeclar.txt", - - // Section 552a of the US code - on privacy for individuals - "http://www.opm.gov/feddata/usc552a.txt", - - // The Naval War of 1812, by Theodore Roosevelt (968k) - "http://www.gutenberg.org/dirs/etext05/7trnv10.txt", - - // On Prayer and the Contemplative Life, by Thomas Aquinas (440k) - "http://www.gutenberg.org/files/22295/22295.txt", - - // IETF RFC 1951 - the DEFLATE format - "http://www.ietf.org/rfc/rfc1951.txt", - - // pkware's appnote - "http://www.pkware.com/documents/casestudies/APPNOTE.TXT", - }; - - SimpleMarkovChain markov; - - public RandomTextGenerator() - { - System.Random rnd = new System.Random(); - string seedText = null; - int cycles = 0; - do { - try - { - string uri= uris[rnd.Next(uris.Length)]; - seedText = GetPageMarkup(uri); - } - catch (System.Net.WebException) - { - cycles++; - if (cycles>8) throw; - seedText = null; - } - } while (seedText == null); - - markov = new SimpleMarkovChain(seedText); - } - - - public string Generate(int length) - { - return markov.GenerateText(length); - } - - - private static string GetPageMarkup(string uri) - { - string pageData = null; - using (WebClient client = new WebClient()) - { - pageData = client.DownloadString(uri); - } - return pageData; - } - } - - - /// - /// Implements a simple Markov chain for text. - /// - /// - /// - /// Uses a Markov chain starting with some base texts to produce - /// random natural-ish text. This implementation is based on Pike's - /// perl implementation, see - /// http://cm.bell-labs.com/cm/cs/tpop/markov.pl - /// - public class SimpleMarkovChain - { - Dictionary> table = new Dictionary>(); - System.Random rnd = new System.Random(); - - public SimpleMarkovChain(string seed) - { - string NEWLINE = "\n"; - string key = NEWLINE; - var sr = new StringReader(seed); - string line; - while ((line = sr.ReadLine()) != null) - { - foreach (var word in line.SplitByWords()) - { - var w = (word == "") ? NEWLINE : word; // newline - if (word == "\r") w = NEWLINE; - - if (!table.ContainsKey(key)) table.Add(key, new List()); - table[key].Add(w); - key = w.ToLower().TrimPunctuation(); - } - } - if (!table.ContainsKey(key)) table.Add(key, new List()); - table[key].Add(NEWLINE); - key = NEWLINE; - } - - - internal void Diag() - { - Console.WriteLine("There are {0} keys in the table", table.Keys.Count); - foreach (string s in table.Keys) - { - string x = s.Replace("\n", "�"); - var y = table[s].ToArray(); - Console.WriteLine(" {0}: {1}", x, String.Join(", ", y)); - } - } - - internal void ShowList(string word) - { - string x = word.Replace("\n", "�"); - if (table.ContainsKey(word)) - { - var y = table[word].ToArray(); - var z = Array.ConvertAll(y, x1 => x1.Replace("\n", "�")); - Console.WriteLine(" {0}: {1}", x, String.Join(", ", z)); - } - else - Console.WriteLine(" {0}: -key not found-", x); - } - - private List _keywords; - private List keywords - { - get - { - if (_keywords == null) - _keywords = new List(table.Keys); - return _keywords; - } - } - - /// - /// Generates random text with a minimum character length. - /// - /// - /// - /// The minimum length of text, in characters, to produce. - /// - public string GenerateText(int minimumLength) - { - var chosenStartWord = keywords[rnd.Next(keywords.Count)]; - return _InternalGenerate(chosenStartWord, StopCriterion.NumberOfChars, minimumLength); - } - - /// - /// Generates random text with a minimum character length. - /// - /// - /// - /// The first sentence will start with the given start word. - /// - /// - /// - /// The minimum length of text, in characters, to produce. - /// - /// - /// The word to start with. If this word does not exist in the - /// seed text, the generation will fail. - /// - /// - /// - /// - public string GenerateText(string start, int minimumLength) - { - return _InternalGenerate(start, StopCriterion.NumberOfChars, minimumLength); - } - - /// - /// Generate random text with a minimum number of words. - /// - /// - /// - /// The first sentence will start with the given start word. - /// - /// - /// - /// The minimum number of words of text to produce. - /// - /// - /// The word to start with. If this word does not exist in the - /// seed text, the generation will fail. - /// - /// - /// - /// - public string GenerateWords(string start, int minimumWords) - { - return _InternalGenerate(start, StopCriterion.NumberOfWords, minimumWords); - } - - - /// - /// Generate random text with a minimum number of words. - /// - /// - /// - /// The minimum number of words of text to produce. - /// - /// - /// - public string GenerateWords(int minimumWords) - { - var chosenStartWord = keywords[rnd.Next(keywords.Count)]; - return _InternalGenerate(chosenStartWord, StopCriterion.NumberOfWords, minimumWords); - } - - - private string _InternalGenerate(string start, StopCriterion crit, int limit) - { - string w1 = start.ToLower(); - StringBuilder sb = new StringBuilder(); - sb.Append(start.Capitalize()); - - int consecutiveNewLines = 0; - string word = null; - string priorWord = null; - - // About the stop criteria: - // we keep going til we reach the specified number of words or chars, with the added - // proviso that we have to complete the in-flight sentence when the limit is reached. - - for (int i = 0; - (crit == StopCriterion.NumberOfWords && i < limit) || - (crit == StopCriterion.NumberOfChars && sb.Length < limit) || - consecutiveNewLines == 0; - i++) - { - if (table.ContainsKey(w1)) - { - var list = table[w1]; - int ix = rnd.Next(list.Count); - priorWord = word; - word = list[ix]; - if (word != "\n") - { - // capitalize - if (consecutiveNewLines > 0) - sb.Append(word.Capitalize()); - else - sb.Append(" ").Append(word); - - // words that end sentences get a newline - if (word.EndsWith(".")) - { - if (consecutiveNewLines == 0 || consecutiveNewLines == 1) - sb.Append("\n"); - consecutiveNewLines++; - } - else consecutiveNewLines = 0; - } - w1 = word.ToLower().TrimPunctuation(); - } - } - return sb.ToString(); - } - - - - private enum StopCriterion - { - NumberOfWords, - NumberOfChars - } - - } - - - - public class RandomTextInputStream : Stream - { - RandomTextGenerator _rtg; - Int64 _desiredLength; - Int64 _bytesRead; - System.Text.Encoding _encoding; - byte[][] _randomText; - System.Random _rnd; - int _gnt; - byte[] src = null; - private static readonly int _chunkSize = 1024 * 128; - private static readonly int _chunks = 48; - - public RandomTextInputStream(Int64 length) - : this(length, System.Text.Encoding.GetEncoding("ascii")) - { - } - - public RandomTextInputStream(Int64 length, System.Text.Encoding encoding) - : base() - { - _desiredLength = length; - _rtg = new RandomTextGenerator(); - _encoding = encoding; - _randomText = new byte[_chunks][]; - _rnd = new System.Random(); - } - - /// - /// for diagnostic purposes only - /// - public int GetNewTextCount - { - get - { - return _gnt; - } - } - - new public void Dispose() - { - Dispose(true); - } - - /// The Dispose method - protected override void Dispose(bool disposeManagedResources) - { - } - - private byte[] GetNewText() - { - _gnt++; - int nowServing = _rnd.Next(_chunks); - if (_randomText[nowServing]==null) - _randomText[nowServing] = _encoding.GetBytes(_rtg.Generate(_chunkSize)); - return _randomText[nowServing]; - } - - public Int64 BytesRead - { - get { return _bytesRead; } - } - - public override int Read(byte[] buffer, int offset, int count) - { - int bytesToReadThisTime = count; - if (_desiredLength - _bytesRead < bytesToReadThisTime) - bytesToReadThisTime = unchecked((int)(_desiredLength - _bytesRead)); - - int bytesToRead = bytesToReadThisTime; - while (bytesToRead > 0) - { - src = GetNewText(); - int bytesAvailable = src.Length; - int chunksize = (bytesToRead > bytesAvailable) - ? bytesAvailable - : bytesToRead; - - Buffer.BlockCopy(src, 0, buffer, offset, chunksize); - bytesToRead -= chunksize; - offset += chunksize; - } - _bytesRead += bytesToReadThisTime; - return bytesToReadThisTime; - } - - public override void Write(byte[] buffer, int offset, int count) - { - throw new NotSupportedException(); - } - - public override bool CanRead - { - get { return true; } - } - public override bool CanSeek - { - get { return false; } - } - - public override bool CanWrite - { - get { return false; } - } - - public override long Length - { - get { return _desiredLength; } - } - - public override long Position - { - get { return _desiredLength - _bytesRead; } - set - { - throw new NotSupportedException(); - } - } - - public override long Seek(long offset, System.IO.SeekOrigin origin) - { - throw new NotSupportedException(); - } - - public override void SetLength(long value) - { - if (value < _bytesRead) - throw new NotSupportedException(); - _desiredLength = value; - } - - public override void Flush() - { - } - } - - - -} +// RandomTextGenerator.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009 Dino Chiesa +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-July-13 16:37:19> +// +// ------------------------------------------------------------------ +// +// This module defines a class that generates random text sequences +// using a Markov chain. +// +// ------------------------------------------------------------------ + +using System; +using System.Collections.Generic; +using System.Text; +using System.Text.RegularExpressions; +using System.Net; +using System.IO; +using Ionic.Zip; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using System.Threading; + +namespace Ionic.Zip.Tests.Utilities +{ + + public class RandomTextGenerator + { + static string[] uris = new string[] + { + // "Through the Looking Glass", by Lewis Carroll (~181k) + "http://www.gutenberg.org/files/12/12.txt", + + // Decl of Independence (~16k) + "http://www.gutenberg.org/files/16780/16780.txt", + + // Decl of Independence, alternative source + "http://www.constitution.org/usdeclar.txt", + + // Section 552a of the US code - on privacy for individuals + "http://www.opm.gov/feddata/usc552a.txt", + + // The Naval War of 1812, by Theodore Roosevelt (968k) + "http://www.gutenberg.org/dirs/etext05/7trnv10.txt", + + // On Prayer and the Contemplative Life, by Thomas Aquinas (440k) + "http://www.gutenberg.org/files/22295/22295.txt", + + // IETF RFC 1951 - the DEFLATE format + "http://www.ietf.org/rfc/rfc1951.txt", + + // pkware's appnote + "http://www.pkware.com/documents/casestudies/APPNOTE.TXT", + }; + + SimpleMarkovChain markov; + + public RandomTextGenerator() + { + System.Random rnd = new System.Random(); + string seedText = null; + int cycles = 0; + do { + try + { + string uri= uris[rnd.Next(uris.Length)]; + seedText = GetPageMarkup(uri); + } + catch (System.Net.WebException) + { + cycles++; + if (cycles>8) throw; + seedText = null; + } + } while (seedText == null); + + markov = new SimpleMarkovChain(seedText); + } + + + public string Generate(int length) + { + return markov.GenerateText(length); + } + + + private static string GetPageMarkup(string uri) + { + string pageData = null; + using (WebClient client = new WebClient()) + { + pageData = client.DownloadString(uri); + } + return pageData; + } + } + + + /// + /// Implements a simple Markov chain for text. + /// + /// + /// + /// Uses a Markov chain starting with some base texts to produce + /// random natural-ish text. This implementation is based on Pike's + /// perl implementation, see + /// http://cm.bell-labs.com/cm/cs/tpop/markov.pl + /// + public class SimpleMarkovChain + { + Dictionary> table = new Dictionary>(); + System.Random rnd = new System.Random(); + + public SimpleMarkovChain(string seed) + { + string NEWLINE = "\n"; + string key = NEWLINE; + var sr = new StringReader(seed); + string line; + while ((line = sr.ReadLine()) != null) + { + foreach (var word in line.SplitByWords()) + { + var w = (word == "") ? NEWLINE : word; // newline + if (word == "\r") w = NEWLINE; + + if (!table.ContainsKey(key)) table.Add(key, new List()); + table[key].Add(w); + key = w.ToLower().TrimPunctuation(); + } + } + if (!table.ContainsKey(key)) table.Add(key, new List()); + table[key].Add(NEWLINE); + key = NEWLINE; + } + + + internal void Diag() + { + Console.WriteLine("There are {0} keys in the table", table.Keys.Count); + foreach (string s in table.Keys) + { + string x = s.Replace("\n", "�"); + var y = table[s].ToArray(); + Console.WriteLine(" {0}: {1}", x, String.Join(", ", y)); + } + } + + internal void ShowList(string word) + { + string x = word.Replace("\n", "�"); + if (table.ContainsKey(word)) + { + var y = table[word].ToArray(); + var z = Array.ConvertAll(y, x1 => x1.Replace("\n", "�")); + Console.WriteLine(" {0}: {1}", x, String.Join(", ", z)); + } + else + Console.WriteLine(" {0}: -key not found-", x); + } + + private List _keywords; + private List keywords + { + get + { + if (_keywords == null) + _keywords = new List(table.Keys); + return _keywords; + } + } + + /// + /// Generates random text with a minimum character length. + /// + /// + /// + /// The minimum length of text, in characters, to produce. + /// + public string GenerateText(int minimumLength) + { + var chosenStartWord = keywords[rnd.Next(keywords.Count)]; + return _InternalGenerate(chosenStartWord, StopCriterion.NumberOfChars, minimumLength); + } + + /// + /// Generates random text with a minimum character length. + /// + /// + /// + /// The first sentence will start with the given start word. + /// + /// + /// + /// The minimum length of text, in characters, to produce. + /// + /// + /// The word to start with. If this word does not exist in the + /// seed text, the generation will fail. + /// + /// + /// + /// + public string GenerateText(string start, int minimumLength) + { + return _InternalGenerate(start, StopCriterion.NumberOfChars, minimumLength); + } + + /// + /// Generate random text with a minimum number of words. + /// + /// + /// + /// The first sentence will start with the given start word. + /// + /// + /// + /// The minimum number of words of text to produce. + /// + /// + /// The word to start with. If this word does not exist in the + /// seed text, the generation will fail. + /// + /// + /// + /// + public string GenerateWords(string start, int minimumWords) + { + return _InternalGenerate(start, StopCriterion.NumberOfWords, minimumWords); + } + + + /// + /// Generate random text with a minimum number of words. + /// + /// + /// + /// The minimum number of words of text to produce. + /// + /// + /// + public string GenerateWords(int minimumWords) + { + var chosenStartWord = keywords[rnd.Next(keywords.Count)]; + return _InternalGenerate(chosenStartWord, StopCriterion.NumberOfWords, minimumWords); + } + + + private string _InternalGenerate(string start, StopCriterion crit, int limit) + { + string w1 = start.ToLower(); + StringBuilder sb = new StringBuilder(); + sb.Append(start.Capitalize()); + + int consecutiveNewLines = 0; + string word = null; + string priorWord = null; + + // About the stop criteria: + // we keep going til we reach the specified number of words or chars, with the added + // proviso that we have to complete the in-flight sentence when the limit is reached. + + for (int i = 0; + (crit == StopCriterion.NumberOfWords && i < limit) || + (crit == StopCriterion.NumberOfChars && sb.Length < limit) || + consecutiveNewLines == 0; + i++) + { + if (table.ContainsKey(w1)) + { + var list = table[w1]; + int ix = rnd.Next(list.Count); + priorWord = word; + word = list[ix]; + if (word != "\n") + { + // capitalize + if (consecutiveNewLines > 0) + sb.Append(word.Capitalize()); + else + sb.Append(" ").Append(word); + + // words that end sentences get a newline + if (word.EndsWith(".")) + { + if (consecutiveNewLines == 0 || consecutiveNewLines == 1) + sb.Append("\n"); + consecutiveNewLines++; + } + else consecutiveNewLines = 0; + } + w1 = word.ToLower().TrimPunctuation(); + } + } + return sb.ToString(); + } + + + + private enum StopCriterion + { + NumberOfWords, + NumberOfChars + } + + } + + + + public class RandomTextInputStream : Stream + { + RandomTextGenerator _rtg; + Int64 _desiredLength; + Int64 _bytesRead; + System.Text.Encoding _encoding; + byte[][] _randomText; + System.Random _rnd; + int _gnt; + byte[] src = null; + private static readonly int _chunkSize = 1024 * 128; + private static readonly int _chunks = 48; + + public RandomTextInputStream(Int64 length) + : this(length, System.Text.Encoding.GetEncoding("ascii")) + { + } + + public RandomTextInputStream(Int64 length, System.Text.Encoding encoding) + : base() + { + _desiredLength = length; + _rtg = new RandomTextGenerator(); + _encoding = encoding; + _randomText = new byte[_chunks][]; + _rnd = new System.Random(); + } + + /// + /// for diagnostic purposes only + /// + public int GetNewTextCount + { + get + { + return _gnt; + } + } + + new public void Dispose() + { + Dispose(true); + } + + /// The Dispose method + protected override void Dispose(bool disposeManagedResources) + { + } + + private byte[] GetNewText() + { + _gnt++; + int nowServing = _rnd.Next(_chunks); + if (_randomText[nowServing]==null) + _randomText[nowServing] = _encoding.GetBytes(_rtg.Generate(_chunkSize)); + return _randomText[nowServing]; + } + + public Int64 BytesRead + { + get { return _bytesRead; } + } + + public override int Read(byte[] buffer, int offset, int count) + { + int bytesToReadThisTime = count; + if (_desiredLength - _bytesRead < bytesToReadThisTime) + bytesToReadThisTime = unchecked((int)(_desiredLength - _bytesRead)); + + int bytesToRead = bytesToReadThisTime; + while (bytesToRead > 0) + { + src = GetNewText(); + int bytesAvailable = src.Length; + int chunksize = (bytesToRead > bytesAvailable) + ? bytesAvailable + : bytesToRead; + + Buffer.BlockCopy(src, 0, buffer, offset, chunksize); + bytesToRead -= chunksize; + offset += chunksize; + } + _bytesRead += bytesToReadThisTime; + return bytesToReadThisTime; + } + + public override void Write(byte[] buffer, int offset, int count) + { + throw new NotSupportedException(); + } + + public override bool CanRead + { + get { return true; } + } + public override bool CanSeek + { + get { return false; } + } + + public override bool CanWrite + { + get { return false; } + } + + public override long Length + { + get { return _desiredLength; } + } + + public override long Position + { + get { return _desiredLength - _bytesRead; } + set + { + throw new NotSupportedException(); + } + } + + public override long Seek(long offset, System.IO.SeekOrigin origin) + { + throw new NotSupportedException(); + } + + public override void SetLength(long value) + { + if (value < _bytesRead) + throw new NotSupportedException(); + _desiredLength = value; + } + + public override void Flush() + { + } + } + + + +} diff --git a/src/Zip Tests/Resources/AspNetHost.exe b/old/src/Zip Tests/Resources/AspNetHost.exe similarity index 100% rename from src/Zip Tests/Resources/AspNetHost.exe rename to old/src/Zip Tests/Resources/AspNetHost.exe diff --git a/src/Zip Tests/Resources/AspNetHost.pdb b/old/src/Zip Tests/Resources/AspNetHost.pdb similarity index 100% rename from src/Zip Tests/Resources/AspNetHost.pdb rename to old/src/Zip Tests/Resources/AspNetHost.pdb diff --git a/src/Zip Tests/Resources/CreateZip.pl b/old/src/Zip Tests/Resources/CreateZip.pl similarity index 94% rename from src/Zip Tests/Resources/CreateZip.pl rename to old/src/Zip Tests/Resources/CreateZip.pl index 439e3d6..f333f5d 100644 --- a/src/Zip Tests/Resources/CreateZip.pl +++ b/old/src/Zip Tests/Resources/CreateZip.pl @@ -1,31 +1,31 @@ -use strict; -use IO::Compress::Zip qw(:all); - -my $dir = $ARGV[1]; -opendir(DIR, $dir) or die $!; - -my @files = (); - -while (my $file = readdir(DIR)) { - - # We only want files - next unless (-f "$dir/$file"); - - # Use a regular expression to find files ending in .txt - next unless ($file =~ m/^[^\.]/); - - push(@files, "$dir\\$file"); -} - -closedir(DIR); - - -##my @files = grep { /^[^\.]/ } readdir(DIR); - -foreach my $file2 (@files) { - print "$file2\n"; -} - - -zip \@files => $ARGV[0] - or die "Cannot create zip file: $ZipError\n"; +use strict; +use IO::Compress::Zip qw(:all); + +my $dir = $ARGV[1]; +opendir(DIR, $dir) or die $!; + +my @files = (); + +while (my $file = readdir(DIR)) { + + # We only want files + next unless (-f "$dir/$file"); + + # Use a regular expression to find files ending in .txt + next unless ($file =~ m/^[^\.]/); + + push(@files, "$dir\\$file"); +} + +closedir(DIR); + + +##my @files = grep { /^[^\.]/ } readdir(DIR); + +foreach my $file2 (@files) { + print "$file2\n"; +} + + +zip \@files => $ARGV[0] + or die "Cannot create zip file: $ZipError\n"; diff --git a/src/Zip Tests/Resources/GenerateZip-Cs.aspx b/old/src/Zip Tests/Resources/GenerateZip-Cs.aspx similarity index 96% rename from src/Zip Tests/Resources/GenerateZip-Cs.aspx rename to old/src/Zip Tests/Resources/GenerateZip-Cs.aspx index 12cea8f..eca7bd4 100644 --- a/src/Zip Tests/Resources/GenerateZip-Cs.aspx +++ b/old/src/Zip Tests/Resources/GenerateZip-Cs.aspx @@ -1,125 +1,125 @@ -<%@ Page - Language="C#" - EnableViewState="False" - Debug="True" -%> - - -<%@ Import Namespace="System.Text" %> -<%@ Import Namespace="System.IO" %> -<%@ Import Namespace="System.Linq" %> -<%@ Import Namespace="Ionic.Zip" %> -<%@ Import Namespace="System.Collections.Generic" %> - - - - - - - - - - - - -
- -

Zip Files from ASP.NET

- -

This page uses the .NET Zip library (see http://DotNetZip.codeplex.com) - to dynamically create a zip archive, and then send it to the - browser through Response.OutputStream.

- - -
- -

To generate a zip file, - specify a fodder file in the "file" parameter of the query - string. Choose from one of these:

-
-
- - - - - - -
-
- - - - - - - - - -
Nothing to see here...
-
- -
- - - - - - - - +<%@ Page + Language="C#" + EnableViewState="False" + Debug="True" +%> + + +<%@ Import Namespace="System.Text" %> +<%@ Import Namespace="System.IO" %> +<%@ Import Namespace="System.Linq" %> +<%@ Import Namespace="Ionic.Zip" %> +<%@ Import Namespace="System.Collections.Generic" %> + + + + + + + + + + + + +
+ +

Zip Files from ASP.NET

+ +

This page uses the .NET Zip library (see http://DotNetZip.codeplex.com) + to dynamically create a zip archive, and then send it to the + browser through Response.OutputStream.

+ + +
+ +

To generate a zip file, + specify a fodder file in the "file" parameter of the query + string. Choose from one of these:

+
+
+ + + + + + +
+
+ + + + + + + + + +
Nothing to see here...
+
+ +
+ + + + + + + + diff --git a/src/Zip Tests/Resources/Ionic.CopyData.dll b/old/src/Zip Tests/Resources/Ionic.CopyData.dll similarity index 100% rename from src/Zip Tests/Resources/Ionic.CopyData.dll rename to old/src/Zip Tests/Resources/Ionic.CopyData.dll diff --git a/src/Zip Tests/Resources/Ionic.IO.JunctionPoint.dll b/old/src/Zip Tests/Resources/Ionic.IO.JunctionPoint.dll similarity index 100% rename from src/Zip Tests/Resources/Ionic.IO.JunctionPoint.dll rename to old/src/Zip Tests/Resources/Ionic.IO.JunctionPoint.dll diff --git a/src/Zip Tests/Resources/TestCheckZip.js b/old/src/Zip Tests/Resources/TestCheckZip.js similarity index 96% rename from src/Zip Tests/Resources/TestCheckZip.js rename to old/src/Zip Tests/Resources/TestCheckZip.js index 883019c..84b5e41 100644 --- a/src/Zip Tests/Resources/TestCheckZip.js +++ b/old/src/Zip Tests/Resources/TestCheckZip.js @@ -1,71 +1,71 @@ -// TestCheckZip.js -// ------------------------------------------------------------------ -// -// Copyright (c) 2009 Dino Chiesa. -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2009-September-08 23:09:56> -// -// ------------------------------------------------------------------ -// -// This is a script file that calls into the static ZipFile.CheckZip -// method via the ComHelper class. This script is used for -// compatibility testing of the DotNetZip output. -// -// created Tue, 08 Sep 2009 22:11 -// -// ------------------------------------------------------------------ - - - -function checkZip(filename) -{ - var obj = new ActiveXObject("Ionic.Zip.ComHelper"); - return obj.IsZipFile(filename); -} - -function checkZipWithExtract(filename) -{ - var obj = new ActiveXObject("Ionic.Zip.ComHelper"); - return obj.IsZipFileWithExtract(filename); -} - - -function main() -{ - var result; - var args = WScript.Arguments; - - if (args.Length == 1) - { - result = checkZip(args(0)); - } - else if (args.Length == 2 && args(0) == "-x") - { - result = checkZipWithExtract(args(1)); - } - else - { - WScript.Echo("TestCheckZip.js - check a zipfile using Javascript."); - WScript.Echo(" usage: TestCheckZip.js [-x] "); - WScript.Quit(1); - } - - WScript.Echo((result==0)?"That zip is not OK":"That zip is OK"); - WScript.Quit(0); -} - - -main(); - +// TestCheckZip.js +// ------------------------------------------------------------------ +// +// Copyright (c) 2009 Dino Chiesa. +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2009-September-08 23:09:56> +// +// ------------------------------------------------------------------ +// +// This is a script file that calls into the static ZipFile.CheckZip +// method via the ComHelper class. This script is used for +// compatibility testing of the DotNetZip output. +// +// created Tue, 08 Sep 2009 22:11 +// +// ------------------------------------------------------------------ + + + +function checkZip(filename) +{ + var obj = new ActiveXObject("Ionic.Zip.ComHelper"); + return obj.IsZipFile(filename); +} + +function checkZipWithExtract(filename) +{ + var obj = new ActiveXObject("Ionic.Zip.ComHelper"); + return obj.IsZipFileWithExtract(filename); +} + + +function main() +{ + var result; + var args = WScript.Arguments; + + if (args.Length == 1) + { + result = checkZip(args(0)); + } + else if (args.Length == 2 && args(0) == "-x") + { + result = checkZipWithExtract(args(1)); + } + else + { + WScript.Echo("TestCheckZip.js - check a zipfile using Javascript."); + WScript.Echo(" usage: TestCheckZip.js [-x] "); + WScript.Quit(1); + } + + WScript.Echo((result==0)?"That zip is not OK":"That zip is OK"); + WScript.Quit(0); +} + + +main(); + diff --git a/src/Zip Tests/Resources/TestCheckZipPassword.js b/old/src/Zip Tests/Resources/TestCheckZipPassword.js similarity index 96% rename from src/Zip Tests/Resources/TestCheckZipPassword.js rename to old/src/Zip Tests/Resources/TestCheckZipPassword.js index bb93fc2..d9a155d 100644 --- a/src/Zip Tests/Resources/TestCheckZipPassword.js +++ b/old/src/Zip Tests/Resources/TestCheckZipPassword.js @@ -1,56 +1,56 @@ -// TestCheckZip.js -// ------------------------------------------------------------------ -// -// Copyright (c) 2009-2011 Dino Chiesa. -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved: <2011-June-13 17:04:58> -// -// ------------------------------------------------------------------ -// -// This is a script file that calls into the static ZipFile.CheckZipPassword -// method via the ComHelper class. This script is used for -// compatibility testing of the DotNetZip output. -// -// created Mon, 13 Jun 2011 16:50 -// -// ------------------------------------------------------------------ - - - -function checkZipPassword(filename, passwd) { - var obj = new ActiveXObject("Ionic.Zip.ComHelper"); - return obj.CheckZipPassword(filename, passwd); -} - - -function main() { - var result; - var args = WScript.Arguments; - - if (args.Length == 2) { - result = checkZipPassword(args(0), args(1)); - } - else { - WScript.Echo("TestCheckZipPassword.js - check a zipfile using Javascript."); - WScript.Echo(" usage: TestCheckZipPassword.js "); - WScript.Quit(1); - } - - WScript.Echo((result==0)?"That zip is not OK":"That zip is OK"); - WScript.Quit(0); -} - - -main(); - +// TestCheckZip.js +// ------------------------------------------------------------------ +// +// Copyright (c) 2009-2011 Dino Chiesa. +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved: <2011-June-13 17:04:58> +// +// ------------------------------------------------------------------ +// +// This is a script file that calls into the static ZipFile.CheckZipPassword +// method via the ComHelper class. This script is used for +// compatibility testing of the DotNetZip output. +// +// created Mon, 13 Jun 2011 16:50 +// +// ------------------------------------------------------------------ + + + +function checkZipPassword(filename, passwd) { + var obj = new ActiveXObject("Ionic.Zip.ComHelper"); + return obj.CheckZipPassword(filename, passwd); +} + + +function main() { + var result; + var args = WScript.Arguments; + + if (args.Length == 2) { + result = checkZipPassword(args(0), args(1)); + } + else { + WScript.Echo("TestCheckZipPassword.js - check a zipfile using Javascript."); + WScript.Echo(" usage: TestCheckZipPassword.js "); + WScript.Quit(1); + } + + WScript.Echo((result==0)?"That zip is not OK":"That zip is OK"); + WScript.Quit(0); +} + + +main(); + diff --git a/src/Zip Tests/Resources/TestStrings.txt b/old/src/Zip Tests/Resources/TestStrings.txt similarity index 99% rename from src/Zip Tests/Resources/TestStrings.txt rename to old/src/Zip Tests/Resources/TestStrings.txt index 816ba62..7a6aba7 100644 --- a/src/Zip Tests/Resources/TestStrings.txt +++ b/old/src/Zip Tests/Resources/TestStrings.txt @@ -1,7 +1,7 @@ -This file contains test strings to be stuffed into entries in zip files. Each line will be placed into a separate file. -Note: The file must end in a newline. -过去一周,业界可谓是大事连连,2009 JavaOne大会和谷歌开发者日大会相继举行,微软正式推出新搜索引擎品牌Bing,受到业界极大关注。当然最火热的还是智能手机领域,本周又有三家重头公司宣布对手机市场进行开拓和布局。 -Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer vulputate, nibh non rhoncus euismod, erat odio pellentesque lacus, sit amet convallis mi augue et odio. Phasellus cursus urna facilisis quam. Suspendisse nec metus et sapien scelerisque euismod. Nullam molestie sem quis nisl. Fusce pellentesque, ante sed semper egestas, sem nulla vestibulum nulla, quis sollicitudin leo lorem elementum wisi. Aliquam vestibulum nonummy orci. Sed in dolor sed enim ullamcorper accumsan. Duis vel nibh. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Sed faucibus, enim sit amet venenatis laoreet, nisl elit posuere est, ut sollicitudin tortor velit ut ipsum. Aliquam erat volutpat. Phasellus tincidunt vehicula eros. Curabitur vitae erat. -¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ -Cyrillic - А Б В Г Д Є Ж Ѕ З И І К Л М Н О П Р -Greek - Ελληνικό αλφάβητο +This file contains test strings to be stuffed into entries in zip files. Each line will be placed into a separate file. +Note: The file must end in a newline. +过去一周,业界可谓是大事连连,2009 JavaOne大会和谷歌开发者日大会相继举行,微软正式推出新搜索引擎品牌Bing,受到业界极大关注。当然最火热的还是智能手机领域,本周又有三家重头公司宣布对手机市场进行开拓和布局。 +Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer vulputate, nibh non rhoncus euismod, erat odio pellentesque lacus, sit amet convallis mi augue et odio. Phasellus cursus urna facilisis quam. Suspendisse nec metus et sapien scelerisque euismod. Nullam molestie sem quis nisl. Fusce pellentesque, ante sed semper egestas, sem nulla vestibulum nulla, quis sollicitudin leo lorem elementum wisi. Aliquam vestibulum nonummy orci. Sed in dolor sed enim ullamcorper accumsan. Duis vel nibh. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Sed faucibus, enim sit amet venenatis laoreet, nisl elit posuere est, ut sollicitudin tortor velit ut ipsum. Aliquam erat volutpat. Phasellus tincidunt vehicula eros. Curabitur vitae erat. +¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ +Cyrillic - А Б В Г Д Є Ж Ѕ З И І К Л М Н О П Р +Greek - Ελληνικό αλφάβητο diff --git a/src/Zip Tests/Resources/UnitTestProgressMonitor.exe b/old/src/Zip Tests/Resources/UnitTestProgressMonitor.exe similarity index 100% rename from src/Zip Tests/Resources/UnitTestProgressMonitor.exe rename to old/src/Zip Tests/Resources/UnitTestProgressMonitor.exe diff --git a/src/Zip Tests/Resources/VbsCreateZip-DotNetZip.vbs b/old/src/Zip Tests/Resources/VbsCreateZip-DotNetZip.vbs similarity index 96% rename from src/Zip Tests/Resources/VbsCreateZip-DotNetZip.vbs rename to old/src/Zip Tests/Resources/VbsCreateZip-DotNetZip.vbs index 0c374f4..f49411c 100644 --- a/src/Zip Tests/Resources/VbsCreateZip-DotNetZip.vbs +++ b/old/src/Zip Tests/Resources/VbsCreateZip-DotNetZip.vbs @@ -1,112 +1,112 @@ -' VbsCreateZip-DotNetZip.vbs -' ------------------------------------------------------------------ -' -' Copyright (c) 2009 Dino Chiesa and Microsoft Corporation. -' All rights reserved. -' -' This code module is part of DotNetZip, a zipfile class library. -' -' ------------------------------------------------------------------ -' -' This code is licensed under the Microsoft Public License. -' See the file License.txt for the license details. -' More info on: http://dotnetzip.codeplex.com -' -' ------------------------------------------------------------------ -' -' last saved (in emacs): -' Time-stamp: <2009-May-30 06:23:21> -' -' ------------------------------------------------------------------ -' -' This is a script file that creates a zip file from a specified directory. -' It uses the Shell.Application object to do the zipping. -' This script is used for compatibility testing of the DotNetZip output. -' -' created Fri, 29 May 2009 -' -' ------------------------------------------------------------------ - -Dim filename -Dim dirToZip -Dim password -Dim extractLocation - - - -Sub CreateZip(pathToZipFile, dirToZip) - - WScript.Echo "Creating zip (" & pathToZipFile & ") from (" & dirToZip & ")" - - Dim fso - Set fso= Wscript.CreateObject("Scripting.FileSystemObject") - - If fso.FileExists(pathToZipFile) Then - WScript.Echo "That zip file already exists - deleting it." - fso.DeleteFile pathToZipFile - End If - - If Not fso.FolderExists(dirToZip) Then - WScript.Echo "The directory to zip does not exist." - Exit Sub - End If - - WScript.echo("") - WScript.echo("Instantiating a ZipFile Object...") - - Dim zip1 - Set zip1 = CreateObject("Ionic.Zip.ZipFile") - - If Not (password = "") Then - WScript.echo("using AES256 encryption...") - zip1.Encryption = 3 - - WScript.echo("setting the password...") - zip1.Password = password - End IF - - WScript.echo("adding a directory...") - zip1.AddDirectory(dirToZip) - - WScript.echo("setting the save name to (" & pathToZipFile & ")...") - zip1.Name = pathToZipFile - - WScript.echo("Saving...") - zip1.Save() - - WScript.echo("Disposing...") - zip1.Dispose() - -End Sub - - -Sub Main() - - dim args - - set args = WScript.Arguments - - If (args.Length < 2) Then - - WScript.Echo "VbsCreatezip.vbs - create a zip file using the DotNetZip COM object." - WScript.Echo " usage: VbsCreatezip.vbs " - Exit Sub - End If - - - password = "" - - If (args.Count > 2) Then - For i = 2 To args.Count-1 - If (args(i) = "-p") Then - i= i+1 - password= args(i+1) - End If - Next - End If - - CreateZip args(0), args(1) - -End Sub - -Call Main +' VbsCreateZip-DotNetZip.vbs +' ------------------------------------------------------------------ +' +' Copyright (c) 2009 Dino Chiesa and Microsoft Corporation. +' All rights reserved. +' +' This code module is part of DotNetZip, a zipfile class library. +' +' ------------------------------------------------------------------ +' +' This code is licensed under the Microsoft Public License. +' See the file License.txt for the license details. +' More info on: http://dotnetzip.codeplex.com +' +' ------------------------------------------------------------------ +' +' last saved (in emacs): +' Time-stamp: <2009-May-30 06:23:21> +' +' ------------------------------------------------------------------ +' +' This is a script file that creates a zip file from a specified directory. +' It uses the Shell.Application object to do the zipping. +' This script is used for compatibility testing of the DotNetZip output. +' +' created Fri, 29 May 2009 +' +' ------------------------------------------------------------------ + +Dim filename +Dim dirToZip +Dim password +Dim extractLocation + + + +Sub CreateZip(pathToZipFile, dirToZip) + + WScript.Echo "Creating zip (" & pathToZipFile & ") from (" & dirToZip & ")" + + Dim fso + Set fso= Wscript.CreateObject("Scripting.FileSystemObject") + + If fso.FileExists(pathToZipFile) Then + WScript.Echo "That zip file already exists - deleting it." + fso.DeleteFile pathToZipFile + End If + + If Not fso.FolderExists(dirToZip) Then + WScript.Echo "The directory to zip does not exist." + Exit Sub + End If + + WScript.echo("") + WScript.echo("Instantiating a ZipFile Object...") + + Dim zip1 + Set zip1 = CreateObject("Ionic.Zip.ZipFile") + + If Not (password = "") Then + WScript.echo("using AES256 encryption...") + zip1.Encryption = 3 + + WScript.echo("setting the password...") + zip1.Password = password + End IF + + WScript.echo("adding a directory...") + zip1.AddDirectory(dirToZip) + + WScript.echo("setting the save name to (" & pathToZipFile & ")...") + zip1.Name = pathToZipFile + + WScript.echo("Saving...") + zip1.Save() + + WScript.echo("Disposing...") + zip1.Dispose() + +End Sub + + +Sub Main() + + dim args + + set args = WScript.Arguments + + If (args.Length < 2) Then + + WScript.Echo "VbsCreatezip.vbs - create a zip file using the DotNetZip COM object." + WScript.Echo " usage: VbsCreatezip.vbs " + Exit Sub + End If + + + password = "" + + If (args.Count > 2) Then + For i = 2 To args.Count-1 + If (args(i) = "-p") Then + i= i+1 + password= args(i+1) + End If + Next + End If + + CreateZip args(0), args(1) + +End Sub + +Call Main diff --git a/src/Zip Tests/Resources/VbsCreateZip-ShellApp.vbs b/old/src/Zip Tests/Resources/VbsCreateZip-ShellApp.vbs similarity index 96% rename from src/Zip Tests/Resources/VbsCreateZip-ShellApp.vbs rename to old/src/Zip Tests/Resources/VbsCreateZip-ShellApp.vbs index d2b5b88..68961ad 100644 --- a/src/Zip Tests/Resources/VbsCreateZip-ShellApp.vbs +++ b/old/src/Zip Tests/Resources/VbsCreateZip-ShellApp.vbs @@ -1,140 +1,140 @@ -' VbsCreateZip-ShellApp.vbs -' ------------------------------------------------------------------ -' -' Copyright (c) 2009 Dino Chiesa and Microsoft Corporation. -' All rights reserved. -' -' This code module is part of DotNetZip, a zipfile class library. -' -' ------------------------------------------------------------------ -' -' This code is licensed under the Microsoft Public License. -' See the file License.txt for the license details. -' More info on: http://dotnetzip.codeplex.com -' -' ------------------------------------------------------------------ -' -' last saved (in emacs): -' Time-stamp: <2011-June-18 21:41:42> -' -' ------------------------------------------------------------------ -' -' This is a script file that creates a zip file from a specified directory. -' It uses the Shell.Application object to do the zipping. -' This script is used for compatibility testing of the DotNetZip output. -' -' created Fri, 29 May 2009 -' -' ------------------------------------------------------------------ - - -Sub NewZip(pathToZipFile) - - WScript.Echo "Newing up a zip file (" & pathToZipFile & ") " - - Dim fso - Set fso = CreateObject("Scripting.FileSystemObject") - Dim file - Set file = fso.CreateTextFile(pathToZipFile) - - file.Write Chr(80) & Chr(75) & Chr(5) & Chr(6) & String(18, 0) - - file.Close - Set fso = Nothing - Set file = Nothing - - WScript.Sleep 500 - -End Sub - - - -Sub CreateZip(pathToZipFile, dirToZip) - - WScript.Echo "Creating zip (" & pathToZipFile & ") from (" & dirToZip & ")" - - Dim fso - Set fso= Wscript.CreateObject("Scripting.FileSystemObject") - - If fso.FileExists(pathToZipFile) Then - WScript.Echo "That zip file already exists - deleting it." - fso.DeleteFile pathToZipFile - End If - - If Not fso.FolderExists(dirToZip) Then - WScript.Echo "The directory to zip does not exist." - Exit Sub - End If - - NewZip pathToZipFile - - pathToZipFile = fso.GetAbsolutePathName(pathToZipFile) - dirToZip = fso.GetAbsolutePathName(dirToZip) - - dim sa - set sa = CreateObject("Shell.Application") - - Dim zip - Set zip = sa.NameSpace(pathToZipFile) - - WScript.Echo "opening dir (" & dirToZip & ")" - - Dim d - Set d = sa.NameSpace(dirToZip) - - For Each s In d.items - WScript.Echo s - Next - - - ' http://msdn.microsoft.com/en-us/library/bb787866(VS.85).aspx - ' =============================================================== - ' 4 = do not display a progress box - ' 16 = Respond with "Yes to All" for any dialog box that is displayed. - ' 128 = Perform the operation on files only if a wildcard file name (*.*) is specified. - ' 256 = Display a progress dialog box but do not show the file names. - ' 2048 = Version 4.71. Do not copy the security attributes of the file. - ' 4096 = Only operate in the local directory. Don't operate recursively into subdirectories. - - WScript.Echo "copying files..." - - zip.CopyHere d.items, 4 - - -' WScript.Echo "d.items.Count = " & d.items.Count -' WScript.Echo "zip.items.Count = " & zip.items.Count - - sLoop = 0 - Do Until d.Items.Count <= zip.Items.Count - Wscript.Sleep(1000) -' sLoop = sLoop + 1 -' If (sLoop = 10) Then -' WScript.Echo "/ items so far = " & zip.items.Count -' WScript.Echo "(looking for " & d.items.Count & " items)" -' sLoop = 0 -' End IF - Loop - -End Sub - - - -Sub Main() - - dim args - - set args = WScript.Arguments - - If (args.Length = 2) Then - - CreateZip args(0), args(1) - - Else - WScript.Echo "VbsCreatezip.vbs - create a zip file using the Shell.Application object." - WScript.Echo " usage: VbsCreatezip.vbs " - WScript.Echo " " - End If - -End Sub - -Call Main +' VbsCreateZip-ShellApp.vbs +' ------------------------------------------------------------------ +' +' Copyright (c) 2009 Dino Chiesa and Microsoft Corporation. +' All rights reserved. +' +' This code module is part of DotNetZip, a zipfile class library. +' +' ------------------------------------------------------------------ +' +' This code is licensed under the Microsoft Public License. +' See the file License.txt for the license details. +' More info on: http://dotnetzip.codeplex.com +' +' ------------------------------------------------------------------ +' +' last saved (in emacs): +' Time-stamp: <2011-June-18 21:41:42> +' +' ------------------------------------------------------------------ +' +' This is a script file that creates a zip file from a specified directory. +' It uses the Shell.Application object to do the zipping. +' This script is used for compatibility testing of the DotNetZip output. +' +' created Fri, 29 May 2009 +' +' ------------------------------------------------------------------ + + +Sub NewZip(pathToZipFile) + + WScript.Echo "Newing up a zip file (" & pathToZipFile & ") " + + Dim fso + Set fso = CreateObject("Scripting.FileSystemObject") + Dim file + Set file = fso.CreateTextFile(pathToZipFile) + + file.Write Chr(80) & Chr(75) & Chr(5) & Chr(6) & String(18, 0) + + file.Close + Set fso = Nothing + Set file = Nothing + + WScript.Sleep 500 + +End Sub + + + +Sub CreateZip(pathToZipFile, dirToZip) + + WScript.Echo "Creating zip (" & pathToZipFile & ") from (" & dirToZip & ")" + + Dim fso + Set fso= Wscript.CreateObject("Scripting.FileSystemObject") + + If fso.FileExists(pathToZipFile) Then + WScript.Echo "That zip file already exists - deleting it." + fso.DeleteFile pathToZipFile + End If + + If Not fso.FolderExists(dirToZip) Then + WScript.Echo "The directory to zip does not exist." + Exit Sub + End If + + NewZip pathToZipFile + + pathToZipFile = fso.GetAbsolutePathName(pathToZipFile) + dirToZip = fso.GetAbsolutePathName(dirToZip) + + dim sa + set sa = CreateObject("Shell.Application") + + Dim zip + Set zip = sa.NameSpace(pathToZipFile) + + WScript.Echo "opening dir (" & dirToZip & ")" + + Dim d + Set d = sa.NameSpace(dirToZip) + + For Each s In d.items + WScript.Echo s + Next + + + ' http://msdn.microsoft.com/en-us/library/bb787866(VS.85).aspx + ' =============================================================== + ' 4 = do not display a progress box + ' 16 = Respond with "Yes to All" for any dialog box that is displayed. + ' 128 = Perform the operation on files only if a wildcard file name (*.*) is specified. + ' 256 = Display a progress dialog box but do not show the file names. + ' 2048 = Version 4.71. Do not copy the security attributes of the file. + ' 4096 = Only operate in the local directory. Don't operate recursively into subdirectories. + + WScript.Echo "copying files..." + + zip.CopyHere d.items, 4 + + +' WScript.Echo "d.items.Count = " & d.items.Count +' WScript.Echo "zip.items.Count = " & zip.items.Count + + sLoop = 0 + Do Until d.Items.Count <= zip.Items.Count + Wscript.Sleep(1000) +' sLoop = sLoop + 1 +' If (sLoop = 10) Then +' WScript.Echo "/ items so far = " & zip.items.Count +' WScript.Echo "(looking for " & d.items.Count & " items)" +' sLoop = 0 +' End IF + Loop + +End Sub + + + +Sub Main() + + dim args + + set args = WScript.Arguments + + If (args.Length = 2) Then + + CreateZip args(0), args(1) + + Else + WScript.Echo "VbsCreatezip.vbs - create a zip file using the Shell.Application object." + WScript.Echo " usage: VbsCreatezip.vbs " + WScript.Echo " " + End If + +End Sub + +Call Main diff --git a/src/Zip Tests/Resources/VbsUnZip-DotNetZip.vbs b/old/src/Zip Tests/Resources/VbsUnZip-DotNetZip.vbs similarity index 96% rename from src/Zip Tests/Resources/VbsUnZip-DotNetZip.vbs rename to old/src/Zip Tests/Resources/VbsUnZip-DotNetZip.vbs index 79faf16..eeb0f1c 100644 --- a/src/Zip Tests/Resources/VbsUnZip-DotNetZip.vbs +++ b/old/src/Zip Tests/Resources/VbsUnZip-DotNetZip.vbs @@ -1,71 +1,71 @@ -' VbsUnzip-DotNetZip.vbs -' ------------------------------------------------------------------ -' -' Copyright (c) 2009 Dino Chiesa and Microsoft Corporation. -' All rights reserved. -' -' This code module is part of DotNetZip, a zipfile class library. -' -' ------------------------------------------------------------------ -' -' This code is licensed under the Microsoft Public License. -' See the file License.txt for the license details. -' More info on: http://dotnetzip.codeplex.com -' -' ------------------------------------------------------------------ -' -' last saved (in emacs): -' Time-stamp: <2009-May-30 07:08:28> -' -' ------------------------------------------------------------------ -' -' This is a script file that unzips a specified zip file to a specified directory. -' It uses the DotNetZip library, via COM, to do the unzipping. -' This script is used for compatibility testing of the DotNetZip output. -' -' created Fri, 29 May 2009 17:07 -' -' ------------------------------------------------------------------ - - - -Sub UnpackZip(pathToZipFile, extractLocation) - - WScript.Echo "Unpacking zip (" & pathToZipFile & ") to (" & extractLocation & ")" - - Dim zip - WScript.echo("Instantiating a ZipFile object...") - Set zip = CreateObject("Ionic.Zip.ZipFile") - - WScript.echo("Initialize (Read)...") - zip.Initialize(pathToZipFile) - - WScript.echo("extracting...") - zip.ExtractAll(extractLocation) - - WScript.echo("Disposing...") - zip.Dispose() - - WScript.echo("Done.") - -End Sub - - -Sub Main() - - dim args - - set args = WScript.Arguments - - If (args.Length = 2) Then - - UnpackZip args(0), args(1) - - Else - WScript.Echo "VbsUnzip.vbs - unzip a zip file using the DotNetZip library." - WScript.Echo " usage: VbsUnzip.vbs " - End If - -End Sub - -Call Main +' VbsUnzip-DotNetZip.vbs +' ------------------------------------------------------------------ +' +' Copyright (c) 2009 Dino Chiesa and Microsoft Corporation. +' All rights reserved. +' +' This code module is part of DotNetZip, a zipfile class library. +' +' ------------------------------------------------------------------ +' +' This code is licensed under the Microsoft Public License. +' See the file License.txt for the license details. +' More info on: http://dotnetzip.codeplex.com +' +' ------------------------------------------------------------------ +' +' last saved (in emacs): +' Time-stamp: <2009-May-30 07:08:28> +' +' ------------------------------------------------------------------ +' +' This is a script file that unzips a specified zip file to a specified directory. +' It uses the DotNetZip library, via COM, to do the unzipping. +' This script is used for compatibility testing of the DotNetZip output. +' +' created Fri, 29 May 2009 17:07 +' +' ------------------------------------------------------------------ + + + +Sub UnpackZip(pathToZipFile, extractLocation) + + WScript.Echo "Unpacking zip (" & pathToZipFile & ") to (" & extractLocation & ")" + + Dim zip + WScript.echo("Instantiating a ZipFile object...") + Set zip = CreateObject("Ionic.Zip.ZipFile") + + WScript.echo("Initialize (Read)...") + zip.Initialize(pathToZipFile) + + WScript.echo("extracting...") + zip.ExtractAll(extractLocation) + + WScript.echo("Disposing...") + zip.Dispose() + + WScript.echo("Done.") + +End Sub + + +Sub Main() + + dim args + + set args = WScript.Arguments + + If (args.Length = 2) Then + + UnpackZip args(0), args(1) + + Else + WScript.Echo "VbsUnzip.vbs - unzip a zip file using the DotNetZip library." + WScript.Echo " usage: VbsUnzip.vbs " + End If + +End Sub + +Call Main diff --git a/src/Zip Tests/Resources/VbsUnzip-ShellApp.vbs b/old/src/Zip Tests/Resources/VbsUnzip-ShellApp.vbs similarity index 96% rename from src/Zip Tests/Resources/VbsUnzip-ShellApp.vbs rename to old/src/Zip Tests/Resources/VbsUnzip-ShellApp.vbs index c8d9770..5b7a7b9 100644 --- a/src/Zip Tests/Resources/VbsUnzip-ShellApp.vbs +++ b/old/src/Zip Tests/Resources/VbsUnzip-ShellApp.vbs @@ -1,85 +1,85 @@ -' VbsUnzip.vbs -' ------------------------------------------------------------------ -' -' Copyright (c) 2009 Dino Chiesa. -' All rights reserved. -' -' This code module is part of DotNetZip, a zipfile class library. -' -' ------------------------------------------------------------------ -' -' This code is licensed under the Microsoft Public License. -' See the file License.txt for the license details. -' More info on: http://dotnetzip.codeplex.com -' -' ------------------------------------------------------------------ -' -' last saved (in emacs): -' Time-stamp: <2009-September-08 22:21:31> -' -' ------------------------------------------------------------------ -' -' This is a script file that unzips a specified zip file to a specified directory. -' It uses the Shell.Application object to do the unzipping. -' This script is used for compatibility testing of the DotNetZip output. -' -' created Fri, 29 May 2009 17:07 -' -' ------------------------------------------------------------------ - - - -Sub UnpackZip(pathToZipFile, extractLocation) - - WScript.Echo "Unpacking zip (" & pathToZipFile & ") to (" & extractLocation & ")" - - dim sa - set sa = CreateObject("Shell.Application") - - Dim fso - Set fso= CreateObject("Scripting.FileSystemObject") - fqPathToZip= fso.GetAbsolutePathName(pathToZipFile) - - If Not fso.FolderExists(extractLocation) Then fso.CreateFolder(extractLocation) - fqExtractLoc= fso.GetAbsolutePathName(extractLocation) - - Dim zip - Set zip = sa.NameSpace(fqPathToZip) - - Dim ex - Set ex = sa.NameSpace(fqExtractLoc) - - ' http://msdn.microsoft.com/en-us/library/bb787866(VS.85).aspx - ' =============================================================== - ' 4 = do not display a progress box - ' 16 = Respond with "Yes to All" for any dialog box that is displayed. - ' 128 = Perform the operation on files only if a wildcard file name (*.*) is specified. - ' 256 = Display a progress dialog box but do not show the file names. - ' 2048 = Version 4.71. Do not copy the security attributes of the file. - ' 4096 = Only operate in the local directory. Don't operate recursively into subdirectories. - - ex.CopyHere zip.items, 20 - -End Sub - - - -Sub Main() - - dim args - - set args = WScript.Arguments - - If (args.Length = 2) Then - - UnpackZip args(0), args(1) - - Else - WScript.Echo "VbsUnzip.vbs - unzip a zip file using the Shell.Application object." - WScript.Echo " usage: VbsUnzip.vbs " - WScript.Quit(1) - End If - -End Sub - -Call Main +' VbsUnzip.vbs +' ------------------------------------------------------------------ +' +' Copyright (c) 2009 Dino Chiesa. +' All rights reserved. +' +' This code module is part of DotNetZip, a zipfile class library. +' +' ------------------------------------------------------------------ +' +' This code is licensed under the Microsoft Public License. +' See the file License.txt for the license details. +' More info on: http://dotnetzip.codeplex.com +' +' ------------------------------------------------------------------ +' +' last saved (in emacs): +' Time-stamp: <2009-September-08 22:21:31> +' +' ------------------------------------------------------------------ +' +' This is a script file that unzips a specified zip file to a specified directory. +' It uses the Shell.Application object to do the unzipping. +' This script is used for compatibility testing of the DotNetZip output. +' +' created Fri, 29 May 2009 17:07 +' +' ------------------------------------------------------------------ + + + +Sub UnpackZip(pathToZipFile, extractLocation) + + WScript.Echo "Unpacking zip (" & pathToZipFile & ") to (" & extractLocation & ")" + + dim sa + set sa = CreateObject("Shell.Application") + + Dim fso + Set fso= CreateObject("Scripting.FileSystemObject") + fqPathToZip= fso.GetAbsolutePathName(pathToZipFile) + + If Not fso.FolderExists(extractLocation) Then fso.CreateFolder(extractLocation) + fqExtractLoc= fso.GetAbsolutePathName(extractLocation) + + Dim zip + Set zip = sa.NameSpace(fqPathToZip) + + Dim ex + Set ex = sa.NameSpace(fqExtractLoc) + + ' http://msdn.microsoft.com/en-us/library/bb787866(VS.85).aspx + ' =============================================================== + ' 4 = do not display a progress box + ' 16 = Respond with "Yes to All" for any dialog box that is displayed. + ' 128 = Perform the operation on files only if a wildcard file name (*.*) is specified. + ' 256 = Display a progress dialog box but do not show the file names. + ' 2048 = Version 4.71. Do not copy the security attributes of the file. + ' 4096 = Only operate in the local directory. Don't operate recursively into subdirectories. + + ex.CopyHere zip.items, 20 + +End Sub + + + +Sub Main() + + dim args + + set args = WScript.Arguments + + If (args.Length = 2) Then + + UnpackZip args(0), args(1) + + Else + WScript.Echo "VbsUnzip.vbs - unzip a zip file using the Shell.Application object." + WScript.Echo " usage: VbsUnzip.vbs " + WScript.Quit(1) + End If + +End Sub + +Call Main diff --git a/src/Zip Tests/Resources/wi8647.tif b/old/src/Zip Tests/Resources/wi8647.tif similarity index 100% rename from src/Zip Tests/Resources/wi8647.tif rename to old/src/Zip Tests/Resources/wi8647.tif diff --git a/src/Zip Tests/Selector.cs b/old/src/Zip Tests/Selector.cs similarity index 97% rename from src/Zip Tests/Selector.cs rename to old/src/Zip Tests/Selector.cs index 4aae483..b924913 100644 --- a/src/Zip Tests/Selector.cs +++ b/old/src/Zip Tests/Selector.cs @@ -1,2278 +1,2278 @@ -// Selector.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009-2010 Dino Chiesa. -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-August-06 17:57:24> -// -// ------------------------------------------------------------------ -// -// This module defines tests for the File and Entry Selection stuff in -// DotNetZip. -// -// ------------------------------------------------------------------ - -using System; -using System.Text; -using System.Collections.Generic; -using System.Linq; -using Microsoft.VisualStudio.TestTools.UnitTesting; - -using Ionic.Zip; -using Ionic.Zip.Tests.Utilities; -using System.IO; - -namespace Ionic.Zip.Tests -{ - /// - /// Summary description for Selector - /// - [TestClass] - public class Selector : IonicTestClass - { - public Selector() : base() { } - - [ClassInitialize] - public static void ClassInit(TestContext a) - { - CurrentDir = Directory.GetCurrentDirectory(); - twentyDaysAgo = DateTime.Now - new TimeSpan(20,0,0,0); - todayAtMidnight = new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day); - tomorrow = todayAtMidnight + new TimeSpan(1, 0, 0, 0); - threeDaysAgo = todayAtMidnight - new TimeSpan(3, 0, 0, 0); - twoDaysAgo = todayAtMidnight - new TimeSpan(2, 0, 0, 0); - threeYearsAgo = todayAtMidnight.AddYears(-3); - - oneDay = new TimeSpan(1,0,0,0); - yesterdayAtMidnight = todayAtMidnight - oneDay; - } - - // [ClassCleanup()] - // public static void MyClassCleanup() - // { - // CleanDirectory(fodderDirectory, null); - // } - - - private static void CleanDirectory(string dirToClean, Ionic.CopyData.Transceiver txrx) - { - if (dirToClean == null) return; - - if (!Directory.Exists(dirToClean)) return; - - var dirs = Directory.GetDirectories(dirToClean, "*.*", SearchOption.AllDirectories); - - if (txrx!=null) - txrx.Send("pb 1 max " + dirs.Length.ToString()); - - foreach (var d in dirs) - { - CleanDirectory(d, txrx); - if (txrx!=null) - txrx.Send("pb 1 step"); - } - - // Some of the files are marked as ReadOnly/System, and - // before deleting the dir we must strip those attrs. - var files = Directory.GetFiles(dirToClean, "*.*", SearchOption.AllDirectories); - if (txrx!=null) - txrx.Send("pb 1 max " + files.Length.ToString()); - - foreach (var f in files) - { - var a = File.GetAttributes(f); - // must do ReadOnly bit first - to allow setting other bits. - if ((a & FileAttributes.ReadOnly) == FileAttributes.ReadOnly) - { - a &= ~FileAttributes.ReadOnly; - File.SetAttributes(f, a); - } - if (((a & FileAttributes.Hidden) == FileAttributes.Hidden) || - ((a & FileAttributes.System) == FileAttributes.System)) - { - a &= ~FileAttributes.Hidden; - a &= ~FileAttributes.System; - File.SetAttributes(f, a); - } - File.Delete(f); - if (txrx!=null) - txrx.Send("pb 1 step"); - } - - // Delete the directory with delay and retry. - // Sometimes I have a console window in the directory - // and I want it to not give up so easily. - int tries =0; - bool success = false; - do - { - try - { - Directory.Delete(dirToClean, true); - success = true; - } - catch - { - System.Threading.Thread.Sleep(600); - } - tries++; - } while (tries < 100 && !success); - } - - - - - - [TestMethod] - public void Selector_EdgeCases() - { - string Subdir = Path.Combine(TopLevelDir, "A"); - - Ionic.FileSelector ff = new Ionic.FileSelector("name = *.txt"); - var list = ff.SelectFiles(Subdir); - - ff.SelectionCriteria = "name = *.bin"; - list = ff.SelectFiles(Subdir); - } - - - private static DateTime twentyDaysAgo; - private static DateTime todayAtMidnight; - private static DateTime tomorrow; - private static DateTime threeDaysAgo; - private static DateTime threeYearsAgo; - private static DateTime twoDaysAgo; - private static DateTime yesterdayAtMidnight; - private static TimeSpan oneDay; - - private string fodderDirectory; - private Object LOCK = new Object(); - private int numFodderFiles, numFodderDirs; - - - /// - /// Checks a fodder directory to see if suitable. - /// - /// the directory to check - /// - /// - /// true if the directory contains a goodly number of fodder files. - /// - private bool TryOneFodderDir(string dir) - { - if (!Directory.Exists(dir)) - return false; - - var ctime = File.GetCreationTime(dir).ToUniversalTime(); - if ((todayAtMidnight - ctime) > oneDay || (ctime - todayAtMidnight) > oneDay) - return false; - - - var fodderFiles = Directory.GetFiles(dir, "*.*", SearchOption.AllDirectories); - - numFodderFiles = fodderFiles.Length; - if (numFodderFiles <= 2) - { - numFodderFiles = 0; - return false; - } - - var fodderDirs = Directory.GetDirectories(dir, "*.*", - SearchOption.AllDirectories); - numFodderDirs = fodderDirs.Length; - if (numFodderDirs <= 2) - { - numFodderDirs = numFodderFiles = 0; - return false; - } - return true; - } - - - private string SetupFiles() - { - lock (LOCK) - { - if (fodderDirectory != null && numFodderFiles > 5) - return fodderDirectory; - - string homeDir = System.Environment.GetEnvironmentVariable("TEMP"); - var oldDirs = Directory.GetDirectories(homeDir, "*.SelectorTests"); - - foreach (var dir in oldDirs) - { - if (TryOneFodderDir(dir)) - { - fodderDirectory = dir; - return dir; - } - - if (Directory.Exists(dir)) - Directory.Delete(dir, true); - } - - // Arriving here means no good fodder directories exist. - // Create one. - ActuallyCreateFodderFiles(); - Assert.IsTrue(TryOneFodderDir(fodderDirectory)); - return fodderDirectory; - } - } - - - private static void DeleteOldFodderDirectories( Ionic.CopyData.Transceiver txrx ) - { - // Before creating the directory for the current run, Remove old directories. - // For some reason the test cleanup code tends to leave these directories?? - string tempDir = System.Environment.GetEnvironmentVariable("TEMP"); - var oldDirs = Directory.GetDirectories(tempDir, "*.SelectorTests"); - if (oldDirs.Length > 0) - { - if (txrx != null) - { - txrx.Send("status deleting old directories..."); - txrx.Send(String.Format("pb 0 max {0}", oldDirs.Length)); - } - - foreach (var dir in oldDirs) - { - CleanDirectory(dir, txrx); - if (txrx != null) txrx.Send("pb 0 step"); - } - } - } - - - - private void ActuallyCreateFodderFiles() - { - var txrx = TestUtilities.StartProgressMonitor("selector-setup", - "Selector one-time setup", - "setting up files..."); - var rnd = new System.Random(); - DeleteOldFodderDirectories(txrx); - - int fileCount = rnd.Next(95) + 95; - if (txrx!=null) - { - txrx.Send("status creating files..."); - txrx.Send(String.Format("pb 0 max {0}", fileCount)); - } - - fodderDirectory = TestUtilities.GenerateUniquePathname("SelectorTests"); - - // remember this directory so we can restore later - string originalDir = Directory.GetCurrentDirectory(); - - int entriesAdded = 0; - - // get the base directory for tests: - Directory.SetCurrentDirectory(CurrentDir); - Directory.CreateDirectory(fodderDirectory); - Directory.SetCurrentDirectory(fodderDirectory); - - string[] nameFormats = - { - "file{0:D3}", - "{0:D3}", - "PrettyLongFileName-{0:D3}", - "Very-Long-Filename-{0:D3}-with-a-repeated-segment-{0:D3}-{0:D3}-{0:D3}-{0:D3}", - - }; - - string[] dirs = - { - "dir1", - "dir1\\dirA", - "dir1\\dirB", - "dir2" - }; - - - foreach (string s in dirs) - Directory.CreateDirectory(s); - - for (int j = 0; j < fileCount; j++) - { - // select the size - int sz = 0; - if (j % 5 == 0) sz = rnd.Next(15000) + 150000; - else if (j % 17 == 1) sz = rnd.Next(50 * 1024) + 1024 * 1024; - else if (rnd.Next(13) == 0) sz = 8080; // exactly - else sz = rnd.Next(5000) + 5000; - - // randomly select the format of the file name - int n = rnd.Next(4); - - // binary or text - string filename = null; - if (rnd.Next(2) == 0) - { - filename = Path.Combine(fodderDirectory, String.Format(nameFormats[n], j) + ".txt"); - TestUtilities.CreateAndFillFileText(filename, sz); - } - else - { - filename = Path.Combine(fodderDirectory, String.Format(nameFormats[n], j) + ".bin"); - TestUtilities.CreateAndFillFileBinary(filename, sz); - } - - - // maybe backdate ctime - if (rnd.Next(2) == 0) - { - var span = new TimeSpan(_rnd.Next(12), - _rnd.Next(24), - _rnd.Next(59), - _rnd.Next(59)); - TouchFile(filename, WhichTime.ctime, twentyDaysAgo + span); - } - - // maybe backdate mtime - if (rnd.Next(2) == 0) - { - var span = new TimeSpan(_rnd.Next(1), - _rnd.Next(24), - _rnd.Next(59), - _rnd.Next(59)); - TouchFile(filename, WhichTime.mtime, threeDaysAgo+span); - } - - // maybe backdate atime - if (rnd.Next(2) == 0) - { - var span = new TimeSpan(_rnd.Next(24),_rnd.Next(59),_rnd.Next(59)); - TouchFile(filename, WhichTime.atime, yesterdayAtMidnight+span); - } - - // set the creation time to "a long time ago" on 1/14th of the files - if (j % 14 == 0) - { - DateTime x = new DateTime(1998, 4, 29); // julianna - var span = new TimeSpan(_rnd.Next(22), - _rnd.Next(24), - _rnd.Next(59), - _rnd.Next(59)); - File.SetCreationTime(filename, x+span); - } - - // maybe move to a subdir - n = rnd.Next(6); - if (n < 4) - { - string newFilename = Path.Combine(dirs[n], Path.GetFileName(filename)); - File.Move(filename, newFilename); - filename = newFilename; - } - - // mark some of the files as hidden, system, readonly, etc - if (j % 9 == 0) - File.SetAttributes(filename, FileAttributes.Hidden); - if (j % 14 == 0) - File.SetAttributes(filename, FileAttributes.ReadOnly); - if (j % 13 == 0) - File.SetAttributes(filename, FileAttributes.System); - if (j % 11 == 0) - File.SetAttributes(filename, FileAttributes.Archive); - - entriesAdded++; - - if (txrx != null) - { - txrx.Send("pb 0 step"); - if (entriesAdded % 8 == 0) - txrx.Send(String.Format("status creating files ({0}/{1})", entriesAdded, fileCount)); - } - } - // restore the cwd - Directory.SetCurrentDirectory(originalDir); - - txrx.Send("stop"); - } - - - - class Trial - { - public string Label; - public string C1; - public string C2; - } - - - - - [TestMethod] - public void Selector_SelectFiles() - { - Directory.SetCurrentDirectory(TopLevelDir); - - Trial[] trials = new Trial[] - { - new Trial { Label = "name", C1 = "name = *.txt", C2 = "name = *.bin" }, - new Trial { Label = "name (shorthand)", C1 = "*.txt", C2 = "*.bin" }, - new Trial { Label = "size", C1 = "size < 7500", C2 = "size >= 7500" }, - new Trial { Label = "size", C1 = "size = 8080", C2 = "size != 8080" }, - new Trial { Label = "name & size", - C1 = "name = *.bin AND size > 7500", - C2 = "name != *.bin OR size <= 7500", - }, - new Trial { Label = "name XOR name", - C1 = "name = *.bin XOR name = *4.*", - C2 = "(name != *.bin OR name = *4.*) AND (name = *.bin OR name != *4.*)", - }, - new Trial { Label = "name XOR size", - C1 = "name = *.bin XOR size > 100k", - C2 = "(name != *.bin OR size > 100k) AND (name = *.bin OR size <= 100k)", - }, - new Trial - { - Label = "mtime", - C1 = String.Format("mtime < {0}", twentyDaysAgo.ToString("yyyy-MM-dd")), - C2 = String.Format("mtime >= {0}", twentyDaysAgo.ToString("yyyy-MM-dd")), - }, - new Trial - { - Label = "ctime", - C1 = String.Format("mtime < {0}", threeDaysAgo.ToString("yyyy-MM-dd")), - C2 = String.Format("mtime >= {0}", threeDaysAgo.ToString("yyyy-MM-dd")), - }, - new Trial - { - Label = "atime", - C1 = String.Format("mtime < {0}", yesterdayAtMidnight.ToString("yyyy-MM-dd")), - C2 = String.Format("mtime >= {0}", yesterdayAtMidnight.ToString("yyyy-MM-dd")), - }, - new Trial { Label = "size (100k)", C1="size > 100k", C2="size <= 100kb", }, - new Trial { Label = "size (1mb)", C1="size > 1m", C2="size <= 1mb", }, - new Trial { Label = "size (1gb)", C1="size > 1g", C2="size <= 1gb", }, - new Trial { Label = "attributes (Hidden)", C1 = "attributes = H", C2 = "attributes != H" }, - new Trial { Label = "attributes (ReadOnly)", C1 = "attributes = R", C2 = "attributes != R" }, - new Trial { Label = "attributes (System)", C1 = "attributes = S", C2 = "attributes != S" }, - new Trial { Label = "attributes (Archive)", C1 = "attributes = A", C2 = "attributes != A" }, - - }; - - - string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_SelectFiles.zip"); - Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); - - int count1, count2; - //String filename = null; - - SetupFiles(); - var topLevelFiles = Directory.GetFiles(fodderDirectory, "*.*", SearchOption.TopDirectoryOnly); - - for (int m = 0; m < trials.Length; m++) - { - Ionic.FileSelector ff = new Ionic.FileSelector(trials[m].C1); - var list = ff.SelectFiles(fodderDirectory); - TestContext.WriteLine("======================================================="); - TestContext.WriteLine("Selector: " + ff.ToString()); - TestContext.WriteLine("Criteria({0})", ff.SelectionCriteria); - TestContext.WriteLine("Count({0})", list.Count); - count1 = 0; - foreach (string s in list) - { - switch (m) - { - case 0: - case 1: - Assert.IsTrue(s.EndsWith(".txt")); - break; - case 2: - { - FileInfo fi = new FileInfo(s); - Assert.IsTrue(fi.Length < 7500); - } - break; - case 4: - { - FileInfo fi = new FileInfo(s); - bool x = s.EndsWith(".bin") && fi.Length > 7500; - Assert.IsTrue(x); - } - break; - } - count1++; - } - - ff = new Ionic.FileSelector(trials[m].C2); - list = ff.SelectFiles(fodderDirectory); - TestContext.WriteLine("- - - - - - - - - - - - - - - - - - - - - - - - - - - -"); - TestContext.WriteLine("Criteria({0})", ff.SelectionCriteria); - TestContext.WriteLine("Count({0})", list.Count); - count2 = 0; - foreach (string s in list) - { - switch (m) - { - case 0: - case 1: - Assert.IsTrue(s.EndsWith(".bin")); - break; - case 2: - { - FileInfo fi = new FileInfo(s); - Assert.IsTrue(fi.Length >= 7500); - } - break; - case 4: - { - FileInfo fi = new FileInfo(s); - bool x = !s.EndsWith(".bin") || fi.Length <= 7500; - Assert.IsTrue(x); - } - break; - } - count2++; - } - Assert.AreEqual(topLevelFiles.Length, count1 + count2); - } - } - - - - - - - - - [TestMethod, Timeout(7200000)] - public void Selector_AddSelectedFiles() - { - Directory.SetCurrentDirectory(TopLevelDir); - - Trial[] trials = new Trial[] - { - new Trial { Label = "name", C1 = "name = *.txt", C2 = "name = *.bin" }, - new Trial { Label = "name (shorthand)", C1 = "*.txt", C2 = "*.bin" }, - new Trial { Label = "attributes (Hidden)", C1 = "attributes = H", C2 = "attributes != H" }, - new Trial { Label = "attributes (ReadOnly)", C1 = "attributes = R", C2 = "attributes != R" }, - new Trial { Label = "mtime", C1 = "mtime < 2007-01-01", C2 = "mtime > 2007-01-01" }, - new Trial { Label = "atime", C1 = "atime < 2007-01-01", C2 = "atime > 2007-01-01" }, - new Trial { Label = "ctime", C1 = "ctime < 2007-01-01", C2 = "ctime > 2007-01-01" }, - new Trial { Label = "size", C1 = "size < 7500", C2 = "size >= 7500" }, - - new Trial { Label = "name & size", - C1 = "name = *.bin AND size > 7500", - C2 = "name != *.bin OR size <= 7500", - }, - - new Trial { Label = "name, size & attributes", - C1 = "name = *.bin AND size > 8kb and attributes = H", - C2 = "name != *.bin OR size <= 8kb or attributes != H", - }, - - new Trial { Label = "name, size, time & attributes.", - C1 = "name = *.bin AND size > 7k and mtime < 2007-01-01 and attributes = H", - C2 = "name != *.bin OR size <= 7k or mtime > 2007-01-01 or attributes != H", - }, - }; - - _txrx = TestUtilities.StartProgressMonitor("AddSelectedFiles", "AddSelectedFiles", "starting up..."); - - string[] zipFileToCreate = { - Path.Combine(TopLevelDir, "Selector_AddSelectedFiles-1.zip"), - Path.Combine(TopLevelDir, "Selector_AddSelectedFiles-2.zip") - }; - - Assert.IsFalse(File.Exists(zipFileToCreate[0]), "The zip file '{0}' already exists.", zipFileToCreate[0]); - Assert.IsFalse(File.Exists(zipFileToCreate[1]), "The zip file '{0}' already exists.", zipFileToCreate[1]); - - int count1, count2; - - SetupFiles(); - var topLevelFiles = Directory.GetFiles(fodderDirectory, "*.*", SearchOption.TopDirectoryOnly); - - string currentDir = Directory.GetCurrentDirectory(); - _txrx.Send(String.Format("pb 0 max {0}", 2 * (trials.Length + 1))); - - _txrx.Send("pb 0 step"); - - for (int m = 0; m < trials.Length; m++) - { - _txrx.Send("test AddSelectedFiles"); - _txrx.Send("pb 1 max 4"); - _txrx.Send(String.Format("status test {0}/{1}: creating zip #1/2", - m + 1, trials.Length)); - TestContext.WriteLine("==============================================="); - TestContext.WriteLine("AddSelectedFiles() [{0}]", trials[m].Label); - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddSelectedFiles(trials[m].C1, fodderDirectory, ""); - zip1.Save(zipFileToCreate[0]); - } - count1 = TestUtilities.CountEntries(zipFileToCreate[0]); - TestContext.WriteLine("C1({0}) Count({1})", trials[m].C1, count1); - _txrx.Send("pb 1 step"); - System.Threading.Thread.Sleep(100); - _txrx.Send("pb 0 step"); - - _txrx.Send(String.Format("status test {0}/{1}: creating zip #2/2", - m + 1, trials.Length)); - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddSelectedFiles(trials[m].C2, fodderDirectory, ""); - zip1.Save(zipFileToCreate[1]); - } - count2 = TestUtilities.CountEntries(zipFileToCreate[1]); - TestContext.WriteLine("C2({0}) Count({1})", trials[m].C2, count2); - Assert.AreEqual(topLevelFiles.Length, count1 + count2); - _txrx.Send("pb 1 step"); - - /// ======================================================= - /// Now, select entries from that ZIP - _txrx.Send(String.Format("status test {0}/{1}: selecting zip #1/2", - m + 1, trials.Length)); - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate[0])) - { - var selected1 = zip1.SelectEntries(trials[m].C1); - Assert.AreEqual(selected1.Count, count1); - } - _txrx.Send("pb 1 step"); - - _txrx.Send(String.Format("status test {0}/{1}: selecting zip #2/2", - m + 1, trials.Length)); - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate[1])) - { - var selected2 = zip1.SelectEntries(trials[m].C2); - Assert.AreEqual(selected2.Count, count2); - } - _txrx.Send("pb 1 step"); - - _txrx.Send("pb 0 step"); - } - - } - - - [TestMethod] - public void Selector_AddSelectedFiles_2() - { - string zipFileToCreate = "Selector_AddSelectedFiles_2.zip"; - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - var txtFiles = Directory.GetFiles(dirToZip, "*.txt", SearchOption.AllDirectories); - - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddSelectedFiles("*.txt"); - zip1.Save(zipFileToCreate); - } - - Assert.AreEqual(0, TestUtilities.CountEntries(zipFileToCreate)); - - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddSelectedFiles("*.txt", true); - zip1.Save(zipFileToCreate); - } - - Assert.AreEqual(txtFiles.Length, TestUtilities.CountEntries(zipFileToCreate)); - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddSelectedFiles("*.txt", ".", true); - zip1.Save(zipFileToCreate); - } - - Assert.AreEqual(txtFiles.Length, TestUtilities.CountEntries(zipFileToCreate)); - - } - - - [TestMethod] - public void Selector_AddSelectedFiles_Checkcase_file() - { - string zipFileToCreate = "AddSelectedFiles_Checkcase.zip"; - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - - Directory.SetCurrentDirectory(dirToZip); - var f2 = Directory.GetFiles(".", "*.*"); - Array.ForEach(f2, x => { File.Move(x,Path.GetFileName(x).ToUpper()); }); - Directory.SetCurrentDirectory(TopLevelDir); - - var txtFiles = Directory.GetFiles(dirToZip, "*.txt", - SearchOption.AllDirectories); - - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddSelectedFiles("*.txt", dirToZip); - zip1.Save(zipFileToCreate); - } - - int nEntries = 0; - // now, verify that we have not downcased the filenames - using (ZipFile zip2 = new ZipFile(zipFileToCreate)) - { - foreach (var entry in zip2.Entries) - { - Assert.IsFalse(entry.FileName.Equals(entry.FileName.ToLower())); - nEntries++; - } - } - Assert.IsFalse(nEntries < 2, "not enough entries"); - - } - - - - [TestMethod] - public void Selector_AddSelectedFiles_Checkcase_directory() - { - string zipFileToCreate = "AddSelectedFiles_Checkcase.zip"; - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()).ToUpper(); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - - var txtFiles = Directory.GetFiles(dirToZip, "*.txt", - SearchOption.AllDirectories); - - Assert.IsFalse(txtFiles.Length < 3, "not enough entries (n={0})", - txtFiles.Length); - - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddSelectedFiles("*.txt", dirToZip); - zip1.Save(zipFileToCreate); - } - - int nEntries = 0; - // now, verify that we have not downcased the filenames - using (ZipFile zip2 = new ZipFile(zipFileToCreate)) - { - foreach (var entry in zip2.Entries) - { - Assert.IsFalse(entry.FileName.Equals(entry.FileName.ToLower())); - nEntries++; - } - } - Assert.IsFalse(nEntries < 3, "not enough entries (n={0})", nEntries); - } - - - [TestMethod] - public void Selector_AddSelectedFiles_Checkcase_directory_2() - { - string zipFileToCreate = "AddSelectedFiles_Checkcase.zip"; - string shortDirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()).ToUpper(); - string dirToZip = Path.Combine(TopLevelDir, shortDirToZip); // fully qualified - var files = TestUtilities.GenerateFilesFlat(shortDirToZip); - string keyword = "Ammon"; - int n = _rnd.Next(3)+2; - for (int i=0; i < n; i++) - { - Directory.SetCurrentDirectory(dirToZip); - string subdir = keyword + i; - TestUtilities.GenerateFilesFlat(subdir); - Directory.SetCurrentDirectory(subdir); - var f2 = Directory.GetFiles(".", "*.*"); - int k = 2; - Array.ForEach(f2, x => { - File.Move(x, String.Format("{0}.{1:D5}.txt", keyword.ToUpper(), k++)); }); - } - - Directory.SetCurrentDirectory(TopLevelDir); - - TestContext.WriteLine("Create zip file"); - using (ZipFile zip1 = new ZipFile()) - { - var criterion = "name = *\\" + keyword + "?\\*.txt"; - zip1.AddSelectedFiles(criterion, ".\\" + shortDirToZip, "files", true); - zip1.Save(zipFileToCreate); - } - - TestContext.WriteLine("Verify case of entry FileNames"); - int nEntries = 0; - // now, verify that we have not downcased entry.FileName - using (ZipFile zip2 = new ZipFile(zipFileToCreate)) - { - foreach (var entry in zip2.Entries) - { - TestContext.WriteLine("Check {0}", entry.FileName); - Assert.AreNotEqual(entry.FileName, - entry.FileName.ToLower(), - entry.FileName); - nEntries++; - } - } - Assert.IsFalse(nEntries < 3, "not enough entries"); - } - - - - [TestMethod] - public void Selector_SelectEntries_FwdSlash_wi13350() - { - string zipFileToCreate = "SelectEntries.zip"; - - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - - TestContext.WriteLine("Create zip file"); - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddDirectory(dirToZip, dirToZip); - zip1.Save(zipFileToCreate); - } - - // Select Entries - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - var selection1 = zip2.SelectEntries("name = " + dirToZip + "\\" + "*.txt"); - //var selection1 = zip2.SelectEntries("name = *.txt"); - Assert.IsTrue(selection1.Count > 2, "{0} is simply not enough entries!", - selection1.Count); - var selection2 = zip2.SelectEntries(dirToZip + "/" + "*.txt"); - Assert.AreEqual(selection1.Count, - selection2.Count, - "{0} != {1}", - selection1.Count, - selection2.Count); - } - } - - - [TestMethod] - public void Selector_CheckRemove_wi10499() - { - string zipFileToCreate = "CheckRemove.zip"; - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - - TestContext.WriteLine("Create zip file"); - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddDirectory(dirToZip, dirToZip); - zip1.Save(zipFileToCreate); - } - - int nBefore= 0, nAfter = 0, nRemoved = 0; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - ICollection entries = zip2.SelectEntries("*.txt"); - Assert.IsFalse(entries.Count < 3, "not enough entries"); - nBefore = entries.Count; - - foreach(ZipEntry entry in entries) - { - TestContext.WriteLine("Removing {0}", entry.FileName); - zip2.RemoveEntry(entry); - nRemoved++; - } - var remainingEntries = zip2.SelectEntries("*.txt"); - nAfter = remainingEntries.Count; - TestContext.WriteLine("Remaining:"); - foreach(ZipEntry entry in remainingEntries) - { - TestContext.WriteLine(" {0}", - entry.FileName); - } - } - - Assert.IsTrue(nBefore>nAfter,"Removal appeared to have no effect."); - Assert.IsTrue(nBefore-nRemoved==nAfter,"Wrong number of entries {0}-{1}!={2}", - nBefore, nRemoved, nAfter); - } - - - private enum WhichTime - { - atime, - mtime, - ctime, - } - - - - private static void TouchFile(string strFile, WhichTime which, DateTime stamp) - { - System.IO.FileInfo fi = new System.IO.FileInfo(strFile); - if (which == WhichTime.atime) - fi.LastAccessTime = stamp; - else if (which == WhichTime.ctime) - fi.CreationTime = stamp; - else if (which == WhichTime.mtime) - fi.LastWriteTime = stamp; - else throw new System.ArgumentException("which"); - } - - - - [TestMethod] - public void Selector_SelectEntries_ByTime() - { - //Directory.SetCurrentDirectory(TopLevelDir); - - string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_SelectEntries.zip"); - - Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); - - SetupFiles(); - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Creating zip..."); - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddDirectory(fodderDirectory, ""); - zip1.Save(zipFileToCreate); - } - Assert.AreEqual(numFodderFiles, TestUtilities.CountEntries(zipFileToCreate), "A"); - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Reading zip, SelectEntries() by date..."); - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - var totalEntries = numFodderFiles+numFodderDirs; - - // all of the files should have been modified either - // after midnight today, or before. - string crit = String.Format("mtime >= {0}", todayAtMidnight.ToString("yyyy-MM-dd")); - var selected1 = zip1.SelectEntries(crit); - TestContext.WriteLine("Case A({0}) count({1})", crit, selected1.Count); - crit = String.Format("mtime < {0}", todayAtMidnight.ToString("yyyy-MM-dd")); - var selected2 = zip1.SelectEntries(crit); - TestContext.WriteLine("Case B({0}) count({1})", crit, selected2.Count); - Assert.AreEqual(totalEntries, - selected1.Count + selected2.Count, "B"); - - - // some nonzero (high) number of files should have been - // created in the past twenty days. - crit = String.Format("ctime >= {0}", twentyDaysAgo.ToString("yyyy-MM-dd")); - var selected3 = zip1.SelectEntries(crit); - TestContext.WriteLine("Case C({0}) count({1})", crit, selected3.Count); - Assert.IsTrue(selected3.Count > 0, "C"); - - - // a nonzero number should be marked as having been - // created more than 3 years ago. - crit = String.Format("ctime < {0}", - threeYearsAgo.ToString("yyyy-MM-dd")); - var selected4 = zip1.SelectEntries(crit); - TestContext.WriteLine("Case D({0}) count({1})", crit, selected4.Count); - Assert.IsTrue(selected4.Count > 0, "D"); - - // None of the files should have been created - // more than 20 years ago - var twentyYearsAgo = todayAtMidnight.AddYears(-20); - crit = String.Format("ctime < {0}", - twentyYearsAgo.ToString("yyyy-MM-dd")); - var selected5 = zip1.SelectEntries(crit); - TestContext.WriteLine("Case F({0}) count({1})", crit, selected5.Count); - Assert.IsTrue(selected5.Count==0, "F"); - - // Some number of the files should have been created - // more than three days ago - crit = String.Format("ctime < {0}", - threeDaysAgo.ToString("yyyy-MM-dd")); - selected5 = zip1.SelectEntries(crit); - TestContext.WriteLine("Case E({0}) count({1})", crit, selected5.Count); - Assert.IsTrue(selected5.Count>0, "E"); - - // summing all those created more than three days ago, - // with those created in the last three days, should be all entries. - crit = String.Format("ctime >= {0}", threeDaysAgo.ToString("yyyy-MM-dd")); - var selected6 = zip1.SelectEntries(crit); - TestContext.WriteLine("Case G({0}) count({1})", crit, selected6.Count); - Assert.IsTrue(selected6.Count>0, "G"); - Assert.AreEqual(totalEntries, selected5.Count + selected6.Count, "G"); - - - // some number should have been accessed in the past 2 days - crit = String.Format("atime >= {0} and atime < {1}", - twoDaysAgo.ToString("yyyy-MM-dd"), - todayAtMidnight.ToString("yyyy-MM-dd")); - selected5 = zip1.SelectEntries(crit); - TestContext.WriteLine("Case H({0}) count({1})", crit, selected5.Count); - Assert.IsTrue(selected5.Count > 0, "H"); - - // those accessed *exactly* at midnight yesterday, plus - // those NOT = all entries - crit = String.Format("atime = {0}", - yesterdayAtMidnight.ToString("yyyy-MM-dd")); - selected5 = zip1.SelectEntries(crit); - TestContext.WriteLine("Case I({0}) count({1})", crit, selected5.Count); - - crit = String.Format("atime != {0}", - yesterdayAtMidnight.ToString("yyyy-MM-dd")); - selected6 = zip1.SelectEntries(crit); - TestContext.WriteLine("Case J({0}) count({1})", crit, selected6.Count); - Assert.AreEqual(totalEntries, selected5.Count + selected6.Count, "J"); - - // those marked as last accessed more than 20 days ago == empty set - crit = String.Format("atime <= {0}", - twentyDaysAgo.ToString("yyyy-MM-dd")); - selected5 = zip1.SelectEntries(crit); - TestContext.WriteLine("Case K({0}) count({1})", crit, selected5.Count); - Assert.AreEqual(0, selected5.Count, "K"); - } - } - - - - [TestMethod] - public void Selector_ExtractSelectedEntries() - { - //Directory.SetCurrentDirectory(TopLevelDir); - - string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_ExtractSelectedEntries.zip"); - - SetupFiles(); - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Creating zip..."); - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddDirectory(fodderDirectory, ""); - zip1.Save(zipFileToCreate); - } - Assert.AreEqual(numFodderFiles, TestUtilities.CountEntries(zipFileToCreate)); - - string extractDir = "extract"; - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Reading zip, ExtractSelectedEntries() by date..."); - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - string crit = String.Format("mtime >= {0}", todayAtMidnight.ToString("yyyy-MM-dd")); - TestContext.WriteLine("Criteria({0})", crit); - zip1.ExtractSelectedEntries(crit, null, extractDir); - } - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Reading zip, ExtractSelectedEntries() by date, with overwrite..."); - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - string crit = String.Format("mtime >= {0}", todayAtMidnight.ToString("yyyy-MM-dd")); - TestContext.WriteLine("Criteria({0})", crit); - zip1.ExtractSelectedEntries(crit, null, extractDir, ExtractExistingFileAction.OverwriteSilently); - } - - - // workitem 9174: test ExtractSelectedEntries using a directoryPathInArchive - List dirs = new List(); - // first, get the list of directories used by all entries - TestContext.WriteLine("Reading zip, ..."); - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - foreach (var e in zip1) - { - TestContext.WriteLine("entry {0}", e.FileName); - string p = Path.GetDirectoryName(e.FileName.Replace("/", "\\")); - if (!dirs.Contains(p)) dirs.Add(p); - } - } - - // with or without trailing slash - for (int i = 0; i < 2; i++) - { - int grandTotal = 0; - extractDir = String.Format("extract.{0}", i); - for (int j = 0; j < dirs.Count; j++) - { - string d = dirs[j]; - if (i == 1) d += "\\"; - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Reading zip, ExtractSelectedEntries() by name, with directoryInArchive({0})...", d); - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - string crit = "name = *.bin"; - TestContext.WriteLine("Criteria({0})", crit); - var s = zip1.SelectEntries(crit, d); - TestContext.WriteLine(" {0} entries", s.Count); - grandTotal += s.Count; - zip1.ExtractSelectedEntries(crit, d, extractDir, ExtractExistingFileAction.OverwriteSilently); - } - } - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Total for all dirs: {0} entries", grandTotal); - - var extracted = Directory.GetFiles(extractDir, "*.bin", SearchOption.AllDirectories); - - Assert.AreEqual(grandTotal, extracted.Length); - } - } - - - - - [TestMethod] - public void Selector_SelectEntries_ByName() - { - // Directory.SetCurrentDirectory(TopLevelDir); - - string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_SelectEntries.zip"); - - Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); - - //int count1, count2; - int entriesAdded = 0; - String filename = null; - - string subDir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subDir); - - int fileCount = _rnd.Next(33) + 33; - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Files being added to the zip:"); - for (int j = 0; j < fileCount; j++) - { - // select binary or text - if (_rnd.Next(2) == 0) - { - filename = Path.Combine(subDir, String.Format("file{0:D3}.txt", j)); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(5000) + 5000); - } - else - { - filename = Path.Combine(subDir, String.Format("file{0:D3}.bin", j)); - TestUtilities.CreateAndFillFileBinary(filename, _rnd.Next(5000) + 5000); - } - TestContext.WriteLine(Path.GetFileName(filename)); - entriesAdded++; - } - - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Creating zip..."); - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddDirectory(subDir, ""); - zip1.Save(zipFileToCreate); - } - Assert.AreEqual(entriesAdded, TestUtilities.CountEntries(zipFileToCreate)); - - - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Reading zip, SelectEntries() by name..."); - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - var selected1 = zip1.SelectEntries("name = *.txt"); - var selected2 = zip1.SelectEntries("name = *.bin"); - var selected3 = zip1.SelectEntries("name = *.bin OR name = *.txt"); - TestContext.WriteLine("Found {0} text files, {0} bin files.", selected1.Count, selected2.Count); - TestContext.WriteLine("Text files:"); - foreach (ZipEntry e in selected1) - { - TestContext.WriteLine(e.FileName); - } - Assert.AreEqual(entriesAdded, selected1.Count + selected2.Count); - } - - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Reading zip, SelectEntries() using shorthand filters..."); - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - var selected1 = zip1.SelectEntries("*.txt"); - var selected2 = zip1.SelectEntries("*.bin"); - TestContext.WriteLine("Text files:"); - foreach (ZipEntry e in selected1) - { - TestContext.WriteLine(e.FileName); - } - Assert.AreEqual(entriesAdded, selected1.Count + selected2.Count); - } - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Reading zip, SelectEntries() again ..."); - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - string crit = "name = *.txt AND name = *.bin"; - // none of the entries should match this: - var selected1 = zip1.SelectEntries(crit); - TestContext.WriteLine("Criteria({0}) count({1})", crit, selected1.Count); - Assert.AreEqual(0, selected1.Count); - - // all of the entries should match this: - crit = "name = *.txt XOR name = *.bin"; - var selected2 = zip1.SelectEntries(crit); - TestContext.WriteLine("Criteria({0}) count({1})", crit, selected2.Count); - Assert.AreEqual(entriesAdded, selected2.Count); - - // try an compound criterion with XOR - crit = "name = *.bin XOR name = *2.*"; - var selected3 = zip1.SelectEntries(crit); - Assert.IsTrue(selected3.Count > 0); - TestContext.WriteLine("Criteria({0}) count({1})", crit, selected3.Count); - - // factor out the XOR - crit = "(name = *.bin AND name != *2.*) OR (name != *.bin AND name = *2.*)"; - var selected4 = zip1.SelectEntries(crit); - TestContext.WriteLine("Criteria({0}) count({1})", crit, selected4.Count); - Assert.AreEqual(selected3.Count, selected4.Count); - - // take the negation of the XOR criterion - crit = "(name != *.bin OR name = *2.*) AND (name = *.bin OR name != *2.*)"; - var selected5 = zip1.SelectEntries(crit); - TestContext.WriteLine("Criteria({0}) count({1})", crit, selected4.Count); - Assert.IsTrue(selected5.Count > 0); - Assert.AreEqual(entriesAdded, selected3.Count + selected5.Count); - } - } - - - - [TestMethod] - public void Selector_SelectEntries_ByName_NamesWithSpaces() - { - //Directory.SetCurrentDirectory(TopLevelDir); - - string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_SelectEntries_Spaces.zip"); - - Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); - - //int count1, count2; - int entriesAdded = 0; - String filename = null; - - string subDir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subDir); - - int fileCount = _rnd.Next(44) + 44; - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Files being added to the zip:"); - for (int j = 0; j < fileCount; j++) - { - string space = (_rnd.Next(2) == 0) ? " " : ""; - if (_rnd.Next(2) == 0) - { - filename = Path.Combine(subDir, String.Format("file{1}{0:D3}.txt", j, space)); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(5000) + 5000); - } - else - { - filename = Path.Combine(subDir, String.Format("file{1}{0:D3}.bin", j, space)); - TestUtilities.CreateAndFillFileBinary(filename, _rnd.Next(5000) + 5000); - } - TestContext.WriteLine(Path.GetFileName(filename)); - entriesAdded++; - } - - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Creating zip..."); - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddDirectory(subDir, ""); - zip1.Save(zipFileToCreate); - } - Assert.AreEqual(entriesAdded, TestUtilities.CountEntries(zipFileToCreate)); - - - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Reading zip..."); - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - var selected1 = zip1.SelectEntries("name = *.txt"); - var selected2 = zip1.SelectEntries("name = *.bin"); - TestContext.WriteLine("Text files:"); - foreach (ZipEntry e in selected1) - { - TestContext.WriteLine(e.FileName); - } - Assert.AreEqual(entriesAdded, selected1.Count + selected2.Count); - } - - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Reading zip, using name patterns that contain spaces..."); - string[] selectionStrings = { "name = '* *.txt'", - "name = '* *.bin'", - "name = *.txt and name != '* *.txt'", - "name = *.bin and name != '* *.bin'", - }; - int count = 0; - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - foreach (string selectionCriteria in selectionStrings) - { - var selected1 = zip1.SelectEntries(selectionCriteria); - count += selected1.Count; - TestContext.WriteLine(" For criteria ({0}), found {1} files.", selectionCriteria, selected1.Count); - } - } - Assert.AreEqual(entriesAdded, count); - - } - - - [TestMethod] - public void Selector_RemoveSelectedEntries_Spaces() - { - //Directory.SetCurrentDirectory(TopLevelDir); - - string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_RemoveSelectedEntries_Spaces.zip"); - - Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); - - //int count1, count2; - int entriesAdded = 0; - String filename = null; - - string subDir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subDir); - - int fileCount = _rnd.Next(44) + 44; - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Files being added to the zip:"); - for (int j = 0; j < fileCount; j++) - { - string space = (_rnd.Next(2) == 0) ? " " : ""; - if (_rnd.Next(2) == 0) - { - filename = Path.Combine(subDir, String.Format("file{1}{0:D3}.txt", j, space)); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(5000) + 5000); - } - else - { - filename = Path.Combine(subDir, String.Format("file{1}{0:D3}.bin", j, space)); - TestUtilities.CreateAndFillFileBinary(filename, _rnd.Next(5000) + 5000); - } - TestContext.WriteLine(Path.GetFileName(filename)); - entriesAdded++; - } - - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Creating zip..."); - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddDirectory(subDir, ""); - zip1.Save(zipFileToCreate); - } - Assert.AreEqual(entriesAdded, TestUtilities.CountEntries(zipFileToCreate)); - - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Reading zip, using name patterns that contain spaces..."); - string[] selectionStrings = { "name = '* *.txt'", - "name = '* *.bin'", - "name = *.txt and name != '* *.txt'", - "name = *.bin and name != '* *.bin'", - }; - foreach (string selectionCriteria in selectionStrings) - { - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - var selected1 = zip1.SelectEntries(selectionCriteria); - zip1.RemoveEntries(selected1); - TestContext.WriteLine("for pattern {0}, Removed {1} entries", selectionCriteria, selected1.Count); - zip1.Save(); - } - - } - - Assert.AreEqual(0, TestUtilities.CountEntries(zipFileToCreate)); - } - - - [TestMethod] - public void Selector_RemoveSelectedEntries2() - { - //Directory.SetCurrentDirectory(TopLevelDir); - - string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_RemoveSelectedEntries2.zip"); - - Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); - - //int count1, count2; - int entriesAdded = 0; - String filename = null; - - string subDir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subDir); - - int fileCount = _rnd.Next(44) + 44; - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Files being added to the zip:"); - for (int j = 0; j < fileCount; j++) - { - string space = (_rnd.Next(2) == 0) ? " " : ""; - if (_rnd.Next(2) == 0) - { - filename = Path.Combine(subDir, String.Format("file{1}{0:D3}.txt", j, space)); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(5000) + 5000); - } - else - { - filename = Path.Combine(subDir, String.Format("file{1}{0:D3}.bin", j, space)); - TestUtilities.CreateAndFillFileBinary(filename, _rnd.Next(5000) + 5000); - } - TestContext.WriteLine(Path.GetFileName(filename)); - entriesAdded++; - } - - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Creating zip..."); - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddDirectory(subDir, ""); - zip1.Save(zipFileToCreate); - } - Assert.AreEqual(entriesAdded, TestUtilities.CountEntries(zipFileToCreate)); - - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Reading zip, using name patterns that contain spaces..."); - string[] selectionStrings = { "name = '* *.txt'", - "name = '* *.bin'", - "name = *.txt and name != '* *.txt'", - "name = *.bin and name != '* *.bin'", - }; - foreach (string selectionCriteria in selectionStrings) - { - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - var selected1 = zip1.SelectEntries(selectionCriteria); - ZipEntry[] entries = new ZipEntry[selected1.Count]; - selected1.CopyTo(entries, 0); - string[] names = Array.ConvertAll(entries, x => x.FileName); - zip1.RemoveEntries(names); - TestContext.WriteLine("for pattern {0}, Removed {1} entries", selectionCriteria, selected1.Count); - zip1.Save(); - } - - } - - Assert.AreEqual(0, TestUtilities.CountEntries(zipFileToCreate)); - } - - - - [TestMethod] - public void Selector_SelectEntries_subDirs() - { - //Directory.SetCurrentDirectory(TopLevelDir); - - string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_SelectFiles_subDirs.zip"); - - Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); - - int count1, count2; - - string fodder = Path.Combine(TopLevelDir, "fodder"); - Directory.CreateDirectory(fodder); - - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Creating files..."); - int entries = 0; - int i = 0; - int subdirCount = _rnd.Next(17) + 9; - //int subdirCount = _rnd.Next(3) + 2; - var FileCount = new Dictionary(); - - var checksums = new Dictionary(); - // I don't actually verify the checksums in this method... - - - for (i = 0; i < subdirCount; i++) - { - string subDirShort = new System.String(new char[] { (char)(i + 65) }); - string subDir = Path.Combine(fodder, subDirShort); - Directory.CreateDirectory(subDir); - - int filecount = _rnd.Next(8) + 8; - //int filecount = _rnd.Next(2) + 2; - FileCount[subDirShort] = filecount; - for (int j = 0; j < filecount; j++) - { - string filename = String.Format("file{0:D4}.x", j); - string fqFilename = Path.Combine(subDir, filename); - TestUtilities.CreateAndFillFile(fqFilename, _rnd.Next(1000) + 1000); - - var chk = TestUtilities.ComputeChecksum(fqFilename); - var s = TestUtilities.CheckSumToString(chk); - var t1 = Path.GetFileName(fodder); - var t2 = Path.Combine(t1, subDirShort); - var key = Path.Combine(t2, filename); - key = TestUtilities.TrimVolumeAndSwapSlashes(key); - TestContext.WriteLine("chk[{0}]= {1}", key, s); - checksums.Add(key, s); - entries++; - } - } - - Directory.SetCurrentDirectory(TopLevelDir); - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Creating zip ({0} entries in {1} subdirs)...", entries, subdirCount); - // add all the subdirectories into a new zip - using (ZipFile zip1 = new ZipFile()) - { - // add all of those subdirectories (A, B, C...) into the root in the zip archive - zip1.AddDirectory(fodder, ""); - zip1.Save(zipFileToCreate); - } - Assert.AreEqual(entries, TestUtilities.CountEntries(zipFileToCreate)); - - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Selecting entries by directory..."); - - for (int j = 0; j < 2; j++) - { - count1 = 0; - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - for (i = 0; i < subdirCount; i++) - { - string dirInArchive = new System.String(new char[] { (char)(i + 65) }); - if (j == 1) dirInArchive += "\\"; - var selected1 = zip1.SelectEntries("*.*", dirInArchive); - count1 += selected1.Count; - TestContext.WriteLine("--------------\nfiles in dir {0} ({1}):", - dirInArchive, selected1.Count); - foreach (ZipEntry e in selected1) - TestContext.WriteLine(e.FileName); - } - Assert.AreEqual(entries, count1); - } - } - - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Selecting entries by directory and size..."); - count1 = 0; - count2 = 0; - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - for (i = 0; i < subdirCount; i++) - { - string dirInArchive = new System.String(new char[] { (char)(i + 65) }); - var selected1 = zip1.SelectEntries("size > 1500", dirInArchive); - count1 += selected1.Count; - TestContext.WriteLine("--------------\nfiles in dir {0} ({1}):", - dirInArchive, selected1.Count); - foreach (ZipEntry e in selected1) - TestContext.WriteLine(e.FileName); - } - - var selected2 = zip1.SelectEntries("size <= 1500"); - count2 = selected2.Count; - Assert.AreEqual(entries, count1 + count2 - subdirCount); - } - - } - - - - [TestMethod] - public void Selector_SelectEntries_Fullpath() - { - //Directory.SetCurrentDirectory(TopLevelDir); - - string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_SelectFiles_Fullpath.zip"); - - Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); - - int count1, count2; - - string fodder = Path.Combine(TopLevelDir, "fodder"); - Directory.CreateDirectory(fodder); - - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Creating files..."); - int entries = 0; - int i = 0; - int subdirCount = _rnd.Next(17) + 9; - //int subdirCount = _rnd.Next(3) + 2; - var FileCount = new Dictionary(); - - var checksums = new Dictionary(); - // I don't actually verify the checksums in this method... - - - for (i = 0; i < subdirCount; i++) - { - string subDirShort = new System.String(new char[] { (char)(i + 65) }); - string subDir = Path.Combine(fodder, subDirShort); - Directory.CreateDirectory(subDir); - - int filecount = _rnd.Next(8) + 8; - //int filecount = _rnd.Next(2) + 2; - FileCount[subDirShort] = filecount; - for (int j = 0; j < filecount; j++) - { - string filename = String.Format("file{0:D4}.x", j); - string fqFilename = Path.Combine(subDir, filename); - TestUtilities.CreateAndFillFile(fqFilename, _rnd.Next(1000) + 1000); - - var chk = TestUtilities.ComputeChecksum(fqFilename); - var s = TestUtilities.CheckSumToString(chk); - var t1 = Path.GetFileName(fodder); - var t2 = Path.Combine(t1, subDirShort); - var key = Path.Combine(t2, filename); - key = TestUtilities.TrimVolumeAndSwapSlashes(key); - TestContext.WriteLine("chk[{0}]= {1}", key, s); - checksums.Add(key, s); - entries++; - } - } - - Directory.SetCurrentDirectory(TopLevelDir); - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Creating zip ({0} entries in {1} subdirs)...", entries, subdirCount); - // add all the subdirectories into a new zip - using (ZipFile zip1 = new ZipFile()) - { - // add all of those subdirectories (A, B, C...) into the root in the zip archive - zip1.AddDirectory(fodder, ""); - zip1.Save(zipFileToCreate); - } - Assert.AreEqual(entries, TestUtilities.CountEntries(zipFileToCreate)); - - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Selecting entries by full path..."); - count1 = 0; - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - for (i = 0; i < subdirCount; i++) - { - string dirInArchive = new System.String(new char[] { (char)(i + 65) }); - var selected1 = zip1.SelectEntries(Path.Combine(dirInArchive, "*.*")); - count1 += selected1.Count; - TestContext.WriteLine("--------------\nfiles in dir {0} ({1}):", - dirInArchive, selected1.Count); - foreach (ZipEntry e in selected1) - TestContext.WriteLine(e.FileName); - } - Assert.AreEqual(entries, count1); - } - - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Selecting entries by directory and size..."); - count1 = 0; - count2 = 0; - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - for (i = 0; i < subdirCount; i++) - { - string dirInArchive = new System.String(new char[] { (char)(i + 65) }); - string pathCriterion = String.Format("name = {0}", - Path.Combine(dirInArchive, "*.*")); - string combinedCriterion = String.Format("size > 1500 AND {0}", pathCriterion); - - var selected1 = zip1.SelectEntries(combinedCriterion, dirInArchive); - count1 += selected1.Count; - TestContext.WriteLine("--------------\nfiles in ({0}) ({1} entries):", - combinedCriterion, - selected1.Count); - foreach (ZipEntry e in selected1) - TestContext.WriteLine(e.FileName); - } - - var selected2 = zip1.SelectEntries("size <= 1500"); - count2 = selected2.Count; - Assert.AreEqual(entries, count1 + count2 - subdirCount); - } - } - - - - - [TestMethod] - public void Selector_SelectEntries_NestedDirectories_wi8559() - { - //Directory.SetCurrentDirectory(TopLevelDir); - string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_SelectFiles_NestedDirectories.zip"); - - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Creating zip file..."); - - int dirCount = _rnd.Next(4) + 3; - using (var zip = new ZipFile()) - { - for (int i = 0; i < dirCount; i++) - { - String dir = new String((char)(65 + i), i + 1); - zip.AddEntry(Path.Combine(dir, "Readme.txt"), "This is the content for the Readme.txt in directory " + dir); - int subDirCount = _rnd.Next(3) + 2; - for (int j = 0; j < subDirCount; j++) - { - String subdir = Path.Combine(dir, new String((char)(90 - j), 3)); - zip.AddEntry(Path.Combine(subdir, "Readme.txt"), "This is the content for the Readme.txt in directory " + subdir); - } - } - zip.Save(zipFileToCreate); - } - - // this testmethod does not extract files, or verify checksums ... - - // just want to verify that selection of entries works in nested directories as - // well as - TestContext.WriteLine("===================================================="); - TestContext.WriteLine("Selecting entries by path..."); - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - for (int i = 0; i < dirCount; i++) - { - String dir = new String((char)(65 + i), i + 1); - var selected1 = zip1.SelectEntries("*.txt", dir); - Assert.AreEqual(1, selected1.Count); - - selected1 = zip1.SelectEntries("*.txt", dir + "/ZZZ"); - var selected2 = zip1.SelectEntries("*.txt", dir + "\\ZZZ"); - Assert.AreEqual(selected1.Count, selected2.Count); - - selected1 = zip1.SelectEntries("*.txt", dir + "/YYY"); - selected2 = zip1.SelectEntries("*.txt", dir + "\\YYY"); - Assert.AreEqual(selected1.Count, selected2.Count); - } - } - } - - - - - [TestMethod] - public void Selector_SelectFiles_DirName_wi8245() - { - // workitem 8245 - //Directory.SetCurrentDirectory(TopLevelDir); - SetupFiles(); - var ff = new Ionic.FileSelector("*.*"); - var result = ff.SelectFiles(fodderDirectory); - Assert.IsTrue(result.Count > 1); - } - - - [TestMethod] - public void Selector_SelectFiles_DirName_wi8245_2() - { - // workitem 8245 - string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_SelectFiles_DirName_wi8245_2.zip"); - //Directory.SetCurrentDirectory(TopLevelDir); - SetupFiles(); - - var fodderFiles = Directory.GetFiles(fodderDirectory, "*.*", SearchOption.AllDirectories); - - TestContext.WriteLine("==============================================="); - TestContext.WriteLine("AddSelectedFiles()"); - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddSelectedFiles(fodderDirectory, null, "fodder", true); - zip1.Save(zipFileToCreate); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), fodderFiles.Length, - "The Zip file has the wrong number of entries."); - } - - - - [TestMethod] - public void Selector_SelectFiles_DirName_wi9176() - { - // workitem 9176 - //Directory.SetCurrentDirectory(TopLevelDir); - - _txrx= TestUtilities.StartProgressMonitor("SelectFiles-DirName", - "Select Files by DirName", - "workitem 9176"); - - SetupFiles(); - - var binFiles = Directory.GetFiles(fodderDirectory, "*.bin", SearchOption.AllDirectories); - - int[] eCount = new int[2]; - _txrx.Send("pb 0 max 2"); - for (int i = 0; i < 2; i++) - { - string zipFileToCreate = Path.Combine(TopLevelDir, - String.Format("Selector_SelectFiles_DirName_wi9176-{0}.zip", i)); - _txrx.Send("pb 1 max 4"); - _txrx.Send("pb 1 value 0"); - string d = fodderDirectory; - if (i == 1) d += "\\"; - TestContext.WriteLine("==============================================="); - TestContext.WriteLine("AddSelectedFiles(cycle={0})", i); - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddSelectedFiles("name = *.bin", d, "", true); - _txrx.Send("pb 1 step"); - zip1.Save(zipFileToCreate); - } - _txrx.Send("pb 1 step"); - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), binFiles.Length, - "The Zip file has the wrong number of entries."); - - _txrx.Send("pb 2 step"); - - using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) - { - foreach (var e in zip1) - { - if (e.FileName.Contains("/")) eCount[i]++; - } - } - _txrx.Send("pb 1 step"); - - if (i==1) - Assert.AreEqual(eCount[0], eCount[1], - "Inconsistent results when the directory includes a path.", i); - - _txrx.Send("pb 0 step"); - } - } - - - [TestMethod] - public void Selector_SelectFiles_GoodSyntax01() - { - string[] criteria = { - "type = D", - "type = F", - "attrs = HRS", - "attrs = L", - "name = *.txt OR (size > 7800)", - "name = *.harvey OR (size > 7800 and attributes = H)", - "(name = *.harvey) OR (size > 7800 and attributes = H)", - "(name = *.xls) and (name != *.xls) OR (size > 7800 and attributes = H)", - "(name = '*.xls')", - "(name = Ionic.Zip.dll) or ((size > 1mb) and (name != *.zip))", - "(name = Ionic.Zip.dll) or ((size > 1mb) and (name != *.zip)) or (name = Joe.txt)", - "(name=Ionic.Zip.dll) or ((size>1mb) and (name!=*.zip)) or (name=Joe.txt)", - "(name=Ionic.Zip.dll)or((size>1mb)and(name!=*.zip))or(name=Joe.txt)", - }; - - foreach (string s in criteria) - { - TestContext.WriteLine("Selector: " + s); - var ff = new Ionic.FileSelector(s); - } - } - - - [TestMethod] - public void Selector_Twiddle_wi10153() - { - // workitem 10153: - // - // When calling AddSelectedFiles(String,String,String,bool), and when the - // actual filesystem path uses mixed case, but the specified directoryOnDisk - // argument is downcased, AND when the filename contains a ~ (weird, I - // know), verify that the path replacement works as advertised, and entries - // are rooted in the directoryInArchive specified path. - - string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_Twiddle.zip"); - string dirToZip = "dirToZip"; - var keyword = "Gamma"; - var files = TestUtilities.GenerateFilesFlat(dirToZip); - int k = 0; - Directory.SetCurrentDirectory(dirToZip); - Array.ForEach(files, x => { - File.Move(Path.GetFileName(x), - String.Format("~{0}.{1:D5}.txt", keyword, k++)); - }); - Directory.SetCurrentDirectory(TopLevelDir); - - using (ZipFile zip = new ZipFile()) - { - // must use ToLower to force case mismatch - zip.AddSelectedFiles("name != *.zip*", dirToZip.ToLower(), "", true); - zip.Save(zipFileToCreate); - } - - int nEntries = 0; - using (ZipFile zip = ZipFile.Read(zipFileToCreate)) - { - foreach (var e in zip) - TestContext.WriteLine("entry {0}", e.FileName); - - TestContext.WriteLine(""); - - foreach (var e in zip) - { - TestContext.WriteLine("check {0}", e.FileName); - Assert.IsFalse(e.FileName.Contains("/"), - "The filename contains a path, but shouldn't"); - nEntries++; - } - } - Assert.IsTrue(nEntries>2, "Not enough entries"); - } - - - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadNoun() - { - new Ionic.FileSelector("fame = *.txt"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax01() - { - new Ionic.FileSelector("size = "); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax02() - { - new Ionic.FileSelector("name = *.txt and"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax03() - { - new Ionic.FileSelector("name = *.txt URF "); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax04() - { - new Ionic.FileSelector("name = *.txt OR ("); - } - - [TestMethod] - [ExpectedException(typeof(System.FormatException))] - public void Selector_SelectFiles_BadSyntax05() - { - new Ionic.FileSelector("name = *.txt OR (size = G)"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax06() - { - new Ionic.FileSelector("name = *.txt OR (size > )"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax07() - { - new Ionic.FileSelector("name = *.txt OR (size > 7800"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax08() - { - new Ionic.FileSelector("name = *.txt OR )size > 7800"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax09() - { - new Ionic.FileSelector("name = *.txt and name ="); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax10() - { - new Ionic.FileSelector("name == *.txt"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax10a() - { - new Ionic.FileSelector("name >= *.txt"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax11() - { - new Ionic.FileSelector("name ~= *.txt"); - } - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax12() - { - new Ionic.FileSelector("name @ = *.txt"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax13() - { - new Ionic.FileSelector("name LIKE *.txt"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax14() - { - new Ionic.FileSelector("name AND *.txt"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax15() - { - new Ionic.FileSelector("name (AND *.txt"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax16() - { - new Ionic.FileSelector("mtime 2007-01-01"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax17() - { - new Ionic.FileSelector("size 1kb"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax18() - { - Ionic.FileSelector ff = new Ionic.FileSelector(""); - var list = ff.SelectFiles("."); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax19() - { - Ionic.FileSelector ff = new Ionic.FileSelector(null); - var list = ff.SelectFiles("."); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax20() - { - new Ionic.FileSelector("attributes > HRTS"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax21() - { - new Ionic.FileSelector("attributes HRTS"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax22a() - { - new Ionic.FileSelector("attributes = HHHA"); - } - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax22b() - { - new Ionic.FileSelector("attributes = SHSA"); - } - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax22c() - { - new Ionic.FileSelector("attributes = AHA"); - } - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax22d() - { - new Ionic.FileSelector("attributes = RRA"); - } - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax22e() - { - new Ionic.FileSelector("attributes = IRIA"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax23() - { - new Ionic.FileSelector("attributes = INVALID"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax24a() - { - new Ionic.FileSelector("type = I"); - } - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void Selector_SelectFiles_BadSyntax24b() - { - new Ionic.FileSelector("type > D"); - } - - [TestMethod] - public void Selector_Normalize() - { - - string[][] sPairs = { - new string[] { - "name = '.\\Selector (this is a Test)\\this.txt'", - null}, - - new string[] { - "(size > 100)AND(name='Name (with Parens).txt')", - "(size > 100 AND name = 'Name (with Parens).txt')"}, - - new string[] { - "(size > 100) AND ((name='Name (with Parens).txt')OR(name=*.jpg))", - "(size > 100 AND (name = 'Name (with Parens).txt' OR name = '*.jpg'))"}, - - new string[] { - "name='*.txt' and name!='* *.txt'", - "(name = '*.txt' AND name != '* *.txt')"}, - - new string[] { - "name = *.txt AND name != '* *.txt'", - "(name = '*.txt' AND name != '* *.txt')"}, - }; - - - for (int i=0; i < sPairs.Length; i++) - { - var pair = sPairs[i]; - var selector = pair[0]; - var expectedResult = pair[1]; - var fsel = new FileSelector(selector); - var stringVer = fsel.ToString().Replace("\u00006"," "); - Assert.AreEqual("FileSelector("+ (expectedResult ?? selector) - +")", - stringVer, - "entry {0}", i); - } - } - - - [TestMethod] - public void Selector_SingleQuotesAndSlashes_wi14033() - { - var zipFileToCreate = "SingleQuotes.zip"; - var parentDir = "DexMik"; - - int nFolders = this._rnd.Next(4)+3; - TestContext.WriteLine("Creating {0} folders:", nFolders); - Directory.CreateDirectory(parentDir); - string[] childFolders = new string[nFolders+1]; - childFolders[0] = parentDir; - for (int i=0; i < nFolders; i++) - { - var b1 = "folder" + (i+1); - int k = (i > 0) ? this._rnd.Next(i+1) : 0; - var d1 = Path.Combine(childFolders[k], b1); - TestContext.WriteLine(" {0}", d1); - Directory.CreateDirectory(d1); - childFolders[i+1] = d1; - - int nFiles = this._rnd.Next(3)+2; - TestContext.WriteLine(" Creating {0} files:", nFiles); - for (int j=0; j < nFiles; j++) - { - var fn1 = Path.GetRandomFileName(); - var fname = Path.Combine(d1,fn1); - TestContext.WriteLine(" {0}", fn1); - TestUtilities.CreateAndFillFileText(fname, this._rnd.Next(10000) + 1000); - } - TestContext.WriteLine(""); - } - - // create a zip file using those files - TestContext.WriteLine(""); - TestContext.WriteLine("Zipping:"); - using (var zip = new ZipFile()) - { - zip.AddDirectory(parentDir, childFolders[0]); - zip.Save(zipFileToCreate); - } - - // list all the entries - TestContext.WriteLine(""); - TestContext.WriteLine("List of entries:"); - using (var zip = new ZipFile(zipFileToCreate)) - { - foreach (var e in zip) - { - TestContext.WriteLine(" {0}", e.FileName); - } - } - TestContext.WriteLine(""); - - // now select some of the entries - int m = this._rnd.Next(nFolders)+1; - TestContext.WriteLine(""); - TestContext.WriteLine("Selecting entries from folder {0}:", m); - using (var zip = new ZipFile(zipFileToCreate)) - { - string selectCriteria = - String.Format("name = '{0}'", - Path.Combine(childFolders[m], "*.*")); - TestContext.WriteLine("select: {0}", selectCriteria); - var selection1 = zip.SelectEntries(selectCriteria); - Assert.IsTrue(selection1.Count > 0, "first selection failed."); - - foreach (var item in selection1) - { - TestContext.WriteLine(" {0}", item); - } - - // Try different formats of the selection string - with - // and without quotes, with fwd slashes and back - // slashes. - string[][] replacementPairs = { - new string[] { "\\", "/" }, // backslash to fwdslash - new string[] { "'", "" }, // remove single quotes - new string[] { "/", "\\" }, // fwdslash to backslash - }; - - for (int k=0; k < 3; k++) - { - selectCriteria = selectCriteria.Replace(replacementPairs[k][0], - replacementPairs[k][1]); - - TestContext.WriteLine(""); - TestContext.WriteLine("Try #{0}: {1}", k+2, selectCriteria); - var selection2 = zip.SelectEntries(selectCriteria); - foreach (var item in selection2) - { - TestContext.WriteLine(" {0}", item); - } - - Assert.AreEqual(selection1.Count, - selection2.Count, - "selection verification trial {0} failed.", k); - } - } - - } - - } -} +// Selector.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009-2010 Dino Chiesa. +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-August-06 17:57:24> +// +// ------------------------------------------------------------------ +// +// This module defines tests for the File and Entry Selection stuff in +// DotNetZip. +// +// ------------------------------------------------------------------ + +using System; +using System.Text; +using System.Collections.Generic; +using System.Linq; +using Microsoft.VisualStudio.TestTools.UnitTesting; + +using Ionic.Zip; +using Ionic.Zip.Tests.Utilities; +using System.IO; + +namespace Ionic.Zip.Tests +{ + /// + /// Summary description for Selector + /// + [TestClass] + public class Selector : IonicTestClass + { + public Selector() : base() { } + + [ClassInitialize] + public static void ClassInit(TestContext a) + { + CurrentDir = Directory.GetCurrentDirectory(); + twentyDaysAgo = DateTime.Now - new TimeSpan(20,0,0,0); + todayAtMidnight = new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day); + tomorrow = todayAtMidnight + new TimeSpan(1, 0, 0, 0); + threeDaysAgo = todayAtMidnight - new TimeSpan(3, 0, 0, 0); + twoDaysAgo = todayAtMidnight - new TimeSpan(2, 0, 0, 0); + threeYearsAgo = todayAtMidnight.AddYears(-3); + + oneDay = new TimeSpan(1,0,0,0); + yesterdayAtMidnight = todayAtMidnight - oneDay; + } + + // [ClassCleanup()] + // public static void MyClassCleanup() + // { + // CleanDirectory(fodderDirectory, null); + // } + + + private static void CleanDirectory(string dirToClean, Ionic.CopyData.Transceiver txrx) + { + if (dirToClean == null) return; + + if (!Directory.Exists(dirToClean)) return; + + var dirs = Directory.GetDirectories(dirToClean, "*.*", SearchOption.AllDirectories); + + if (txrx!=null) + txrx.Send("pb 1 max " + dirs.Length.ToString()); + + foreach (var d in dirs) + { + CleanDirectory(d, txrx); + if (txrx!=null) + txrx.Send("pb 1 step"); + } + + // Some of the files are marked as ReadOnly/System, and + // before deleting the dir we must strip those attrs. + var files = Directory.GetFiles(dirToClean, "*.*", SearchOption.AllDirectories); + if (txrx!=null) + txrx.Send("pb 1 max " + files.Length.ToString()); + + foreach (var f in files) + { + var a = File.GetAttributes(f); + // must do ReadOnly bit first - to allow setting other bits. + if ((a & FileAttributes.ReadOnly) == FileAttributes.ReadOnly) + { + a &= ~FileAttributes.ReadOnly; + File.SetAttributes(f, a); + } + if (((a & FileAttributes.Hidden) == FileAttributes.Hidden) || + ((a & FileAttributes.System) == FileAttributes.System)) + { + a &= ~FileAttributes.Hidden; + a &= ~FileAttributes.System; + File.SetAttributes(f, a); + } + File.Delete(f); + if (txrx!=null) + txrx.Send("pb 1 step"); + } + + // Delete the directory with delay and retry. + // Sometimes I have a console window in the directory + // and I want it to not give up so easily. + int tries =0; + bool success = false; + do + { + try + { + Directory.Delete(dirToClean, true); + success = true; + } + catch + { + System.Threading.Thread.Sleep(600); + } + tries++; + } while (tries < 100 && !success); + } + + + + + + [TestMethod] + public void Selector_EdgeCases() + { + string Subdir = Path.Combine(TopLevelDir, "A"); + + Ionic.FileSelector ff = new Ionic.FileSelector("name = *.txt"); + var list = ff.SelectFiles(Subdir); + + ff.SelectionCriteria = "name = *.bin"; + list = ff.SelectFiles(Subdir); + } + + + private static DateTime twentyDaysAgo; + private static DateTime todayAtMidnight; + private static DateTime tomorrow; + private static DateTime threeDaysAgo; + private static DateTime threeYearsAgo; + private static DateTime twoDaysAgo; + private static DateTime yesterdayAtMidnight; + private static TimeSpan oneDay; + + private string fodderDirectory; + private Object LOCK = new Object(); + private int numFodderFiles, numFodderDirs; + + + /// + /// Checks a fodder directory to see if suitable. + /// + /// the directory to check + /// + /// + /// true if the directory contains a goodly number of fodder files. + /// + private bool TryOneFodderDir(string dir) + { + if (!Directory.Exists(dir)) + return false; + + var ctime = File.GetCreationTime(dir).ToUniversalTime(); + if ((todayAtMidnight - ctime) > oneDay || (ctime - todayAtMidnight) > oneDay) + return false; + + + var fodderFiles = Directory.GetFiles(dir, "*.*", SearchOption.AllDirectories); + + numFodderFiles = fodderFiles.Length; + if (numFodderFiles <= 2) + { + numFodderFiles = 0; + return false; + } + + var fodderDirs = Directory.GetDirectories(dir, "*.*", + SearchOption.AllDirectories); + numFodderDirs = fodderDirs.Length; + if (numFodderDirs <= 2) + { + numFodderDirs = numFodderFiles = 0; + return false; + } + return true; + } + + + private string SetupFiles() + { + lock (LOCK) + { + if (fodderDirectory != null && numFodderFiles > 5) + return fodderDirectory; + + string homeDir = System.Environment.GetEnvironmentVariable("TEMP"); + var oldDirs = Directory.GetDirectories(homeDir, "*.SelectorTests"); + + foreach (var dir in oldDirs) + { + if (TryOneFodderDir(dir)) + { + fodderDirectory = dir; + return dir; + } + + if (Directory.Exists(dir)) + Directory.Delete(dir, true); + } + + // Arriving here means no good fodder directories exist. + // Create one. + ActuallyCreateFodderFiles(); + Assert.IsTrue(TryOneFodderDir(fodderDirectory)); + return fodderDirectory; + } + } + + + private static void DeleteOldFodderDirectories( Ionic.CopyData.Transceiver txrx ) + { + // Before creating the directory for the current run, Remove old directories. + // For some reason the test cleanup code tends to leave these directories?? + string tempDir = System.Environment.GetEnvironmentVariable("TEMP"); + var oldDirs = Directory.GetDirectories(tempDir, "*.SelectorTests"); + if (oldDirs.Length > 0) + { + if (txrx != null) + { + txrx.Send("status deleting old directories..."); + txrx.Send(String.Format("pb 0 max {0}", oldDirs.Length)); + } + + foreach (var dir in oldDirs) + { + CleanDirectory(dir, txrx); + if (txrx != null) txrx.Send("pb 0 step"); + } + } + } + + + + private void ActuallyCreateFodderFiles() + { + var txrx = TestUtilities.StartProgressMonitor("selector-setup", + "Selector one-time setup", + "setting up files..."); + var rnd = new System.Random(); + DeleteOldFodderDirectories(txrx); + + int fileCount = rnd.Next(95) + 95; + if (txrx!=null) + { + txrx.Send("status creating files..."); + txrx.Send(String.Format("pb 0 max {0}", fileCount)); + } + + fodderDirectory = TestUtilities.GenerateUniquePathname("SelectorTests"); + + // remember this directory so we can restore later + string originalDir = Directory.GetCurrentDirectory(); + + int entriesAdded = 0; + + // get the base directory for tests: + Directory.SetCurrentDirectory(CurrentDir); + Directory.CreateDirectory(fodderDirectory); + Directory.SetCurrentDirectory(fodderDirectory); + + string[] nameFormats = + { + "file{0:D3}", + "{0:D3}", + "PrettyLongFileName-{0:D3}", + "Very-Long-Filename-{0:D3}-with-a-repeated-segment-{0:D3}-{0:D3}-{0:D3}-{0:D3}", + + }; + + string[] dirs = + { + "dir1", + "dir1\\dirA", + "dir1\\dirB", + "dir2" + }; + + + foreach (string s in dirs) + Directory.CreateDirectory(s); + + for (int j = 0; j < fileCount; j++) + { + // select the size + int sz = 0; + if (j % 5 == 0) sz = rnd.Next(15000) + 150000; + else if (j % 17 == 1) sz = rnd.Next(50 * 1024) + 1024 * 1024; + else if (rnd.Next(13) == 0) sz = 8080; // exactly + else sz = rnd.Next(5000) + 5000; + + // randomly select the format of the file name + int n = rnd.Next(4); + + // binary or text + string filename = null; + if (rnd.Next(2) == 0) + { + filename = Path.Combine(fodderDirectory, String.Format(nameFormats[n], j) + ".txt"); + TestUtilities.CreateAndFillFileText(filename, sz); + } + else + { + filename = Path.Combine(fodderDirectory, String.Format(nameFormats[n], j) + ".bin"); + TestUtilities.CreateAndFillFileBinary(filename, sz); + } + + + // maybe backdate ctime + if (rnd.Next(2) == 0) + { + var span = new TimeSpan(_rnd.Next(12), + _rnd.Next(24), + _rnd.Next(59), + _rnd.Next(59)); + TouchFile(filename, WhichTime.ctime, twentyDaysAgo + span); + } + + // maybe backdate mtime + if (rnd.Next(2) == 0) + { + var span = new TimeSpan(_rnd.Next(1), + _rnd.Next(24), + _rnd.Next(59), + _rnd.Next(59)); + TouchFile(filename, WhichTime.mtime, threeDaysAgo+span); + } + + // maybe backdate atime + if (rnd.Next(2) == 0) + { + var span = new TimeSpan(_rnd.Next(24),_rnd.Next(59),_rnd.Next(59)); + TouchFile(filename, WhichTime.atime, yesterdayAtMidnight+span); + } + + // set the creation time to "a long time ago" on 1/14th of the files + if (j % 14 == 0) + { + DateTime x = new DateTime(1998, 4, 29); // julianna + var span = new TimeSpan(_rnd.Next(22), + _rnd.Next(24), + _rnd.Next(59), + _rnd.Next(59)); + File.SetCreationTime(filename, x+span); + } + + // maybe move to a subdir + n = rnd.Next(6); + if (n < 4) + { + string newFilename = Path.Combine(dirs[n], Path.GetFileName(filename)); + File.Move(filename, newFilename); + filename = newFilename; + } + + // mark some of the files as hidden, system, readonly, etc + if (j % 9 == 0) + File.SetAttributes(filename, FileAttributes.Hidden); + if (j % 14 == 0) + File.SetAttributes(filename, FileAttributes.ReadOnly); + if (j % 13 == 0) + File.SetAttributes(filename, FileAttributes.System); + if (j % 11 == 0) + File.SetAttributes(filename, FileAttributes.Archive); + + entriesAdded++; + + if (txrx != null) + { + txrx.Send("pb 0 step"); + if (entriesAdded % 8 == 0) + txrx.Send(String.Format("status creating files ({0}/{1})", entriesAdded, fileCount)); + } + } + // restore the cwd + Directory.SetCurrentDirectory(originalDir); + + txrx.Send("stop"); + } + + + + class Trial + { + public string Label; + public string C1; + public string C2; + } + + + + + [TestMethod] + public void Selector_SelectFiles() + { + Directory.SetCurrentDirectory(TopLevelDir); + + Trial[] trials = new Trial[] + { + new Trial { Label = "name", C1 = "name = *.txt", C2 = "name = *.bin" }, + new Trial { Label = "name (shorthand)", C1 = "*.txt", C2 = "*.bin" }, + new Trial { Label = "size", C1 = "size < 7500", C2 = "size >= 7500" }, + new Trial { Label = "size", C1 = "size = 8080", C2 = "size != 8080" }, + new Trial { Label = "name & size", + C1 = "name = *.bin AND size > 7500", + C2 = "name != *.bin OR size <= 7500", + }, + new Trial { Label = "name XOR name", + C1 = "name = *.bin XOR name = *4.*", + C2 = "(name != *.bin OR name = *4.*) AND (name = *.bin OR name != *4.*)", + }, + new Trial { Label = "name XOR size", + C1 = "name = *.bin XOR size > 100k", + C2 = "(name != *.bin OR size > 100k) AND (name = *.bin OR size <= 100k)", + }, + new Trial + { + Label = "mtime", + C1 = String.Format("mtime < {0}", twentyDaysAgo.ToString("yyyy-MM-dd")), + C2 = String.Format("mtime >= {0}", twentyDaysAgo.ToString("yyyy-MM-dd")), + }, + new Trial + { + Label = "ctime", + C1 = String.Format("mtime < {0}", threeDaysAgo.ToString("yyyy-MM-dd")), + C2 = String.Format("mtime >= {0}", threeDaysAgo.ToString("yyyy-MM-dd")), + }, + new Trial + { + Label = "atime", + C1 = String.Format("mtime < {0}", yesterdayAtMidnight.ToString("yyyy-MM-dd")), + C2 = String.Format("mtime >= {0}", yesterdayAtMidnight.ToString("yyyy-MM-dd")), + }, + new Trial { Label = "size (100k)", C1="size > 100k", C2="size <= 100kb", }, + new Trial { Label = "size (1mb)", C1="size > 1m", C2="size <= 1mb", }, + new Trial { Label = "size (1gb)", C1="size > 1g", C2="size <= 1gb", }, + new Trial { Label = "attributes (Hidden)", C1 = "attributes = H", C2 = "attributes != H" }, + new Trial { Label = "attributes (ReadOnly)", C1 = "attributes = R", C2 = "attributes != R" }, + new Trial { Label = "attributes (System)", C1 = "attributes = S", C2 = "attributes != S" }, + new Trial { Label = "attributes (Archive)", C1 = "attributes = A", C2 = "attributes != A" }, + + }; + + + string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_SelectFiles.zip"); + Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); + + int count1, count2; + //String filename = null; + + SetupFiles(); + var topLevelFiles = Directory.GetFiles(fodderDirectory, "*.*", SearchOption.TopDirectoryOnly); + + for (int m = 0; m < trials.Length; m++) + { + Ionic.FileSelector ff = new Ionic.FileSelector(trials[m].C1); + var list = ff.SelectFiles(fodderDirectory); + TestContext.WriteLine("======================================================="); + TestContext.WriteLine("Selector: " + ff.ToString()); + TestContext.WriteLine("Criteria({0})", ff.SelectionCriteria); + TestContext.WriteLine("Count({0})", list.Count); + count1 = 0; + foreach (string s in list) + { + switch (m) + { + case 0: + case 1: + Assert.IsTrue(s.EndsWith(".txt")); + break; + case 2: + { + FileInfo fi = new FileInfo(s); + Assert.IsTrue(fi.Length < 7500); + } + break; + case 4: + { + FileInfo fi = new FileInfo(s); + bool x = s.EndsWith(".bin") && fi.Length > 7500; + Assert.IsTrue(x); + } + break; + } + count1++; + } + + ff = new Ionic.FileSelector(trials[m].C2); + list = ff.SelectFiles(fodderDirectory); + TestContext.WriteLine("- - - - - - - - - - - - - - - - - - - - - - - - - - - -"); + TestContext.WriteLine("Criteria({0})", ff.SelectionCriteria); + TestContext.WriteLine("Count({0})", list.Count); + count2 = 0; + foreach (string s in list) + { + switch (m) + { + case 0: + case 1: + Assert.IsTrue(s.EndsWith(".bin")); + break; + case 2: + { + FileInfo fi = new FileInfo(s); + Assert.IsTrue(fi.Length >= 7500); + } + break; + case 4: + { + FileInfo fi = new FileInfo(s); + bool x = !s.EndsWith(".bin") || fi.Length <= 7500; + Assert.IsTrue(x); + } + break; + } + count2++; + } + Assert.AreEqual(topLevelFiles.Length, count1 + count2); + } + } + + + + + + + + + [TestMethod, Timeout(7200000)] + public void Selector_AddSelectedFiles() + { + Directory.SetCurrentDirectory(TopLevelDir); + + Trial[] trials = new Trial[] + { + new Trial { Label = "name", C1 = "name = *.txt", C2 = "name = *.bin" }, + new Trial { Label = "name (shorthand)", C1 = "*.txt", C2 = "*.bin" }, + new Trial { Label = "attributes (Hidden)", C1 = "attributes = H", C2 = "attributes != H" }, + new Trial { Label = "attributes (ReadOnly)", C1 = "attributes = R", C2 = "attributes != R" }, + new Trial { Label = "mtime", C1 = "mtime < 2007-01-01", C2 = "mtime > 2007-01-01" }, + new Trial { Label = "atime", C1 = "atime < 2007-01-01", C2 = "atime > 2007-01-01" }, + new Trial { Label = "ctime", C1 = "ctime < 2007-01-01", C2 = "ctime > 2007-01-01" }, + new Trial { Label = "size", C1 = "size < 7500", C2 = "size >= 7500" }, + + new Trial { Label = "name & size", + C1 = "name = *.bin AND size > 7500", + C2 = "name != *.bin OR size <= 7500", + }, + + new Trial { Label = "name, size & attributes", + C1 = "name = *.bin AND size > 8kb and attributes = H", + C2 = "name != *.bin OR size <= 8kb or attributes != H", + }, + + new Trial { Label = "name, size, time & attributes.", + C1 = "name = *.bin AND size > 7k and mtime < 2007-01-01 and attributes = H", + C2 = "name != *.bin OR size <= 7k or mtime > 2007-01-01 or attributes != H", + }, + }; + + _txrx = TestUtilities.StartProgressMonitor("AddSelectedFiles", "AddSelectedFiles", "starting up..."); + + string[] zipFileToCreate = { + Path.Combine(TopLevelDir, "Selector_AddSelectedFiles-1.zip"), + Path.Combine(TopLevelDir, "Selector_AddSelectedFiles-2.zip") + }; + + Assert.IsFalse(File.Exists(zipFileToCreate[0]), "The zip file '{0}' already exists.", zipFileToCreate[0]); + Assert.IsFalse(File.Exists(zipFileToCreate[1]), "The zip file '{0}' already exists.", zipFileToCreate[1]); + + int count1, count2; + + SetupFiles(); + var topLevelFiles = Directory.GetFiles(fodderDirectory, "*.*", SearchOption.TopDirectoryOnly); + + string currentDir = Directory.GetCurrentDirectory(); + _txrx.Send(String.Format("pb 0 max {0}", 2 * (trials.Length + 1))); + + _txrx.Send("pb 0 step"); + + for (int m = 0; m < trials.Length; m++) + { + _txrx.Send("test AddSelectedFiles"); + _txrx.Send("pb 1 max 4"); + _txrx.Send(String.Format("status test {0}/{1}: creating zip #1/2", + m + 1, trials.Length)); + TestContext.WriteLine("==============================================="); + TestContext.WriteLine("AddSelectedFiles() [{0}]", trials[m].Label); + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddSelectedFiles(trials[m].C1, fodderDirectory, ""); + zip1.Save(zipFileToCreate[0]); + } + count1 = TestUtilities.CountEntries(zipFileToCreate[0]); + TestContext.WriteLine("C1({0}) Count({1})", trials[m].C1, count1); + _txrx.Send("pb 1 step"); + System.Threading.Thread.Sleep(100); + _txrx.Send("pb 0 step"); + + _txrx.Send(String.Format("status test {0}/{1}: creating zip #2/2", + m + 1, trials.Length)); + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddSelectedFiles(trials[m].C2, fodderDirectory, ""); + zip1.Save(zipFileToCreate[1]); + } + count2 = TestUtilities.CountEntries(zipFileToCreate[1]); + TestContext.WriteLine("C2({0}) Count({1})", trials[m].C2, count2); + Assert.AreEqual(topLevelFiles.Length, count1 + count2); + _txrx.Send("pb 1 step"); + + /// ======================================================= + /// Now, select entries from that ZIP + _txrx.Send(String.Format("status test {0}/{1}: selecting zip #1/2", + m + 1, trials.Length)); + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate[0])) + { + var selected1 = zip1.SelectEntries(trials[m].C1); + Assert.AreEqual(selected1.Count, count1); + } + _txrx.Send("pb 1 step"); + + _txrx.Send(String.Format("status test {0}/{1}: selecting zip #2/2", + m + 1, trials.Length)); + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate[1])) + { + var selected2 = zip1.SelectEntries(trials[m].C2); + Assert.AreEqual(selected2.Count, count2); + } + _txrx.Send("pb 1 step"); + + _txrx.Send("pb 0 step"); + } + + } + + + [TestMethod] + public void Selector_AddSelectedFiles_2() + { + string zipFileToCreate = "Selector_AddSelectedFiles_2.zip"; + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + var txtFiles = Directory.GetFiles(dirToZip, "*.txt", SearchOption.AllDirectories); + + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddSelectedFiles("*.txt"); + zip1.Save(zipFileToCreate); + } + + Assert.AreEqual(0, TestUtilities.CountEntries(zipFileToCreate)); + + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddSelectedFiles("*.txt", true); + zip1.Save(zipFileToCreate); + } + + Assert.AreEqual(txtFiles.Length, TestUtilities.CountEntries(zipFileToCreate)); + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddSelectedFiles("*.txt", ".", true); + zip1.Save(zipFileToCreate); + } + + Assert.AreEqual(txtFiles.Length, TestUtilities.CountEntries(zipFileToCreate)); + + } + + + [TestMethod] + public void Selector_AddSelectedFiles_Checkcase_file() + { + string zipFileToCreate = "AddSelectedFiles_Checkcase.zip"; + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + + Directory.SetCurrentDirectory(dirToZip); + var f2 = Directory.GetFiles(".", "*.*"); + Array.ForEach(f2, x => { File.Move(x,Path.GetFileName(x).ToUpper()); }); + Directory.SetCurrentDirectory(TopLevelDir); + + var txtFiles = Directory.GetFiles(dirToZip, "*.txt", + SearchOption.AllDirectories); + + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddSelectedFiles("*.txt", dirToZip); + zip1.Save(zipFileToCreate); + } + + int nEntries = 0; + // now, verify that we have not downcased the filenames + using (ZipFile zip2 = new ZipFile(zipFileToCreate)) + { + foreach (var entry in zip2.Entries) + { + Assert.IsFalse(entry.FileName.Equals(entry.FileName.ToLower())); + nEntries++; + } + } + Assert.IsFalse(nEntries < 2, "not enough entries"); + + } + + + + [TestMethod] + public void Selector_AddSelectedFiles_Checkcase_directory() + { + string zipFileToCreate = "AddSelectedFiles_Checkcase.zip"; + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()).ToUpper(); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + + var txtFiles = Directory.GetFiles(dirToZip, "*.txt", + SearchOption.AllDirectories); + + Assert.IsFalse(txtFiles.Length < 3, "not enough entries (n={0})", + txtFiles.Length); + + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddSelectedFiles("*.txt", dirToZip); + zip1.Save(zipFileToCreate); + } + + int nEntries = 0; + // now, verify that we have not downcased the filenames + using (ZipFile zip2 = new ZipFile(zipFileToCreate)) + { + foreach (var entry in zip2.Entries) + { + Assert.IsFalse(entry.FileName.Equals(entry.FileName.ToLower())); + nEntries++; + } + } + Assert.IsFalse(nEntries < 3, "not enough entries (n={0})", nEntries); + } + + + [TestMethod] + public void Selector_AddSelectedFiles_Checkcase_directory_2() + { + string zipFileToCreate = "AddSelectedFiles_Checkcase.zip"; + string shortDirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()).ToUpper(); + string dirToZip = Path.Combine(TopLevelDir, shortDirToZip); // fully qualified + var files = TestUtilities.GenerateFilesFlat(shortDirToZip); + string keyword = "Ammon"; + int n = _rnd.Next(3)+2; + for (int i=0; i < n; i++) + { + Directory.SetCurrentDirectory(dirToZip); + string subdir = keyword + i; + TestUtilities.GenerateFilesFlat(subdir); + Directory.SetCurrentDirectory(subdir); + var f2 = Directory.GetFiles(".", "*.*"); + int k = 2; + Array.ForEach(f2, x => { + File.Move(x, String.Format("{0}.{1:D5}.txt", keyword.ToUpper(), k++)); }); + } + + Directory.SetCurrentDirectory(TopLevelDir); + + TestContext.WriteLine("Create zip file"); + using (ZipFile zip1 = new ZipFile()) + { + var criterion = "name = *\\" + keyword + "?\\*.txt"; + zip1.AddSelectedFiles(criterion, ".\\" + shortDirToZip, "files", true); + zip1.Save(zipFileToCreate); + } + + TestContext.WriteLine("Verify case of entry FileNames"); + int nEntries = 0; + // now, verify that we have not downcased entry.FileName + using (ZipFile zip2 = new ZipFile(zipFileToCreate)) + { + foreach (var entry in zip2.Entries) + { + TestContext.WriteLine("Check {0}", entry.FileName); + Assert.AreNotEqual(entry.FileName, + entry.FileName.ToLower(), + entry.FileName); + nEntries++; + } + } + Assert.IsFalse(nEntries < 3, "not enough entries"); + } + + + + [TestMethod] + public void Selector_SelectEntries_FwdSlash_wi13350() + { + string zipFileToCreate = "SelectEntries.zip"; + + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + + TestContext.WriteLine("Create zip file"); + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddDirectory(dirToZip, dirToZip); + zip1.Save(zipFileToCreate); + } + + // Select Entries + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + var selection1 = zip2.SelectEntries("name = " + dirToZip + "\\" + "*.txt"); + //var selection1 = zip2.SelectEntries("name = *.txt"); + Assert.IsTrue(selection1.Count > 2, "{0} is simply not enough entries!", + selection1.Count); + var selection2 = zip2.SelectEntries(dirToZip + "/" + "*.txt"); + Assert.AreEqual(selection1.Count, + selection2.Count, + "{0} != {1}", + selection1.Count, + selection2.Count); + } + } + + + [TestMethod] + public void Selector_CheckRemove_wi10499() + { + string zipFileToCreate = "CheckRemove.zip"; + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + + TestContext.WriteLine("Create zip file"); + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddDirectory(dirToZip, dirToZip); + zip1.Save(zipFileToCreate); + } + + int nBefore= 0, nAfter = 0, nRemoved = 0; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + ICollection entries = zip2.SelectEntries("*.txt"); + Assert.IsFalse(entries.Count < 3, "not enough entries"); + nBefore = entries.Count; + + foreach(ZipEntry entry in entries) + { + TestContext.WriteLine("Removing {0}", entry.FileName); + zip2.RemoveEntry(entry); + nRemoved++; + } + var remainingEntries = zip2.SelectEntries("*.txt"); + nAfter = remainingEntries.Count; + TestContext.WriteLine("Remaining:"); + foreach(ZipEntry entry in remainingEntries) + { + TestContext.WriteLine(" {0}", + entry.FileName); + } + } + + Assert.IsTrue(nBefore>nAfter,"Removal appeared to have no effect."); + Assert.IsTrue(nBefore-nRemoved==nAfter,"Wrong number of entries {0}-{1}!={2}", + nBefore, nRemoved, nAfter); + } + + + private enum WhichTime + { + atime, + mtime, + ctime, + } + + + + private static void TouchFile(string strFile, WhichTime which, DateTime stamp) + { + System.IO.FileInfo fi = new System.IO.FileInfo(strFile); + if (which == WhichTime.atime) + fi.LastAccessTime = stamp; + else if (which == WhichTime.ctime) + fi.CreationTime = stamp; + else if (which == WhichTime.mtime) + fi.LastWriteTime = stamp; + else throw new System.ArgumentException("which"); + } + + + + [TestMethod] + public void Selector_SelectEntries_ByTime() + { + //Directory.SetCurrentDirectory(TopLevelDir); + + string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_SelectEntries.zip"); + + Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); + + SetupFiles(); + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Creating zip..."); + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddDirectory(fodderDirectory, ""); + zip1.Save(zipFileToCreate); + } + Assert.AreEqual(numFodderFiles, TestUtilities.CountEntries(zipFileToCreate), "A"); + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Reading zip, SelectEntries() by date..."); + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + var totalEntries = numFodderFiles+numFodderDirs; + + // all of the files should have been modified either + // after midnight today, or before. + string crit = String.Format("mtime >= {0}", todayAtMidnight.ToString("yyyy-MM-dd")); + var selected1 = zip1.SelectEntries(crit); + TestContext.WriteLine("Case A({0}) count({1})", crit, selected1.Count); + crit = String.Format("mtime < {0}", todayAtMidnight.ToString("yyyy-MM-dd")); + var selected2 = zip1.SelectEntries(crit); + TestContext.WriteLine("Case B({0}) count({1})", crit, selected2.Count); + Assert.AreEqual(totalEntries, + selected1.Count + selected2.Count, "B"); + + + // some nonzero (high) number of files should have been + // created in the past twenty days. + crit = String.Format("ctime >= {0}", twentyDaysAgo.ToString("yyyy-MM-dd")); + var selected3 = zip1.SelectEntries(crit); + TestContext.WriteLine("Case C({0}) count({1})", crit, selected3.Count); + Assert.IsTrue(selected3.Count > 0, "C"); + + + // a nonzero number should be marked as having been + // created more than 3 years ago. + crit = String.Format("ctime < {0}", + threeYearsAgo.ToString("yyyy-MM-dd")); + var selected4 = zip1.SelectEntries(crit); + TestContext.WriteLine("Case D({0}) count({1})", crit, selected4.Count); + Assert.IsTrue(selected4.Count > 0, "D"); + + // None of the files should have been created + // more than 20 years ago + var twentyYearsAgo = todayAtMidnight.AddYears(-20); + crit = String.Format("ctime < {0}", + twentyYearsAgo.ToString("yyyy-MM-dd")); + var selected5 = zip1.SelectEntries(crit); + TestContext.WriteLine("Case F({0}) count({1})", crit, selected5.Count); + Assert.IsTrue(selected5.Count==0, "F"); + + // Some number of the files should have been created + // more than three days ago + crit = String.Format("ctime < {0}", + threeDaysAgo.ToString("yyyy-MM-dd")); + selected5 = zip1.SelectEntries(crit); + TestContext.WriteLine("Case E({0}) count({1})", crit, selected5.Count); + Assert.IsTrue(selected5.Count>0, "E"); + + // summing all those created more than three days ago, + // with those created in the last three days, should be all entries. + crit = String.Format("ctime >= {0}", threeDaysAgo.ToString("yyyy-MM-dd")); + var selected6 = zip1.SelectEntries(crit); + TestContext.WriteLine("Case G({0}) count({1})", crit, selected6.Count); + Assert.IsTrue(selected6.Count>0, "G"); + Assert.AreEqual(totalEntries, selected5.Count + selected6.Count, "G"); + + + // some number should have been accessed in the past 2 days + crit = String.Format("atime >= {0} and atime < {1}", + twoDaysAgo.ToString("yyyy-MM-dd"), + todayAtMidnight.ToString("yyyy-MM-dd")); + selected5 = zip1.SelectEntries(crit); + TestContext.WriteLine("Case H({0}) count({1})", crit, selected5.Count); + Assert.IsTrue(selected5.Count > 0, "H"); + + // those accessed *exactly* at midnight yesterday, plus + // those NOT = all entries + crit = String.Format("atime = {0}", + yesterdayAtMidnight.ToString("yyyy-MM-dd")); + selected5 = zip1.SelectEntries(crit); + TestContext.WriteLine("Case I({0}) count({1})", crit, selected5.Count); + + crit = String.Format("atime != {0}", + yesterdayAtMidnight.ToString("yyyy-MM-dd")); + selected6 = zip1.SelectEntries(crit); + TestContext.WriteLine("Case J({0}) count({1})", crit, selected6.Count); + Assert.AreEqual(totalEntries, selected5.Count + selected6.Count, "J"); + + // those marked as last accessed more than 20 days ago == empty set + crit = String.Format("atime <= {0}", + twentyDaysAgo.ToString("yyyy-MM-dd")); + selected5 = zip1.SelectEntries(crit); + TestContext.WriteLine("Case K({0}) count({1})", crit, selected5.Count); + Assert.AreEqual(0, selected5.Count, "K"); + } + } + + + + [TestMethod] + public void Selector_ExtractSelectedEntries() + { + //Directory.SetCurrentDirectory(TopLevelDir); + + string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_ExtractSelectedEntries.zip"); + + SetupFiles(); + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Creating zip..."); + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddDirectory(fodderDirectory, ""); + zip1.Save(zipFileToCreate); + } + Assert.AreEqual(numFodderFiles, TestUtilities.CountEntries(zipFileToCreate)); + + string extractDir = "extract"; + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Reading zip, ExtractSelectedEntries() by date..."); + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + string crit = String.Format("mtime >= {0}", todayAtMidnight.ToString("yyyy-MM-dd")); + TestContext.WriteLine("Criteria({0})", crit); + zip1.ExtractSelectedEntries(crit, null, extractDir); + } + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Reading zip, ExtractSelectedEntries() by date, with overwrite..."); + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + string crit = String.Format("mtime >= {0}", todayAtMidnight.ToString("yyyy-MM-dd")); + TestContext.WriteLine("Criteria({0})", crit); + zip1.ExtractSelectedEntries(crit, null, extractDir, ExtractExistingFileAction.OverwriteSilently); + } + + + // workitem 9174: test ExtractSelectedEntries using a directoryPathInArchive + List dirs = new List(); + // first, get the list of directories used by all entries + TestContext.WriteLine("Reading zip, ..."); + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + foreach (var e in zip1) + { + TestContext.WriteLine("entry {0}", e.FileName); + string p = Path.GetDirectoryName(e.FileName.Replace("/", "\\")); + if (!dirs.Contains(p)) dirs.Add(p); + } + } + + // with or without trailing slash + for (int i = 0; i < 2; i++) + { + int grandTotal = 0; + extractDir = String.Format("extract.{0}", i); + for (int j = 0; j < dirs.Count; j++) + { + string d = dirs[j]; + if (i == 1) d += "\\"; + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Reading zip, ExtractSelectedEntries() by name, with directoryInArchive({0})...", d); + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + string crit = "name = *.bin"; + TestContext.WriteLine("Criteria({0})", crit); + var s = zip1.SelectEntries(crit, d); + TestContext.WriteLine(" {0} entries", s.Count); + grandTotal += s.Count; + zip1.ExtractSelectedEntries(crit, d, extractDir, ExtractExistingFileAction.OverwriteSilently); + } + } + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Total for all dirs: {0} entries", grandTotal); + + var extracted = Directory.GetFiles(extractDir, "*.bin", SearchOption.AllDirectories); + + Assert.AreEqual(grandTotal, extracted.Length); + } + } + + + + + [TestMethod] + public void Selector_SelectEntries_ByName() + { + // Directory.SetCurrentDirectory(TopLevelDir); + + string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_SelectEntries.zip"); + + Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); + + //int count1, count2; + int entriesAdded = 0; + String filename = null; + + string subDir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subDir); + + int fileCount = _rnd.Next(33) + 33; + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Files being added to the zip:"); + for (int j = 0; j < fileCount; j++) + { + // select binary or text + if (_rnd.Next(2) == 0) + { + filename = Path.Combine(subDir, String.Format("file{0:D3}.txt", j)); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(5000) + 5000); + } + else + { + filename = Path.Combine(subDir, String.Format("file{0:D3}.bin", j)); + TestUtilities.CreateAndFillFileBinary(filename, _rnd.Next(5000) + 5000); + } + TestContext.WriteLine(Path.GetFileName(filename)); + entriesAdded++; + } + + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Creating zip..."); + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddDirectory(subDir, ""); + zip1.Save(zipFileToCreate); + } + Assert.AreEqual(entriesAdded, TestUtilities.CountEntries(zipFileToCreate)); + + + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Reading zip, SelectEntries() by name..."); + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + var selected1 = zip1.SelectEntries("name = *.txt"); + var selected2 = zip1.SelectEntries("name = *.bin"); + var selected3 = zip1.SelectEntries("name = *.bin OR name = *.txt"); + TestContext.WriteLine("Found {0} text files, {0} bin files.", selected1.Count, selected2.Count); + TestContext.WriteLine("Text files:"); + foreach (ZipEntry e in selected1) + { + TestContext.WriteLine(e.FileName); + } + Assert.AreEqual(entriesAdded, selected1.Count + selected2.Count); + } + + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Reading zip, SelectEntries() using shorthand filters..."); + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + var selected1 = zip1.SelectEntries("*.txt"); + var selected2 = zip1.SelectEntries("*.bin"); + TestContext.WriteLine("Text files:"); + foreach (ZipEntry e in selected1) + { + TestContext.WriteLine(e.FileName); + } + Assert.AreEqual(entriesAdded, selected1.Count + selected2.Count); + } + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Reading zip, SelectEntries() again ..."); + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + string crit = "name = *.txt AND name = *.bin"; + // none of the entries should match this: + var selected1 = zip1.SelectEntries(crit); + TestContext.WriteLine("Criteria({0}) count({1})", crit, selected1.Count); + Assert.AreEqual(0, selected1.Count); + + // all of the entries should match this: + crit = "name = *.txt XOR name = *.bin"; + var selected2 = zip1.SelectEntries(crit); + TestContext.WriteLine("Criteria({0}) count({1})", crit, selected2.Count); + Assert.AreEqual(entriesAdded, selected2.Count); + + // try an compound criterion with XOR + crit = "name = *.bin XOR name = *2.*"; + var selected3 = zip1.SelectEntries(crit); + Assert.IsTrue(selected3.Count > 0); + TestContext.WriteLine("Criteria({0}) count({1})", crit, selected3.Count); + + // factor out the XOR + crit = "(name = *.bin AND name != *2.*) OR (name != *.bin AND name = *2.*)"; + var selected4 = zip1.SelectEntries(crit); + TestContext.WriteLine("Criteria({0}) count({1})", crit, selected4.Count); + Assert.AreEqual(selected3.Count, selected4.Count); + + // take the negation of the XOR criterion + crit = "(name != *.bin OR name = *2.*) AND (name = *.bin OR name != *2.*)"; + var selected5 = zip1.SelectEntries(crit); + TestContext.WriteLine("Criteria({0}) count({1})", crit, selected4.Count); + Assert.IsTrue(selected5.Count > 0); + Assert.AreEqual(entriesAdded, selected3.Count + selected5.Count); + } + } + + + + [TestMethod] + public void Selector_SelectEntries_ByName_NamesWithSpaces() + { + //Directory.SetCurrentDirectory(TopLevelDir); + + string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_SelectEntries_Spaces.zip"); + + Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); + + //int count1, count2; + int entriesAdded = 0; + String filename = null; + + string subDir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subDir); + + int fileCount = _rnd.Next(44) + 44; + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Files being added to the zip:"); + for (int j = 0; j < fileCount; j++) + { + string space = (_rnd.Next(2) == 0) ? " " : ""; + if (_rnd.Next(2) == 0) + { + filename = Path.Combine(subDir, String.Format("file{1}{0:D3}.txt", j, space)); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(5000) + 5000); + } + else + { + filename = Path.Combine(subDir, String.Format("file{1}{0:D3}.bin", j, space)); + TestUtilities.CreateAndFillFileBinary(filename, _rnd.Next(5000) + 5000); + } + TestContext.WriteLine(Path.GetFileName(filename)); + entriesAdded++; + } + + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Creating zip..."); + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddDirectory(subDir, ""); + zip1.Save(zipFileToCreate); + } + Assert.AreEqual(entriesAdded, TestUtilities.CountEntries(zipFileToCreate)); + + + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Reading zip..."); + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + var selected1 = zip1.SelectEntries("name = *.txt"); + var selected2 = zip1.SelectEntries("name = *.bin"); + TestContext.WriteLine("Text files:"); + foreach (ZipEntry e in selected1) + { + TestContext.WriteLine(e.FileName); + } + Assert.AreEqual(entriesAdded, selected1.Count + selected2.Count); + } + + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Reading zip, using name patterns that contain spaces..."); + string[] selectionStrings = { "name = '* *.txt'", + "name = '* *.bin'", + "name = *.txt and name != '* *.txt'", + "name = *.bin and name != '* *.bin'", + }; + int count = 0; + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + foreach (string selectionCriteria in selectionStrings) + { + var selected1 = zip1.SelectEntries(selectionCriteria); + count += selected1.Count; + TestContext.WriteLine(" For criteria ({0}), found {1} files.", selectionCriteria, selected1.Count); + } + } + Assert.AreEqual(entriesAdded, count); + + } + + + [TestMethod] + public void Selector_RemoveSelectedEntries_Spaces() + { + //Directory.SetCurrentDirectory(TopLevelDir); + + string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_RemoveSelectedEntries_Spaces.zip"); + + Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); + + //int count1, count2; + int entriesAdded = 0; + String filename = null; + + string subDir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subDir); + + int fileCount = _rnd.Next(44) + 44; + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Files being added to the zip:"); + for (int j = 0; j < fileCount; j++) + { + string space = (_rnd.Next(2) == 0) ? " " : ""; + if (_rnd.Next(2) == 0) + { + filename = Path.Combine(subDir, String.Format("file{1}{0:D3}.txt", j, space)); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(5000) + 5000); + } + else + { + filename = Path.Combine(subDir, String.Format("file{1}{0:D3}.bin", j, space)); + TestUtilities.CreateAndFillFileBinary(filename, _rnd.Next(5000) + 5000); + } + TestContext.WriteLine(Path.GetFileName(filename)); + entriesAdded++; + } + + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Creating zip..."); + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddDirectory(subDir, ""); + zip1.Save(zipFileToCreate); + } + Assert.AreEqual(entriesAdded, TestUtilities.CountEntries(zipFileToCreate)); + + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Reading zip, using name patterns that contain spaces..."); + string[] selectionStrings = { "name = '* *.txt'", + "name = '* *.bin'", + "name = *.txt and name != '* *.txt'", + "name = *.bin and name != '* *.bin'", + }; + foreach (string selectionCriteria in selectionStrings) + { + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + var selected1 = zip1.SelectEntries(selectionCriteria); + zip1.RemoveEntries(selected1); + TestContext.WriteLine("for pattern {0}, Removed {1} entries", selectionCriteria, selected1.Count); + zip1.Save(); + } + + } + + Assert.AreEqual(0, TestUtilities.CountEntries(zipFileToCreate)); + } + + + [TestMethod] + public void Selector_RemoveSelectedEntries2() + { + //Directory.SetCurrentDirectory(TopLevelDir); + + string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_RemoveSelectedEntries2.zip"); + + Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); + + //int count1, count2; + int entriesAdded = 0; + String filename = null; + + string subDir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subDir); + + int fileCount = _rnd.Next(44) + 44; + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Files being added to the zip:"); + for (int j = 0; j < fileCount; j++) + { + string space = (_rnd.Next(2) == 0) ? " " : ""; + if (_rnd.Next(2) == 0) + { + filename = Path.Combine(subDir, String.Format("file{1}{0:D3}.txt", j, space)); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(5000) + 5000); + } + else + { + filename = Path.Combine(subDir, String.Format("file{1}{0:D3}.bin", j, space)); + TestUtilities.CreateAndFillFileBinary(filename, _rnd.Next(5000) + 5000); + } + TestContext.WriteLine(Path.GetFileName(filename)); + entriesAdded++; + } + + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Creating zip..."); + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddDirectory(subDir, ""); + zip1.Save(zipFileToCreate); + } + Assert.AreEqual(entriesAdded, TestUtilities.CountEntries(zipFileToCreate)); + + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Reading zip, using name patterns that contain spaces..."); + string[] selectionStrings = { "name = '* *.txt'", + "name = '* *.bin'", + "name = *.txt and name != '* *.txt'", + "name = *.bin and name != '* *.bin'", + }; + foreach (string selectionCriteria in selectionStrings) + { + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + var selected1 = zip1.SelectEntries(selectionCriteria); + ZipEntry[] entries = new ZipEntry[selected1.Count]; + selected1.CopyTo(entries, 0); + string[] names = Array.ConvertAll(entries, x => x.FileName); + zip1.RemoveEntries(names); + TestContext.WriteLine("for pattern {0}, Removed {1} entries", selectionCriteria, selected1.Count); + zip1.Save(); + } + + } + + Assert.AreEqual(0, TestUtilities.CountEntries(zipFileToCreate)); + } + + + + [TestMethod] + public void Selector_SelectEntries_subDirs() + { + //Directory.SetCurrentDirectory(TopLevelDir); + + string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_SelectFiles_subDirs.zip"); + + Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); + + int count1, count2; + + string fodder = Path.Combine(TopLevelDir, "fodder"); + Directory.CreateDirectory(fodder); + + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Creating files..."); + int entries = 0; + int i = 0; + int subdirCount = _rnd.Next(17) + 9; + //int subdirCount = _rnd.Next(3) + 2; + var FileCount = new Dictionary(); + + var checksums = new Dictionary(); + // I don't actually verify the checksums in this method... + + + for (i = 0; i < subdirCount; i++) + { + string subDirShort = new System.String(new char[] { (char)(i + 65) }); + string subDir = Path.Combine(fodder, subDirShort); + Directory.CreateDirectory(subDir); + + int filecount = _rnd.Next(8) + 8; + //int filecount = _rnd.Next(2) + 2; + FileCount[subDirShort] = filecount; + for (int j = 0; j < filecount; j++) + { + string filename = String.Format("file{0:D4}.x", j); + string fqFilename = Path.Combine(subDir, filename); + TestUtilities.CreateAndFillFile(fqFilename, _rnd.Next(1000) + 1000); + + var chk = TestUtilities.ComputeChecksum(fqFilename); + var s = TestUtilities.CheckSumToString(chk); + var t1 = Path.GetFileName(fodder); + var t2 = Path.Combine(t1, subDirShort); + var key = Path.Combine(t2, filename); + key = TestUtilities.TrimVolumeAndSwapSlashes(key); + TestContext.WriteLine("chk[{0}]= {1}", key, s); + checksums.Add(key, s); + entries++; + } + } + + Directory.SetCurrentDirectory(TopLevelDir); + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Creating zip ({0} entries in {1} subdirs)...", entries, subdirCount); + // add all the subdirectories into a new zip + using (ZipFile zip1 = new ZipFile()) + { + // add all of those subdirectories (A, B, C...) into the root in the zip archive + zip1.AddDirectory(fodder, ""); + zip1.Save(zipFileToCreate); + } + Assert.AreEqual(entries, TestUtilities.CountEntries(zipFileToCreate)); + + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Selecting entries by directory..."); + + for (int j = 0; j < 2; j++) + { + count1 = 0; + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + for (i = 0; i < subdirCount; i++) + { + string dirInArchive = new System.String(new char[] { (char)(i + 65) }); + if (j == 1) dirInArchive += "\\"; + var selected1 = zip1.SelectEntries("*.*", dirInArchive); + count1 += selected1.Count; + TestContext.WriteLine("--------------\nfiles in dir {0} ({1}):", + dirInArchive, selected1.Count); + foreach (ZipEntry e in selected1) + TestContext.WriteLine(e.FileName); + } + Assert.AreEqual(entries, count1); + } + } + + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Selecting entries by directory and size..."); + count1 = 0; + count2 = 0; + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + for (i = 0; i < subdirCount; i++) + { + string dirInArchive = new System.String(new char[] { (char)(i + 65) }); + var selected1 = zip1.SelectEntries("size > 1500", dirInArchive); + count1 += selected1.Count; + TestContext.WriteLine("--------------\nfiles in dir {0} ({1}):", + dirInArchive, selected1.Count); + foreach (ZipEntry e in selected1) + TestContext.WriteLine(e.FileName); + } + + var selected2 = zip1.SelectEntries("size <= 1500"); + count2 = selected2.Count; + Assert.AreEqual(entries, count1 + count2 - subdirCount); + } + + } + + + + [TestMethod] + public void Selector_SelectEntries_Fullpath() + { + //Directory.SetCurrentDirectory(TopLevelDir); + + string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_SelectFiles_Fullpath.zip"); + + Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); + + int count1, count2; + + string fodder = Path.Combine(TopLevelDir, "fodder"); + Directory.CreateDirectory(fodder); + + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Creating files..."); + int entries = 0; + int i = 0; + int subdirCount = _rnd.Next(17) + 9; + //int subdirCount = _rnd.Next(3) + 2; + var FileCount = new Dictionary(); + + var checksums = new Dictionary(); + // I don't actually verify the checksums in this method... + + + for (i = 0; i < subdirCount; i++) + { + string subDirShort = new System.String(new char[] { (char)(i + 65) }); + string subDir = Path.Combine(fodder, subDirShort); + Directory.CreateDirectory(subDir); + + int filecount = _rnd.Next(8) + 8; + //int filecount = _rnd.Next(2) + 2; + FileCount[subDirShort] = filecount; + for (int j = 0; j < filecount; j++) + { + string filename = String.Format("file{0:D4}.x", j); + string fqFilename = Path.Combine(subDir, filename); + TestUtilities.CreateAndFillFile(fqFilename, _rnd.Next(1000) + 1000); + + var chk = TestUtilities.ComputeChecksum(fqFilename); + var s = TestUtilities.CheckSumToString(chk); + var t1 = Path.GetFileName(fodder); + var t2 = Path.Combine(t1, subDirShort); + var key = Path.Combine(t2, filename); + key = TestUtilities.TrimVolumeAndSwapSlashes(key); + TestContext.WriteLine("chk[{0}]= {1}", key, s); + checksums.Add(key, s); + entries++; + } + } + + Directory.SetCurrentDirectory(TopLevelDir); + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Creating zip ({0} entries in {1} subdirs)...", entries, subdirCount); + // add all the subdirectories into a new zip + using (ZipFile zip1 = new ZipFile()) + { + // add all of those subdirectories (A, B, C...) into the root in the zip archive + zip1.AddDirectory(fodder, ""); + zip1.Save(zipFileToCreate); + } + Assert.AreEqual(entries, TestUtilities.CountEntries(zipFileToCreate)); + + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Selecting entries by full path..."); + count1 = 0; + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + for (i = 0; i < subdirCount; i++) + { + string dirInArchive = new System.String(new char[] { (char)(i + 65) }); + var selected1 = zip1.SelectEntries(Path.Combine(dirInArchive, "*.*")); + count1 += selected1.Count; + TestContext.WriteLine("--------------\nfiles in dir {0} ({1}):", + dirInArchive, selected1.Count); + foreach (ZipEntry e in selected1) + TestContext.WriteLine(e.FileName); + } + Assert.AreEqual(entries, count1); + } + + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Selecting entries by directory and size..."); + count1 = 0; + count2 = 0; + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + for (i = 0; i < subdirCount; i++) + { + string dirInArchive = new System.String(new char[] { (char)(i + 65) }); + string pathCriterion = String.Format("name = {0}", + Path.Combine(dirInArchive, "*.*")); + string combinedCriterion = String.Format("size > 1500 AND {0}", pathCriterion); + + var selected1 = zip1.SelectEntries(combinedCriterion, dirInArchive); + count1 += selected1.Count; + TestContext.WriteLine("--------------\nfiles in ({0}) ({1} entries):", + combinedCriterion, + selected1.Count); + foreach (ZipEntry e in selected1) + TestContext.WriteLine(e.FileName); + } + + var selected2 = zip1.SelectEntries("size <= 1500"); + count2 = selected2.Count; + Assert.AreEqual(entries, count1 + count2 - subdirCount); + } + } + + + + + [TestMethod] + public void Selector_SelectEntries_NestedDirectories_wi8559() + { + //Directory.SetCurrentDirectory(TopLevelDir); + string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_SelectFiles_NestedDirectories.zip"); + + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Creating zip file..."); + + int dirCount = _rnd.Next(4) + 3; + using (var zip = new ZipFile()) + { + for (int i = 0; i < dirCount; i++) + { + String dir = new String((char)(65 + i), i + 1); + zip.AddEntry(Path.Combine(dir, "Readme.txt"), "This is the content for the Readme.txt in directory " + dir); + int subDirCount = _rnd.Next(3) + 2; + for (int j = 0; j < subDirCount; j++) + { + String subdir = Path.Combine(dir, new String((char)(90 - j), 3)); + zip.AddEntry(Path.Combine(subdir, "Readme.txt"), "This is the content for the Readme.txt in directory " + subdir); + } + } + zip.Save(zipFileToCreate); + } + + // this testmethod does not extract files, or verify checksums ... + + // just want to verify that selection of entries works in nested directories as + // well as + TestContext.WriteLine("===================================================="); + TestContext.WriteLine("Selecting entries by path..."); + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + for (int i = 0; i < dirCount; i++) + { + String dir = new String((char)(65 + i), i + 1); + var selected1 = zip1.SelectEntries("*.txt", dir); + Assert.AreEqual(1, selected1.Count); + + selected1 = zip1.SelectEntries("*.txt", dir + "/ZZZ"); + var selected2 = zip1.SelectEntries("*.txt", dir + "\\ZZZ"); + Assert.AreEqual(selected1.Count, selected2.Count); + + selected1 = zip1.SelectEntries("*.txt", dir + "/YYY"); + selected2 = zip1.SelectEntries("*.txt", dir + "\\YYY"); + Assert.AreEqual(selected1.Count, selected2.Count); + } + } + } + + + + + [TestMethod] + public void Selector_SelectFiles_DirName_wi8245() + { + // workitem 8245 + //Directory.SetCurrentDirectory(TopLevelDir); + SetupFiles(); + var ff = new Ionic.FileSelector("*.*"); + var result = ff.SelectFiles(fodderDirectory); + Assert.IsTrue(result.Count > 1); + } + + + [TestMethod] + public void Selector_SelectFiles_DirName_wi8245_2() + { + // workitem 8245 + string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_SelectFiles_DirName_wi8245_2.zip"); + //Directory.SetCurrentDirectory(TopLevelDir); + SetupFiles(); + + var fodderFiles = Directory.GetFiles(fodderDirectory, "*.*", SearchOption.AllDirectories); + + TestContext.WriteLine("==============================================="); + TestContext.WriteLine("AddSelectedFiles()"); + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddSelectedFiles(fodderDirectory, null, "fodder", true); + zip1.Save(zipFileToCreate); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), fodderFiles.Length, + "The Zip file has the wrong number of entries."); + } + + + + [TestMethod] + public void Selector_SelectFiles_DirName_wi9176() + { + // workitem 9176 + //Directory.SetCurrentDirectory(TopLevelDir); + + _txrx= TestUtilities.StartProgressMonitor("SelectFiles-DirName", + "Select Files by DirName", + "workitem 9176"); + + SetupFiles(); + + var binFiles = Directory.GetFiles(fodderDirectory, "*.bin", SearchOption.AllDirectories); + + int[] eCount = new int[2]; + _txrx.Send("pb 0 max 2"); + for (int i = 0; i < 2; i++) + { + string zipFileToCreate = Path.Combine(TopLevelDir, + String.Format("Selector_SelectFiles_DirName_wi9176-{0}.zip", i)); + _txrx.Send("pb 1 max 4"); + _txrx.Send("pb 1 value 0"); + string d = fodderDirectory; + if (i == 1) d += "\\"; + TestContext.WriteLine("==============================================="); + TestContext.WriteLine("AddSelectedFiles(cycle={0})", i); + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddSelectedFiles("name = *.bin", d, "", true); + _txrx.Send("pb 1 step"); + zip1.Save(zipFileToCreate); + } + _txrx.Send("pb 1 step"); + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), binFiles.Length, + "The Zip file has the wrong number of entries."); + + _txrx.Send("pb 2 step"); + + using (ZipFile zip1 = ZipFile.Read(zipFileToCreate)) + { + foreach (var e in zip1) + { + if (e.FileName.Contains("/")) eCount[i]++; + } + } + _txrx.Send("pb 1 step"); + + if (i==1) + Assert.AreEqual(eCount[0], eCount[1], + "Inconsistent results when the directory includes a path.", i); + + _txrx.Send("pb 0 step"); + } + } + + + [TestMethod] + public void Selector_SelectFiles_GoodSyntax01() + { + string[] criteria = { + "type = D", + "type = F", + "attrs = HRS", + "attrs = L", + "name = *.txt OR (size > 7800)", + "name = *.harvey OR (size > 7800 and attributes = H)", + "(name = *.harvey) OR (size > 7800 and attributes = H)", + "(name = *.xls) and (name != *.xls) OR (size > 7800 and attributes = H)", + "(name = '*.xls')", + "(name = Ionic.Zip.dll) or ((size > 1mb) and (name != *.zip))", + "(name = Ionic.Zip.dll) or ((size > 1mb) and (name != *.zip)) or (name = Joe.txt)", + "(name=Ionic.Zip.dll) or ((size>1mb) and (name!=*.zip)) or (name=Joe.txt)", + "(name=Ionic.Zip.dll)or((size>1mb)and(name!=*.zip))or(name=Joe.txt)", + }; + + foreach (string s in criteria) + { + TestContext.WriteLine("Selector: " + s); + var ff = new Ionic.FileSelector(s); + } + } + + + [TestMethod] + public void Selector_Twiddle_wi10153() + { + // workitem 10153: + // + // When calling AddSelectedFiles(String,String,String,bool), and when the + // actual filesystem path uses mixed case, but the specified directoryOnDisk + // argument is downcased, AND when the filename contains a ~ (weird, I + // know), verify that the path replacement works as advertised, and entries + // are rooted in the directoryInArchive specified path. + + string zipFileToCreate = Path.Combine(TopLevelDir, "Selector_Twiddle.zip"); + string dirToZip = "dirToZip"; + var keyword = "Gamma"; + var files = TestUtilities.GenerateFilesFlat(dirToZip); + int k = 0; + Directory.SetCurrentDirectory(dirToZip); + Array.ForEach(files, x => { + File.Move(Path.GetFileName(x), + String.Format("~{0}.{1:D5}.txt", keyword, k++)); + }); + Directory.SetCurrentDirectory(TopLevelDir); + + using (ZipFile zip = new ZipFile()) + { + // must use ToLower to force case mismatch + zip.AddSelectedFiles("name != *.zip*", dirToZip.ToLower(), "", true); + zip.Save(zipFileToCreate); + } + + int nEntries = 0; + using (ZipFile zip = ZipFile.Read(zipFileToCreate)) + { + foreach (var e in zip) + TestContext.WriteLine("entry {0}", e.FileName); + + TestContext.WriteLine(""); + + foreach (var e in zip) + { + TestContext.WriteLine("check {0}", e.FileName); + Assert.IsFalse(e.FileName.Contains("/"), + "The filename contains a path, but shouldn't"); + nEntries++; + } + } + Assert.IsTrue(nEntries>2, "Not enough entries"); + } + + + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadNoun() + { + new Ionic.FileSelector("fame = *.txt"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax01() + { + new Ionic.FileSelector("size = "); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax02() + { + new Ionic.FileSelector("name = *.txt and"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax03() + { + new Ionic.FileSelector("name = *.txt URF "); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax04() + { + new Ionic.FileSelector("name = *.txt OR ("); + } + + [TestMethod] + [ExpectedException(typeof(System.FormatException))] + public void Selector_SelectFiles_BadSyntax05() + { + new Ionic.FileSelector("name = *.txt OR (size = G)"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax06() + { + new Ionic.FileSelector("name = *.txt OR (size > )"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax07() + { + new Ionic.FileSelector("name = *.txt OR (size > 7800"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax08() + { + new Ionic.FileSelector("name = *.txt OR )size > 7800"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax09() + { + new Ionic.FileSelector("name = *.txt and name ="); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax10() + { + new Ionic.FileSelector("name == *.txt"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax10a() + { + new Ionic.FileSelector("name >= *.txt"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax11() + { + new Ionic.FileSelector("name ~= *.txt"); + } + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax12() + { + new Ionic.FileSelector("name @ = *.txt"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax13() + { + new Ionic.FileSelector("name LIKE *.txt"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax14() + { + new Ionic.FileSelector("name AND *.txt"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax15() + { + new Ionic.FileSelector("name (AND *.txt"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax16() + { + new Ionic.FileSelector("mtime 2007-01-01"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax17() + { + new Ionic.FileSelector("size 1kb"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax18() + { + Ionic.FileSelector ff = new Ionic.FileSelector(""); + var list = ff.SelectFiles("."); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax19() + { + Ionic.FileSelector ff = new Ionic.FileSelector(null); + var list = ff.SelectFiles("."); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax20() + { + new Ionic.FileSelector("attributes > HRTS"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax21() + { + new Ionic.FileSelector("attributes HRTS"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax22a() + { + new Ionic.FileSelector("attributes = HHHA"); + } + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax22b() + { + new Ionic.FileSelector("attributes = SHSA"); + } + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax22c() + { + new Ionic.FileSelector("attributes = AHA"); + } + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax22d() + { + new Ionic.FileSelector("attributes = RRA"); + } + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax22e() + { + new Ionic.FileSelector("attributes = IRIA"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax23() + { + new Ionic.FileSelector("attributes = INVALID"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax24a() + { + new Ionic.FileSelector("type = I"); + } + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void Selector_SelectFiles_BadSyntax24b() + { + new Ionic.FileSelector("type > D"); + } + + [TestMethod] + public void Selector_Normalize() + { + + string[][] sPairs = { + new string[] { + "name = '.\\Selector (this is a Test)\\this.txt'", + null}, + + new string[] { + "(size > 100)AND(name='Name (with Parens).txt')", + "(size > 100 AND name = 'Name (with Parens).txt')"}, + + new string[] { + "(size > 100) AND ((name='Name (with Parens).txt')OR(name=*.jpg))", + "(size > 100 AND (name = 'Name (with Parens).txt' OR name = '*.jpg'))"}, + + new string[] { + "name='*.txt' and name!='* *.txt'", + "(name = '*.txt' AND name != '* *.txt')"}, + + new string[] { + "name = *.txt AND name != '* *.txt'", + "(name = '*.txt' AND name != '* *.txt')"}, + }; + + + for (int i=0; i < sPairs.Length; i++) + { + var pair = sPairs[i]; + var selector = pair[0]; + var expectedResult = pair[1]; + var fsel = new FileSelector(selector); + var stringVer = fsel.ToString().Replace("\u00006"," "); + Assert.AreEqual("FileSelector("+ (expectedResult ?? selector) + +")", + stringVer, + "entry {0}", i); + } + } + + + [TestMethod] + public void Selector_SingleQuotesAndSlashes_wi14033() + { + var zipFileToCreate = "SingleQuotes.zip"; + var parentDir = "DexMik"; + + int nFolders = this._rnd.Next(4)+3; + TestContext.WriteLine("Creating {0} folders:", nFolders); + Directory.CreateDirectory(parentDir); + string[] childFolders = new string[nFolders+1]; + childFolders[0] = parentDir; + for (int i=0; i < nFolders; i++) + { + var b1 = "folder" + (i+1); + int k = (i > 0) ? this._rnd.Next(i+1) : 0; + var d1 = Path.Combine(childFolders[k], b1); + TestContext.WriteLine(" {0}", d1); + Directory.CreateDirectory(d1); + childFolders[i+1] = d1; + + int nFiles = this._rnd.Next(3)+2; + TestContext.WriteLine(" Creating {0} files:", nFiles); + for (int j=0; j < nFiles; j++) + { + var fn1 = Path.GetRandomFileName(); + var fname = Path.Combine(d1,fn1); + TestContext.WriteLine(" {0}", fn1); + TestUtilities.CreateAndFillFileText(fname, this._rnd.Next(10000) + 1000); + } + TestContext.WriteLine(""); + } + + // create a zip file using those files + TestContext.WriteLine(""); + TestContext.WriteLine("Zipping:"); + using (var zip = new ZipFile()) + { + zip.AddDirectory(parentDir, childFolders[0]); + zip.Save(zipFileToCreate); + } + + // list all the entries + TestContext.WriteLine(""); + TestContext.WriteLine("List of entries:"); + using (var zip = new ZipFile(zipFileToCreate)) + { + foreach (var e in zip) + { + TestContext.WriteLine(" {0}", e.FileName); + } + } + TestContext.WriteLine(""); + + // now select some of the entries + int m = this._rnd.Next(nFolders)+1; + TestContext.WriteLine(""); + TestContext.WriteLine("Selecting entries from folder {0}:", m); + using (var zip = new ZipFile(zipFileToCreate)) + { + string selectCriteria = + String.Format("name = '{0}'", + Path.Combine(childFolders[m], "*.*")); + TestContext.WriteLine("select: {0}", selectCriteria); + var selection1 = zip.SelectEntries(selectCriteria); + Assert.IsTrue(selection1.Count > 0, "first selection failed."); + + foreach (var item in selection1) + { + TestContext.WriteLine(" {0}", item); + } + + // Try different formats of the selection string - with + // and without quotes, with fwd slashes and back + // slashes. + string[][] replacementPairs = { + new string[] { "\\", "/" }, // backslash to fwdslash + new string[] { "'", "" }, // remove single quotes + new string[] { "/", "\\" }, // fwdslash to backslash + }; + + for (int k=0; k < 3; k++) + { + selectCriteria = selectCriteria.Replace(replacementPairs[k][0], + replacementPairs[k][1]); + + TestContext.WriteLine(""); + TestContext.WriteLine("Try #{0}: {1}", k+2, selectCriteria); + var selection2 = zip.SelectEntries(selectCriteria); + foreach (var item in selection2) + { + TestContext.WriteLine(" {0}", item); + } + + Assert.AreEqual(selection1.Count, + selection2.Count, + "selection verification trial {0} failed.", k); + } + } + + } + + } +} diff --git a/src/Zip Tests/SelfExtractor.cs b/old/src/Zip Tests/SelfExtractor.cs similarity index 97% rename from src/Zip Tests/SelfExtractor.cs rename to old/src/Zip Tests/SelfExtractor.cs index 0853aa1..1af55d8 100644 --- a/src/Zip Tests/SelfExtractor.cs +++ b/old/src/Zip Tests/SelfExtractor.cs @@ -1,859 +1,859 @@ -// SelfExtractor.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009, 2011 Dino Chiesa . -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-June-18 21:12:09> -// -// ------------------------------------------------------------------ -// -// This module defines the tests for the self-extracting archive capability -// within DotNetZip: creating, reading, updating, and running SFX's. -// -// ------------------------------------------------------------------ - - -using System; -using System.Text; -using System.Collections.Generic; -using System.Linq; -using Microsoft.VisualStudio.TestTools.UnitTesting; - -using Ionic.Zip; -using Ionic.Zip.Tests.Utilities; -using System.IO; - - -namespace Ionic.Zip.Tests -{ - /// - /// Summary description for Self extracting archives (SFX) - /// - [TestClass] - public class SelfExtractor : IonicTestClass - { - public SelfExtractor() : base() { } - - - [TestMethod] - public void SFX_CanRead() - { - SelfExtractorFlavor[] flavors = - { - SelfExtractorFlavor.ConsoleApplication, - SelfExtractorFlavor.WinFormsApplication - }; - - for (int k = 0; k < flavors.Length; k++) - { - string sfxFileToCreate = Path.Combine(TopLevelDir, String.Format("SFX_{0}.exe", flavors[k].ToString())); - string unpackDir = Path.Combine(TopLevelDir, "unpack"); - if (Directory.Exists(unpackDir)) - Directory.Delete(unpackDir, true); - string readmeString = "Hey there! This zipfile entry was created directly from a string in application code."; - - int entriesAdded = 0; - String filename = null; - - string Subdir = Path.Combine(TopLevelDir, String.Format("A{0}", k)); - Directory.CreateDirectory(Subdir); - var checksums = new Dictionary(); - - int fileCount = _rnd.Next(50) + 30; - for (int j = 0; j < fileCount; j++) - { - filename = Path.Combine(Subdir, String.Format("file{0:D3}.txt", j)); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - entriesAdded++; - var chk = TestUtilities.ComputeChecksum(filename); - checksums.Add(filename.Replace(TopLevelDir + "\\", "").Replace('\\', '/'), TestUtilities.CheckSumToString(chk)); - } - - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddDirectory(Subdir, Path.GetFileName(Subdir)); - zip1.Comment = "This will be embedded into a self-extracting exe"; - MemoryStream ms1 = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(readmeString)); - zip1.AddEntry("Readme.txt", ms1); - zip1.SaveSelfExtractor(sfxFileToCreate, flavors[k]); - } - - TestContext.WriteLine("---------------Reading {0}...", sfxFileToCreate); - using (ZipFile zip2 = ZipFile.Read(sfxFileToCreate)) - { - //string extractDir = String.Format("extract{0}", j); - foreach (var e in zip2) - { - TestContext.WriteLine(" Entry: {0} c({1}) u({2})", e.FileName, e.CompressedSize, e.UncompressedSize); - e.Extract(unpackDir); - if (!e.IsDirectory) - { - if (checksums.ContainsKey(e.FileName)) - { - filename = Path.Combine(unpackDir, e.FileName); - string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(filename)); - Assert.AreEqual(checksums[e.FileName], actualCheckString, "In trial {0}, Checksums for ({1}) do not match.", k, e.FileName); - } - else - { - Assert.AreEqual("Readme.txt", e.FileName, String.Format("trial {0}", k)); - } - } - } - } - } - } - - - - [TestMethod] - public void SFX_Update_Console() - { - SFX_Update(SelfExtractorFlavor.ConsoleApplication); - } - - [TestMethod] - public void SFX_Update_Winforms() - { - SFX_Update(SelfExtractorFlavor.WinFormsApplication); - } - - private void SFX_Update(SelfExtractorFlavor flavor) - { - string sfxFileToCreate = Path.Combine(TopLevelDir, - String.Format("SFX_Update{0}.exe", - flavor.ToString())); - string unpackDir = Path.Combine(TopLevelDir, "unpack"); - if (Directory.Exists(unpackDir)) - Directory.Delete(unpackDir, true); - - string readmeString = "Hey there! This zipfile entry was created directly from a string in application code."; - - // create a file and compute the checksum - string Subdir = Path.Combine(TopLevelDir, "files"); - Directory.CreateDirectory(Subdir); - var checksums = new Dictionary(); - - string filename = Path.Combine(Subdir, "file1.txt"); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - var chk = TestUtilities.ComputeChecksum(filename); - checksums.Add(filename.Replace(TopLevelDir + "\\", "").Replace('\\', '/'), TestUtilities.CheckSumToString(chk)); - - // create the SFX - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddFile(filename, Path.GetFileName(Subdir)); - zip1.Comment = "This will be embedded into a self-extracting exe"; - MemoryStream ms1 = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(readmeString)); - zip1.AddEntry("Readme.txt", ms1); - var sfxOptions = new SelfExtractorSaveOptions - { - Flavor = flavor, - Quiet = true, - DefaultExtractDirectory = unpackDir - }; - zip1.SaveSelfExtractor(sfxFileToCreate, sfxOptions); - } - - // verify count - Assert.AreEqual(TestUtilities.CountEntries(sfxFileToCreate), 2, "The Zip file has the wrong number of entries."); - - // create another file - filename = Path.Combine(Subdir, "file2.txt"); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - chk = TestUtilities.ComputeChecksum(filename); - checksums.Add(filename.Replace(TopLevelDir + "\\", "").Replace('\\', '/'), TestUtilities.CheckSumToString(chk)); - string password = "ABCDEFG"; - // update the SFX - using (ZipFile zip1 = ZipFile.Read(sfxFileToCreate)) - { - zip1.CompressionLevel = Ionic.Zlib.CompressionLevel.BestCompression; - zip1.Encryption = EncryptionAlgorithm.WinZipAes256; - zip1.Comment = "The password is: " + password; - zip1.Password = password; - zip1.AddFile(filename, Path.GetFileName(Subdir)); - var sfxOptions = new SelfExtractorSaveOptions - { - Flavor = flavor, - Quiet = true, - DefaultExtractDirectory = unpackDir - }; - zip1.SaveSelfExtractor(sfxFileToCreate, sfxOptions); - } - - // verify count - Assert.AreEqual(TestUtilities.CountEntries(sfxFileToCreate), 3, "The Zip file has the wrong number of entries."); - - - // read the SFX - TestContext.WriteLine("---------------Reading {0}...", sfxFileToCreate); - using (ZipFile zip2 = ZipFile.Read(sfxFileToCreate)) - { - zip2.Password = password; - //string extractDir = String.Format("extract{0}", j); - foreach (var e in zip2) - { - TestContext.WriteLine(" Entry: {0} c({1}) u({2})", e.FileName, e.CompressedSize, e.UncompressedSize); - e.Extract(unpackDir); - if (!e.IsDirectory) - { - if (checksums.ContainsKey(e.FileName)) - { - filename = Path.Combine(unpackDir, e.FileName); - string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(filename)); - Assert.AreEqual(checksums[e.FileName], actualCheckString, "Checksums for ({1}) do not match.", e.FileName); - //TestContext.WriteLine(" Checksums match ({0}).\n", actualCheckString); - } - else - { - Assert.AreEqual("Readme.txt", e.FileName); - } - } - } - } - - int N = (flavor == SelfExtractorFlavor.ConsoleApplication) ? 2 : 1; - for (int j = 0; j < N; j++) - { - // run the SFX - TestContext.WriteLine("Running the SFX... "); - var psi = new System.Diagnostics.ProcessStartInfo(sfxFileToCreate); - if (flavor == SelfExtractorFlavor.ConsoleApplication) - { - if (j == 0) - psi.Arguments = "-o -p " + password; // overwrite - else - psi.Arguments = "-p " + password; - } - psi.WorkingDirectory = TopLevelDir; - psi.UseShellExecute = false; - psi.CreateNoWindow = true; - System.Diagnostics.Process process = System.Diagnostics.Process.Start(psi); - process.WaitForExit(); - int rc = process.ExitCode; - TestContext.WriteLine("SFX exit code: ({0})", rc); - - if (j == 0) - { - Assert.AreEqual(0, rc, "The exit code from the SFX was nonzero ({0}).", rc); - } - else - { - Assert.AreNotEqual(0, rc, "The exit code from the SFX was zero ({0})."); - } - } - - // verify the unpacked files? - } - - - - [TestMethod] - public void SFX_Console() - { - string exeFileToCreate = Path.Combine(TopLevelDir, "SFX_Console.exe"); - string unpackDir = Path.Combine(TopLevelDir, "unpack"); - string readmeString = "Hey there! This zipfile entry was created directly from a string in application code."; - - int entriesAdded = 0; - String filename = null; - - string Subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(Subdir); - var checksums = new Dictionary(); - - int fileCount = _rnd.Next(10) + 10; - for (int j = 0; j < fileCount; j++) - { - filename = Path.Combine(Subdir, String.Format("file{0:D3}.txt", j)); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - entriesAdded++; - var chk = TestUtilities.ComputeChecksum(filename); - checksums.Add(filename, TestUtilities.CheckSumToString(chk)); - } - - using (ZipFile zip = new ZipFile()) - { - zip.AddDirectory(Subdir, Path.GetFileName(Subdir)); - zip.Comment = "This will be embedded into a self-extracting exe"; - MemoryStream ms1 = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(readmeString)); - zip.AddEntry("Readme.txt", ms1); - var sfxOptions = new SelfExtractorSaveOptions - { - Flavor = Ionic.Zip.SelfExtractorFlavor.ConsoleApplication, - DefaultExtractDirectory = unpackDir - }; - zip.SaveSelfExtractor(exeFileToCreate, sfxOptions); - } - - var psi = new System.Diagnostics.ProcessStartInfo(exeFileToCreate); - psi.WorkingDirectory = TopLevelDir; - psi.UseShellExecute = false; - psi.CreateNoWindow = true; - System.Diagnostics.Process process = System.Diagnostics.Process.Start(psi); - process.WaitForExit(); - - // now, compare the output in unpackDir with the original - string DirToCheck = Path.Combine(unpackDir, "A"); - // verify the checksum of each file matches with its brother - foreach (string fname in Directory.GetFiles(DirToCheck)) - { - string originalName = fname.Replace("\\unpack", ""); - if (checksums.ContainsKey(originalName)) - { - string expectedCheckString = checksums[originalName]; - string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(fname)); - Assert.AreEqual(expectedCheckString, actualCheckString, "Unexpected checksum on extracted filesystem file ({0}).", fname); - } - else - Assert.AreEqual("Readme.txt", originalName); - - } - } - - - [TestMethod] - public void SFX_WinForms() - { - string[] Passwords = { null, "12345" }; - for (int k = 0; k < Passwords.Length; k++) - { - string exeFileToCreate = Path.Combine(TopLevelDir, String.Format("SFX_WinForms-{0}.exe", k)); - string DesiredunpackDir = Path.Combine(TopLevelDir, String.Format("unpack{0}", k)); - - String filename = null; - - string Subdir = Path.Combine(TopLevelDir, String.Format("A{0}", k)); - Directory.CreateDirectory(Subdir); - var checksums = new Dictionary(); - - int fileCount = _rnd.Next(10) + 10; - for (int j = 0; j < fileCount; j++) - { - filename = Path.Combine(Subdir, String.Format("file{0:D3}.txt", j)); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - var chk = TestUtilities.ComputeChecksum(filename); - checksums.Add(filename, TestUtilities.CheckSumToString(chk)); - } - - using (ZipFile zip = new ZipFile()) - { - zip.Password = Passwords[k]; - zip.AddDirectory(Subdir, Path.GetFileName(Subdir)); - zip.Comment = "For testing purposes, please extract to: " + DesiredunpackDir; - if (Passwords[k] != null) zip.Comment += String.Format("\r\n\r\nThe password for all entries is: {0}\n", Passwords[k]); - var sfxOptions = new SelfExtractorSaveOptions - { - Flavor = Ionic.Zip.SelfExtractorFlavor.WinFormsApplication, - // workitem 12608 - SfxExeWindowTitle = "Custom SFX Title " + DateTime.Now.ToString("G"), - DefaultExtractDirectory = DesiredunpackDir - }; - zip.SaveSelfExtractor(exeFileToCreate, sfxOptions); - } - - // run the self-extracting EXE we just created - System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo(exeFileToCreate); - psi.Arguments = DesiredunpackDir; - psi.WorkingDirectory = TopLevelDir; - psi.UseShellExecute = false; - psi.CreateNoWindow = true; - System.Diagnostics.Process process = System.Diagnostics.Process.Start(psi); - process.WaitForExit(); - - // now, compare the output in TargetDirectory with the original - string DirToCheck = Path.Combine(DesiredunpackDir, String.Format("A{0}", k)); - // verify the checksum of each file matches with its brother - var fileList = Directory.GetFiles(DirToCheck); - Assert.AreEqual(checksums.Keys.Count, fileList.Length, "Trial {0}: Inconsistent results.", k); - - foreach (string fname in fileList) - { - string expectedCheckString = checksums[fname.Replace(String.Format("\\unpack{0}", k), "")]; - string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(fname)); - Assert.AreEqual(expectedCheckString, actualCheckString, "Trial {0}: Unexpected checksum on extracted filesystem file ({1}).", k, fname); - } - } - } - - - - string programCode = - - "using System;\n" + - "namespace Ionic.Tests.Zip.SelfExtractor\n" + - "{\n" + - "\n" + - " public class TestDriver\n" + - " {\n" + - " static int Main(String[] args)\n" + - " {\n" + - " int rc = @@XXX@@;\n" + - " Console.WriteLine(\"Hello from the post-extract command.\\nThis app will return {0}.\", rc);\n" + - " return rc;\n" + - " }\n" + - " }\n" + - "}\n"; - - - private void CompileApp(int rc, string pathToExe) - { - var csharp = new Microsoft.CSharp.CSharpCodeProvider(); - var cp = new System.CodeDom.Compiler.CompilerParameters - { - GenerateInMemory = false, - GenerateExecutable = true, - IncludeDebugInformation = false, - OutputAssembly = pathToExe - }; - - // set the return code in the app - var cr = csharp.CompileAssemblyFromSource - (cp, programCode.Replace("@@XXX@@", rc.ToString())); - - if (cr == null) - throw new Exception("Errors compiling post-extract exe!"); - - foreach (string s in cr.Output) - TestContext.WriteLine(s); - - if (cr.Errors.Count != 0) - throw new Exception("Errors compiling post-extract exe!"); - } - - - // Here's a set of SFX tests with post-extract EXEs. - // We vary these parameters: - // - exe exists or not - 2 trials each test. - // - exe name has spaces or not - // - winforms or not - // - whether to run the exe or just compile - // - whether to append args or not - // - force noninteractive or not (only for Winforms flavor, to allow automated tests) - - [TestMethod] - public void SFX_RunOnExit_Console() - { - _Internal_SelfExtractor_Command("post-extract-run-on-exit-{0:D4}.exe", - SelfExtractorFlavor.ConsoleApplication, - true, // runPostExtract - true, // quiet - false, // forceNoninteractive - false); // wantArgs - } - - [TestMethod] - public void SFX_RunOnExit_Console_Args() - { - _Internal_SelfExtractor_Command("post-extract-run-on-exit-{0:D4}.exe", - SelfExtractorFlavor.ConsoleApplication, - true, // runPostExtract - true, // quiet - false, // forceNoninteractive - true); // wantArgs - } - - [TestMethod] - public void SFX_RunOnExit_WinForms() - { - _Internal_SelfExtractor_Command("post-extract-run-on-exit-{0:D4}.exe", - SelfExtractorFlavor.WinFormsApplication, - true, // runPostExtract - true, // quiet - false, // forceNoninteractive - false); // wantArgs - } - - [TestMethod] - public void SFX_RunOnExit_WinForms_DontRun() - { - // This test case just tests the generation (compilation) of - // the SFX. It is included because the interactive winforms - // SFX is not performed on automated test runs. - _Internal_SelfExtractor_Command("post-extract-run-on-exit-{0:D4}.exe", - SelfExtractorFlavor.WinFormsApplication, - false, // runPostExtract - true, // quiet - false, // forceNoninteractive - false); // wantArgs - } - - [TestMethod] - public void SFX_RunOnExit_WinForms_Interactive() - { - _Internal_SelfExtractor_Command("post-extract-run-on-exit-{0:D4}.exe", - SelfExtractorFlavor.WinFormsApplication, - true, // runPostExtract - false, // quiet - false, // forceNoninteractive - false); // wantArgs - } - - [TestMethod] - public void SFX_RunOnExit_WinForms_NonInteractive() - { - _Internal_SelfExtractor_Command("post-extract-run-on-exit-{0:D4}.exe", - SelfExtractorFlavor.WinFormsApplication, - true, // runPostExtract - true, // quiet - true, // forceNoninteractive - false); // wantArgs - } - - [TestMethod] - public void SFX_RunOnExit_WinForms_NonInteractive_Args() - { - _Internal_SelfExtractor_Command("post-extract-run-on-exit-{0:D4}.exe", - SelfExtractorFlavor.WinFormsApplication, - true, // runPostExtract - true, // quiet - true, // forceNoninteractive - true); // wantArgs - } - - // ------------------------------------------------------------------ // - - [TestMethod] - public void SFX_RunOnExit_Console_withSpaces() - { - _Internal_SelfExtractor_Command("post extract run on exit {0:D4}.exe", - SelfExtractorFlavor.ConsoleApplication, - true, // runPostExtract - true, // quiet - false, // forceNoninteractive - false); // wantArgs - } - - - [TestMethod] - public void SFX_RunOnExit_Console_withSpaces_Args() - { - _Internal_SelfExtractor_Command("post extract run on exit {0:D4}.exe", - SelfExtractorFlavor.ConsoleApplication, - true, // runPostExtract - true, // quiet - false, // forceNoninteractive - true); // wantArgs - } - - [TestMethod] - public void SFX_RunOnExit_WinForms_withSpaces() - { - _Internal_SelfExtractor_Command("post extract run on exit {0:D4}.exe", - SelfExtractorFlavor.WinFormsApplication, - true, // runPostExtract - true, // quiet - false, // forceNoninteractive - false); // wantArgs - } - - [TestMethod] - public void SFX_RunOnExit_WinForms_withSpaces_DontRun() - { - // This test case just tests the generation (compilation) of - // the SFX. It is included because the interactive winforms - // SFX is not performed on automated test runs. - _Internal_SelfExtractor_Command("post extract run on exit {0:D4}.exe", - SelfExtractorFlavor.WinFormsApplication, - false, // run the SFX? - true, // quiet - false, // forceNoninteractive - false); // wantArgs - } - - [TestMethod] - public void SFX_RunOnExit_WinForms_withSpaces_Interactive() - { - _Internal_SelfExtractor_Command("post extract run on exit {0:D4}.exe", - SelfExtractorFlavor.WinFormsApplication, - true, // actually run the program - false, // quiet - false, // forceNoninteractive - false); // wantArgs - } - - [TestMethod] - public void SFX_RunOnExit_WinForms_withSpaces_NonInteractive() - { - _Internal_SelfExtractor_Command("post extract run on exit {0:D4}.exe", - SelfExtractorFlavor.WinFormsApplication, - true, // actually run the program - true, // quiet - true, // forceNoninteractive - false); // wantArgs - } - - [TestMethod] - public void SFX_RunOnExit_WinForms_withSpaces_NonInteractive_Args() - { - _Internal_SelfExtractor_Command("post extract run on exit {0:D4}.exe", - SelfExtractorFlavor.WinFormsApplication, - true, // actually run the program - true, // quiet - true, // forceNoninteractive - true); // wantArgs - } - - - public void _Internal_SelfExtractor_Command(string cmdFormat, - SelfExtractorFlavor flavor, - bool runSfx, - bool quiet, - bool forceNoninteractive, - bool wantArgs) - { - TestContext.WriteLine("=============================="); - TestContext.WriteLine("SFX_RunOnExit({0})", flavor.ToString()); - - //int entriesAdded = 0; - //String filename = null; - string postExtractExe = String.Format(cmdFormat, _rnd.Next(3000)); - - // If WinForms and want forceNoninteractive, have the post-extract-exe return 0, - // else, select a random number. - int expectedReturnCode = (forceNoninteractive && - flavor == SelfExtractorFlavor.WinFormsApplication) - ? 0 - : _rnd.Next(1024) + 20; - TestContext.WriteLine("The post-extract command ({0}) will return {1}", - postExtractExe, expectedReturnCode); - - string subdir = "A"; - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - - for (int k = 0; k < 2; k++) - { - string readmeString = - String.Format("Hey! This zipfile entry was created directly from " + - "a string in application code. Flavor ({0}) Trial({1})", - flavor.ToString(), k); - string exeFileToCreate = String.Format("SFX_Command.{0}.{1}.exe", - flavor.ToString(), k); - - TestContext.WriteLine("----------------------"); - TestContext.WriteLine("Trial {0}", k); - string unpackDir = String.Format("unpack.{0}", k); - - var sw = new System.IO.StringWriter(); - using (ZipFile zip = new ZipFile()) - { - zip.StatusMessageTextWriter = sw; - zip.AddDirectory(subdir, subdir); // Path.GetFileName(subdir)); - zip.Comment = String.Format("Trial options: fl({0}) cmd ({3})\r\n"+ - "actuallyRun({1})\r\nquiet({2})\r\n"+ - "exists? {4}\r\nexpected rc={5}", - flavor, - runSfx, - quiet, - postExtractExe, - k!=0, - expectedReturnCode - ); - var ms1 = new MemoryStream(Encoding.UTF8.GetBytes(readmeString)); - zip.AddEntry("Readme.txt", ms1); - if (k != 0) - { - CompileApp(expectedReturnCode, postExtractExe); - zip.AddFile(postExtractExe); - } - - var sfxOptions = new SelfExtractorSaveOptions - { - Flavor = flavor, - DefaultExtractDirectory = unpackDir, - SfxExeWindowTitle = "Custom SFX Title " + DateTime.Now.ToString("G"), - Quiet = quiet - }; - - // In the case of k==0, this exe does not exist. It will result in - // a return code of 5. In k == 1, the exe exists and will succeed. - if (postExtractExe.Contains(' ')) - sfxOptions.PostExtractCommandLine= "\"" + postExtractExe + "\""; - else - sfxOptions.PostExtractCommandLine= postExtractExe; - - if (wantArgs) - sfxOptions.PostExtractCommandLine += " arg1 arg2"; - - zip.SaveSelfExtractor(exeFileToCreate, sfxOptions); - } - - TestContext.WriteLine("status output: " + sw.ToString()); - - if (k != 0) File.Delete(postExtractExe); - - // Run the generated Self-extractor, conditionally. - // - // We always run, unless specifically asked not to, OR if it's a - // winforms app and we want it to be noninteractive and there's no - // EXE to run. If we try running a non-existent app, it will pop an - // error message, hence user interaction, which we need to avoid for - // the automated test. - if (runSfx && - (k != 0 || !forceNoninteractive || - flavor != SelfExtractorFlavor.WinFormsApplication)) - { - TestContext.WriteLine("Running the SFX... "); - System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo(exeFileToCreate); - psi.WorkingDirectory = TopLevelDir; - psi.UseShellExecute = false; - psi.CreateNoWindow = true; // false; - System.Diagnostics.Process process = System.Diagnostics.Process.Start(psi); - process.WaitForExit(); - int rc = process.ExitCode; - TestContext.WriteLine("SFX exit code: ({0})", rc); - - // The exit code is returned only if it's a console SFX. - if (flavor == SelfExtractorFlavor.ConsoleApplication) - { - // The program actually runs if k != 0 - if (k == 0) - { - // The file to execute should not have been found, hence rc==5. - Assert.AreEqual - (5, rc, "In trial {0}, the exit code was unexpected.", k); - } - else - { - // The file to execute should have returned a specific code. - Assert.AreEqual - (expectedReturnCode, rc, - "In trial {0}, the exit code did not match.", k); - } - } - else - Assert.AreEqual(0, rc, "In trial {0}, the exit code did not match.", k); - - VerifyChecksums(Path.Combine(unpackDir, "A"), - filesToZip, checksums); - } - } - } - - - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.BadStateException))] - public void SFX_Save_Zip_As_EXE() - { - string sfxFileToCreate = "SFX_Save_Zip_As_EXE.exe"; - - // create a file to zip - string subdir = "files"; - Directory.CreateDirectory(subdir); - string filename = Path.Combine(subdir, "file1.txt"); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - - // add an entry to the zipfile, then try saving to a directory. this should fail - using (ZipFile zip = new ZipFile()) - { - zip.AddFile(filename, ""); - zip.SaveSelfExtractor(sfxFileToCreate, - SelfExtractorFlavor.ConsoleApplication); - } - - // create another file - filename = Path.Combine(subdir, "file2.txt"); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - - // update the SFX, save to a zip format - using (ZipFile zip = ZipFile.Read(sfxFileToCreate)) - { - zip.AddFile(filename, ""); - zip.Save(); // FAIL - } - } - - - - - [TestMethod] - public void SFX_RemoveFilesAfterUnpack_wi10682() - { - string subdir = "files"; - string[] filesToZip; - Dictionary checksums; - CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - string password = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - string postExeFormat = "post-extract-{0:D4}.exe"; - string postExtractExe = String.Format(postExeFormat, _rnd.Next(10000)); - CompileApp(0, postExtractExe); - - // pass 1 to run SFX and verify files are present; - // pass 2 to run SFX and verify that it deletes files after extracting. - - // 2 passes: one for no cmd line overload, one with overload of -r+/-r- - for (int j=0; j < 2; j++) - { - // 2 passes: with RemoveUnpackedFiles set or unset - for (int k=0; k < 2; k++) - { - string sfxFileToCreate = - String.Format("SFX_RemoveFilesAfterUnpack.{0}.{1}.exe",j,k); - using (ZipFile zip = new ZipFile()) - { - zip.Password = password; - zip.Encryption = Ionic.Zip.EncryptionAlgorithm.WinZipAes256; - Array.ForEach(filesToZip, x => { zip.AddFile(x, "files");}); - zip.AddFile(postExtractExe, "files"); - var sfxOptions = new SelfExtractorSaveOptions - { - Flavor = SelfExtractorFlavor.ConsoleApplication, - Quiet = true, - PostExtractCommandLine = Path.Combine("files",postExtractExe) - }; - - if (k==1) - sfxOptions.RemoveUnpackedFilesAfterExecute = true; - - zip.SaveSelfExtractor(sfxFileToCreate, sfxOptions); - } - - string extractDir = String.Format("extract.{0}.{1}",j,k); - string sfxCmdLineArgs = - String.Format("-p {0} -d {1}", password, extractDir); - - if (j==1) - { - // override the option set at time of zip.SaveSfx() - sfxCmdLineArgs += (k==0) ? " -r+" : " -r-"; - } - - // invoke the SFX - this.Exec(sfxFileToCreate, sfxCmdLineArgs, true, true); - - if (k==j) - { - // verify that the files are extracted, and match - VerifyChecksums(Path.Combine(extractDir, "files"), - filesToZip, checksums); - } - else - { - // verify that no files exist in the extract directory - var remainingFiles = Directory.GetFiles(extractDir); - Assert.IsTrue(remainingFiles.Length == 0); - } - } - } - } - - - - - } +// SelfExtractor.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009, 2011 Dino Chiesa . +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-June-18 21:12:09> +// +// ------------------------------------------------------------------ +// +// This module defines the tests for the self-extracting archive capability +// within DotNetZip: creating, reading, updating, and running SFX's. +// +// ------------------------------------------------------------------ + + +using System; +using System.Text; +using System.Collections.Generic; +using System.Linq; +using Microsoft.VisualStudio.TestTools.UnitTesting; + +using Ionic.Zip; +using Ionic.Zip.Tests.Utilities; +using System.IO; + + +namespace Ionic.Zip.Tests +{ + /// + /// Summary description for Self extracting archives (SFX) + /// + [TestClass] + public class SelfExtractor : IonicTestClass + { + public SelfExtractor() : base() { } + + + [TestMethod] + public void SFX_CanRead() + { + SelfExtractorFlavor[] flavors = + { + SelfExtractorFlavor.ConsoleApplication, + SelfExtractorFlavor.WinFormsApplication + }; + + for (int k = 0; k < flavors.Length; k++) + { + string sfxFileToCreate = Path.Combine(TopLevelDir, String.Format("SFX_{0}.exe", flavors[k].ToString())); + string unpackDir = Path.Combine(TopLevelDir, "unpack"); + if (Directory.Exists(unpackDir)) + Directory.Delete(unpackDir, true); + string readmeString = "Hey there! This zipfile entry was created directly from a string in application code."; + + int entriesAdded = 0; + String filename = null; + + string Subdir = Path.Combine(TopLevelDir, String.Format("A{0}", k)); + Directory.CreateDirectory(Subdir); + var checksums = new Dictionary(); + + int fileCount = _rnd.Next(50) + 30; + for (int j = 0; j < fileCount; j++) + { + filename = Path.Combine(Subdir, String.Format("file{0:D3}.txt", j)); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + entriesAdded++; + var chk = TestUtilities.ComputeChecksum(filename); + checksums.Add(filename.Replace(TopLevelDir + "\\", "").Replace('\\', '/'), TestUtilities.CheckSumToString(chk)); + } + + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddDirectory(Subdir, Path.GetFileName(Subdir)); + zip1.Comment = "This will be embedded into a self-extracting exe"; + MemoryStream ms1 = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(readmeString)); + zip1.AddEntry("Readme.txt", ms1); + zip1.SaveSelfExtractor(sfxFileToCreate, flavors[k]); + } + + TestContext.WriteLine("---------------Reading {0}...", sfxFileToCreate); + using (ZipFile zip2 = ZipFile.Read(sfxFileToCreate)) + { + //string extractDir = String.Format("extract{0}", j); + foreach (var e in zip2) + { + TestContext.WriteLine(" Entry: {0} c({1}) u({2})", e.FileName, e.CompressedSize, e.UncompressedSize); + e.Extract(unpackDir); + if (!e.IsDirectory) + { + if (checksums.ContainsKey(e.FileName)) + { + filename = Path.Combine(unpackDir, e.FileName); + string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(filename)); + Assert.AreEqual(checksums[e.FileName], actualCheckString, "In trial {0}, Checksums for ({1}) do not match.", k, e.FileName); + } + else + { + Assert.AreEqual("Readme.txt", e.FileName, String.Format("trial {0}", k)); + } + } + } + } + } + } + + + + [TestMethod] + public void SFX_Update_Console() + { + SFX_Update(SelfExtractorFlavor.ConsoleApplication); + } + + [TestMethod] + public void SFX_Update_Winforms() + { + SFX_Update(SelfExtractorFlavor.WinFormsApplication); + } + + private void SFX_Update(SelfExtractorFlavor flavor) + { + string sfxFileToCreate = Path.Combine(TopLevelDir, + String.Format("SFX_Update{0}.exe", + flavor.ToString())); + string unpackDir = Path.Combine(TopLevelDir, "unpack"); + if (Directory.Exists(unpackDir)) + Directory.Delete(unpackDir, true); + + string readmeString = "Hey there! This zipfile entry was created directly from a string in application code."; + + // create a file and compute the checksum + string Subdir = Path.Combine(TopLevelDir, "files"); + Directory.CreateDirectory(Subdir); + var checksums = new Dictionary(); + + string filename = Path.Combine(Subdir, "file1.txt"); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + var chk = TestUtilities.ComputeChecksum(filename); + checksums.Add(filename.Replace(TopLevelDir + "\\", "").Replace('\\', '/'), TestUtilities.CheckSumToString(chk)); + + // create the SFX + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddFile(filename, Path.GetFileName(Subdir)); + zip1.Comment = "This will be embedded into a self-extracting exe"; + MemoryStream ms1 = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(readmeString)); + zip1.AddEntry("Readme.txt", ms1); + var sfxOptions = new SelfExtractorSaveOptions + { + Flavor = flavor, + Quiet = true, + DefaultExtractDirectory = unpackDir + }; + zip1.SaveSelfExtractor(sfxFileToCreate, sfxOptions); + } + + // verify count + Assert.AreEqual(TestUtilities.CountEntries(sfxFileToCreate), 2, "The Zip file has the wrong number of entries."); + + // create another file + filename = Path.Combine(Subdir, "file2.txt"); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + chk = TestUtilities.ComputeChecksum(filename); + checksums.Add(filename.Replace(TopLevelDir + "\\", "").Replace('\\', '/'), TestUtilities.CheckSumToString(chk)); + string password = "ABCDEFG"; + // update the SFX + using (ZipFile zip1 = ZipFile.Read(sfxFileToCreate)) + { + zip1.CompressionLevel = Ionic.Zlib.CompressionLevel.BestCompression; + zip1.Encryption = EncryptionAlgorithm.WinZipAes256; + zip1.Comment = "The password is: " + password; + zip1.Password = password; + zip1.AddFile(filename, Path.GetFileName(Subdir)); + var sfxOptions = new SelfExtractorSaveOptions + { + Flavor = flavor, + Quiet = true, + DefaultExtractDirectory = unpackDir + }; + zip1.SaveSelfExtractor(sfxFileToCreate, sfxOptions); + } + + // verify count + Assert.AreEqual(TestUtilities.CountEntries(sfxFileToCreate), 3, "The Zip file has the wrong number of entries."); + + + // read the SFX + TestContext.WriteLine("---------------Reading {0}...", sfxFileToCreate); + using (ZipFile zip2 = ZipFile.Read(sfxFileToCreate)) + { + zip2.Password = password; + //string extractDir = String.Format("extract{0}", j); + foreach (var e in zip2) + { + TestContext.WriteLine(" Entry: {0} c({1}) u({2})", e.FileName, e.CompressedSize, e.UncompressedSize); + e.Extract(unpackDir); + if (!e.IsDirectory) + { + if (checksums.ContainsKey(e.FileName)) + { + filename = Path.Combine(unpackDir, e.FileName); + string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(filename)); + Assert.AreEqual(checksums[e.FileName], actualCheckString, "Checksums for ({1}) do not match.", e.FileName); + //TestContext.WriteLine(" Checksums match ({0}).\n", actualCheckString); + } + else + { + Assert.AreEqual("Readme.txt", e.FileName); + } + } + } + } + + int N = (flavor == SelfExtractorFlavor.ConsoleApplication) ? 2 : 1; + for (int j = 0; j < N; j++) + { + // run the SFX + TestContext.WriteLine("Running the SFX... "); + var psi = new System.Diagnostics.ProcessStartInfo(sfxFileToCreate); + if (flavor == SelfExtractorFlavor.ConsoleApplication) + { + if (j == 0) + psi.Arguments = "-o -p " + password; // overwrite + else + psi.Arguments = "-p " + password; + } + psi.WorkingDirectory = TopLevelDir; + psi.UseShellExecute = false; + psi.CreateNoWindow = true; + System.Diagnostics.Process process = System.Diagnostics.Process.Start(psi); + process.WaitForExit(); + int rc = process.ExitCode; + TestContext.WriteLine("SFX exit code: ({0})", rc); + + if (j == 0) + { + Assert.AreEqual(0, rc, "The exit code from the SFX was nonzero ({0}).", rc); + } + else + { + Assert.AreNotEqual(0, rc, "The exit code from the SFX was zero ({0})."); + } + } + + // verify the unpacked files? + } + + + + [TestMethod] + public void SFX_Console() + { + string exeFileToCreate = Path.Combine(TopLevelDir, "SFX_Console.exe"); + string unpackDir = Path.Combine(TopLevelDir, "unpack"); + string readmeString = "Hey there! This zipfile entry was created directly from a string in application code."; + + int entriesAdded = 0; + String filename = null; + + string Subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(Subdir); + var checksums = new Dictionary(); + + int fileCount = _rnd.Next(10) + 10; + for (int j = 0; j < fileCount; j++) + { + filename = Path.Combine(Subdir, String.Format("file{0:D3}.txt", j)); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + entriesAdded++; + var chk = TestUtilities.ComputeChecksum(filename); + checksums.Add(filename, TestUtilities.CheckSumToString(chk)); + } + + using (ZipFile zip = new ZipFile()) + { + zip.AddDirectory(Subdir, Path.GetFileName(Subdir)); + zip.Comment = "This will be embedded into a self-extracting exe"; + MemoryStream ms1 = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(readmeString)); + zip.AddEntry("Readme.txt", ms1); + var sfxOptions = new SelfExtractorSaveOptions + { + Flavor = Ionic.Zip.SelfExtractorFlavor.ConsoleApplication, + DefaultExtractDirectory = unpackDir + }; + zip.SaveSelfExtractor(exeFileToCreate, sfxOptions); + } + + var psi = new System.Diagnostics.ProcessStartInfo(exeFileToCreate); + psi.WorkingDirectory = TopLevelDir; + psi.UseShellExecute = false; + psi.CreateNoWindow = true; + System.Diagnostics.Process process = System.Diagnostics.Process.Start(psi); + process.WaitForExit(); + + // now, compare the output in unpackDir with the original + string DirToCheck = Path.Combine(unpackDir, "A"); + // verify the checksum of each file matches with its brother + foreach (string fname in Directory.GetFiles(DirToCheck)) + { + string originalName = fname.Replace("\\unpack", ""); + if (checksums.ContainsKey(originalName)) + { + string expectedCheckString = checksums[originalName]; + string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(fname)); + Assert.AreEqual(expectedCheckString, actualCheckString, "Unexpected checksum on extracted filesystem file ({0}).", fname); + } + else + Assert.AreEqual("Readme.txt", originalName); + + } + } + + + [TestMethod] + public void SFX_WinForms() + { + string[] Passwords = { null, "12345" }; + for (int k = 0; k < Passwords.Length; k++) + { + string exeFileToCreate = Path.Combine(TopLevelDir, String.Format("SFX_WinForms-{0}.exe", k)); + string DesiredunpackDir = Path.Combine(TopLevelDir, String.Format("unpack{0}", k)); + + String filename = null; + + string Subdir = Path.Combine(TopLevelDir, String.Format("A{0}", k)); + Directory.CreateDirectory(Subdir); + var checksums = new Dictionary(); + + int fileCount = _rnd.Next(10) + 10; + for (int j = 0; j < fileCount; j++) + { + filename = Path.Combine(Subdir, String.Format("file{0:D3}.txt", j)); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + var chk = TestUtilities.ComputeChecksum(filename); + checksums.Add(filename, TestUtilities.CheckSumToString(chk)); + } + + using (ZipFile zip = new ZipFile()) + { + zip.Password = Passwords[k]; + zip.AddDirectory(Subdir, Path.GetFileName(Subdir)); + zip.Comment = "For testing purposes, please extract to: " + DesiredunpackDir; + if (Passwords[k] != null) zip.Comment += String.Format("\r\n\r\nThe password for all entries is: {0}\n", Passwords[k]); + var sfxOptions = new SelfExtractorSaveOptions + { + Flavor = Ionic.Zip.SelfExtractorFlavor.WinFormsApplication, + // workitem 12608 + SfxExeWindowTitle = "Custom SFX Title " + DateTime.Now.ToString("G"), + DefaultExtractDirectory = DesiredunpackDir + }; + zip.SaveSelfExtractor(exeFileToCreate, sfxOptions); + } + + // run the self-extracting EXE we just created + System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo(exeFileToCreate); + psi.Arguments = DesiredunpackDir; + psi.WorkingDirectory = TopLevelDir; + psi.UseShellExecute = false; + psi.CreateNoWindow = true; + System.Diagnostics.Process process = System.Diagnostics.Process.Start(psi); + process.WaitForExit(); + + // now, compare the output in TargetDirectory with the original + string DirToCheck = Path.Combine(DesiredunpackDir, String.Format("A{0}", k)); + // verify the checksum of each file matches with its brother + var fileList = Directory.GetFiles(DirToCheck); + Assert.AreEqual(checksums.Keys.Count, fileList.Length, "Trial {0}: Inconsistent results.", k); + + foreach (string fname in fileList) + { + string expectedCheckString = checksums[fname.Replace(String.Format("\\unpack{0}", k), "")]; + string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(fname)); + Assert.AreEqual(expectedCheckString, actualCheckString, "Trial {0}: Unexpected checksum on extracted filesystem file ({1}).", k, fname); + } + } + } + + + + string programCode = + + "using System;\n" + + "namespace Ionic.Tests.Zip.SelfExtractor\n" + + "{\n" + + "\n" + + " public class TestDriver\n" + + " {\n" + + " static int Main(String[] args)\n" + + " {\n" + + " int rc = @@XXX@@;\n" + + " Console.WriteLine(\"Hello from the post-extract command.\\nThis app will return {0}.\", rc);\n" + + " return rc;\n" + + " }\n" + + " }\n" + + "}\n"; + + + private void CompileApp(int rc, string pathToExe) + { + var csharp = new Microsoft.CSharp.CSharpCodeProvider(); + var cp = new System.CodeDom.Compiler.CompilerParameters + { + GenerateInMemory = false, + GenerateExecutable = true, + IncludeDebugInformation = false, + OutputAssembly = pathToExe + }; + + // set the return code in the app + var cr = csharp.CompileAssemblyFromSource + (cp, programCode.Replace("@@XXX@@", rc.ToString())); + + if (cr == null) + throw new Exception("Errors compiling post-extract exe!"); + + foreach (string s in cr.Output) + TestContext.WriteLine(s); + + if (cr.Errors.Count != 0) + throw new Exception("Errors compiling post-extract exe!"); + } + + + // Here's a set of SFX tests with post-extract EXEs. + // We vary these parameters: + // - exe exists or not - 2 trials each test. + // - exe name has spaces or not + // - winforms or not + // - whether to run the exe or just compile + // - whether to append args or not + // - force noninteractive or not (only for Winforms flavor, to allow automated tests) + + [TestMethod] + public void SFX_RunOnExit_Console() + { + _Internal_SelfExtractor_Command("post-extract-run-on-exit-{0:D4}.exe", + SelfExtractorFlavor.ConsoleApplication, + true, // runPostExtract + true, // quiet + false, // forceNoninteractive + false); // wantArgs + } + + [TestMethod] + public void SFX_RunOnExit_Console_Args() + { + _Internal_SelfExtractor_Command("post-extract-run-on-exit-{0:D4}.exe", + SelfExtractorFlavor.ConsoleApplication, + true, // runPostExtract + true, // quiet + false, // forceNoninteractive + true); // wantArgs + } + + [TestMethod] + public void SFX_RunOnExit_WinForms() + { + _Internal_SelfExtractor_Command("post-extract-run-on-exit-{0:D4}.exe", + SelfExtractorFlavor.WinFormsApplication, + true, // runPostExtract + true, // quiet + false, // forceNoninteractive + false); // wantArgs + } + + [TestMethod] + public void SFX_RunOnExit_WinForms_DontRun() + { + // This test case just tests the generation (compilation) of + // the SFX. It is included because the interactive winforms + // SFX is not performed on automated test runs. + _Internal_SelfExtractor_Command("post-extract-run-on-exit-{0:D4}.exe", + SelfExtractorFlavor.WinFormsApplication, + false, // runPostExtract + true, // quiet + false, // forceNoninteractive + false); // wantArgs + } + + [TestMethod] + public void SFX_RunOnExit_WinForms_Interactive() + { + _Internal_SelfExtractor_Command("post-extract-run-on-exit-{0:D4}.exe", + SelfExtractorFlavor.WinFormsApplication, + true, // runPostExtract + false, // quiet + false, // forceNoninteractive + false); // wantArgs + } + + [TestMethod] + public void SFX_RunOnExit_WinForms_NonInteractive() + { + _Internal_SelfExtractor_Command("post-extract-run-on-exit-{0:D4}.exe", + SelfExtractorFlavor.WinFormsApplication, + true, // runPostExtract + true, // quiet + true, // forceNoninteractive + false); // wantArgs + } + + [TestMethod] + public void SFX_RunOnExit_WinForms_NonInteractive_Args() + { + _Internal_SelfExtractor_Command("post-extract-run-on-exit-{0:D4}.exe", + SelfExtractorFlavor.WinFormsApplication, + true, // runPostExtract + true, // quiet + true, // forceNoninteractive + true); // wantArgs + } + + // ------------------------------------------------------------------ // + + [TestMethod] + public void SFX_RunOnExit_Console_withSpaces() + { + _Internal_SelfExtractor_Command("post extract run on exit {0:D4}.exe", + SelfExtractorFlavor.ConsoleApplication, + true, // runPostExtract + true, // quiet + false, // forceNoninteractive + false); // wantArgs + } + + + [TestMethod] + public void SFX_RunOnExit_Console_withSpaces_Args() + { + _Internal_SelfExtractor_Command("post extract run on exit {0:D4}.exe", + SelfExtractorFlavor.ConsoleApplication, + true, // runPostExtract + true, // quiet + false, // forceNoninteractive + true); // wantArgs + } + + [TestMethod] + public void SFX_RunOnExit_WinForms_withSpaces() + { + _Internal_SelfExtractor_Command("post extract run on exit {0:D4}.exe", + SelfExtractorFlavor.WinFormsApplication, + true, // runPostExtract + true, // quiet + false, // forceNoninteractive + false); // wantArgs + } + + [TestMethod] + public void SFX_RunOnExit_WinForms_withSpaces_DontRun() + { + // This test case just tests the generation (compilation) of + // the SFX. It is included because the interactive winforms + // SFX is not performed on automated test runs. + _Internal_SelfExtractor_Command("post extract run on exit {0:D4}.exe", + SelfExtractorFlavor.WinFormsApplication, + false, // run the SFX? + true, // quiet + false, // forceNoninteractive + false); // wantArgs + } + + [TestMethod] + public void SFX_RunOnExit_WinForms_withSpaces_Interactive() + { + _Internal_SelfExtractor_Command("post extract run on exit {0:D4}.exe", + SelfExtractorFlavor.WinFormsApplication, + true, // actually run the program + false, // quiet + false, // forceNoninteractive + false); // wantArgs + } + + [TestMethod] + public void SFX_RunOnExit_WinForms_withSpaces_NonInteractive() + { + _Internal_SelfExtractor_Command("post extract run on exit {0:D4}.exe", + SelfExtractorFlavor.WinFormsApplication, + true, // actually run the program + true, // quiet + true, // forceNoninteractive + false); // wantArgs + } + + [TestMethod] + public void SFX_RunOnExit_WinForms_withSpaces_NonInteractive_Args() + { + _Internal_SelfExtractor_Command("post extract run on exit {0:D4}.exe", + SelfExtractorFlavor.WinFormsApplication, + true, // actually run the program + true, // quiet + true, // forceNoninteractive + true); // wantArgs + } + + + public void _Internal_SelfExtractor_Command(string cmdFormat, + SelfExtractorFlavor flavor, + bool runSfx, + bool quiet, + bool forceNoninteractive, + bool wantArgs) + { + TestContext.WriteLine("=============================="); + TestContext.WriteLine("SFX_RunOnExit({0})", flavor.ToString()); + + //int entriesAdded = 0; + //String filename = null; + string postExtractExe = String.Format(cmdFormat, _rnd.Next(3000)); + + // If WinForms and want forceNoninteractive, have the post-extract-exe return 0, + // else, select a random number. + int expectedReturnCode = (forceNoninteractive && + flavor == SelfExtractorFlavor.WinFormsApplication) + ? 0 + : _rnd.Next(1024) + 20; + TestContext.WriteLine("The post-extract command ({0}) will return {1}", + postExtractExe, expectedReturnCode); + + string subdir = "A"; + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + + for (int k = 0; k < 2; k++) + { + string readmeString = + String.Format("Hey! This zipfile entry was created directly from " + + "a string in application code. Flavor ({0}) Trial({1})", + flavor.ToString(), k); + string exeFileToCreate = String.Format("SFX_Command.{0}.{1}.exe", + flavor.ToString(), k); + + TestContext.WriteLine("----------------------"); + TestContext.WriteLine("Trial {0}", k); + string unpackDir = String.Format("unpack.{0}", k); + + var sw = new System.IO.StringWriter(); + using (ZipFile zip = new ZipFile()) + { + zip.StatusMessageTextWriter = sw; + zip.AddDirectory(subdir, subdir); // Path.GetFileName(subdir)); + zip.Comment = String.Format("Trial options: fl({0}) cmd ({3})\r\n"+ + "actuallyRun({1})\r\nquiet({2})\r\n"+ + "exists? {4}\r\nexpected rc={5}", + flavor, + runSfx, + quiet, + postExtractExe, + k!=0, + expectedReturnCode + ); + var ms1 = new MemoryStream(Encoding.UTF8.GetBytes(readmeString)); + zip.AddEntry("Readme.txt", ms1); + if (k != 0) + { + CompileApp(expectedReturnCode, postExtractExe); + zip.AddFile(postExtractExe); + } + + var sfxOptions = new SelfExtractorSaveOptions + { + Flavor = flavor, + DefaultExtractDirectory = unpackDir, + SfxExeWindowTitle = "Custom SFX Title " + DateTime.Now.ToString("G"), + Quiet = quiet + }; + + // In the case of k==0, this exe does not exist. It will result in + // a return code of 5. In k == 1, the exe exists and will succeed. + if (postExtractExe.Contains(' ')) + sfxOptions.PostExtractCommandLine= "\"" + postExtractExe + "\""; + else + sfxOptions.PostExtractCommandLine= postExtractExe; + + if (wantArgs) + sfxOptions.PostExtractCommandLine += " arg1 arg2"; + + zip.SaveSelfExtractor(exeFileToCreate, sfxOptions); + } + + TestContext.WriteLine("status output: " + sw.ToString()); + + if (k != 0) File.Delete(postExtractExe); + + // Run the generated Self-extractor, conditionally. + // + // We always run, unless specifically asked not to, OR if it's a + // winforms app and we want it to be noninteractive and there's no + // EXE to run. If we try running a non-existent app, it will pop an + // error message, hence user interaction, which we need to avoid for + // the automated test. + if (runSfx && + (k != 0 || !forceNoninteractive || + flavor != SelfExtractorFlavor.WinFormsApplication)) + { + TestContext.WriteLine("Running the SFX... "); + System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo(exeFileToCreate); + psi.WorkingDirectory = TopLevelDir; + psi.UseShellExecute = false; + psi.CreateNoWindow = true; // false; + System.Diagnostics.Process process = System.Diagnostics.Process.Start(psi); + process.WaitForExit(); + int rc = process.ExitCode; + TestContext.WriteLine("SFX exit code: ({0})", rc); + + // The exit code is returned only if it's a console SFX. + if (flavor == SelfExtractorFlavor.ConsoleApplication) + { + // The program actually runs if k != 0 + if (k == 0) + { + // The file to execute should not have been found, hence rc==5. + Assert.AreEqual + (5, rc, "In trial {0}, the exit code was unexpected.", k); + } + else + { + // The file to execute should have returned a specific code. + Assert.AreEqual + (expectedReturnCode, rc, + "In trial {0}, the exit code did not match.", k); + } + } + else + Assert.AreEqual(0, rc, "In trial {0}, the exit code did not match.", k); + + VerifyChecksums(Path.Combine(unpackDir, "A"), + filesToZip, checksums); + } + } + } + + + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.BadStateException))] + public void SFX_Save_Zip_As_EXE() + { + string sfxFileToCreate = "SFX_Save_Zip_As_EXE.exe"; + + // create a file to zip + string subdir = "files"; + Directory.CreateDirectory(subdir); + string filename = Path.Combine(subdir, "file1.txt"); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + + // add an entry to the zipfile, then try saving to a directory. this should fail + using (ZipFile zip = new ZipFile()) + { + zip.AddFile(filename, ""); + zip.SaveSelfExtractor(sfxFileToCreate, + SelfExtractorFlavor.ConsoleApplication); + } + + // create another file + filename = Path.Combine(subdir, "file2.txt"); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + + // update the SFX, save to a zip format + using (ZipFile zip = ZipFile.Read(sfxFileToCreate)) + { + zip.AddFile(filename, ""); + zip.Save(); // FAIL + } + } + + + + + [TestMethod] + public void SFX_RemoveFilesAfterUnpack_wi10682() + { + string subdir = "files"; + string[] filesToZip; + Dictionary checksums; + CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + string password = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + string postExeFormat = "post-extract-{0:D4}.exe"; + string postExtractExe = String.Format(postExeFormat, _rnd.Next(10000)); + CompileApp(0, postExtractExe); + + // pass 1 to run SFX and verify files are present; + // pass 2 to run SFX and verify that it deletes files after extracting. + + // 2 passes: one for no cmd line overload, one with overload of -r+/-r- + for (int j=0; j < 2; j++) + { + // 2 passes: with RemoveUnpackedFiles set or unset + for (int k=0; k < 2; k++) + { + string sfxFileToCreate = + String.Format("SFX_RemoveFilesAfterUnpack.{0}.{1}.exe",j,k); + using (ZipFile zip = new ZipFile()) + { + zip.Password = password; + zip.Encryption = Ionic.Zip.EncryptionAlgorithm.WinZipAes256; + Array.ForEach(filesToZip, x => { zip.AddFile(x, "files");}); + zip.AddFile(postExtractExe, "files"); + var sfxOptions = new SelfExtractorSaveOptions + { + Flavor = SelfExtractorFlavor.ConsoleApplication, + Quiet = true, + PostExtractCommandLine = Path.Combine("files",postExtractExe) + }; + + if (k==1) + sfxOptions.RemoveUnpackedFilesAfterExecute = true; + + zip.SaveSelfExtractor(sfxFileToCreate, sfxOptions); + } + + string extractDir = String.Format("extract.{0}.{1}",j,k); + string sfxCmdLineArgs = + String.Format("-p {0} -d {1}", password, extractDir); + + if (j==1) + { + // override the option set at time of zip.SaveSfx() + sfxCmdLineArgs += (k==0) ? " -r+" : " -r-"; + } + + // invoke the SFX + this.Exec(sfxFileToCreate, sfxCmdLineArgs, true, true); + + if (k==j) + { + // verify that the files are extracted, and match + VerifyChecksums(Path.Combine(extractDir, "files"), + filesToZip, checksums); + } + else + { + // verify that no files exist in the extract directory + var remainingFiles = Directory.GetFiles(extractDir); + Assert.IsTrue(remainingFiles.Length == 0); + } + } + } + } + + + + + } } \ No newline at end of file diff --git a/src/Zip Tests/SplitArchives.cs b/old/src/Zip Tests/SplitArchives.cs similarity index 97% rename from src/Zip Tests/SplitArchives.cs rename to old/src/Zip Tests/SplitArchives.cs index 9dbc3cd..088065e 100644 --- a/src/Zip Tests/SplitArchives.cs +++ b/old/src/Zip Tests/SplitArchives.cs @@ -1,1077 +1,1077 @@ -// SplitArchives.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009-2011 Dino Chiesa. -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-July-14 11:07:00> -// -// ------------------------------------------------------------------ -// -// This module defines tests for split (or 'spanned') archives. -// -// ------------------------------------------------------------------ - -// define REMOTE_FILESYSTEM in order to use a remote filesystem for storage of -// the ZIP64 large archive (which can beb huge). Leave it undefined to simply -// use the local TEMP directory. -//#define REMOTE_FILESYSTEM - -using System; -using System.IO; -using System.Collections.Generic; -using Microsoft.VisualStudio.TestTools.UnitTesting; -using Interop=System.Runtime.InteropServices; - - -using Ionic.Zip.Tests.Utilities; - - -namespace Ionic.Zip.Tests.Split -{ - /// - /// Summary description for ErrorTests - /// - [TestClass] - public class Split : IonicTestClass - { - [Interop.DllImport("kernel32.dll", - EntryPoint="CreateSymbolicLinkW", - CharSet=Interop.CharSet.Unicode)] - public static extern int CreateSymbolicLink(string lpSymlinkFileName, - string lpTargetFileName, - int dwFlags); - - - [TestMethod, Timeout(6 * 60*1000)] - public void Spanned_Create() - { - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - - _txrx = TestUtilities.StartProgressMonitor("segmentedzip", - "Segmented Zips", - "Creating files"); - _txrx.Send("pb 0 max 2"); - - int numFiles = _rnd.Next(10) + 8; - int overflows = 0; - string msg; - - _txrx.Send("pb 1 max " + numFiles); - - var update = new Action( (x,y,z) => { - switch (x) - { - case 0: - _txrx.Send(String.Format("pb 2 max {0}", ((int)z))); - break; - case 1: - msg = String.Format("pb 2 value {0}", ((int)z)); - _txrx.Send(msg); - break; - case 2: - _txrx.Send("pb 1 step"); - _txrx.Send("pb 2 value 0"); - msg = String.Format("status created {0}/{1} files", - y+1, - ((int)z)); - _txrx.Send(msg); - break; - } - }); - - _txrx.Send("status creating " + numFiles + " files..."); - - string[] filesToZip; - Dictionary checksums; - CreateLargeFilesWithChecksums(dirToZip, numFiles, update, - out filesToZip, out checksums); - _txrx.Send("pb 0 step"); - int[] segmentSizes = { 0, 64*1024, 128*1024, 512*1024, 1024*1024, - 2*1024*1024, 8*1024*1024, 16*1024*1024, - 1024*1024*1024 }; - - _txrx.Send("status zipping..."); - _txrx.Send(String.Format("pb 1 max {0}", segmentSizes.Length)); - - System.EventHandler sp = (sender1, e1) => - { - switch (e1.EventType) - { - case ZipProgressEventType.Saving_Started: - _txrx.Send(String.Format("pb 2 max {0}", filesToZip.Length)); - _txrx.Send("pb 2 value 0"); - break; - - case ZipProgressEventType.Saving_AfterWriteEntry: - TestContext.WriteLine("Saved entry {0}, {1} bytes", - e1.CurrentEntry.FileName, - e1.CurrentEntry.UncompressedSize); - _txrx.Send("pb 2 step"); - break; - } - }; - - - for (int m=0; m < segmentSizes.Length; m++) - { - string trialDir = String.Format("trial{0}", m); - Directory.CreateDirectory(trialDir); - string zipFileToCreate = Path.Combine(trialDir, - String.Format("Archive-{0}.zip",m)); - int maxSegSize = segmentSizes[m]; - - msg = String.Format("status trial {0}/{1} (max seg size {2}k)", - m+1, segmentSizes.Length, maxSegSize/1024); - _txrx.Send(msg); - - TestContext.WriteLine("======="); - TestContext.WriteLine("Trial {0}", m); - if (maxSegSize > 0) - TestContext.WriteLine("Creating a segmented zip...segsize({0})", maxSegSize); - else - TestContext.WriteLine("Creating a regular zip..."); - - var sw = new StringWriter(); - bool aok = false; - try - { - using (var zip = new ZipFile()) - { - zip.StatusMessageTextWriter = sw; - zip.BufferSize = 0x8000; - zip.CodecBufferSize = 0x8000; - zip.AddDirectory(dirToZip, "files"); - zip.MaxOutputSegmentSize = maxSegSize; - zip.SaveProgress += sp; - zip.Save(zipFileToCreate); - } - aok = true; - } - catch (OverflowException) - { - TestContext.WriteLine("Overflow - too many segments..."); - overflows++; - } - - if (aok) - { - TestContext.WriteLine("{0}", sw.ToString()); - - // // If you want to see the diskNumber for each entry, - // // uncomment the following: - // TestContext.WriteLine("Checking info..."); - // sw = new StringWriter(); - // //string extractDir = String.Format("ex{0}", m); - // using (var zip = ZipFile.Read(zipFileToCreate)) - // { - // zip.StatusMessageTextWriter = sw; - // foreach (string s in zip.Info.Split('\r','\n')) - // { - // Console.WriteLine("{0}", s); - // } - // - // // unnecessary - BasicVerify does this - // //foreach (var e in zip) - // //e.Extract(extractDir); - // } - // TestContext.WriteLine("{0}", sw.ToString()); - - TestContext.WriteLine("Extracting..."); - string extractDir = BasicVerifyZip(zipFileToCreate); - - // also verify checksums - VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); - } - _txrx.Send("pb 1 step"); - } - - _txrx.Send("pb 0 step"); - - Assert.IsTrue(overflows < 3, "Too many overflows. Check the test."); - } - - - - bool _pb1Set; - bool _pb2Set; - int _numExtracted; - int _numFilesToExtract; - int _nCycles; - void ExtractProgress(object sender, ExtractProgressEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Extracting_BeforeExtractEntry: - if (!_pb1Set) - { - _txrx.Send(String.Format("pb 1 max {0}", _numFilesToExtract)); - _pb1Set = true; - } - _pb2Set = false; - _nCycles = 0; - break; - - case ZipProgressEventType.Extracting_EntryBytesWritten: - if (!_pb2Set) - { - _txrx.Send(String.Format("pb 2 max {0}", e.TotalBytesToTransfer)); - _pb2Set = true; - } - // for performance, don't update the progress monitor every time. - _nCycles++; - if (_nCycles % 64 == 0) - { - _txrx.Send(String.Format("status Extracting entry {0}/{1} :: {2} :: {3}/{4}mb :: {5:N0}%", - _numExtracted, _numFilesToExtract, - e.CurrentEntry.FileName, - e.BytesTransferred/(1024*1024), - e.TotalBytesToTransfer/(1024*1024), - ((double)e.BytesTransferred) / (0.01 * e.TotalBytesToTransfer) - )); - string msg = String.Format("pb 2 value {0}", e.BytesTransferred); - _txrx.Send(msg); - } - break; - - case ZipProgressEventType.Extracting_AfterExtractEntry: - _numExtracted++; - _txrx.Send("pb 1 step"); - break; - } - } - - - - [TestMethod] - [Timeout(90 * 60 * 1000)] - public void Create_LargeSegmentedArchive() - { - Test_LargeSegmentedArchive( - minFileSize: 420 * 1024 * 1024, - minFilesCount: 5, - // segmentSize32Bit: 4 * 1024 * 1024); - // segmentSize32Bit: 80 * 1024 * 1024); - segmentSize32Bit: 120 * 1024 * 1024); - } - - - - [TestMethod] - [Timeout(90 * 60 * 1000)] - public void Create_LargeSegmentedArchiveWithOver32bitSegmentSize() - { - Test_LargeSegmentedArchive( - minFileSize: 420 * 1024 * 1024, - minFilesCount: 10, - segmentSize64Bit: 3L * 1024 * 1024 * 1024); - } - - - - public void Test_LargeSegmentedArchive( - int minFileSize, - int minFilesCount, - int? segmentSize32Bit = null, - long? segmentSize64Bit = null) - { - if ((segmentSize32Bit.HasValue && segmentSize64Bit.HasValue) - || (!segmentSize32Bit.HasValue && !segmentSize64Bit.HasValue)) - { - Assert.Fail("A single variable, either segmentSize32Bit or segmentSize64Bit has to specified."); - } - - // There was a claim that large archives (around or above - // 1gb) did not work well with archive splitting. This test - // covers that case. - -#if REMOTE_FILESYSTEM - string parentDir = Path.Combine("t:\\tdir", Path.GetFileNameWithoutExtension(TopLevelDir)); - _FilesToRemove.Add(parentDir); - Directory.CreateDirectory(parentDir); - string zipFileToCreate = Path.Combine(parentDir, - "Create_LargeSegmentedArchive.zip"); -#else - string zipFileToCreate = Path.Combine(TopLevelDir, "Test_LargeSegmentedArchive.zip"); -#endif - TestContext.WriteLine("Creating file {0}", zipFileToCreate); - - // This file will "cache" the randomly generated text, so we - // don't have to generate more than once. You know, for - // speed. - string cacheFile = Path.Combine(TopLevelDir, "cacheFile.txt"); - - // int sizeBase = 20 * 1024 * 1024; - // int sizeRandom = 1 * 1024 * 1024; - // int numFiles = 3; - - // int sizeBase = 320 * 1024 * 1024; - // int sizeRandom = 20 * 1024 * 1024 ; - // int numFiles = 5; - - int sizeRandom = 20 * 1024 * 1024; - int numFiles = _rnd.Next(5) + minFilesCount; - - TestContext.WriteLine("The zip will contain {0} files", numFiles); - - int numSaving= 0, totalToSave = 0, numSegs= 0; - long sz = 0; - - - // There are a bunch of Action's here. This test method originally - // used ZipFile.AddEntry overload that accepts an opener/closer pair. - // It conjured content for the files out of a RandomTextGenerator - // stream. This worked, but was very very slow. So I took a new - // approach to use a WriteDelegate, and still contrive the data, but - // cache it for entries after the first one. This makes things go much - // faster. - // - // But, when using the WriteDelegate, the SaveProgress events of - // flavor ZipProgressEventType.Saving_EntryBytesRead do not get - // called. Therefore the progress updates are done from within the - // WriteDelegate itself. The SaveProgress events for SavingStarted, - // BeforeWriteEntry, and AfterWriteEntry do get called. As a result - // this method uses 2 delegates: one for writing and one for the - // SaveProgress events. - - WriteDelegate writer = (name, stream) => - { - Stream input = null; - Stream cache = null; - try - { - // use a cahce file as the content. The entry - // name will vary but we'll get the content for - // each entry from the a single cache file. - if (File.Exists(cacheFile)) - { - input = File.Open(cacheFile, - FileMode.Open, - FileAccess.ReadWrite, - FileShare.ReadWrite); - // Make the file slightly shorter with each - // successive entry, - just to shake things - // up a little. Also seek forward a little. - var fl = input.Length; - input.SetLength(fl - _rnd.Next(sizeRandom/2) + 5201); - input.Seek(_rnd.Next(sizeRandom/2), SeekOrigin.Begin); - } - else - { - sz = minFileSize + _rnd.Next(sizeRandom); - // input = new Ionic.Zip.Tests.Utilities.RandomTextInputStream((int)sz); - input = new Ionic.Zip.Tests.Utilities.RandomBytesInputStream((int)sz); - // cache = File.Create(cacheFile); - } - _txrx.Send(String.Format("pb 2 max {0}", sz)); - _txrx.Send("pb 2 value 0"); - var buffer = new byte[8192]; - int n; - Int64 totalWritten = 0; - int nCycles = 0; - using (input) - { - while ((n= input.Read(buffer,0, buffer.Length))>0) - { - stream.Write(buffer,0,n); - if (cache!=null) - cache.Write(buffer,0,n); - totalWritten += n; - // for performance, don't update the - // progress monitor every time. - nCycles++; - if (nCycles % 312 == 0) - { - _txrx.Send(String.Format("pb 2 value {0}", totalWritten)); - _txrx.Send(String.Format("status Saving entry {0}/{1} {2} :: {3}/{4}mb {5:N0}%", - numSaving, totalToSave, - name, - totalWritten/(1024*1024), sz/(1024*1024), - ((double)totalWritten) / (0.01 * sz))); - } - } - } - } - finally - { - if (cache!=null) cache.Dispose(); - } - }; - - EventHandler sp = (sender1, e1) => - { - switch (e1.EventType) - { - case ZipProgressEventType.Saving_Started: - numSaving= 0; - break; - - case ZipProgressEventType.Saving_BeforeWriteEntry: - _txrx.Send("test Large Segmented Zip"); - _txrx.Send(String.Format("status saving {0}", e1.CurrentEntry.FileName)); - totalToSave = e1.EntriesTotal; - numSaving++; - break; - - // case ZipProgressEventType.Saving_EntryBytesRead: - // if (!_pb2Set) - // { - // _txrx.Send(String.Format("pb 2 max {0}", e1.TotalBytesToTransfer)); - // _pb2Set = true; - // } - // _txrx.Send(String.Format("status Saving entry {0}/{1} {2} :: {3}/{4}mb {5:N0}%", - // numSaving, totalToSave, - // e1.CurrentEntry.FileName, - // e1.BytesTransferred/(1024*1024), e1.TotalBytesToTransfer/(1024*1024), - // ((double)e1.BytesTransferred) / (0.01 * e1.TotalBytesToTransfer))); - // string msg = String.Format("pb 2 value {0}", e1.BytesTransferred); - // _txrx.Send(msg); - // break; - - case ZipProgressEventType.Saving_AfterWriteEntry: - TestContext.WriteLine("Saved entry {0}, {1} bytes", e1.CurrentEntry.FileName, - e1.CurrentEntry.UncompressedSize); - _txrx.Send("pb 1 step"); - _pb2Set = false; - break; - } - }; - - _txrx = TestUtilities.StartProgressMonitor("largesegmentedzip", "Large Segmented ZIP", "Creating files"); - - _txrx.Send("bars 3"); - _txrx.Send("pb 0 max 2"); - _txrx.Send(String.Format("pb 1 max {0}", numFiles)); - - // build a large zip file out of thin air - var sw = new StringWriter(); - using (ZipFile zip = new ZipFile()) - { - zip.StatusMessageTextWriter = sw; - zip.BufferSize = 256 * 1024; - zip.CodecBufferSize = 128 * 1024; - if (segmentSize32Bit.HasValue) - { - zip.MaxOutputSegmentSize = segmentSize32Bit.Value; - } - else - { - zip.MaxOutputSegmentSize64 = segmentSize64Bit.Value; - } - - zip.SaveProgress += sp; - - for (int i = 0; i < numFiles; i++) - { - string filename = TestUtilities.GetOneRandomUppercaseAsciiChar() + - Path.GetFileNameWithoutExtension(Path.GetRandomFileName()) + ".txt"; - zip.AddEntry(filename, writer); - } - zip.Save(zipFileToCreate); - - numSegs = zip.NumberOfSegmentsForMostRecentSave; - } - -#if REMOTE_FILESYSTEM - if (((long)numSegs*zip.MaxOutputSegmentSize64) < (long)(1024*1024*1024L)) - { - _FilesToRemove.Remove(parentDir); - Assert.IsTrue(false, "There were not enough segments in that zip. numsegs({0}) maxsize({1}).", numSegs, maxSegSize); - } -#endif - _txrx.Send("status Verifying the zip ..."); - - _txrx.Send("pb 0 step"); - _txrx.Send("pb 1 value 0"); - _txrx.Send("pb 2 value 0"); - - ReadOptions options = new ReadOptions - { - StatusMessageWriter = new StringWriter() - }; - - string extractDir = "verify"; - int c = 0; - while (Directory.Exists(extractDir + c)) c++; - extractDir += c; - - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate, options)) - { - _numFilesToExtract = zip2.Entries.Count; - _numExtracted= 1; - _pb1Set= false; - zip2.ExtractProgress += ExtractProgress; - zip2.ExtractAll(extractDir); - } - - string status = options.StatusMessageWriter.ToString(); - TestContext.WriteLine("status:"); - foreach (string line in status.Split('\n')) - TestContext.WriteLine(line); - } - - - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void Spanned_InvalidSegmentSize() - { - string zipFileToCreate = "InvalidSegmentSize.zip"; - int segSize = 65536/3 + _rnd.Next(65536/2); - using (var zip = new ZipFile()) - { - zip.MaxOutputSegmentSize = segSize; - zip.Save(zipFileToCreate); - } - } - - - - string _fodderDir = null; - /// - /// Finds or creates and fills a cache directory of fodder files. - /// - /// the name of the cache directory - String CreateSomeFiles() - { - string fodderName = "fodder"; - if (_fodderDir != null) - { - CreateSymbolicLink(fodderName, _fodderDir, 1); - return fodderName; - } - - int baseNumFiles = 12; - int baseSize = 0x100000; - int numFilesToAdd = baseNumFiles + _rnd.Next(4); - string tmpDir = System.Environment.GetEnvironmentVariable("TEMP"); - var oldDirs = Directory.GetDirectories(tmpDir, "*.SplitArchives"); - string fodderDir; - foreach (var dir in oldDirs) - { - TestContext.WriteLine("Considering directory: {0}", dir); - fodderDir = Path.Combine(dir, fodderName); - if (!Directory.Exists(fodderDir)) - { - Directory.Delete(dir, true); - } - else - { - var fodderFiles = Directory.GetFiles(fodderDir, "*.txt"); - if (fodderFiles.Length < baseNumFiles) - { - Directory.Delete(dir, true); - } - else - { - _fodderDir = fodderDir; - CreateSymbolicLink(fodderName, _fodderDir, 1); - return fodderName; - } - - } - } - - // upon reaching here, no directories exist that contain suitable - // fodder for these tests. Create the directory, and a few - // fodder files. - - string pname = Path.GetFileName(TestUtilities.GenerateUniquePathname("SplitArchives")); - - string cacheDir = Path.Combine(tmpDir, pname); - Directory.CreateDirectory(cacheDir); - fodderDir = Path.Combine(cacheDir, fodderName); - Directory.CreateDirectory(fodderDir); - - for (int i=0; i < numFilesToAdd; i++) - { - int fileSize = baseSize + _rnd.Next(baseSize/2); - string fileName = Path.Combine(fodderDir, string.Format("Pippo{0}.txt", i)); - TestUtilities.CreateAndFillFileText(fileName, fileSize); - } - _fodderDir = fodderDir; - CreateSymbolicLink(fodderName, _fodderDir, 1); - return fodderName; - } - - - - [TestMethod] - [Timeout(5 * 60*1000)] // to protect against stuck file locks - public void Spanned_Resave_wi13915() - { - TestContext.WriteLine("Creating fodder files... {0}", - DateTime.Now.ToString("G")); - var contentDir = CreateSomeFiles(); - var filesToAdd = new List(Directory.GetFiles(contentDir)); - int[] segSizes = { 128, 256, 512 }; - - // Three passes: - // pass 1: save as regular, then resave as segmented. - // pass 2: save as segmented, then resave as regular. - // pass 3: save as segmented, then resave as another segmented archive. - for (int m=0; m < 3; m++) - { - // for various segment sizes - for (int k=0; k < segSizes.Length; k++) - { - string trialDir = String.Format("trial.{0}.{1}", m, k); - Directory.CreateDirectory(trialDir); - string zipFile1 = Path.Combine(trialDir, "InitialSave."+m+"."+k+".zip"); - string zipFile2 = Path.Combine(trialDir, "Updated."+m+"."+k+".zip"); - TestContext.WriteLine(""); - TestContext.WriteLine("Creating zip... T({0},{1})...{2}", - m, k, DateTime.Now.ToString("G")); - using (var zip1 = new ZipFile()) - { - zip1.AddFiles(filesToAdd, ""); - if (m!=0) - zip1.MaxOutputSegmentSize = segSizes[k] * 1024; - zip1.Save(zipFile1); - } - - TestContext.WriteLine(""); - TestContext.WriteLine("Re-saving..."); - using (var zip2 = ZipFile.Read(zipFile1)) - { - if (m==0) - zip2.MaxOutputSegmentSize = segSizes[k] * 1024; - else if (m==2) - zip2.MaxOutputSegmentSize = 1024 * (3 * segSizes[k])/2; - - zip2.Save(zipFile2); - } - - TestContext.WriteLine(""); - TestContext.WriteLine("Extracting..."); - string extractDir = Path.Combine(trialDir,"extract"); - Directory.CreateDirectory(extractDir); - using (var zip3 = ZipFile.Read(zipFile2)) - { - foreach (var e in zip3) - { - TestContext.WriteLine(" {0}", e.FileName); - e.Extract(extractDir); - } - } - - string[] filesUnzipped = Directory.GetFiles(extractDir); - Assert.AreEqual(filesToAdd.Count, filesUnzipped.Length, - "Incorrect number of files extracted."); - } - } - } - - - - - - [TestMethod] - [Timeout(5 * 60*1000)] // to protect against stuck file locks - public void Spanned_WinZip_Unzip_wi13691() - { - if (!WinZipIsPresent) - throw new Exception("winzip is not present"); - - TestContext.WriteLine("Creating fodder files... {0}", - DateTime.Now.ToString("G")); - var contentDir = CreateSomeFiles(); - var filesToAdd = new List(Directory.GetFiles(contentDir)); - int[] segSizes = { 128, 256, 512 }; - - // Save as segmented, then read/extract with winzip unzip - // for various segment sizes. - for (int k=0; k < segSizes.Length; k++) - { - string trialDir = String.Format("trial.{0}", k); - Directory.CreateDirectory(trialDir); - string zipFile1 = Path.Combine(trialDir, "InitialSave."+k+".zip"); - TestContext.WriteLine(""); - TestContext.WriteLine("Creating zip... T({0})...{1}", - k, DateTime.Now.ToString("G")); - - using (var zip1 = new ZipFile()) - { - zip1.AddFiles(filesToAdd, ""); - zip1.MaxOutputSegmentSize = segSizes[k] * 1024; - zip1.Save(zipFile1); - } - - TestContext.WriteLine(""); - TestContext.WriteLine("Extracting..."); - string extractDir = Path.Combine(trialDir,"extract"); - Directory.CreateDirectory(extractDir); - string args = String.Format("-d -yx {0} \"{1}\"", - zipFile1, extractDir); - this.Exec(wzunzip, args); - - string[] filesUnzipped = Directory.GetFiles(extractDir); - Assert.AreEqual(filesToAdd.Count, filesUnzipped.Length, - "Incorrect number of files extracted, trail {0}", k); - } - } - - public void WinZip_Unzip(string zipFilePath, string extractDir) - { - var args = string.Format("-d -yx {0} \"{1}\"", - zipFilePath, extractDir); - Exec(wzunzip, args); - } - - public void SevenZip_Unzip(string zipFilePath, string extractDir) - { - var args = string.Format("x {0} -o\"{1}\"", - zipFilePath, extractDir); - var output = Exec(sevenZip, args); - Assert.IsTrue( - output.IndexOf("error", StringComparison.OrdinalIgnoreCase) == -1, - "Output contains errors: " + output); - } - - [TestMethod] - [Timeout(15 * 60 * 1000)] - public void Spanned_Zip64Always_HugeFiles_WinZip_Unzip() - { - if (!WinZipIsPresent) - throw new Exception("winzip is not present"); - - Test_SpannedZip64_Unzip_Compatibility( - // 6GB files (over default non-Zip64 '4GB' limit) - 6 * 1024 * 1024 * 1024L, - // 5GB span (over default non-Zip64 '4GB' limit) - 5 * 1024 * 1024 * 1024L, - Zip64Option.Always, - WinZip_Unzip); - } - - [TestMethod] - [Timeout(15 * 60 * 1000)] - public void Spanned_Zip64Always_SmallFiles_WinZip_Unzip() - { - if (!WinZipIsPresent) - throw new Exception("winzip is not present"); - - Test_SpannedZip64_Unzip_Compatibility( - // 2MB files - 2 * 1024 * 1024L, - // 1MB span - 1 * 1024 * 1024L, - Zip64Option.Always, - WinZip_Unzip); - } - - [TestMethod] - [Timeout(15 * 60 * 1000)] - public void Spanned_Zip64AsNecessary_SmallFiles_WinZip_Unzip() - { - if (!WinZipIsPresent) - throw new Exception("winzip is not present"); - - Test_SpannedZip64_Unzip_Compatibility( - // 2MB files - 2 * 1024 * 1024L, - // 1MB span - 1 * 1024 * 1024L, - Zip64Option.AsNecessary, - WinZip_Unzip); - } - - [TestMethod] - [Timeout(15 * 60 * 1000)] - public void Spanned_Zip64Never_SmallFiles_WinZip_Unzip() - { - if (!WinZipIsPresent) - throw new Exception("winzip is not present"); - - Test_SpannedZip64_Unzip_Compatibility( - // 2MB files - 2 * 1024 * 1024L, - // 1MB span - 1 * 1024 * 1024L, - Zip64Option.Never, - WinZip_Unzip); - } - - [TestMethod] - [Timeout(15 * 60 * 1000)] - public void Spanned_Zip64Always_HugeFiles_7Zip_Unzip() - { - if (!SevenZipIsPresent) - throw new Exception("7-zip is not present"); - - Test_SpannedZip64_Unzip_Compatibility( - // 6GB files (over default non-Zip64 '4GB' limit) - 6 * 1024 * 1024 * 1024L, - // 5GB span (over default non-Zip64 '4GB' limit) - 5 * 1024 * 1024 * 1024L, - Zip64Option.Always, - SevenZip_Unzip); - } - - [TestMethod] - [Timeout(15 * 60 * 1000)] - public void Spanned_Zip64Always_SmallFiles_7Zip_Unzip() - { - if (!SevenZipIsPresent) - throw new Exception("7-zip is not present"); - - Test_SpannedZip64_Unzip_Compatibility( - // 2MB files - 2 * 1024 * 1024L, - // 1MB span - 1 * 1024 * 1024L, - Zip64Option.Always, - SevenZip_Unzip); - } - - [TestMethod] - [Timeout(15 * 60 * 1000)] - public void Spanned_Zip64AsNecessary_SmallFiles_7Zip_Unzip() - { - if (!SevenZipIsPresent) - throw new Exception("7-zip is not present"); - - Test_SpannedZip64_Unzip_Compatibility( - // 2MB files - 2 * 1024 * 1024L, - // 1MB span - 1 * 1024 * 1024L, - Zip64Option.AsNecessary, - SevenZip_Unzip); - } - - [TestMethod] - [Timeout(15 * 60 * 1000)] - public void Spanned_Zip64Never_SmallFiles_7Zip_Unzip() - { - if (!SevenZipIsPresent) - throw new Exception("7-zip is not present"); - - Test_SpannedZip64_Unzip_Compatibility( - // 2MB files - 2 * 1024 * 1024L, - // 1MB span - 1 * 1024 * 1024L, - Zip64Option.Never, - SevenZip_Unzip); - } - -#if INFOZIP_UNZIP_SUPPORTS_SPLIT_ARCHIVES - - [TestMethod] - [Timeout(5 * 60*1000)] // to protect against stuck file locks - public void Spanned_InfoZip_Unzip_wi13691() - { - if (!InfoZipIsPresent) - throw new Exception("InfoZip is not present"); - - TestContext.WriteLine("Creating fodder files... {0}", - DateTime.Now.ToString("G")); - var contentDir = CreateSomeFiles(); - var filesToAdd = new List(Directory.GetFiles(contentDir)); - int[] segSizes = { 128, 256, 512 }; - - // Save as segmented, then read/extract with winzip unzip - // for various segment sizes. - for (int k=0; k < segSizes.Length; k++) - { - string trialDir = String.Format("trial.{0}", k); - Directory.CreateDirectory(trialDir); - string zipFile1 = Path.Combine(trialDir, "InitialSave."+k+".zip"); - TestContext.WriteLine(""); - TestContext.WriteLine("Creating zip... T({0})...{1}", - k, DateTime.Now.ToString("G")); - using (var zip1 = new ZipFile()) - { - zip1.AddFiles(filesToAdd, ""); - zip1.MaxOutputSegmentSize = segSizes[k] * 1024; - zip1.Save(zipFile1); - } - - TestContext.WriteLine(""); - TestContext.WriteLine("Extracting..."); - string extractDir = Path.Combine(trialDir,"extract"); - Directory.CreateDirectory(extractDir); - string args = String.Format("{0} -d {1}", - zipFile1, - extractDir); - this.Exec(infoZipUnzip, args); - - string[] filesUnzipped = Directory.GetFiles(extractDir); - Assert.AreEqual(filesToAdd.Count, filesUnzipped.Length, - "Incorrect number of files extracted, trail {0}", k); - } - } -#endif - - - [TestMethod] - [Timeout(5 * 60*1000)] // to protect against stuck file locks - public void Spanned_WinZip_Zip_wi13691() - { - if (!WinZipIsPresent) - throw new Exception("WinZip is not present"); - - TestContext.WriteLine("Creating fodder files... {0}", - DateTime.Now.ToString("G")); - var contentDir = CreateSomeFiles(); - var filesToAdd = new List(Directory.GetFiles(contentDir)); - int[] segSizes = { 128, 256, 512 }; - - // Save as segmented, then read/extract with winzip unzip - // for various segment sizes. - for (int k=0; k < segSizes.Length; k++) - { - string trialDir = String.Format("trial.{0}", k); - Directory.CreateDirectory(trialDir); - string nameOfParts = Path.Combine(trialDir, "InitialSave."+k); - string zipFile1 = nameOfParts + ".zip"; - TestContext.WriteLine(""); - TestContext.WriteLine("Creating zip... T({0})...{1}", - k, DateTime.Now.ToString("G")); - - // with WinZip, must produce a segmented zip in two - // steps: first create the regular zip, then split it. - - // step 1: create the regular zip - string args = String.Format("-a -p -r -yx step1.zip \"{0}\"", contentDir); - string wzzipOut = this.Exec(wzzip, args); - - // step 2: split the existing zip - // "wzzip -ys[size] archivetosplit.zip nameofparts " - args = String.Format("-ys{0} step1.zip {1}", - segSizes[k], zipFile1 //nameOfParts - ); - wzzipOut = this.Exec(wzzip, args); - - - TestContext.WriteLine(""); - TestContext.WriteLine("Extracting..."); - string extractDir = Path.Combine(trialDir,"extract"); - Directory.CreateDirectory(extractDir); - using (var zip1 = ZipFile.Read(zipFile1)) - { - foreach (var e in zip1) - { - TestContext.WriteLine(" {0}", e.FileName); - e.Extract(extractDir); - } - } - - string[] filesUnzipped = Directory.GetFiles(extractDir); - Assert.AreEqual(filesToAdd.Count, filesUnzipped.Length, - "Incorrect number of files extracted, trail {0}", k); - } - } - - - - [TestMethod] - [Timeout(5 * 60*1000)] // to protect against stuck file locks - public void Spanned_InfoZip_Zip_wi13691() - { - if (!InfoZipIsPresent) - throw new Exception("InfoZip is not present"); - - TestContext.WriteLine("Creating fodder files... {0}", - DateTime.Now.ToString("G")); - var contentDir = CreateSomeFiles(); - var filesToAdd = new List(Directory.GetFiles(contentDir)); - int[] segSizes = { 128, 256, 512 }; - - // Save as segmented, then read/extract with winzip unzip - // for various segment sizes. - for (int k=0; k < segSizes.Length; k++) - { - string trialDir = String.Format("trial.{0}", k); - Directory.CreateDirectory(trialDir); - string zipFile1 = Path.Combine(trialDir, "InitialSave."+k+".zip"); - TestContext.WriteLine(""); - TestContext.WriteLine("Creating zip... T({0})...{1}", - k, DateTime.Now.ToString("G")); - - string args = String.Format("-s {0}k {1} -r {2}", - segSizes[k], - zipFile1, - contentDir); - this.Exec(infoZip, args); - - TestContext.WriteLine(""); - TestContext.WriteLine("Extracting..."); - string extractDir = Path.Combine(trialDir,"extract"); - Directory.CreateDirectory(extractDir); - using (var zip1 = ZipFile.Read(zipFile1)) - { - foreach (var e in zip1) - { - TestContext.WriteLine(" {0}", e.FileName); - e.Extract(extractDir); - } - } - - string[] filesUnzipped = - Directory.GetFiles(Path.Combine(extractDir, contentDir)); - Assert.AreEqual(filesToAdd.Count, filesUnzipped.Length, - "Incorrect number of files extracted, trail {0}", k); - } - } - - private void Test_SpannedZip64_Unzip_Compatibility( - long fileSize, - long spanSize, - Zip64Option zip64Option, - Action unzipAction) - { - TestContext.WriteLine("Creating fodder files... {0}", - DateTime.Now.ToString("G")); - CreateSomeFiles(); - - var file1Path = Path.Combine(_fodderDir, "1.dat"); - var file2Path = Path.Combine(_fodderDir, "2.dat"); - - foreach (var filePath in new[] { file1Path, file2Path }) - { - using (var file = File.Create(filePath)) - { - file.Seek(fileSize, SeekOrigin.Begin); - file.Write(new byte[] { 1 }, 0, 1); - } - } - - Directory.CreateDirectory("zip-output"); - var zipFilePath = Path.Combine("zip-output", "archive.zip"); - - using (var zipFile = new ZipFile()) - { - zipFile.UseZip64WhenSaving = zip64Option; - // disable compression to make sure out 0-filled files would keep their size - zipFile.CompressionLevel = Zlib.CompressionLevel.None; - zipFile.MaxOutputSegmentSize64 = spanSize; - - zipFile.AddFile(file1Path, ""); - zipFile.AddFile(file2Path, ""); - - zipFile.Save(zipFilePath); - } - - var extractDir = "extract"; - Directory.CreateDirectory(extractDir); - - unzipAction(zipFilePath, extractDir); - - string[] filesUnzipped = Directory.GetFiles(extractDir); - Assert.AreEqual(2, filesUnzipped.Length, "Incorrect number of files extracted"); - } - } -} +// SplitArchives.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009-2011 Dino Chiesa. +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-July-14 11:07:00> +// +// ------------------------------------------------------------------ +// +// This module defines tests for split (or 'spanned') archives. +// +// ------------------------------------------------------------------ + +// define REMOTE_FILESYSTEM in order to use a remote filesystem for storage of +// the ZIP64 large archive (which can beb huge). Leave it undefined to simply +// use the local TEMP directory. +//#define REMOTE_FILESYSTEM + +using System; +using System.IO; +using System.Collections.Generic; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using Interop=System.Runtime.InteropServices; + + +using Ionic.Zip.Tests.Utilities; + + +namespace Ionic.Zip.Tests.Split +{ + /// + /// Summary description for ErrorTests + /// + [TestClass] + public class Split : IonicTestClass + { + [Interop.DllImport("kernel32.dll", + EntryPoint="CreateSymbolicLinkW", + CharSet=Interop.CharSet.Unicode)] + public static extern int CreateSymbolicLink(string lpSymlinkFileName, + string lpTargetFileName, + int dwFlags); + + + [TestMethod, Timeout(6 * 60*1000)] + public void Spanned_Create() + { + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + + _txrx = TestUtilities.StartProgressMonitor("segmentedzip", + "Segmented Zips", + "Creating files"); + _txrx.Send("pb 0 max 2"); + + int numFiles = _rnd.Next(10) + 8; + int overflows = 0; + string msg; + + _txrx.Send("pb 1 max " + numFiles); + + var update = new Action( (x,y,z) => { + switch (x) + { + case 0: + _txrx.Send(String.Format("pb 2 max {0}", ((int)z))); + break; + case 1: + msg = String.Format("pb 2 value {0}", ((int)z)); + _txrx.Send(msg); + break; + case 2: + _txrx.Send("pb 1 step"); + _txrx.Send("pb 2 value 0"); + msg = String.Format("status created {0}/{1} files", + y+1, + ((int)z)); + _txrx.Send(msg); + break; + } + }); + + _txrx.Send("status creating " + numFiles + " files..."); + + string[] filesToZip; + Dictionary checksums; + CreateLargeFilesWithChecksums(dirToZip, numFiles, update, + out filesToZip, out checksums); + _txrx.Send("pb 0 step"); + int[] segmentSizes = { 0, 64*1024, 128*1024, 512*1024, 1024*1024, + 2*1024*1024, 8*1024*1024, 16*1024*1024, + 1024*1024*1024 }; + + _txrx.Send("status zipping..."); + _txrx.Send(String.Format("pb 1 max {0}", segmentSizes.Length)); + + System.EventHandler sp = (sender1, e1) => + { + switch (e1.EventType) + { + case ZipProgressEventType.Saving_Started: + _txrx.Send(String.Format("pb 2 max {0}", filesToZip.Length)); + _txrx.Send("pb 2 value 0"); + break; + + case ZipProgressEventType.Saving_AfterWriteEntry: + TestContext.WriteLine("Saved entry {0}, {1} bytes", + e1.CurrentEntry.FileName, + e1.CurrentEntry.UncompressedSize); + _txrx.Send("pb 2 step"); + break; + } + }; + + + for (int m=0; m < segmentSizes.Length; m++) + { + string trialDir = String.Format("trial{0}", m); + Directory.CreateDirectory(trialDir); + string zipFileToCreate = Path.Combine(trialDir, + String.Format("Archive-{0}.zip",m)); + int maxSegSize = segmentSizes[m]; + + msg = String.Format("status trial {0}/{1} (max seg size {2}k)", + m+1, segmentSizes.Length, maxSegSize/1024); + _txrx.Send(msg); + + TestContext.WriteLine("======="); + TestContext.WriteLine("Trial {0}", m); + if (maxSegSize > 0) + TestContext.WriteLine("Creating a segmented zip...segsize({0})", maxSegSize); + else + TestContext.WriteLine("Creating a regular zip..."); + + var sw = new StringWriter(); + bool aok = false; + try + { + using (var zip = new ZipFile()) + { + zip.StatusMessageTextWriter = sw; + zip.BufferSize = 0x8000; + zip.CodecBufferSize = 0x8000; + zip.AddDirectory(dirToZip, "files"); + zip.MaxOutputSegmentSize = maxSegSize; + zip.SaveProgress += sp; + zip.Save(zipFileToCreate); + } + aok = true; + } + catch (OverflowException) + { + TestContext.WriteLine("Overflow - too many segments..."); + overflows++; + } + + if (aok) + { + TestContext.WriteLine("{0}", sw.ToString()); + + // // If you want to see the diskNumber for each entry, + // // uncomment the following: + // TestContext.WriteLine("Checking info..."); + // sw = new StringWriter(); + // //string extractDir = String.Format("ex{0}", m); + // using (var zip = ZipFile.Read(zipFileToCreate)) + // { + // zip.StatusMessageTextWriter = sw; + // foreach (string s in zip.Info.Split('\r','\n')) + // { + // Console.WriteLine("{0}", s); + // } + // + // // unnecessary - BasicVerify does this + // //foreach (var e in zip) + // //e.Extract(extractDir); + // } + // TestContext.WriteLine("{0}", sw.ToString()); + + TestContext.WriteLine("Extracting..."); + string extractDir = BasicVerifyZip(zipFileToCreate); + + // also verify checksums + VerifyChecksums(Path.Combine(extractDir, "files"), filesToZip, checksums); + } + _txrx.Send("pb 1 step"); + } + + _txrx.Send("pb 0 step"); + + Assert.IsTrue(overflows < 3, "Too many overflows. Check the test."); + } + + + + bool _pb1Set; + bool _pb2Set; + int _numExtracted; + int _numFilesToExtract; + int _nCycles; + void ExtractProgress(object sender, ExtractProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Extracting_BeforeExtractEntry: + if (!_pb1Set) + { + _txrx.Send(String.Format("pb 1 max {0}", _numFilesToExtract)); + _pb1Set = true; + } + _pb2Set = false; + _nCycles = 0; + break; + + case ZipProgressEventType.Extracting_EntryBytesWritten: + if (!_pb2Set) + { + _txrx.Send(String.Format("pb 2 max {0}", e.TotalBytesToTransfer)); + _pb2Set = true; + } + // for performance, don't update the progress monitor every time. + _nCycles++; + if (_nCycles % 64 == 0) + { + _txrx.Send(String.Format("status Extracting entry {0}/{1} :: {2} :: {3}/{4}mb :: {5:N0}%", + _numExtracted, _numFilesToExtract, + e.CurrentEntry.FileName, + e.BytesTransferred/(1024*1024), + e.TotalBytesToTransfer/(1024*1024), + ((double)e.BytesTransferred) / (0.01 * e.TotalBytesToTransfer) + )); + string msg = String.Format("pb 2 value {0}", e.BytesTransferred); + _txrx.Send(msg); + } + break; + + case ZipProgressEventType.Extracting_AfterExtractEntry: + _numExtracted++; + _txrx.Send("pb 1 step"); + break; + } + } + + + + [TestMethod] + [Timeout(90 * 60 * 1000)] + public void Create_LargeSegmentedArchive() + { + Test_LargeSegmentedArchive( + minFileSize: 420 * 1024 * 1024, + minFilesCount: 5, + // segmentSize32Bit: 4 * 1024 * 1024); + // segmentSize32Bit: 80 * 1024 * 1024); + segmentSize32Bit: 120 * 1024 * 1024); + } + + + + [TestMethod] + [Timeout(90 * 60 * 1000)] + public void Create_LargeSegmentedArchiveWithOver32bitSegmentSize() + { + Test_LargeSegmentedArchive( + minFileSize: 420 * 1024 * 1024, + minFilesCount: 10, + segmentSize64Bit: 3L * 1024 * 1024 * 1024); + } + + + + public void Test_LargeSegmentedArchive( + int minFileSize, + int minFilesCount, + int? segmentSize32Bit = null, + long? segmentSize64Bit = null) + { + if ((segmentSize32Bit.HasValue && segmentSize64Bit.HasValue) + || (!segmentSize32Bit.HasValue && !segmentSize64Bit.HasValue)) + { + Assert.Fail("A single variable, either segmentSize32Bit or segmentSize64Bit has to specified."); + } + + // There was a claim that large archives (around or above + // 1gb) did not work well with archive splitting. This test + // covers that case. + +#if REMOTE_FILESYSTEM + string parentDir = Path.Combine("t:\\tdir", Path.GetFileNameWithoutExtension(TopLevelDir)); + _FilesToRemove.Add(parentDir); + Directory.CreateDirectory(parentDir); + string zipFileToCreate = Path.Combine(parentDir, + "Create_LargeSegmentedArchive.zip"); +#else + string zipFileToCreate = Path.Combine(TopLevelDir, "Test_LargeSegmentedArchive.zip"); +#endif + TestContext.WriteLine("Creating file {0}", zipFileToCreate); + + // This file will "cache" the randomly generated text, so we + // don't have to generate more than once. You know, for + // speed. + string cacheFile = Path.Combine(TopLevelDir, "cacheFile.txt"); + + // int sizeBase = 20 * 1024 * 1024; + // int sizeRandom = 1 * 1024 * 1024; + // int numFiles = 3; + + // int sizeBase = 320 * 1024 * 1024; + // int sizeRandom = 20 * 1024 * 1024 ; + // int numFiles = 5; + + int sizeRandom = 20 * 1024 * 1024; + int numFiles = _rnd.Next(5) + minFilesCount; + + TestContext.WriteLine("The zip will contain {0} files", numFiles); + + int numSaving= 0, totalToSave = 0, numSegs= 0; + long sz = 0; + + + // There are a bunch of Action's here. This test method originally + // used ZipFile.AddEntry overload that accepts an opener/closer pair. + // It conjured content for the files out of a RandomTextGenerator + // stream. This worked, but was very very slow. So I took a new + // approach to use a WriteDelegate, and still contrive the data, but + // cache it for entries after the first one. This makes things go much + // faster. + // + // But, when using the WriteDelegate, the SaveProgress events of + // flavor ZipProgressEventType.Saving_EntryBytesRead do not get + // called. Therefore the progress updates are done from within the + // WriteDelegate itself. The SaveProgress events for SavingStarted, + // BeforeWriteEntry, and AfterWriteEntry do get called. As a result + // this method uses 2 delegates: one for writing and one for the + // SaveProgress events. + + WriteDelegate writer = (name, stream) => + { + Stream input = null; + Stream cache = null; + try + { + // use a cahce file as the content. The entry + // name will vary but we'll get the content for + // each entry from the a single cache file. + if (File.Exists(cacheFile)) + { + input = File.Open(cacheFile, + FileMode.Open, + FileAccess.ReadWrite, + FileShare.ReadWrite); + // Make the file slightly shorter with each + // successive entry, - just to shake things + // up a little. Also seek forward a little. + var fl = input.Length; + input.SetLength(fl - _rnd.Next(sizeRandom/2) + 5201); + input.Seek(_rnd.Next(sizeRandom/2), SeekOrigin.Begin); + } + else + { + sz = minFileSize + _rnd.Next(sizeRandom); + // input = new Ionic.Zip.Tests.Utilities.RandomTextInputStream((int)sz); + input = new Ionic.Zip.Tests.Utilities.RandomBytesInputStream((int)sz); + // cache = File.Create(cacheFile); + } + _txrx.Send(String.Format("pb 2 max {0}", sz)); + _txrx.Send("pb 2 value 0"); + var buffer = new byte[8192]; + int n; + Int64 totalWritten = 0; + int nCycles = 0; + using (input) + { + while ((n= input.Read(buffer,0, buffer.Length))>0) + { + stream.Write(buffer,0,n); + if (cache!=null) + cache.Write(buffer,0,n); + totalWritten += n; + // for performance, don't update the + // progress monitor every time. + nCycles++; + if (nCycles % 312 == 0) + { + _txrx.Send(String.Format("pb 2 value {0}", totalWritten)); + _txrx.Send(String.Format("status Saving entry {0}/{1} {2} :: {3}/{4}mb {5:N0}%", + numSaving, totalToSave, + name, + totalWritten/(1024*1024), sz/(1024*1024), + ((double)totalWritten) / (0.01 * sz))); + } + } + } + } + finally + { + if (cache!=null) cache.Dispose(); + } + }; + + EventHandler sp = (sender1, e1) => + { + switch (e1.EventType) + { + case ZipProgressEventType.Saving_Started: + numSaving= 0; + break; + + case ZipProgressEventType.Saving_BeforeWriteEntry: + _txrx.Send("test Large Segmented Zip"); + _txrx.Send(String.Format("status saving {0}", e1.CurrentEntry.FileName)); + totalToSave = e1.EntriesTotal; + numSaving++; + break; + + // case ZipProgressEventType.Saving_EntryBytesRead: + // if (!_pb2Set) + // { + // _txrx.Send(String.Format("pb 2 max {0}", e1.TotalBytesToTransfer)); + // _pb2Set = true; + // } + // _txrx.Send(String.Format("status Saving entry {0}/{1} {2} :: {3}/{4}mb {5:N0}%", + // numSaving, totalToSave, + // e1.CurrentEntry.FileName, + // e1.BytesTransferred/(1024*1024), e1.TotalBytesToTransfer/(1024*1024), + // ((double)e1.BytesTransferred) / (0.01 * e1.TotalBytesToTransfer))); + // string msg = String.Format("pb 2 value {0}", e1.BytesTransferred); + // _txrx.Send(msg); + // break; + + case ZipProgressEventType.Saving_AfterWriteEntry: + TestContext.WriteLine("Saved entry {0}, {1} bytes", e1.CurrentEntry.FileName, + e1.CurrentEntry.UncompressedSize); + _txrx.Send("pb 1 step"); + _pb2Set = false; + break; + } + }; + + _txrx = TestUtilities.StartProgressMonitor("largesegmentedzip", "Large Segmented ZIP", "Creating files"); + + _txrx.Send("bars 3"); + _txrx.Send("pb 0 max 2"); + _txrx.Send(String.Format("pb 1 max {0}", numFiles)); + + // build a large zip file out of thin air + var sw = new StringWriter(); + using (ZipFile zip = new ZipFile()) + { + zip.StatusMessageTextWriter = sw; + zip.BufferSize = 256 * 1024; + zip.CodecBufferSize = 128 * 1024; + if (segmentSize32Bit.HasValue) + { + zip.MaxOutputSegmentSize = segmentSize32Bit.Value; + } + else + { + zip.MaxOutputSegmentSize64 = segmentSize64Bit.Value; + } + + zip.SaveProgress += sp; + + for (int i = 0; i < numFiles; i++) + { + string filename = TestUtilities.GetOneRandomUppercaseAsciiChar() + + Path.GetFileNameWithoutExtension(Path.GetRandomFileName()) + ".txt"; + zip.AddEntry(filename, writer); + } + zip.Save(zipFileToCreate); + + numSegs = zip.NumberOfSegmentsForMostRecentSave; + } + +#if REMOTE_FILESYSTEM + if (((long)numSegs*zip.MaxOutputSegmentSize64) < (long)(1024*1024*1024L)) + { + _FilesToRemove.Remove(parentDir); + Assert.IsTrue(false, "There were not enough segments in that zip. numsegs({0}) maxsize({1}).", numSegs, maxSegSize); + } +#endif + _txrx.Send("status Verifying the zip ..."); + + _txrx.Send("pb 0 step"); + _txrx.Send("pb 1 value 0"); + _txrx.Send("pb 2 value 0"); + + ReadOptions options = new ReadOptions + { + StatusMessageWriter = new StringWriter() + }; + + string extractDir = "verify"; + int c = 0; + while (Directory.Exists(extractDir + c)) c++; + extractDir += c; + + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate, options)) + { + _numFilesToExtract = zip2.Entries.Count; + _numExtracted= 1; + _pb1Set= false; + zip2.ExtractProgress += ExtractProgress; + zip2.ExtractAll(extractDir); + } + + string status = options.StatusMessageWriter.ToString(); + TestContext.WriteLine("status:"); + foreach (string line in status.Split('\n')) + TestContext.WriteLine(line); + } + + + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void Spanned_InvalidSegmentSize() + { + string zipFileToCreate = "InvalidSegmentSize.zip"; + int segSize = 65536/3 + _rnd.Next(65536/2); + using (var zip = new ZipFile()) + { + zip.MaxOutputSegmentSize = segSize; + zip.Save(zipFileToCreate); + } + } + + + + string _fodderDir = null; + /// + /// Finds or creates and fills a cache directory of fodder files. + /// + /// the name of the cache directory + String CreateSomeFiles() + { + string fodderName = "fodder"; + if (_fodderDir != null) + { + CreateSymbolicLink(fodderName, _fodderDir, 1); + return fodderName; + } + + int baseNumFiles = 12; + int baseSize = 0x100000; + int numFilesToAdd = baseNumFiles + _rnd.Next(4); + string tmpDir = System.Environment.GetEnvironmentVariable("TEMP"); + var oldDirs = Directory.GetDirectories(tmpDir, "*.SplitArchives"); + string fodderDir; + foreach (var dir in oldDirs) + { + TestContext.WriteLine("Considering directory: {0}", dir); + fodderDir = Path.Combine(dir, fodderName); + if (!Directory.Exists(fodderDir)) + { + Directory.Delete(dir, true); + } + else + { + var fodderFiles = Directory.GetFiles(fodderDir, "*.txt"); + if (fodderFiles.Length < baseNumFiles) + { + Directory.Delete(dir, true); + } + else + { + _fodderDir = fodderDir; + CreateSymbolicLink(fodderName, _fodderDir, 1); + return fodderName; + } + + } + } + + // upon reaching here, no directories exist that contain suitable + // fodder for these tests. Create the directory, and a few + // fodder files. + + string pname = Path.GetFileName(TestUtilities.GenerateUniquePathname("SplitArchives")); + + string cacheDir = Path.Combine(tmpDir, pname); + Directory.CreateDirectory(cacheDir); + fodderDir = Path.Combine(cacheDir, fodderName); + Directory.CreateDirectory(fodderDir); + + for (int i=0; i < numFilesToAdd; i++) + { + int fileSize = baseSize + _rnd.Next(baseSize/2); + string fileName = Path.Combine(fodderDir, string.Format("Pippo{0}.txt", i)); + TestUtilities.CreateAndFillFileText(fileName, fileSize); + } + _fodderDir = fodderDir; + CreateSymbolicLink(fodderName, _fodderDir, 1); + return fodderName; + } + + + + [TestMethod] + [Timeout(5 * 60*1000)] // to protect against stuck file locks + public void Spanned_Resave_wi13915() + { + TestContext.WriteLine("Creating fodder files... {0}", + DateTime.Now.ToString("G")); + var contentDir = CreateSomeFiles(); + var filesToAdd = new List(Directory.GetFiles(contentDir)); + int[] segSizes = { 128, 256, 512 }; + + // Three passes: + // pass 1: save as regular, then resave as segmented. + // pass 2: save as segmented, then resave as regular. + // pass 3: save as segmented, then resave as another segmented archive. + for (int m=0; m < 3; m++) + { + // for various segment sizes + for (int k=0; k < segSizes.Length; k++) + { + string trialDir = String.Format("trial.{0}.{1}", m, k); + Directory.CreateDirectory(trialDir); + string zipFile1 = Path.Combine(trialDir, "InitialSave."+m+"."+k+".zip"); + string zipFile2 = Path.Combine(trialDir, "Updated."+m+"."+k+".zip"); + TestContext.WriteLine(""); + TestContext.WriteLine("Creating zip... T({0},{1})...{2}", + m, k, DateTime.Now.ToString("G")); + using (var zip1 = new ZipFile()) + { + zip1.AddFiles(filesToAdd, ""); + if (m!=0) + zip1.MaxOutputSegmentSize = segSizes[k] * 1024; + zip1.Save(zipFile1); + } + + TestContext.WriteLine(""); + TestContext.WriteLine("Re-saving..."); + using (var zip2 = ZipFile.Read(zipFile1)) + { + if (m==0) + zip2.MaxOutputSegmentSize = segSizes[k] * 1024; + else if (m==2) + zip2.MaxOutputSegmentSize = 1024 * (3 * segSizes[k])/2; + + zip2.Save(zipFile2); + } + + TestContext.WriteLine(""); + TestContext.WriteLine("Extracting..."); + string extractDir = Path.Combine(trialDir,"extract"); + Directory.CreateDirectory(extractDir); + using (var zip3 = ZipFile.Read(zipFile2)) + { + foreach (var e in zip3) + { + TestContext.WriteLine(" {0}", e.FileName); + e.Extract(extractDir); + } + } + + string[] filesUnzipped = Directory.GetFiles(extractDir); + Assert.AreEqual(filesToAdd.Count, filesUnzipped.Length, + "Incorrect number of files extracted."); + } + } + } + + + + + + [TestMethod] + [Timeout(5 * 60*1000)] // to protect against stuck file locks + public void Spanned_WinZip_Unzip_wi13691() + { + if (!WinZipIsPresent) + throw new Exception("winzip is not present"); + + TestContext.WriteLine("Creating fodder files... {0}", + DateTime.Now.ToString("G")); + var contentDir = CreateSomeFiles(); + var filesToAdd = new List(Directory.GetFiles(contentDir)); + int[] segSizes = { 128, 256, 512 }; + + // Save as segmented, then read/extract with winzip unzip + // for various segment sizes. + for (int k=0; k < segSizes.Length; k++) + { + string trialDir = String.Format("trial.{0}", k); + Directory.CreateDirectory(trialDir); + string zipFile1 = Path.Combine(trialDir, "InitialSave."+k+".zip"); + TestContext.WriteLine(""); + TestContext.WriteLine("Creating zip... T({0})...{1}", + k, DateTime.Now.ToString("G")); + + using (var zip1 = new ZipFile()) + { + zip1.AddFiles(filesToAdd, ""); + zip1.MaxOutputSegmentSize = segSizes[k] * 1024; + zip1.Save(zipFile1); + } + + TestContext.WriteLine(""); + TestContext.WriteLine("Extracting..."); + string extractDir = Path.Combine(trialDir,"extract"); + Directory.CreateDirectory(extractDir); + string args = String.Format("-d -yx {0} \"{1}\"", + zipFile1, extractDir); + this.Exec(wzunzip, args); + + string[] filesUnzipped = Directory.GetFiles(extractDir); + Assert.AreEqual(filesToAdd.Count, filesUnzipped.Length, + "Incorrect number of files extracted, trail {0}", k); + } + } + + public void WinZip_Unzip(string zipFilePath, string extractDir) + { + var args = string.Format("-d -yx {0} \"{1}\"", + zipFilePath, extractDir); + Exec(wzunzip, args); + } + + public void SevenZip_Unzip(string zipFilePath, string extractDir) + { + var args = string.Format("x {0} -o\"{1}\"", + zipFilePath, extractDir); + var output = Exec(sevenZip, args); + Assert.IsTrue( + output.IndexOf("error", StringComparison.OrdinalIgnoreCase) == -1, + "Output contains errors: " + output); + } + + [TestMethod] + [Timeout(15 * 60 * 1000)] + public void Spanned_Zip64Always_HugeFiles_WinZip_Unzip() + { + if (!WinZipIsPresent) + throw new Exception("winzip is not present"); + + Test_SpannedZip64_Unzip_Compatibility( + // 6GB files (over default non-Zip64 '4GB' limit) + 6 * 1024 * 1024 * 1024L, + // 5GB span (over default non-Zip64 '4GB' limit) + 5 * 1024 * 1024 * 1024L, + Zip64Option.Always, + WinZip_Unzip); + } + + [TestMethod] + [Timeout(15 * 60 * 1000)] + public void Spanned_Zip64Always_SmallFiles_WinZip_Unzip() + { + if (!WinZipIsPresent) + throw new Exception("winzip is not present"); + + Test_SpannedZip64_Unzip_Compatibility( + // 2MB files + 2 * 1024 * 1024L, + // 1MB span + 1 * 1024 * 1024L, + Zip64Option.Always, + WinZip_Unzip); + } + + [TestMethod] + [Timeout(15 * 60 * 1000)] + public void Spanned_Zip64AsNecessary_SmallFiles_WinZip_Unzip() + { + if (!WinZipIsPresent) + throw new Exception("winzip is not present"); + + Test_SpannedZip64_Unzip_Compatibility( + // 2MB files + 2 * 1024 * 1024L, + // 1MB span + 1 * 1024 * 1024L, + Zip64Option.AsNecessary, + WinZip_Unzip); + } + + [TestMethod] + [Timeout(15 * 60 * 1000)] + public void Spanned_Zip64Never_SmallFiles_WinZip_Unzip() + { + if (!WinZipIsPresent) + throw new Exception("winzip is not present"); + + Test_SpannedZip64_Unzip_Compatibility( + // 2MB files + 2 * 1024 * 1024L, + // 1MB span + 1 * 1024 * 1024L, + Zip64Option.Never, + WinZip_Unzip); + } + + [TestMethod] + [Timeout(15 * 60 * 1000)] + public void Spanned_Zip64Always_HugeFiles_7Zip_Unzip() + { + if (!SevenZipIsPresent) + throw new Exception("7-zip is not present"); + + Test_SpannedZip64_Unzip_Compatibility( + // 6GB files (over default non-Zip64 '4GB' limit) + 6 * 1024 * 1024 * 1024L, + // 5GB span (over default non-Zip64 '4GB' limit) + 5 * 1024 * 1024 * 1024L, + Zip64Option.Always, + SevenZip_Unzip); + } + + [TestMethod] + [Timeout(15 * 60 * 1000)] + public void Spanned_Zip64Always_SmallFiles_7Zip_Unzip() + { + if (!SevenZipIsPresent) + throw new Exception("7-zip is not present"); + + Test_SpannedZip64_Unzip_Compatibility( + // 2MB files + 2 * 1024 * 1024L, + // 1MB span + 1 * 1024 * 1024L, + Zip64Option.Always, + SevenZip_Unzip); + } + + [TestMethod] + [Timeout(15 * 60 * 1000)] + public void Spanned_Zip64AsNecessary_SmallFiles_7Zip_Unzip() + { + if (!SevenZipIsPresent) + throw new Exception("7-zip is not present"); + + Test_SpannedZip64_Unzip_Compatibility( + // 2MB files + 2 * 1024 * 1024L, + // 1MB span + 1 * 1024 * 1024L, + Zip64Option.AsNecessary, + SevenZip_Unzip); + } + + [TestMethod] + [Timeout(15 * 60 * 1000)] + public void Spanned_Zip64Never_SmallFiles_7Zip_Unzip() + { + if (!SevenZipIsPresent) + throw new Exception("7-zip is not present"); + + Test_SpannedZip64_Unzip_Compatibility( + // 2MB files + 2 * 1024 * 1024L, + // 1MB span + 1 * 1024 * 1024L, + Zip64Option.Never, + SevenZip_Unzip); + } + +#if INFOZIP_UNZIP_SUPPORTS_SPLIT_ARCHIVES + + [TestMethod] + [Timeout(5 * 60*1000)] // to protect against stuck file locks + public void Spanned_InfoZip_Unzip_wi13691() + { + if (!InfoZipIsPresent) + throw new Exception("InfoZip is not present"); + + TestContext.WriteLine("Creating fodder files... {0}", + DateTime.Now.ToString("G")); + var contentDir = CreateSomeFiles(); + var filesToAdd = new List(Directory.GetFiles(contentDir)); + int[] segSizes = { 128, 256, 512 }; + + // Save as segmented, then read/extract with winzip unzip + // for various segment sizes. + for (int k=0; k < segSizes.Length; k++) + { + string trialDir = String.Format("trial.{0}", k); + Directory.CreateDirectory(trialDir); + string zipFile1 = Path.Combine(trialDir, "InitialSave."+k+".zip"); + TestContext.WriteLine(""); + TestContext.WriteLine("Creating zip... T({0})...{1}", + k, DateTime.Now.ToString("G")); + using (var zip1 = new ZipFile()) + { + zip1.AddFiles(filesToAdd, ""); + zip1.MaxOutputSegmentSize = segSizes[k] * 1024; + zip1.Save(zipFile1); + } + + TestContext.WriteLine(""); + TestContext.WriteLine("Extracting..."); + string extractDir = Path.Combine(trialDir,"extract"); + Directory.CreateDirectory(extractDir); + string args = String.Format("{0} -d {1}", + zipFile1, + extractDir); + this.Exec(infoZipUnzip, args); + + string[] filesUnzipped = Directory.GetFiles(extractDir); + Assert.AreEqual(filesToAdd.Count, filesUnzipped.Length, + "Incorrect number of files extracted, trail {0}", k); + } + } +#endif + + + [TestMethod] + [Timeout(5 * 60*1000)] // to protect against stuck file locks + public void Spanned_WinZip_Zip_wi13691() + { + if (!WinZipIsPresent) + throw new Exception("WinZip is not present"); + + TestContext.WriteLine("Creating fodder files... {0}", + DateTime.Now.ToString("G")); + var contentDir = CreateSomeFiles(); + var filesToAdd = new List(Directory.GetFiles(contentDir)); + int[] segSizes = { 128, 256, 512 }; + + // Save as segmented, then read/extract with winzip unzip + // for various segment sizes. + for (int k=0; k < segSizes.Length; k++) + { + string trialDir = String.Format("trial.{0}", k); + Directory.CreateDirectory(trialDir); + string nameOfParts = Path.Combine(trialDir, "InitialSave."+k); + string zipFile1 = nameOfParts + ".zip"; + TestContext.WriteLine(""); + TestContext.WriteLine("Creating zip... T({0})...{1}", + k, DateTime.Now.ToString("G")); + + // with WinZip, must produce a segmented zip in two + // steps: first create the regular zip, then split it. + + // step 1: create the regular zip + string args = String.Format("-a -p -r -yx step1.zip \"{0}\"", contentDir); + string wzzipOut = this.Exec(wzzip, args); + + // step 2: split the existing zip + // "wzzip -ys[size] archivetosplit.zip nameofparts " + args = String.Format("-ys{0} step1.zip {1}", + segSizes[k], zipFile1 //nameOfParts + ); + wzzipOut = this.Exec(wzzip, args); + + + TestContext.WriteLine(""); + TestContext.WriteLine("Extracting..."); + string extractDir = Path.Combine(trialDir,"extract"); + Directory.CreateDirectory(extractDir); + using (var zip1 = ZipFile.Read(zipFile1)) + { + foreach (var e in zip1) + { + TestContext.WriteLine(" {0}", e.FileName); + e.Extract(extractDir); + } + } + + string[] filesUnzipped = Directory.GetFiles(extractDir); + Assert.AreEqual(filesToAdd.Count, filesUnzipped.Length, + "Incorrect number of files extracted, trail {0}", k); + } + } + + + + [TestMethod] + [Timeout(5 * 60*1000)] // to protect against stuck file locks + public void Spanned_InfoZip_Zip_wi13691() + { + if (!InfoZipIsPresent) + throw new Exception("InfoZip is not present"); + + TestContext.WriteLine("Creating fodder files... {0}", + DateTime.Now.ToString("G")); + var contentDir = CreateSomeFiles(); + var filesToAdd = new List(Directory.GetFiles(contentDir)); + int[] segSizes = { 128, 256, 512 }; + + // Save as segmented, then read/extract with winzip unzip + // for various segment sizes. + for (int k=0; k < segSizes.Length; k++) + { + string trialDir = String.Format("trial.{0}", k); + Directory.CreateDirectory(trialDir); + string zipFile1 = Path.Combine(trialDir, "InitialSave."+k+".zip"); + TestContext.WriteLine(""); + TestContext.WriteLine("Creating zip... T({0})...{1}", + k, DateTime.Now.ToString("G")); + + string args = String.Format("-s {0}k {1} -r {2}", + segSizes[k], + zipFile1, + contentDir); + this.Exec(infoZip, args); + + TestContext.WriteLine(""); + TestContext.WriteLine("Extracting..."); + string extractDir = Path.Combine(trialDir,"extract"); + Directory.CreateDirectory(extractDir); + using (var zip1 = ZipFile.Read(zipFile1)) + { + foreach (var e in zip1) + { + TestContext.WriteLine(" {0}", e.FileName); + e.Extract(extractDir); + } + } + + string[] filesUnzipped = + Directory.GetFiles(Path.Combine(extractDir, contentDir)); + Assert.AreEqual(filesToAdd.Count, filesUnzipped.Length, + "Incorrect number of files extracted, trail {0}", k); + } + } + + private void Test_SpannedZip64_Unzip_Compatibility( + long fileSize, + long spanSize, + Zip64Option zip64Option, + Action unzipAction) + { + TestContext.WriteLine("Creating fodder files... {0}", + DateTime.Now.ToString("G")); + CreateSomeFiles(); + + var file1Path = Path.Combine(_fodderDir, "1.dat"); + var file2Path = Path.Combine(_fodderDir, "2.dat"); + + foreach (var filePath in new[] { file1Path, file2Path }) + { + using (var file = File.Create(filePath)) + { + file.Seek(fileSize, SeekOrigin.Begin); + file.Write(new byte[] { 1 }, 0, 1); + } + } + + Directory.CreateDirectory("zip-output"); + var zipFilePath = Path.Combine("zip-output", "archive.zip"); + + using (var zipFile = new ZipFile()) + { + zipFile.UseZip64WhenSaving = zip64Option; + // disable compression to make sure out 0-filled files would keep their size + zipFile.CompressionLevel = Zlib.CompressionLevel.None; + zipFile.MaxOutputSegmentSize64 = spanSize; + + zipFile.AddFile(file1Path, ""); + zipFile.AddFile(file2Path, ""); + + zipFile.Save(zipFilePath); + } + + var extractDir = "extract"; + Directory.CreateDirectory(extractDir); + + unzipAction(zipFilePath, extractDir); + + string[] filesUnzipped = Directory.GetFiles(extractDir); + Assert.AreEqual(2, filesUnzipped.Length, "Incorrect number of files extracted"); + } + } +} diff --git a/src/Zip Tests/Streams.cs b/old/src/Zip Tests/Streams.cs similarity index 97% rename from src/Zip Tests/Streams.cs rename to old/src/Zip Tests/Streams.cs index a4993ae..5c05781 100644 --- a/src/Zip Tests/Streams.cs +++ b/old/src/Zip Tests/Streams.cs @@ -1,2020 +1,2020 @@ -// Streams.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009-2011 Dino Chiesa -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// Last Saved: <2011-July-28 07:33:02> -// -// ------------------------------------------------------------------ -// -// This module defines tests for Streams interfaces into DotNetZip, that -// DotNetZip can write to streams, read from streams, ZipOutputStream, -// ZipInputStream, etc. -// -// ------------------------------------------------------------------ - -using System; -using System.IO; -using System.Text; -using System.Collections.Generic; -using Microsoft.VisualStudio.TestTools.UnitTesting; - -using Ionic.Zip; -using Ionic.Zlib; -using Ionic.Zip.Tests.Utilities; - - -namespace Ionic.Zip.Tests.Streams -{ - /// - /// Summary description for StreamsTests - /// - [TestClass] - public class StreamsTests : IonicTestClass - { - public StreamsTests() : base() { } - - EncryptionAlgorithm[] crypto = - { - EncryptionAlgorithm.None, - EncryptionAlgorithm.PkzipWeak, - EncryptionAlgorithm.WinZipAes128, - EncryptionAlgorithm.WinZipAes256, - }; - -#if NOT - EncryptionAlgorithm[] cryptoNoPkzip = - { - EncryptionAlgorithm.None, - EncryptionAlgorithm.WinZipAes128, - EncryptionAlgorithm.WinZipAes256, - }; -#endif - - Ionic.Zlib.CompressionLevel[] compLevels = - { - Ionic.Zlib.CompressionLevel.None, - Ionic.Zlib.CompressionLevel.BestSpeed, - Ionic.Zlib.CompressionLevel.Default, - Ionic.Zlib.CompressionLevel.BestCompression, - }; - - Zip64Option[] z64 = - { - Zip64Option.Never, - Zip64Option.AsNecessary, - Zip64Option.Always, - }; - - - [TestMethod] - public void ZOS_Create_Encrypt_wi12815() - { - string zipFileToCreate = - "ZOS_Create_Encrypt_wi12815.zip"; - - var content = new byte[1789]; - unchecked - { - byte b = 0; - for (var i = 0; i < content.Length; i++, b++) - { - content[i] = b; - } - } - - var checkBuffer = new Action(stage => - { - byte b = 0; - TestContext.WriteLine("Checking buffer ({0})", stage); - for (var i = 0; i < content.Length; i++, b++) - { - Assert.IsTrue((content[i] == b), - "Buffer was modified."); - } - }); - - checkBuffer("before"); - - using (var fileStream = File.OpenWrite(zipFileToCreate)) - { - using (var zipStream = new ZipOutputStream(fileStream, true)) - { - zipStream.CompressionLevel = Ionic.Zlib.CompressionLevel.None; - zipStream.Password = "mydummypassword"; - zipStream.Encryption = EncryptionAlgorithm.WinZipAes256; - zipStream.PutNextEntry("myentry.myext"); - zipStream.Write(content, 0, content.Length); - } - } - - checkBuffer("after"); - } - - - - - [TestMethod] - public void ReadZip_OpenReader() - { - string[] passwords = { null, Path.GetRandomFileName(), "EE", "***()" }; - - for (int j = 0; j < compLevels.Length; j++) - { - for (int k = 0; k < passwords.Length; k++) - { - string zipFileToCreate = String.Format("ReadZip_OpenReader-{0}-{1}.zip", j, k); - //int entriesAdded = 0; - //String filename = null; - string dirToZip = String.Format("dirToZip.{0}.{1}", j, k); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - - using (ZipFile zip1 = new ZipFile()) - { - zip1.CompressionLevel = compLevels[j]; - zip1.Password = passwords[k]; - zip1.AddDirectory(dirToZip,dirToZip); - zip1.Save(zipFileToCreate); - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - files.Length, - String.Format("Trial ({0},{1})", j, k)); - - int i = 0; - ZipEntry e1 = null; - Func opener = () => { - if (i == 0) - return e1.OpenReader(); - if (i == 1) - return e1.OpenReader(passwords[k]); - - e1.Password = passwords[k]; - return e1.OpenReader(); - }; - - // now extract the files and verify their contents - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - for (i = 0; i < 3; i++) - { - // try once with Password set on ZipFile, - // another with password on the entry, and - // a third time with password passed into the OpenReader() method. - if (i == 0) zip2.Password = passwords[k]; - - foreach (string eName in zip2.EntryFileNames) - { - e1 = zip2[eName]; - if (e1.IsDirectory) continue; - - using (var s = opener()) - { - string outFile = String.Format("{0}.{1}.out", eName, i); - int totalBytesRead = 0; - using (var output = File.Create(outFile)) - { - byte[] buffer = new byte[4096]; - int n; - while ((n = s.Read(buffer, 0, buffer.Length)) > 0) - { - totalBytesRead += n; - output.Write(buffer, 0, n); - } - } - - TestContext.WriteLine("CRC expected({0:X8}) actual({1:X8})", - e1.Crc, s.Crc); - Assert.AreEqual(s.Crc, e1.Crc, - string.Format("{0} :: CRC Mismatch", eName)); - Assert.AreEqual(totalBytesRead, (int)e1.UncompressedSize, - string.Format("We read an unexpected number of bytes. ({0})", eName)); - } - } - } - } - } - } - } - - - [TestMethod] - public void ZOS_Create_WithComment_wi10339() - { - string zipFileToCreate = "ZOS_Create_WithComment_wi10339.zip"; - using (var fs = File.Create(zipFileToCreate)) - { - using (var output = new ZipOutputStream(fs)) - { - output.CompressionLevel = Ionic.Zlib.CompressionLevel.None; - output.Comment = "Cheeso is the man!"; - string entryName = String.Format("entry{0:D4}.txt", _rnd.Next(10000)); - output.PutNextEntry(entryName); - string content = "This is the content for the entry."; - byte[] buffer = Encoding.ASCII.GetBytes(content); - output.Write(buffer, 0, buffer.Length); - } - } - } - - - [TestMethod] - [ExpectedException(typeof(System.ArgumentNullException))] - public void ZOS_Create_NullBuffer_wi12964() - { - using (var zip = new Ionic.Zip.ZipOutputStream(new MemoryStream())) - { - zip.PutNextEntry("EmptyFile.txt"); - zip.Write(null, 0, 0); - //zip.Write(new byte[1], 0, 0); - } - } - - [TestMethod] - public void ZOS_Create_ZeroByteEntry_wi12964() - { - using (var zip = new Ionic.Zip.ZipOutputStream(new MemoryStream())) - { - zip.PutNextEntry("EmptyFile.txt"); - zip.Write(new byte[1], 0, 0); - } - } - - - [TestMethod] - public void AddEntry_JitProvided() - { - for (int i = 0; i < crypto.Length; i++) - { - for (int k = 0; k < compLevels.Length; k++) - { - string zipFileToCreate = String.Format("AddEntry_JitProvided.{0}.{1}.zip", i, k); - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip); - string password = Path.GetRandomFileName(); - - using (var zip = new ZipFile()) - { - TestContext.WriteLine("================================="); - TestContext.WriteLine("Creating {0}...", Path.GetFileName(zipFileToCreate)); - TestContext.WriteLine("Encryption({0}) Compression({1}) pw({2})", - crypto[i].ToString(), compLevels[k].ToString(), password); - - zip.Password = password; - zip.Encryption = crypto[i]; - zip.CompressionLevel = compLevels[k]; - - foreach (var file in files) - zip.AddEntry(file, - (name) => File.OpenRead(name), - (name, stream) => stream.Close() - ); - zip.Save(zipFileToCreate); - } - - if (crypto[i] == EncryptionAlgorithm.None) - BasicVerifyZip(zipFileToCreate); - else - BasicVerifyZip(zipFileToCreate, password); - - Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate), - "Trial ({0},{1}): The zip file created has the wrong number of entries.", i, k); - } - } - } - - - - private delegate void TestCompressionLevels(string[] files, - EncryptionAlgorithm crypto, - bool seekable, - int cycle, - string format, - int fileOutputOption); - - private void _TestDriver(TestCompressionLevels test, string label, bool seekable, bool zero) - { - _TestDriver(test, label, seekable, zero, 0); - } - - - private void _TestDriver(TestCompressionLevels test, string label, bool seekable, bool zero, int fileOutputOption) - { - int[] fileCounts = new int[] { 1, 2, _rnd.Next(14) + 13 }; - - for (int j = 0; j < fileCounts.Length; j++) - { - string dirToZip = String.Format("subdir{0}", j); - string[] files = null; - if (zero) - { - // zero length files - Directory.CreateDirectory(dirToZip); - files = new string[fileCounts[j]]; - for (int i = 0; i < fileCounts[j]; i++) - files[i] = TestUtilities.CreateUniqueFile("zerolength", dirToZip); - } - else - files = TestUtilities.GenerateFilesFlat(dirToZip, fileCounts[j], 40000, 72000); - - - for (int i = 0; i < crypto.Length; i++) - { - string format = String.Format("{0}.{1}.count.{2}.Encrypt.{3}.Seek.{4}.Compress.{5}.zip", - label, - (zero) ? "ZeroBytes" : "regular", - fileCounts[j], - crypto[i].ToString(), - seekable ? "Oui" : "Non", - "{0}"); - - test(files, crypto[i], seekable, i, format, fileOutputOption); - } - } - } - - - - private void _Internal_AddEntry_WriteDelegate(string[] files, - EncryptionAlgorithm crypto, - bool seekable, - int cycle, - string format, - int ignored) - { - int bufferSize = 2048; - byte[] buffer = new byte[bufferSize]; - int n; - - for (int k = 0; k < compLevels.Length; k++) - { - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format(format, compLevels[k].ToString())); - string password = TestUtilities.GenerateRandomPassword(); - - using (var zip = new ZipFile()) - { - TestContext.WriteLine("================================="); - TestContext.WriteLine("Creating {0}...", Path.GetFileName(zipFileToCreate)); - TestContext.WriteLine("Encryption({0}) Compression({1}) pw({2})", - crypto.ToString(), compLevels[k].ToString(), password); - - zip.Password = password; - zip.Encryption = crypto; - zip.CompressionLevel = compLevels[k]; - - foreach (var file in files) - { - zip.AddEntry(file, (name, output) => - { - using (var input = File.OpenRead(name)) - { - while ((n = input.Read(buffer, 0, buffer.Length)) != 0) - { - output.Write(buffer, 0, n); - } - } - }); - } - - - if (!seekable) - { - // conditionally use a non-seekable output stream - using (var raw = File.Create(zipFileToCreate)) - { - using (var ns = new Ionic.Zip.Tests.NonSeekableOutputStream(raw)) - { - zip.Save(ns); - } - } - } - else - zip.Save(zipFileToCreate); - } - - BasicVerifyZip(Path.GetFileName(zipFileToCreate), password); - - Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate), - "Trial ({0},{1}): The zip file created has the wrong number of entries.", cycle, k); - } - } - - - - [TestMethod] - public void WriteDelegate() - { - _TestDriver(new TestCompressionLevels(_Internal_AddEntry_WriteDelegate), "WriteDelegate", true, false); - } - - - [TestMethod] - public void WriteDelegate_NonSeekable() - { - _TestDriver(new TestCompressionLevels(_Internal_AddEntry_WriteDelegate), "WriteDelegate", false, false); - } - - - [TestMethod] - public void WriteDelegate_ZeroBytes_wi8931() - { - _TestDriver(new TestCompressionLevels(_Internal_AddEntry_WriteDelegate), "WriteDelegate", true, true); - } - - - - [TestMethod] - public void ZOS_Create_ZeroBytes_Encrypt_NonSeekable() - { - // At one stage, using ZipOutputStream with Encryption and a - // non-seekable output stream did not work. DotNetZip was changed to be - // smarter, so that works now. This test verifies that combination - // of stuff. - - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - Directory.CreateDirectory(dirToZip); - int fileCount = _rnd.Next(4) + 1; - string[] files = new string[fileCount]; - for (int i = 0; i < fileCount; i++) - files[i] = TestUtilities.CreateUniqueFile("zerolength", dirToZip); - - for (int i = 0; i < crypto.Length; i++) - { - string format = String.Format("ZipOutputStream.ZeroBytes.filecount{0}.Encryption.{1}.NonSeekable.{2}.zip", - fileCount, - crypto[i], - "{0}"); - - _Internal_ZOS_Create(files, EncryptionAlgorithm.PkzipWeak, false, 99, format); - } - } - - - - [TestMethod, Timeout(45 * 60*1000)] - public void ZOS_over65534_EncryptPkZip_CompressDefault_Z64AsNecessary() - { - _ZOS_z64Over65534Entries(Zip64Option.AsNecessary, - EncryptionAlgorithm.PkzipWeak, - Ionic.Zlib.CompressionLevel.Default); - } - - [TestMethod, Timeout(2 * 60*60*1000)] - public void ZOS_over65534_EncryptWinZip_CompressDefault_Z64AsNecessary() - { - _ZOS_z64Over65534Entries(Zip64Option.AsNecessary, - EncryptionAlgorithm.WinZipAes256, - Ionic.Zlib.CompressionLevel.Default); - } - - [TestMethod, Timeout(45 * 60*1000)] - public void ZOS_over65534_EncryptNo_CompressDefault_Z64AsNecessary() - { - _ZOS_z64Over65534Entries(Zip64Option.AsNecessary, - EncryptionAlgorithm.None, - Ionic.Zlib.CompressionLevel.Default); - } - - - [TestMethod, Timeout(35 * 60 * 1000)] - [ExpectedException(typeof(System.InvalidOperationException))] - public void ZOS_over65534_FAIL() - { - _ZOS_z64Over65534Entries(Zip64Option.Never, - EncryptionAlgorithm.PkzipWeak, - Ionic.Zlib.CompressionLevel.Default); - } - - - - private void _ZOS_z64Over65534Entries - (Zip64Option z64option, - EncryptionAlgorithm encryption, - Ionic.Zlib.CompressionLevel compression) - { - TestContext.WriteLine("_ZOS_z64Over65534Entries hello: {0}", - DateTime.Now.ToString("G")); - int fileCount = _rnd.Next(14616) + 65536; - //int fileCount = _rnd.Next(146) + 5536; - TestContext.WriteLine("entries: {0}", fileCount); - var txrxLabel = - String.Format("ZOS #{0} 64({3}) E({1}) C({2})", - fileCount, - encryption.ToString(), - compression.ToString(), - z64option.ToString()); - - TestContext.WriteLine("label: {0}", txrxLabel); - string zipFileToCreate = - String.Format("ZOS.Zip64.over65534.{0}.{1}.{2}.zip", - z64option.ToString(), encryption.ToString(), - compression.ToString()); - - TestContext.WriteLine("zipFileToCreate: {0}", zipFileToCreate); - - _txrx = TestUtilities.StartProgressMonitor(zipFileToCreate, - txrxLabel, "starting up..."); - - TestContext.WriteLine("generating {0} entries ", fileCount); - _txrx.Send("pb 0 max 3"); // 2 stages: Write, Count, Verify - _txrx.Send("pb 0 value 0"); - - string password = Path.GetRandomFileName(); - - string statusString = String.Format("status Encryption:{0} Compression:{1}", - encryption.ToString(), - compression.ToString()); - - _txrx.Send(statusString); - - int dirCount = 0; - - using (FileStream fs = File.Create(zipFileToCreate)) - { - using (var output = new ZipOutputStream(fs)) - { - _txrx.Send("test " + txrxLabel); - System.Threading.Thread.Sleep(400); - _txrx.Send("pb 1 max " + fileCount); - _txrx.Send("pb 1 value 0"); - - output.Password = password; - output.Encryption = encryption; - output.CompressionLevel = compression; - output.EnableZip64 = z64option; - for (int k = 0; k < fileCount; k++) - { - if (_rnd.Next(7) == 0) - { - // make it a directory - string entryName = String.Format("{0:D4}/", k); - output.PutNextEntry(entryName); - dirCount++; - } - else - { - string entryName = String.Format("{0:D4}.txt", k); - output.PutNextEntry(entryName); - - // only a few entries are non-empty - if (_rnd.Next(18) == 0) - { - var block = TestUtilities.GenerateRandomAsciiString(); - string content = String.Format("This is the content for entry #{0}.\n", k); - int n = _rnd.Next(4) + 1; - for (int j=0; j < n; j++) - content+= block; - - byte[] buffer = Encoding.ASCII.GetBytes(content); - output.Write(buffer, 0, buffer.Length); - } - } - if (k % 1024 == 0) - _txrx.Send(String.Format("status saving ({0}/{1}) {2:N0}%", - k, fileCount, - ((double)k) / (0.01 * fileCount))); - else if (k % 256 == 0) - _txrx.Send("pb 1 value " + k); - } - } - } - - _txrx.Send("pb 1 max 1"); - _txrx.Send("pb 1 value 1"); - _txrx.Send("pb 0 step"); - - System.Threading.Thread.Sleep(400); - - TestContext.WriteLine("Counting entries ... " + DateTime.Now.ToString("G")); - _txrx.Send("status Counting entries..."); - Assert.AreEqual - (fileCount - dirCount, - TestUtilities.CountEntries(zipFileToCreate), - "{0}: The zip file created has the wrong number of entries.", - zipFileToCreate); - _txrx.Send("pb 0 step"); - System.Threading.Thread.Sleep(140); - - // basic verify. The output is really large, so we pass emitOutput=false . - _txrx.Send("status Verifying..."); - TestContext.WriteLine("Verifying ... " + DateTime.Now.ToString("G")); - _numExtracted = 0; - _numFilesToExtract = fileCount; - _txrx.Send("pb 1 max " + fileCount); - System.Threading.Thread.Sleep(200); - _txrx.Send("pb 1 value 0"); - BasicVerifyZip(zipFileToCreate, password, false, Streams_ExtractProgress); - _txrx.Send("pb 0 step"); - System.Threading.Thread.Sleep(800); - TestContext.WriteLine("Done ... " + DateTime.Now.ToString("G")); - } - - - - private int _numExtracted; - private int _numFilesToExtract; - void Streams_ExtractProgress(object sender, ExtractProgressEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Extracting_AfterExtractEntry: - _numExtracted++; - if ((_numExtracted % 512) == 0) - _txrx.Send("pb 1 value " + _numExtracted); - else if ((_numExtracted % 256) == 0) - _txrx.Send(String.Format("status extract {0}/{1} {2:N0}%", - _numExtracted, _numFilesToExtract, - _numExtracted / (0.01 *_numFilesToExtract))); - break; - } - } - - - - - [TestMethod] - [ExpectedException(typeof(System.InvalidOperationException))] - public void ZOS_Create_WriteBeforePutNextEntry() - { - string zipFileToCreate = "ZOS_Create_WriteBeforePutNextEntry.zip"; - using (var fs = File.Create(zipFileToCreate)) - { - using (var output = new ZipOutputStream(fs)) - { - //output.PutNextEntry("entry1.txt"); - byte[] buffer = Encoding.ASCII.GetBytes("This is the content for entry #1."); - output.Write(buffer, 0, buffer.Length); - } - } - } - - - - - [TestMethod] - public void ZOS_Create_Directories() - { - for (int i = 0; i < crypto.Length; i++) - { - for (int j = 0; j < compLevels.Length; j++) - { - string password = Path.GetRandomFileName(); - - for (int k = 0; k < 2; k++) - { - string zipFileToCreate = - String.Format("ZOS_Create_Directories.Encryption.{0}.{1}.{2}.zip", - crypto[i].ToString(), compLevels[j].ToString(), k); - - using (var fs = File.Create(zipFileToCreate)) - { - using (var output = new ZipOutputStream(fs)) - { - byte[] buffer; - output.Password = password; - output.Encryption = crypto[i]; - output.CompressionLevel = compLevels[j]; - output.PutNextEntry("entry1.txt"); - if (k == 0) - { - buffer = Encoding.ASCII.GetBytes("This is the content for entry #1."); - output.Write(buffer, 0, buffer.Length); - } - - output.PutNextEntry("entry2/"); // this will be a directory - output.PutNextEntry("entry3.txt"); - if (k == 0) - { - buffer = Encoding.ASCII.GetBytes("This is the content for entry #3."); - output.Write(buffer, 0, buffer.Length); - } - output.PutNextEntry("entry4.txt"); // a zero length entry - output.PutNextEntry("entry5.txt"); // zero length - } - } - - BasicVerifyZip(zipFileToCreate, password); - - Assert.AreEqual(4, TestUtilities.CountEntries(zipFileToCreate), - "Trial ({0},{1})", i, j); - } - } - } - } - - - - - - [TestMethod] - [ExpectedException(typeof(System.InvalidOperationException))] - public void ZOS_Create_Directories_Write() - { - for (int k = 0; k < 2; k++) - { - string zipFileToCreate = String.Format("ZOS_Create_Directories.{0}.zip", k); - using (var fs = File.Create(zipFileToCreate)) - { - using (var output = new ZipOutputStream(fs)) - { - byte[] buffer; - output.Encryption = EncryptionAlgorithm.None; - output.CompressionLevel = Ionic.Zlib.CompressionLevel.BestCompression; - output.PutNextEntry("entry1/"); - if (k == 0) - { - buffer = Encoding.ASCII.GetBytes("This is the content for entry #1."); - // this should fail - output.Write(buffer, 0, buffer.Length); - } - - output.PutNextEntry("entry2/"); // this will be a directory - output.PutNextEntry("entry3.txt"); - if (k == 0) - { - buffer = Encoding.ASCII.GetBytes("This is the content for entry #3."); - output.Write(buffer, 0, buffer.Length); - } - output.PutNextEntry("entry4.txt"); // this will be zero length - output.PutNextEntry("entry5.txt"); // this will be zero length - } - } - } - } - - - - [TestMethod] - public void ZOS_Create_EmptyEntries() - { - for (int i = 0; i < crypto.Length; i++) - { - for (int j = 0; j < compLevels.Length; j++) - { - string password = Path.GetRandomFileName(); - - for (int k = 0; k < 2; k++) - { - string zipFileToCreate = String.Format("ZOS_Create_EmptyEntries.Encryption.{0}.{1}.{2}.zip", - crypto[i].ToString(), compLevels[j].ToString(), k); - - using (var fs = File.Create(zipFileToCreate)) - { - using (var output = new ZipOutputStream(fs)) - { - byte[] buffer; - output.Password = password; - output.Encryption = crypto[i]; - output.CompressionLevel = compLevels[j]; - output.PutNextEntry("entry1.txt"); - if (k == 0) - { - buffer = Encoding.ASCII.GetBytes("This is the content for entry #1."); - output.Write(buffer, 0, buffer.Length); - } - - output.PutNextEntry("entry2.txt"); // this will be zero length - output.PutNextEntry("entry3.txt"); - if (k == 0) - { - buffer = Encoding.ASCII.GetBytes("This is the content for entry #3."); - output.Write(buffer, 0, buffer.Length); - } - output.PutNextEntry("entry4.txt"); // this will be zero length - output.PutNextEntry("entry5.txt"); // this will be zero length - } - } - - BasicVerifyZip(zipFileToCreate, password); - - Assert.AreEqual(5, TestUtilities.CountEntries(zipFileToCreate), - "Trial ({0},{1}): The zip file created has the wrong number of entries.", i, j); - } - } - } - } - - - - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void ZOS_Create_DuplicateEntry() - { - string zipFileToCreate = "ZOS_Create_DuplicateEntry.zip"; - - string entryName = Path.GetRandomFileName(); - - using (var fs = File.Create(zipFileToCreate)) - { - using (var output = new ZipOutputStream(fs)) - { - output.PutNextEntry(entryName); - output.PutNextEntry(entryName); - } - } - } - - - - [TestMethod] - public void ZOS_Create() - { - bool seekable = true; - bool zero = false; - _TestDriver(new TestCompressionLevels(_Internal_ZOS_Create), "ZipOutputStream", seekable, zero); - } - - [TestMethod] - public void ZOS_Create_file() - { - bool seekable = true; - bool zero = false; - int fileOutputOption = 1; - _TestDriver(new TestCompressionLevels(_Internal_ZOS_Create), "ZipOutputStream", seekable, zero, fileOutputOption); - } - - [TestMethod] - public void ZOS_Create_NonSeekable() - { - bool seekable = false; - bool zero = false; - _TestDriver(new TestCompressionLevels(_Internal_ZOS_Create), "ZipOutputStream", seekable, zero); - } - - [TestMethod] - public void ZOS_Create_ZeroLength_wi8933() - { - bool seekable = true; - bool zero = true; - _TestDriver(new TestCompressionLevels(_Internal_ZOS_Create), "ZipOutputStream", seekable, zero); - } - - [TestMethod] - public void ZOS_Create_ZeroLength_wi8933_file() - { - bool seekable = true; - bool zero = true; - int fileOutputOption = 1; - _TestDriver(new TestCompressionLevels(_Internal_ZOS_Create), "ZipOutputStream", seekable, zero, fileOutputOption); - } - - - private void _Internal_ZOS_Create(string[] files, - EncryptionAlgorithm crypto, - bool seekable, - int cycle, - string format) - { - _Internal_ZOS_Create(files, crypto, seekable, cycle, format, 0); - } - - - private void _Internal_ZOS_Create(string[] files, - EncryptionAlgorithm crypto, - bool seekable, - int cycle, - string format, - int fileOutputOption) - { - int BufferSize = 2048; - - for (int k = 0; k < compLevels.Length; k++) - { - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format(format, compLevels[k].ToString())); - string password = Path.GetRandomFileName(); - - TestContext.WriteLine("================================="); - TestContext.WriteLine("Creating {0}...", Path.GetFileName(zipFileToCreate)); - TestContext.WriteLine("Encryption({0}) Compression({1}) pw({2})", - crypto.ToString(), compLevels[k].ToString(), password); - - using (ZipOutputStream output = GetZipOutputStream(seekable, fileOutputOption, zipFileToCreate)) - { - if (crypto != EncryptionAlgorithm.None) - { - output.Password = password; - output.Encryption = crypto; - } - output.CompressionLevel = compLevels[k]; - - byte[] buffer = new byte[BufferSize]; - int n; - foreach (var file in files) - { - TestContext.WriteLine("file: {0}", file); - output.PutNextEntry(file); - using (var input = File.OpenRead(file)) - { - while ((n = input.Read(buffer, 0, buffer.Length)) > 0) - { - output.Write(buffer, 0, n); - } - } - } - } - - BasicVerifyZip(zipFileToCreate, password); - - Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate), - "Trial ({0},{1}): The zip file created has the wrong number of entries.", cycle, k); - } - } - - - private static ZipOutputStream GetZipOutputStream(bool seekable, int fileOutputOption, string zipFileToCreate) - { - if (fileOutputOption == 0) - { - Stream raw = File.Create(zipFileToCreate); - // conditionally use a non-seekable output stream - if (!seekable) - raw = new Ionic.Zip.Tests.NonSeekableOutputStream(raw); - - return new ZipOutputStream(raw); - } - - return new ZipOutputStream(zipFileToCreate); - } - - - - bool _pb2Set; - bool _pb1Set; - int _numSaving; - int _totalToSave; - - private void streams_SaveProgress(object sender, SaveProgressEventArgs e) - { - string msg; - switch (e.EventType) - { - case ZipProgressEventType.Saving_Started: - //_txrx.Send("status saving started..."); - _pb1Set = false; - _numSaving = 1; - break; - - case ZipProgressEventType.Saving_BeforeWriteEntry: - //_txrx.Send(String.Format("status Compressing {0}", e.CurrentEntry.FileName)); - if (!_pb1Set) - { - _txrx.Send(String.Format("pb 1 max {0}", e.EntriesTotal)); - _pb1Set = true; - } - _totalToSave = e.EntriesTotal; - _pb2Set = false; - break; - - case ZipProgressEventType.Saving_EntryBytesRead: - if (!_pb2Set) - { - _txrx.Send(String.Format("pb 2 max {0}", e.TotalBytesToTransfer)); - _pb2Set = true; - } - - // _txrx.Send(String.Format("status Saving entry {0}/{1} :: {2} :: {3}/{4}mb {5:N0}%", - // _numSaving, _totalToSave, - // e.CurrentEntry.FileName, - // e.BytesTransferred/(1024*1024), e.TotalBytesToTransfer/(1024*1024), - // ((double)e.BytesTransferred) / (0.01 * e.TotalBytesToTransfer))); - msg = String.Format("pb 2 value {0}", e.BytesTransferred); - _txrx.Send(msg); - //System.Threading.Thread.Sleep(40); - break; - - case ZipProgressEventType.Saving_AfterWriteEntry: - _txrx.Send("pb 1 step"); - _numSaving++; - break; - - case ZipProgressEventType.Saving_Completed: - //_txrx.Send("status Save completed"); - _pb1Set = false; - _pb2Set = false; - _txrx.Send("pb 1 max 1"); - _txrx.Send("pb 1 value 1"); - break; - } - } - - - [TestMethod] - public void ZipFile_JitStream_CloserTwice_wi10489() - { - int fileCount = 20 + _rnd.Next(20); - string zipFileToCreate = "CloserTwice.zip"; - string dirToZip = "fodder"; - var files = TestUtilities.GenerateFilesFlat(dirToZip, fileCount, 100, 72000); - - OpenDelegate opener = (name) => - { - TestContext.WriteLine("Opening {0}", name); - Stream s = File.OpenRead(Path.Combine(dirToZip,name)); - return s; - }; - - CloseDelegate closer = (e, s) => - { - TestContext.WriteLine("Closing {0}", e); - s.Dispose(); - }; - - TestContext.WriteLine("Creating zipfile {0}", zipFileToCreate); - using (var zip = new ZipFile()) - { - foreach (var file in files) - { - zip.AddEntry(Path.GetFileName(file),opener,closer); - } - zip.Save(zipFileToCreate); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - files.Length); - - BasicVerifyZip(zipFileToCreate); - } - - - [TestMethod] - public void JitStream_Update_wi13899() - { - int fileCount = 12 + _rnd.Next(16); - string dirToZip = "fodder"; - var files = TestUtilities.GenerateFilesFlat(dirToZip, fileCount, 100, 72000); - OpenDelegate opener = (name) => - { - TestContext.WriteLine("Opening {0}", name); - Stream s = File.OpenRead(Path.Combine(dirToZip,name)); - return s; - }; - - CloseDelegate closer = (e, s) => - { - TestContext.WriteLine("Closing {0}", e); - s.Dispose(); - }; - - // Two passes: first to call UpdateEntry() when no prior entry exists. - // Second to call UpdateEntry when a prior entry exists. - for (int j=0; j < 2; j++) - { - string zipFileToCreate = String.Format("wi13899-{0}.zip", j); - - TestContext.WriteLine(""); - TestContext.WriteLine("Creating zipfile {0}", zipFileToCreate); - if (j!=0) - { - using (var zip = new ZipFile(zipFileToCreate)) - { - foreach (var file in files) - { - zip.AddEntry(Path.GetFileName(file), "This is the content for file " + file); - } - zip.Save(); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - files.Length); - - BasicVerifyZip(zipFileToCreate); - - TestContext.WriteLine("Updating zipfile {0}", zipFileToCreate); - } - - using (var zip = new ZipFile(zipFileToCreate)) - { - foreach (var file in files) - { - zip.UpdateEntry(Path.GetFileName(file), opener, closer); - } - zip.Save(); - } - - BasicVerifyZip(zipFileToCreate); - // verify checksum here? - } - } - - - - [TestMethod, Timeout(30 * 60 * 1000)] // in ms. 30*60*100 == 30min - public void ZipFile_PDOS_LeakTest_wi10030() - { - // Test memory growth over many many cycles. - // There was a leak in the ParallelDeflateOutputStream, where - // the PDOS was not being GC'd. This test checks for that. - // - // If the error is present, this test will either timeout or - // throw an InsufficientMemoryException (or whatever). The - // timeout occurs because GC begins to get verrrrry - // sloooooow. IF the error is not present, this test will - // complete successfully, in about 20 minutes. - // - - string zipFileToCreate = "ZipFile_PDOS_LeakTest_wi10030.zip"; - int nCycles = 4096; - int nFiles = 3; - int sizeBase = 384 * 1024; - int sizeRange = 32 * 1024; - int count = 0; - byte[] buffer = new byte[1024]; - int n; - - // fill a couple memory streams with random text - MemoryStream[] ms = new MemoryStream[nFiles]; - for (int i = 0; i < ms.Length; i++) - { - ms[i] = new MemoryStream(); - int sz = sizeBase + _rnd.Next(sizeRange); - using (Stream rtg = new Ionic.Zip.Tests.Utilities.RandomTextInputStream(sz)) - { - while ((n = rtg.Read(buffer, 0, buffer.Length)) > 0) - { - ms[i].Write(buffer, 0, n); - } - } - } - buffer = null; - - OpenDelegate opener = (x) => - { - Stream s = ms[count % ms.Length]; - s.Seek(0L, SeekOrigin.Begin); - count++; - return s; - }; - - CloseDelegate closer = (e, s) => - { - //s.Close(); - }; - - string txrxLabel = "PDOS Leak Test"; - _txrx = TestUtilities.StartProgressMonitor("ZipFile_PDOS_LeakTest_wi10030", txrxLabel, "starting up..."); - - TestContext.WriteLine("Testing for leaks...."); - - _txrx.Send(String.Format("pb 0 max {0}", nCycles)); - _txrx.Send("pb 0 value 0"); - - for (int x = 0; x < nCycles; x++) - { - if (x != 0 && x % 16 == 0) - { - TestContext.WriteLine("Cycle {0}...", x); - string status = String.Format("status Cycle {0}/{1} {2:N0}%", - x + 1, nCycles, - ((x+1)/(0.01 * nCycles))); - _txrx.Send(status); - } - - using (ZipFile zip = new ZipFile()) - { - zip.ParallelDeflateThreshold = 128 * 1024; - zip.CompressionLevel = Ionic.Zlib.CompressionLevel.BestCompression; - //zip.SaveProgress += streams_SaveProgress; - for (int y = 0; y < nFiles; y++) - { - zip.AddEntry("Entry" + y + ".txt", opener, closer); - } - zip.Comment = "Produced at " + System.DateTime.UtcNow.ToString("G"); - zip.Save(zipFileToCreate); - } - - _txrx.Send("pb 0 step"); - } - - for (int i = 0; i < ms.Length; i++) - { - ms[i].Dispose(); - ms[i] = null; - } - ms = null; - } - - - - [TestMethod] - public void ZipOutputStream_Parallel() - { - int _sizeBase = 1024 * 1024; - int _sizeRange = 256 * 1024; - //int _sizeBase = 1024 * 256; - //int _sizeRange = 256 * 12; - var sw = new System.Diagnostics.Stopwatch(); - byte[] buffer = new byte[0x8000]; - int n = 0; - TimeSpan[] ts = new TimeSpan[2]; - int nFiles = _rnd.Next(8) + 8; - //int nFiles = 2; - string[] filenames = new string[nFiles]; - string dirToZip = Path.Combine(TopLevelDir, "dirToZip"); - - - string channel = String.Format("ZOS_Parallel{0:000}", _rnd.Next(1000)); - string txrxLabel = "ZipOutputStream Parallel"; - _txrx = TestUtilities.StartProgressMonitor(channel, txrxLabel, "starting up..."); - - TestContext.WriteLine("Creating {0} fodder files...", nFiles); - Directory.CreateDirectory(dirToZip); - - _txrx.Send(String.Format("pb 0 max {0}", nFiles)); - _txrx.Send("pb 0 value 0"); - - sw.Start(); - - for (int x = 0; x < nFiles; x++) - { - string status = String.Format("status Creating file {0}/{1}", x + 1, nFiles); - _txrx.Send(status); - - filenames[x] = Path.Combine(dirToZip, String.Format("file{0:000}.txt", x)); - using (var output = File.Create(filenames[x])) - { - using (Stream input = new Ionic.Zip.Tests.Utilities.RandomTextInputStream(_sizeBase + _rnd.Next(_sizeRange))) - { - while ((n = input.Read(buffer, 0, buffer.Length)) != 0) - { - output.Write(buffer, 0, n); - } - } - } - _txrx.Send("pb 0 step"); - } - sw.Stop(); - TestContext.WriteLine("file generation took {0}", sw.Elapsed); - - _txrx.Send(String.Format("pb 0 max {0}", crypto.Length)); - _txrx.Send("pb 0 value 0"); - - for (int i = 0; i < crypto.Length; i++) - { - //int c = i; - int c = (i + 2) % crypto.Length; - - _txrx.Send(String.Format("pb 1 max {0}", compLevels.Length)); - _txrx.Send("pb 1 value 0"); - - for (int j = 0; j < compLevels.Length; j++) - { - string password = Path.GetRandomFileName(); - - // I wanna do 2 cycles if there is compression, so I can compare MT - // vs 1T compression. The first cycle will ALWAYS use the threaded - // compression, the 2nd will NEVER use it. If - // CompressionLevel==None, then just do one cycle. - // - int kCycles = (compLevels[j] == Ionic.Zlib.CompressionLevel.None) - ? 1 - : 2; - - for (int k = 0; k < kCycles; k++) - { - // Also, I use Stopwatch to time the compression, and compare. - // In light of that, I wanna do one warmup, and then one timed - // trial (for t==0..2). But here again, if CompressionLevel==None, then I - // don't want to do a timing comparison, so I don't need 2 trials. - // Therefore, in that case, the "warmup" is the only trial I want to do. - // So when k==1 and Compression==None, do no cycles at all. - // - int tCycles = (compLevels[j] == Ionic.Zlib.CompressionLevel.None) - ? ((k == 0) ? 1 : 0) - : 2; - - if (k == 0) - { - _txrx.Send(String.Format("pb 2 max {0}", kCycles * tCycles)); - _txrx.Send("pb 2 value 0"); - } - - for (int t = 0; t < tCycles; t++) - { - TestContext.WriteLine(new String('-', 72)); - string zipFileToCreate = String.Format("ZipOutputStream_Parallel.E-{0}.C-{1}.{2}.{3}timed.zip", - crypto[c].ToString(), compLevels[j].ToString(), - (compLevels[j] == Ionic.Zlib.CompressionLevel.None) - ? "NA" - : (k == 0) ? "1T" : "MT", - (t == 0) ? "not-" : ""); - - TestContext.WriteLine("Trial {0}.{1}.{2}.{3}", i, j, k, t); - TestContext.WriteLine("Create zip file {0}", zipFileToCreate); - - _txrx.Send("status " + zipFileToCreate); - - sw.Reset(); - sw.Start(); - using (var output = new ZipOutputStream(zipFileToCreate)) - { - if (k == 0) - output.ParallelDeflateThreshold = -1L; // never - else - output.ParallelDeflateThreshold = 0L; // always - - output.Password = password; - output.Encryption = crypto[c]; // maybe "None" - output.CompressionLevel = compLevels[j]; - - _txrx.Send(String.Format("pb 3 max {0}", nFiles)); - _txrx.Send("pb 3 value 0"); - - for (int x = 0; x < nFiles; x++) - { - output.PutNextEntry(Path.GetFileName(filenames[x])); - using (var input = File.OpenRead(filenames[x])) - { - while ((n = input.Read(buffer, 0, buffer.Length)) > 0) - { - output.Write(buffer, 0, n); - } - } - _txrx.Send("pb 3 step"); - } - } - - sw.Stop(); - ts[k] = sw.Elapsed; - TestContext.WriteLine("compression took {0}", ts[k]); - - //if (t==0) - BasicVerifyZip(zipFileToCreate, password); - - Assert.AreEqual(nFiles, TestUtilities.CountEntries(zipFileToCreate), - "Trial ({0}.{1}.{2}.{3}): The zip file created has the wrong number of entries.", i, j, k, t); - - _txrx.Send("pb 2 step"); - } - - } - -#if NOT_DEBUGGING - // parallel is not always faster! - if (_sizeBase > 256 * 1024 && - compLevels[j] != Ionic.Zlib.CompressionLevel.None && - compLevels[j] != Ionic.Zlib.CompressionLevel.BestSpeed && - crypto[c] != EncryptionAlgorithm.WinZipAes256 && - crypto[c] != EncryptionAlgorithm.WinZipAes128 ) - Assert.IsTrue(ts[0]>ts[1], "Whoops! Cycle {0}.{1} (crypto({4}) Comp({5})): Parallel deflate is slower ({2}<{3})", - i, j, ts[0], ts[1], - crypto[c], - compLevels[j]); -#endif - _txrx.Send("pb 1 step"); - } - _txrx.Send("pb 0 step"); - } - - _txrx.Send("stop"); - } - - - - - - [TestMethod] - public void Streams_7z_Zip_ZeroLength() - { - _Internal_Streams_7z_Zip(0, "zero"); - } - - [TestMethod] - public void Streams_7z_Zip() - { - _Internal_Streams_7z_Zip(1, "nonzero"); - } - - [TestMethod] - public void Streams_7z_Zip_Mixed() - { - _Internal_Streams_7z_Zip(2, "mixed"); - } - - [TestMethod] - public void Streams_Winzip_Zip_Mixed_Password() - { - string password = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - _Internal_Streams_WinZip_Zip(2, password, "mixed"); - } - - [TestMethod] - public void Streams_Winzip_Zip() - { - _Internal_Streams_WinZip_Zip(1, null, "nonzero"); - } - - private string CreateZeroLengthFile(int ix, string directory) - { - string nameOfFileToCreate = Path.Combine(directory, String.Format("ZeroLength{0:D4}.txt", ix)); - using (var fs = File.Create(nameOfFileToCreate)) { } - return nameOfFileToCreate; - } - - - public void _Internal_Streams_7z_Zip(int flavor, string label) - { - if (!SevenZipIsPresent) - { - TestContext.WriteLine("skipping test [_Internal_Streams_7z_Zip] : SevenZip is not present"); - return; - } - - int[] fileCounts = { 1, 2, _rnd.Next(8) + 6, _rnd.Next(18) + 16, _rnd.Next(48) + 56 }; - - for (int m = 0; m < fileCounts.Length; m++) - { - string dirToZip = String.Format("trial{0:D2}", m); - if (!Directory.Exists(dirToZip)) Directory.CreateDirectory(dirToZip); - - int fileCount = fileCounts[m]; - string zipFileToCreate = Path.Combine(TopLevelDir, - String.Format("Streams_7z_Zip.{0}.{1}.{2}.zip", flavor, label, m)); - - string[] files = null; - if (flavor == 0) - { - // zero length files - files = new string[fileCount]; - for (int i = 0; i < fileCount; i++) - files[i] = CreateZeroLengthFile(i, dirToZip); - } - else if (flavor == 1) - files = TestUtilities.GenerateFilesFlat(dirToZip, fileCount, 100, 72000); - else - { - // mixed - files = new string[fileCount]; - for (int i = 0; i < fileCount; i++) - { - if (_rnd.Next(3) == 0) - files[i] = CreateZeroLengthFile(i, dirToZip); - else - { - files[i] = Path.Combine(dirToZip, String.Format("nonzero{0:D4}.txt", i)); - TestUtilities.CreateAndFillFileText(files[i], _rnd.Next(60000) + 100); - } - } - } - - // Create the zip archive via 7z.exe - this.Exec(sevenZip, String.Format("a {0} {1}", zipFileToCreate, dirToZip)); - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), files.Length, - "Incorrect number of entries in the zip file."); - - // extract the files - string extractDir = String.Format("extract{0:D2}", m); - byte[] buffer = new byte[2048]; - int n; - using (var raw = File.OpenRead(zipFileToCreate)) - { - using (var input = new ZipInputStream(raw)) - { - ZipEntry e; - while ((e = input.GetNextEntry()) != null) - { - TestContext.WriteLine("entry: {0}", e.FileName); - string outputPath = Path.Combine(extractDir, e.FileName); - if (e.IsDirectory) - { - // create the directory - Directory.CreateDirectory(outputPath); - } - else - { - // create the file - using (var output = File.Create(outputPath)) - { - while ((n = input.Read(buffer, 0, buffer.Length)) > 0) - { - output.Write(buffer, 0, n); - } - } - } - - // we don't set the timestamps or attributes - // on the file/directory. - } - } - } - - // winzip does not include the base path in the filename; - // 7zip does. - string[] filesUnzipped = Directory.GetFiles(Path.Combine(extractDir, dirToZip)); - - // Verify the number of files extracted - Assert.AreEqual(files.Length, filesUnzipped.Length, - "Incorrect number of files extracted."); - } - } - - - public void _Internal_Streams_WinZip_Zip(int fodderOption, string password, string label) - { - if (!WinZipIsPresent) - throw new Exception("skipping test [_Internal_Streams_WinZip_Zip] : winzip is not present"); - - int[] fileCounts = { 1, 2, _rnd.Next(8) + 6, _rnd.Next(18) + 16, _rnd.Next(48) + 56 }; - - for (int m = 0; m < fileCounts.Length; m++) - { - string dirToZip = String.Format("trial{0:D2}", m); - if (!Directory.Exists(dirToZip)) Directory.CreateDirectory(dirToZip); - - int fileCount = fileCounts[m]; - string zipFileToCreate = Path.Combine(TopLevelDir, - String.Format("Streams_Winzip_Zip.{0}.{1}.{2}.zip", fodderOption, label, m)); - - string[] files = null; - if (fodderOption == 0) - { - // zero length files - files = new string[fileCount]; - for (int i = 0; i < fileCount; i++) - files[i] = CreateZeroLengthFile(i, dirToZip); - } - else if (fodderOption == 1) - files = TestUtilities.GenerateFilesFlat(dirToZip, fileCount, 100, 72000); - else - { - // mixed - files = new string[fileCount]; - for (int i = 0; i < fileCount; i++) - { - if (_rnd.Next(3) == 0) - files[i] = CreateZeroLengthFile(i, dirToZip); - else - { - files[i] = Path.Combine(dirToZip, String.Format("nonzero{0:D4}.txt", i)); - TestUtilities.CreateAndFillFileText(files[i], _rnd.Next(60000) + 100); - } - } - } - - // Create the zip archive via WinZip.exe - string pwdOption = String.IsNullOrEmpty(password) ? "" : "-s" + password; - string formatString = "-a -p {0} -yx {1} {2}\\*.*"; - string wzzipOut = this.Exec(wzzip, String.Format(formatString, pwdOption, zipFileToCreate, dirToZip)); - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), files.Length, - "Incorrect number of entries in the zip file."); - - // extract the files - string extractDir = String.Format("extract{0:D2}", m); - Directory.CreateDirectory(extractDir); - byte[] buffer = new byte[2048]; - int n; - - using (var raw = File.OpenRead(zipFileToCreate)) - { - using (var input = new ZipInputStream(raw)) - { - input.Password = password; - ZipEntry e; - while ((e = input.GetNextEntry()) != null) - { - TestContext.WriteLine("entry: {0}", e.FileName); - string outputPath = Path.Combine(extractDir, e.FileName); - if (e.IsDirectory) - { - // create the directory - Directory.CreateDirectory(outputPath); - continue; - } - // create the file - using (var output = File.Create(outputPath)) - { - while ((n = input.Read(buffer, 0, buffer.Length)) > 0) - { - output.Write(buffer, 0, n); - } - } - - // we don't set the timestamps or attributes - // on the file/directory. - } - } - } - - string[] filesUnzipped = Directory.GetFiles(extractDir); - - // Verify the number of files extracted - Assert.AreEqual(files.Length, filesUnzipped.Length, - "Incorrect number of files extracted."); - } - } - - - - - [TestMethod] - public void ZIS_Crypto_zero() - { - _Internal_Streams_ZipInput_Encryption(0); - } - - [TestMethod] - public void ZIS_Crypto_zero_subdir() - { - _Internal_Streams_ZipInput_Encryption(3); - } - - [TestMethod] - public void ZIS_Crypto_nonzero() - { - _Internal_Streams_ZipInput_Encryption(1); - } - - - [TestMethod] - public void ZIS_Crypto_nonzero_subdir() - { - _Internal_Streams_ZipInput_Encryption(4); - } - - - [TestMethod] - public void ZIS_Crypto_mixed() - { - _Internal_Streams_ZipInput_Encryption(2); - } - - - [TestMethod] - public void ZIS_Crypto_mixed_subdir() - { - _Internal_Streams_ZipInput_Encryption(5); - } - - - - - - [TestMethod] - public void ZIS_Crypto_zero_file() - { - _Internal_Streams_ZipInput_Encryption(0, 1); - } - - [TestMethod] - public void ZIS_Crypto_zero_subdir_file() - { - - _Internal_Streams_ZipInput_Encryption(3, 1); - } - - [TestMethod] - public void ZIS_Crypto_nonzero_file() - { - _Internal_Streams_ZipInput_Encryption(1, 1); - } - - - [TestMethod] - public void ZIS_Crypto_nonzero_subdir_file() - { - _Internal_Streams_ZipInput_Encryption(4, 1); - } - - - [TestMethod] - public void ZIS_Crypto_mixed_file() - { - _Internal_Streams_ZipInput_Encryption(2, 1); - } - - - [TestMethod] - public void ZIS_Crypto_mixed_subdir_file() - { - _Internal_Streams_ZipInput_Encryption(5, 1); - } - - - - public void _Internal_Streams_ZipInput_Encryption(int fodderOption) - { - _Internal_Streams_ZipInput_Encryption(fodderOption, 0); - } - - - public void _Internal_Streams_ZipInput_Encryption(int fodderOption, int fileReadOption) - { - byte[] buffer = new byte[2048]; - int n; - - int[] fileCounts = { 1, - 2, - _rnd.Next(8) + 6, - _rnd.Next(18) + 16, - _rnd.Next(48) + 56 }; - - for (int m = 0; m < fileCounts.Length; m++) - { - string password = TestUtilities.GenerateRandomPassword(); - string dirToZip = String.Format("trial{0:D2}", m); - if (!Directory.Exists(dirToZip)) Directory.CreateDirectory(dirToZip); - - int fileCount = fileCounts[m]; - TestContext.WriteLine("====="); - TestContext.WriteLine("Trial {0} filecount={1}", m, fileCount); - - var files = (new Func( () => { - if (fodderOption == 0) - { - // zero length files - var a = new string[fileCount]; - for (int i = 0; i < fileCount; i++) - a[i] = CreateZeroLengthFile(i, dirToZip); - return a; - } - - if (fodderOption == 1) - return TestUtilities.GenerateFilesFlat(dirToZip, fileCount, 100, 72000); - - - // mixed = some zero and some not - var b = new string[fileCount]; - for (int i = 0; i < fileCount; i++) - { - if (_rnd.Next(3) == 0) - b[i] = CreateZeroLengthFile(i, dirToZip); - else - { - b[i] = Path.Combine(dirToZip, String.Format("nonzero{0:D4}.txt", i)); - TestUtilities.CreateAndFillFileText(b[i], _rnd.Next(60000) + 100); - } - } - return b; - }))(); - - - for (int i = 0; i < crypto.Length; i++) - { - EncryptionAlgorithm c = crypto[i]; - - string zipFileToCreate = - Path.Combine(TopLevelDir, - String.Format("ZIS_Crypto.{0}.count.{1:D2}.{2}.zip", - c.ToString(), fileCounts[m], fodderOption)); - - // Create the zip archive - using (var zip = new ZipFile()) - { - zip.Password = password; - zip.Encryption = c; - if (fodderOption > 2) - { - zip.AddDirectoryByName("subdir"); - zip.AddDirectory(dirToZip, "subdir"); - } - else - zip.AddDirectory(dirToZip); - - zip.Save(zipFileToCreate); - } - - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), files.Length, - "Incorrect number of entries in the zip file."); - - // extract the files - string extractDir = String.Format("extract{0:D2}.{1:D2}", m, i); - TestContext.WriteLine("Extract to: {0}", extractDir); - Directory.CreateDirectory(extractDir); - - var input = (new Func( () => { - if (fileReadOption == 0) - { - var raw = File.OpenRead(zipFileToCreate); - return new ZipInputStream(raw); - } - - return new ZipInputStream(zipFileToCreate); - }))(); - - using (input) - { - // set password if necessary - if (crypto[i] != EncryptionAlgorithm.None) - input.Password = password; - - ZipEntry e; - while ((e = input.GetNextEntry()) != null) - { - TestContext.WriteLine("entry: {0}", e.FileName); - string outputPath = Path.Combine(extractDir, e.FileName); - if (e.IsDirectory) - { - // create the directory - Directory.CreateDirectory(outputPath); - } - else - { - // emit the file - using (var output = File.Create(outputPath)) - { - while ((n = input.Read(buffer, 0, buffer.Length)) > 0) - { - output.Write(buffer, 0, n); - } - } - } - } - } - - string[] filesUnzipped = (fodderOption > 2) - ? Directory.GetFiles(Path.Combine(extractDir, "subdir")) - : Directory.GetFiles(extractDir); - - // Verify the number of files extracted - Assert.AreEqual(files.Length, filesUnzipped.Length, - "Incorrect number of files extracted. ({0}!={1})", files.Length, filesUnzipped.Length); - } - } - } - - - - - - [TestMethod] - public void ASPNET_GenerateZip() - { - string testBin = TestUtilities.GetTestBinDir(CurrentDir); - string resourceDir = Path.Combine(testBin, "Resources"); - string aspnetHost = Path.Combine(resourceDir, "AspNetHost.exe"); - Assert.IsTrue(File.Exists(aspnetHost), "file {0} does not exit.", aspnetHost); - string aspnetHostPdb = Path.Combine(resourceDir, "AspNetHost.pdb"); - - // page that generates a zip file. - string aspxPage = Path.Combine(resourceDir, "GenerateZip-cs.aspx"); - Assert.IsTrue(File.Exists(aspxPage)); - - string ionicZipDll = Path.Combine(testBin, "DotNetZip.dll"); - string loremFile = "LoremIpsum.txt"; - - Action copyToBin = (x) => - File.Copy(x, Path.Combine("bin", - Path.GetFileName(x))); - Directory.CreateDirectory("bin"); - copyToBin(aspnetHost); - copyToBin(aspnetHostPdb); - copyToBin(ionicZipDll); - File.Copy(aspxPage, Path.GetFileName(aspxPage)); - File.WriteAllText(loremFile, TestUtilities.LoremIpsum); - - string zipFileToCreate = "ASPX-output.out"; - string binAspNetHostExe = Path.Combine("bin", - Path.GetFileName(aspnetHost)); - string urlRequest = Path.GetFileName(aspxPage) + "?file=LoremIpsum.txt"; - - int rc = this.ExecRedirectStdOut(binAspNetHostExe, - urlRequest, - zipFileToCreate); - - Assert.AreEqual(rc, 0, "Non-zero RC: ({0})", rc); - - int nEntries = TestUtilities.CountEntries(zipFileToCreate); - Assert.AreEqual(nEntries, - 2, "wrong number of entries ({0})", nEntries); - - string extractDir = "extract"; - // read/extract the generated zip - using (var zip = ZipFile.Read(zipFileToCreate)) - { - foreach (var e in zip) - { - e.Extract(extractDir); - } - } - - // compare checksums - var chk1 = TestUtilities.ComputeChecksum(loremFile); - var chk2 = TestUtilities.ComputeChecksum(Path.Combine(extractDir,loremFile)); - string s1 = TestUtilities.CheckSumToString(chk1); - string s2 = TestUtilities.CheckSumToString(chk2); - Assert.AreEqual(s1, s2, "Unexpected checksum on extracted file."); - } - - - void CopyStream(Stream source, Stream dest) - { - int n; - var buf = new byte[2048]; - while ((n= source.Read(buf, 0, buf.Length)) > 0) - { - dest.Write(buf,0,n); - } - } - - - [TestMethod] - public void ZIS_ZOS_VaryCompression() - { - string testBin = TestUtilities.GetTestBinDir(CurrentDir); - string resourceDir = Path.Combine(testBin, "Resources"); - var filesToAdd = Directory.GetFiles(resourceDir); - - Func chooseCompression = (ix, cycle) => { - var name = Path.GetFileName(filesToAdd[ix]); - switch (cycle) - { - case 0: - return !(name.EndsWith(".zip") || - name.EndsWith(".docx") || - name.EndsWith(".xslx")); - case 1: - return ((ix%2)==0); - - default: - return (ix == filesToAdd.Length - 1); - } - }; - - // Three cycles - three different ways to vary compression - for (int k=0; k < 3; k++) - { - string zipFileToCreate = String.Format("VaryCompression-{0}.zip", k); - - TestContext.WriteLine(""); - TestContext.WriteLine("Creating zip, cycle {0}", k); - using (var fileStream = File.OpenWrite(zipFileToCreate)) - { - using (var zos = new ZipOutputStream(fileStream, true)) - { - for (int i=0; i < filesToAdd.Length; i++) - { - var file = filesToAdd[i]; - var shortName = Path.GetFileName(file); - bool compress = chooseCompression(i, k); - - if (compress) - zos.CompressionLevel = Ionic.Zlib.CompressionLevel.Default; - else - zos.CompressionLevel = Ionic.Zlib.CompressionLevel.None; - - zos.PutNextEntry(shortName); - using (var input = File.OpenRead(file)) - { - CopyStream(input, zos); - } - } - } - } - - TestContext.WriteLine(""); - TestContext.WriteLine("Extracting cycle {0}", k); - string extractDir = "extract-" + k; - Directory.CreateDirectory(extractDir); - using (var raw = File.OpenRead(zipFileToCreate)) - { - using (var input = new ZipInputStream(raw)) - { - ZipEntry e; - while ((e = input.GetNextEntry()) != null) - { - TestContext.WriteLine("entry: {0}", e.FileName); - string outputPath = Path.Combine(extractDir, e.FileName); - if (e.IsDirectory) - { - // create the directory - Directory.CreateDirectory(outputPath); - } - else - { - // create the file - using (var output = File.Create(outputPath)) - { - CopyStream(input,output); - } - } - } - } - } - - string[] filesUnzipped = Directory.GetFiles(extractDir); - Assert.AreEqual(filesToAdd.Length, filesUnzipped.Length, - "Incorrect number of files extracted."); - - } - } - - } -} +// Streams.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009-2011 Dino Chiesa +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// Last Saved: <2011-July-28 07:33:02> +// +// ------------------------------------------------------------------ +// +// This module defines tests for Streams interfaces into DotNetZip, that +// DotNetZip can write to streams, read from streams, ZipOutputStream, +// ZipInputStream, etc. +// +// ------------------------------------------------------------------ + +using System; +using System.IO; +using System.Text; +using System.Collections.Generic; +using Microsoft.VisualStudio.TestTools.UnitTesting; + +using Ionic.Zip; +using Ionic.Zlib; +using Ionic.Zip.Tests.Utilities; + + +namespace Ionic.Zip.Tests.Streams +{ + /// + /// Summary description for StreamsTests + /// + [TestClass] + public class StreamsTests : IonicTestClass + { + public StreamsTests() : base() { } + + EncryptionAlgorithm[] crypto = + { + EncryptionAlgorithm.None, + EncryptionAlgorithm.PkzipWeak, + EncryptionAlgorithm.WinZipAes128, + EncryptionAlgorithm.WinZipAes256, + }; + +#if NOT + EncryptionAlgorithm[] cryptoNoPkzip = + { + EncryptionAlgorithm.None, + EncryptionAlgorithm.WinZipAes128, + EncryptionAlgorithm.WinZipAes256, + }; +#endif + + Ionic.Zlib.CompressionLevel[] compLevels = + { + Ionic.Zlib.CompressionLevel.None, + Ionic.Zlib.CompressionLevel.BestSpeed, + Ionic.Zlib.CompressionLevel.Default, + Ionic.Zlib.CompressionLevel.BestCompression, + }; + + Zip64Option[] z64 = + { + Zip64Option.Never, + Zip64Option.AsNecessary, + Zip64Option.Always, + }; + + + [TestMethod] + public void ZOS_Create_Encrypt_wi12815() + { + string zipFileToCreate = + "ZOS_Create_Encrypt_wi12815.zip"; + + var content = new byte[1789]; + unchecked + { + byte b = 0; + for (var i = 0; i < content.Length; i++, b++) + { + content[i] = b; + } + } + + var checkBuffer = new Action(stage => + { + byte b = 0; + TestContext.WriteLine("Checking buffer ({0})", stage); + for (var i = 0; i < content.Length; i++, b++) + { + Assert.IsTrue((content[i] == b), + "Buffer was modified."); + } + }); + + checkBuffer("before"); + + using (var fileStream = File.OpenWrite(zipFileToCreate)) + { + using (var zipStream = new ZipOutputStream(fileStream, true)) + { + zipStream.CompressionLevel = Ionic.Zlib.CompressionLevel.None; + zipStream.Password = "mydummypassword"; + zipStream.Encryption = EncryptionAlgorithm.WinZipAes256; + zipStream.PutNextEntry("myentry.myext"); + zipStream.Write(content, 0, content.Length); + } + } + + checkBuffer("after"); + } + + + + + [TestMethod] + public void ReadZip_OpenReader() + { + string[] passwords = { null, Path.GetRandomFileName(), "EE", "***()" }; + + for (int j = 0; j < compLevels.Length; j++) + { + for (int k = 0; k < passwords.Length; k++) + { + string zipFileToCreate = String.Format("ReadZip_OpenReader-{0}-{1}.zip", j, k); + //int entriesAdded = 0; + //String filename = null; + string dirToZip = String.Format("dirToZip.{0}.{1}", j, k); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + + using (ZipFile zip1 = new ZipFile()) + { + zip1.CompressionLevel = compLevels[j]; + zip1.Password = passwords[k]; + zip1.AddDirectory(dirToZip,dirToZip); + zip1.Save(zipFileToCreate); + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + files.Length, + String.Format("Trial ({0},{1})", j, k)); + + int i = 0; + ZipEntry e1 = null; + Func opener = () => { + if (i == 0) + return e1.OpenReader(); + if (i == 1) + return e1.OpenReader(passwords[k]); + + e1.Password = passwords[k]; + return e1.OpenReader(); + }; + + // now extract the files and verify their contents + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + for (i = 0; i < 3; i++) + { + // try once with Password set on ZipFile, + // another with password on the entry, and + // a third time with password passed into the OpenReader() method. + if (i == 0) zip2.Password = passwords[k]; + + foreach (string eName in zip2.EntryFileNames) + { + e1 = zip2[eName]; + if (e1.IsDirectory) continue; + + using (var s = opener()) + { + string outFile = String.Format("{0}.{1}.out", eName, i); + int totalBytesRead = 0; + using (var output = File.Create(outFile)) + { + byte[] buffer = new byte[4096]; + int n; + while ((n = s.Read(buffer, 0, buffer.Length)) > 0) + { + totalBytesRead += n; + output.Write(buffer, 0, n); + } + } + + TestContext.WriteLine("CRC expected({0:X8}) actual({1:X8})", + e1.Crc, s.Crc); + Assert.AreEqual(s.Crc, e1.Crc, + string.Format("{0} :: CRC Mismatch", eName)); + Assert.AreEqual(totalBytesRead, (int)e1.UncompressedSize, + string.Format("We read an unexpected number of bytes. ({0})", eName)); + } + } + } + } + } + } + } + + + [TestMethod] + public void ZOS_Create_WithComment_wi10339() + { + string zipFileToCreate = "ZOS_Create_WithComment_wi10339.zip"; + using (var fs = File.Create(zipFileToCreate)) + { + using (var output = new ZipOutputStream(fs)) + { + output.CompressionLevel = Ionic.Zlib.CompressionLevel.None; + output.Comment = "Cheeso is the man!"; + string entryName = String.Format("entry{0:D4}.txt", _rnd.Next(10000)); + output.PutNextEntry(entryName); + string content = "This is the content for the entry."; + byte[] buffer = Encoding.ASCII.GetBytes(content); + output.Write(buffer, 0, buffer.Length); + } + } + } + + + [TestMethod] + [ExpectedException(typeof(System.ArgumentNullException))] + public void ZOS_Create_NullBuffer_wi12964() + { + using (var zip = new Ionic.Zip.ZipOutputStream(new MemoryStream())) + { + zip.PutNextEntry("EmptyFile.txt"); + zip.Write(null, 0, 0); + //zip.Write(new byte[1], 0, 0); + } + } + + [TestMethod] + public void ZOS_Create_ZeroByteEntry_wi12964() + { + using (var zip = new Ionic.Zip.ZipOutputStream(new MemoryStream())) + { + zip.PutNextEntry("EmptyFile.txt"); + zip.Write(new byte[1], 0, 0); + } + } + + + [TestMethod] + public void AddEntry_JitProvided() + { + for (int i = 0; i < crypto.Length; i++) + { + for (int k = 0; k < compLevels.Length; k++) + { + string zipFileToCreate = String.Format("AddEntry_JitProvided.{0}.{1}.zip", i, k); + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip); + string password = Path.GetRandomFileName(); + + using (var zip = new ZipFile()) + { + TestContext.WriteLine("================================="); + TestContext.WriteLine("Creating {0}...", Path.GetFileName(zipFileToCreate)); + TestContext.WriteLine("Encryption({0}) Compression({1}) pw({2})", + crypto[i].ToString(), compLevels[k].ToString(), password); + + zip.Password = password; + zip.Encryption = crypto[i]; + zip.CompressionLevel = compLevels[k]; + + foreach (var file in files) + zip.AddEntry(file, + (name) => File.OpenRead(name), + (name, stream) => stream.Close() + ); + zip.Save(zipFileToCreate); + } + + if (crypto[i] == EncryptionAlgorithm.None) + BasicVerifyZip(zipFileToCreate); + else + BasicVerifyZip(zipFileToCreate, password); + + Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate), + "Trial ({0},{1}): The zip file created has the wrong number of entries.", i, k); + } + } + } + + + + private delegate void TestCompressionLevels(string[] files, + EncryptionAlgorithm crypto, + bool seekable, + int cycle, + string format, + int fileOutputOption); + + private void _TestDriver(TestCompressionLevels test, string label, bool seekable, bool zero) + { + _TestDriver(test, label, seekable, zero, 0); + } + + + private void _TestDriver(TestCompressionLevels test, string label, bool seekable, bool zero, int fileOutputOption) + { + int[] fileCounts = new int[] { 1, 2, _rnd.Next(14) + 13 }; + + for (int j = 0; j < fileCounts.Length; j++) + { + string dirToZip = String.Format("subdir{0}", j); + string[] files = null; + if (zero) + { + // zero length files + Directory.CreateDirectory(dirToZip); + files = new string[fileCounts[j]]; + for (int i = 0; i < fileCounts[j]; i++) + files[i] = TestUtilities.CreateUniqueFile("zerolength", dirToZip); + } + else + files = TestUtilities.GenerateFilesFlat(dirToZip, fileCounts[j], 40000, 72000); + + + for (int i = 0; i < crypto.Length; i++) + { + string format = String.Format("{0}.{1}.count.{2}.Encrypt.{3}.Seek.{4}.Compress.{5}.zip", + label, + (zero) ? "ZeroBytes" : "regular", + fileCounts[j], + crypto[i].ToString(), + seekable ? "Oui" : "Non", + "{0}"); + + test(files, crypto[i], seekable, i, format, fileOutputOption); + } + } + } + + + + private void _Internal_AddEntry_WriteDelegate(string[] files, + EncryptionAlgorithm crypto, + bool seekable, + int cycle, + string format, + int ignored) + { + int bufferSize = 2048; + byte[] buffer = new byte[bufferSize]; + int n; + + for (int k = 0; k < compLevels.Length; k++) + { + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format(format, compLevels[k].ToString())); + string password = TestUtilities.GenerateRandomPassword(); + + using (var zip = new ZipFile()) + { + TestContext.WriteLine("================================="); + TestContext.WriteLine("Creating {0}...", Path.GetFileName(zipFileToCreate)); + TestContext.WriteLine("Encryption({0}) Compression({1}) pw({2})", + crypto.ToString(), compLevels[k].ToString(), password); + + zip.Password = password; + zip.Encryption = crypto; + zip.CompressionLevel = compLevels[k]; + + foreach (var file in files) + { + zip.AddEntry(file, (name, output) => + { + using (var input = File.OpenRead(name)) + { + while ((n = input.Read(buffer, 0, buffer.Length)) != 0) + { + output.Write(buffer, 0, n); + } + } + }); + } + + + if (!seekable) + { + // conditionally use a non-seekable output stream + using (var raw = File.Create(zipFileToCreate)) + { + using (var ns = new Ionic.Zip.Tests.NonSeekableOutputStream(raw)) + { + zip.Save(ns); + } + } + } + else + zip.Save(zipFileToCreate); + } + + BasicVerifyZip(Path.GetFileName(zipFileToCreate), password); + + Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate), + "Trial ({0},{1}): The zip file created has the wrong number of entries.", cycle, k); + } + } + + + + [TestMethod] + public void WriteDelegate() + { + _TestDriver(new TestCompressionLevels(_Internal_AddEntry_WriteDelegate), "WriteDelegate", true, false); + } + + + [TestMethod] + public void WriteDelegate_NonSeekable() + { + _TestDriver(new TestCompressionLevels(_Internal_AddEntry_WriteDelegate), "WriteDelegate", false, false); + } + + + [TestMethod] + public void WriteDelegate_ZeroBytes_wi8931() + { + _TestDriver(new TestCompressionLevels(_Internal_AddEntry_WriteDelegate), "WriteDelegate", true, true); + } + + + + [TestMethod] + public void ZOS_Create_ZeroBytes_Encrypt_NonSeekable() + { + // At one stage, using ZipOutputStream with Encryption and a + // non-seekable output stream did not work. DotNetZip was changed to be + // smarter, so that works now. This test verifies that combination + // of stuff. + + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + Directory.CreateDirectory(dirToZip); + int fileCount = _rnd.Next(4) + 1; + string[] files = new string[fileCount]; + for (int i = 0; i < fileCount; i++) + files[i] = TestUtilities.CreateUniqueFile("zerolength", dirToZip); + + for (int i = 0; i < crypto.Length; i++) + { + string format = String.Format("ZipOutputStream.ZeroBytes.filecount{0}.Encryption.{1}.NonSeekable.{2}.zip", + fileCount, + crypto[i], + "{0}"); + + _Internal_ZOS_Create(files, EncryptionAlgorithm.PkzipWeak, false, 99, format); + } + } + + + + [TestMethod, Timeout(45 * 60*1000)] + public void ZOS_over65534_EncryptPkZip_CompressDefault_Z64AsNecessary() + { + _ZOS_z64Over65534Entries(Zip64Option.AsNecessary, + EncryptionAlgorithm.PkzipWeak, + Ionic.Zlib.CompressionLevel.Default); + } + + [TestMethod, Timeout(2 * 60*60*1000)] + public void ZOS_over65534_EncryptWinZip_CompressDefault_Z64AsNecessary() + { + _ZOS_z64Over65534Entries(Zip64Option.AsNecessary, + EncryptionAlgorithm.WinZipAes256, + Ionic.Zlib.CompressionLevel.Default); + } + + [TestMethod, Timeout(45 * 60*1000)] + public void ZOS_over65534_EncryptNo_CompressDefault_Z64AsNecessary() + { + _ZOS_z64Over65534Entries(Zip64Option.AsNecessary, + EncryptionAlgorithm.None, + Ionic.Zlib.CompressionLevel.Default); + } + + + [TestMethod, Timeout(35 * 60 * 1000)] + [ExpectedException(typeof(System.InvalidOperationException))] + public void ZOS_over65534_FAIL() + { + _ZOS_z64Over65534Entries(Zip64Option.Never, + EncryptionAlgorithm.PkzipWeak, + Ionic.Zlib.CompressionLevel.Default); + } + + + + private void _ZOS_z64Over65534Entries + (Zip64Option z64option, + EncryptionAlgorithm encryption, + Ionic.Zlib.CompressionLevel compression) + { + TestContext.WriteLine("_ZOS_z64Over65534Entries hello: {0}", + DateTime.Now.ToString("G")); + int fileCount = _rnd.Next(14616) + 65536; + //int fileCount = _rnd.Next(146) + 5536; + TestContext.WriteLine("entries: {0}", fileCount); + var txrxLabel = + String.Format("ZOS #{0} 64({3}) E({1}) C({2})", + fileCount, + encryption.ToString(), + compression.ToString(), + z64option.ToString()); + + TestContext.WriteLine("label: {0}", txrxLabel); + string zipFileToCreate = + String.Format("ZOS.Zip64.over65534.{0}.{1}.{2}.zip", + z64option.ToString(), encryption.ToString(), + compression.ToString()); + + TestContext.WriteLine("zipFileToCreate: {0}", zipFileToCreate); + + _txrx = TestUtilities.StartProgressMonitor(zipFileToCreate, + txrxLabel, "starting up..."); + + TestContext.WriteLine("generating {0} entries ", fileCount); + _txrx.Send("pb 0 max 3"); // 2 stages: Write, Count, Verify + _txrx.Send("pb 0 value 0"); + + string password = Path.GetRandomFileName(); + + string statusString = String.Format("status Encryption:{0} Compression:{1}", + encryption.ToString(), + compression.ToString()); + + _txrx.Send(statusString); + + int dirCount = 0; + + using (FileStream fs = File.Create(zipFileToCreate)) + { + using (var output = new ZipOutputStream(fs)) + { + _txrx.Send("test " + txrxLabel); + System.Threading.Thread.Sleep(400); + _txrx.Send("pb 1 max " + fileCount); + _txrx.Send("pb 1 value 0"); + + output.Password = password; + output.Encryption = encryption; + output.CompressionLevel = compression; + output.EnableZip64 = z64option; + for (int k = 0; k < fileCount; k++) + { + if (_rnd.Next(7) == 0) + { + // make it a directory + string entryName = String.Format("{0:D4}/", k); + output.PutNextEntry(entryName); + dirCount++; + } + else + { + string entryName = String.Format("{0:D4}.txt", k); + output.PutNextEntry(entryName); + + // only a few entries are non-empty + if (_rnd.Next(18) == 0) + { + var block = TestUtilities.GenerateRandomAsciiString(); + string content = String.Format("This is the content for entry #{0}.\n", k); + int n = _rnd.Next(4) + 1; + for (int j=0; j < n; j++) + content+= block; + + byte[] buffer = Encoding.ASCII.GetBytes(content); + output.Write(buffer, 0, buffer.Length); + } + } + if (k % 1024 == 0) + _txrx.Send(String.Format("status saving ({0}/{1}) {2:N0}%", + k, fileCount, + ((double)k) / (0.01 * fileCount))); + else if (k % 256 == 0) + _txrx.Send("pb 1 value " + k); + } + } + } + + _txrx.Send("pb 1 max 1"); + _txrx.Send("pb 1 value 1"); + _txrx.Send("pb 0 step"); + + System.Threading.Thread.Sleep(400); + + TestContext.WriteLine("Counting entries ... " + DateTime.Now.ToString("G")); + _txrx.Send("status Counting entries..."); + Assert.AreEqual + (fileCount - dirCount, + TestUtilities.CountEntries(zipFileToCreate), + "{0}: The zip file created has the wrong number of entries.", + zipFileToCreate); + _txrx.Send("pb 0 step"); + System.Threading.Thread.Sleep(140); + + // basic verify. The output is really large, so we pass emitOutput=false . + _txrx.Send("status Verifying..."); + TestContext.WriteLine("Verifying ... " + DateTime.Now.ToString("G")); + _numExtracted = 0; + _numFilesToExtract = fileCount; + _txrx.Send("pb 1 max " + fileCount); + System.Threading.Thread.Sleep(200); + _txrx.Send("pb 1 value 0"); + BasicVerifyZip(zipFileToCreate, password, false, Streams_ExtractProgress); + _txrx.Send("pb 0 step"); + System.Threading.Thread.Sleep(800); + TestContext.WriteLine("Done ... " + DateTime.Now.ToString("G")); + } + + + + private int _numExtracted; + private int _numFilesToExtract; + void Streams_ExtractProgress(object sender, ExtractProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Extracting_AfterExtractEntry: + _numExtracted++; + if ((_numExtracted % 512) == 0) + _txrx.Send("pb 1 value " + _numExtracted); + else if ((_numExtracted % 256) == 0) + _txrx.Send(String.Format("status extract {0}/{1} {2:N0}%", + _numExtracted, _numFilesToExtract, + _numExtracted / (0.01 *_numFilesToExtract))); + break; + } + } + + + + + [TestMethod] + [ExpectedException(typeof(System.InvalidOperationException))] + public void ZOS_Create_WriteBeforePutNextEntry() + { + string zipFileToCreate = "ZOS_Create_WriteBeforePutNextEntry.zip"; + using (var fs = File.Create(zipFileToCreate)) + { + using (var output = new ZipOutputStream(fs)) + { + //output.PutNextEntry("entry1.txt"); + byte[] buffer = Encoding.ASCII.GetBytes("This is the content for entry #1."); + output.Write(buffer, 0, buffer.Length); + } + } + } + + + + + [TestMethod] + public void ZOS_Create_Directories() + { + for (int i = 0; i < crypto.Length; i++) + { + for (int j = 0; j < compLevels.Length; j++) + { + string password = Path.GetRandomFileName(); + + for (int k = 0; k < 2; k++) + { + string zipFileToCreate = + String.Format("ZOS_Create_Directories.Encryption.{0}.{1}.{2}.zip", + crypto[i].ToString(), compLevels[j].ToString(), k); + + using (var fs = File.Create(zipFileToCreate)) + { + using (var output = new ZipOutputStream(fs)) + { + byte[] buffer; + output.Password = password; + output.Encryption = crypto[i]; + output.CompressionLevel = compLevels[j]; + output.PutNextEntry("entry1.txt"); + if (k == 0) + { + buffer = Encoding.ASCII.GetBytes("This is the content for entry #1."); + output.Write(buffer, 0, buffer.Length); + } + + output.PutNextEntry("entry2/"); // this will be a directory + output.PutNextEntry("entry3.txt"); + if (k == 0) + { + buffer = Encoding.ASCII.GetBytes("This is the content for entry #3."); + output.Write(buffer, 0, buffer.Length); + } + output.PutNextEntry("entry4.txt"); // a zero length entry + output.PutNextEntry("entry5.txt"); // zero length + } + } + + BasicVerifyZip(zipFileToCreate, password); + + Assert.AreEqual(4, TestUtilities.CountEntries(zipFileToCreate), + "Trial ({0},{1})", i, j); + } + } + } + } + + + + + + [TestMethod] + [ExpectedException(typeof(System.InvalidOperationException))] + public void ZOS_Create_Directories_Write() + { + for (int k = 0; k < 2; k++) + { + string zipFileToCreate = String.Format("ZOS_Create_Directories.{0}.zip", k); + using (var fs = File.Create(zipFileToCreate)) + { + using (var output = new ZipOutputStream(fs)) + { + byte[] buffer; + output.Encryption = EncryptionAlgorithm.None; + output.CompressionLevel = Ionic.Zlib.CompressionLevel.BestCompression; + output.PutNextEntry("entry1/"); + if (k == 0) + { + buffer = Encoding.ASCII.GetBytes("This is the content for entry #1."); + // this should fail + output.Write(buffer, 0, buffer.Length); + } + + output.PutNextEntry("entry2/"); // this will be a directory + output.PutNextEntry("entry3.txt"); + if (k == 0) + { + buffer = Encoding.ASCII.GetBytes("This is the content for entry #3."); + output.Write(buffer, 0, buffer.Length); + } + output.PutNextEntry("entry4.txt"); // this will be zero length + output.PutNextEntry("entry5.txt"); // this will be zero length + } + } + } + } + + + + [TestMethod] + public void ZOS_Create_EmptyEntries() + { + for (int i = 0; i < crypto.Length; i++) + { + for (int j = 0; j < compLevels.Length; j++) + { + string password = Path.GetRandomFileName(); + + for (int k = 0; k < 2; k++) + { + string zipFileToCreate = String.Format("ZOS_Create_EmptyEntries.Encryption.{0}.{1}.{2}.zip", + crypto[i].ToString(), compLevels[j].ToString(), k); + + using (var fs = File.Create(zipFileToCreate)) + { + using (var output = new ZipOutputStream(fs)) + { + byte[] buffer; + output.Password = password; + output.Encryption = crypto[i]; + output.CompressionLevel = compLevels[j]; + output.PutNextEntry("entry1.txt"); + if (k == 0) + { + buffer = Encoding.ASCII.GetBytes("This is the content for entry #1."); + output.Write(buffer, 0, buffer.Length); + } + + output.PutNextEntry("entry2.txt"); // this will be zero length + output.PutNextEntry("entry3.txt"); + if (k == 0) + { + buffer = Encoding.ASCII.GetBytes("This is the content for entry #3."); + output.Write(buffer, 0, buffer.Length); + } + output.PutNextEntry("entry4.txt"); // this will be zero length + output.PutNextEntry("entry5.txt"); // this will be zero length + } + } + + BasicVerifyZip(zipFileToCreate, password); + + Assert.AreEqual(5, TestUtilities.CountEntries(zipFileToCreate), + "Trial ({0},{1}): The zip file created has the wrong number of entries.", i, j); + } + } + } + } + + + + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void ZOS_Create_DuplicateEntry() + { + string zipFileToCreate = "ZOS_Create_DuplicateEntry.zip"; + + string entryName = Path.GetRandomFileName(); + + using (var fs = File.Create(zipFileToCreate)) + { + using (var output = new ZipOutputStream(fs)) + { + output.PutNextEntry(entryName); + output.PutNextEntry(entryName); + } + } + } + + + + [TestMethod] + public void ZOS_Create() + { + bool seekable = true; + bool zero = false; + _TestDriver(new TestCompressionLevels(_Internal_ZOS_Create), "ZipOutputStream", seekable, zero); + } + + [TestMethod] + public void ZOS_Create_file() + { + bool seekable = true; + bool zero = false; + int fileOutputOption = 1; + _TestDriver(new TestCompressionLevels(_Internal_ZOS_Create), "ZipOutputStream", seekable, zero, fileOutputOption); + } + + [TestMethod] + public void ZOS_Create_NonSeekable() + { + bool seekable = false; + bool zero = false; + _TestDriver(new TestCompressionLevels(_Internal_ZOS_Create), "ZipOutputStream", seekable, zero); + } + + [TestMethod] + public void ZOS_Create_ZeroLength_wi8933() + { + bool seekable = true; + bool zero = true; + _TestDriver(new TestCompressionLevels(_Internal_ZOS_Create), "ZipOutputStream", seekable, zero); + } + + [TestMethod] + public void ZOS_Create_ZeroLength_wi8933_file() + { + bool seekable = true; + bool zero = true; + int fileOutputOption = 1; + _TestDriver(new TestCompressionLevels(_Internal_ZOS_Create), "ZipOutputStream", seekable, zero, fileOutputOption); + } + + + private void _Internal_ZOS_Create(string[] files, + EncryptionAlgorithm crypto, + bool seekable, + int cycle, + string format) + { + _Internal_ZOS_Create(files, crypto, seekable, cycle, format, 0); + } + + + private void _Internal_ZOS_Create(string[] files, + EncryptionAlgorithm crypto, + bool seekable, + int cycle, + string format, + int fileOutputOption) + { + int BufferSize = 2048; + + for (int k = 0; k < compLevels.Length; k++) + { + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format(format, compLevels[k].ToString())); + string password = Path.GetRandomFileName(); + + TestContext.WriteLine("================================="); + TestContext.WriteLine("Creating {0}...", Path.GetFileName(zipFileToCreate)); + TestContext.WriteLine("Encryption({0}) Compression({1}) pw({2})", + crypto.ToString(), compLevels[k].ToString(), password); + + using (ZipOutputStream output = GetZipOutputStream(seekable, fileOutputOption, zipFileToCreate)) + { + if (crypto != EncryptionAlgorithm.None) + { + output.Password = password; + output.Encryption = crypto; + } + output.CompressionLevel = compLevels[k]; + + byte[] buffer = new byte[BufferSize]; + int n; + foreach (var file in files) + { + TestContext.WriteLine("file: {0}", file); + output.PutNextEntry(file); + using (var input = File.OpenRead(file)) + { + while ((n = input.Read(buffer, 0, buffer.Length)) > 0) + { + output.Write(buffer, 0, n); + } + } + } + } + + BasicVerifyZip(zipFileToCreate, password); + + Assert.AreEqual(files.Length, TestUtilities.CountEntries(zipFileToCreate), + "Trial ({0},{1}): The zip file created has the wrong number of entries.", cycle, k); + } + } + + + private static ZipOutputStream GetZipOutputStream(bool seekable, int fileOutputOption, string zipFileToCreate) + { + if (fileOutputOption == 0) + { + Stream raw = File.Create(zipFileToCreate); + // conditionally use a non-seekable output stream + if (!seekable) + raw = new Ionic.Zip.Tests.NonSeekableOutputStream(raw); + + return new ZipOutputStream(raw); + } + + return new ZipOutputStream(zipFileToCreate); + } + + + + bool _pb2Set; + bool _pb1Set; + int _numSaving; + int _totalToSave; + + private void streams_SaveProgress(object sender, SaveProgressEventArgs e) + { + string msg; + switch (e.EventType) + { + case ZipProgressEventType.Saving_Started: + //_txrx.Send("status saving started..."); + _pb1Set = false; + _numSaving = 1; + break; + + case ZipProgressEventType.Saving_BeforeWriteEntry: + //_txrx.Send(String.Format("status Compressing {0}", e.CurrentEntry.FileName)); + if (!_pb1Set) + { + _txrx.Send(String.Format("pb 1 max {0}", e.EntriesTotal)); + _pb1Set = true; + } + _totalToSave = e.EntriesTotal; + _pb2Set = false; + break; + + case ZipProgressEventType.Saving_EntryBytesRead: + if (!_pb2Set) + { + _txrx.Send(String.Format("pb 2 max {0}", e.TotalBytesToTransfer)); + _pb2Set = true; + } + + // _txrx.Send(String.Format("status Saving entry {0}/{1} :: {2} :: {3}/{4}mb {5:N0}%", + // _numSaving, _totalToSave, + // e.CurrentEntry.FileName, + // e.BytesTransferred/(1024*1024), e.TotalBytesToTransfer/(1024*1024), + // ((double)e.BytesTransferred) / (0.01 * e.TotalBytesToTransfer))); + msg = String.Format("pb 2 value {0}", e.BytesTransferred); + _txrx.Send(msg); + //System.Threading.Thread.Sleep(40); + break; + + case ZipProgressEventType.Saving_AfterWriteEntry: + _txrx.Send("pb 1 step"); + _numSaving++; + break; + + case ZipProgressEventType.Saving_Completed: + //_txrx.Send("status Save completed"); + _pb1Set = false; + _pb2Set = false; + _txrx.Send("pb 1 max 1"); + _txrx.Send("pb 1 value 1"); + break; + } + } + + + [TestMethod] + public void ZipFile_JitStream_CloserTwice_wi10489() + { + int fileCount = 20 + _rnd.Next(20); + string zipFileToCreate = "CloserTwice.zip"; + string dirToZip = "fodder"; + var files = TestUtilities.GenerateFilesFlat(dirToZip, fileCount, 100, 72000); + + OpenDelegate opener = (name) => + { + TestContext.WriteLine("Opening {0}", name); + Stream s = File.OpenRead(Path.Combine(dirToZip,name)); + return s; + }; + + CloseDelegate closer = (e, s) => + { + TestContext.WriteLine("Closing {0}", e); + s.Dispose(); + }; + + TestContext.WriteLine("Creating zipfile {0}", zipFileToCreate); + using (var zip = new ZipFile()) + { + foreach (var file in files) + { + zip.AddEntry(Path.GetFileName(file),opener,closer); + } + zip.Save(zipFileToCreate); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + files.Length); + + BasicVerifyZip(zipFileToCreate); + } + + + [TestMethod] + public void JitStream_Update_wi13899() + { + int fileCount = 12 + _rnd.Next(16); + string dirToZip = "fodder"; + var files = TestUtilities.GenerateFilesFlat(dirToZip, fileCount, 100, 72000); + OpenDelegate opener = (name) => + { + TestContext.WriteLine("Opening {0}", name); + Stream s = File.OpenRead(Path.Combine(dirToZip,name)); + return s; + }; + + CloseDelegate closer = (e, s) => + { + TestContext.WriteLine("Closing {0}", e); + s.Dispose(); + }; + + // Two passes: first to call UpdateEntry() when no prior entry exists. + // Second to call UpdateEntry when a prior entry exists. + for (int j=0; j < 2; j++) + { + string zipFileToCreate = String.Format("wi13899-{0}.zip", j); + + TestContext.WriteLine(""); + TestContext.WriteLine("Creating zipfile {0}", zipFileToCreate); + if (j!=0) + { + using (var zip = new ZipFile(zipFileToCreate)) + { + foreach (var file in files) + { + zip.AddEntry(Path.GetFileName(file), "This is the content for file " + file); + } + zip.Save(); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + files.Length); + + BasicVerifyZip(zipFileToCreate); + + TestContext.WriteLine("Updating zipfile {0}", zipFileToCreate); + } + + using (var zip = new ZipFile(zipFileToCreate)) + { + foreach (var file in files) + { + zip.UpdateEntry(Path.GetFileName(file), opener, closer); + } + zip.Save(); + } + + BasicVerifyZip(zipFileToCreate); + // verify checksum here? + } + } + + + + [TestMethod, Timeout(30 * 60 * 1000)] // in ms. 30*60*100 == 30min + public void ZipFile_PDOS_LeakTest_wi10030() + { + // Test memory growth over many many cycles. + // There was a leak in the ParallelDeflateOutputStream, where + // the PDOS was not being GC'd. This test checks for that. + // + // If the error is present, this test will either timeout or + // throw an InsufficientMemoryException (or whatever). The + // timeout occurs because GC begins to get verrrrry + // sloooooow. IF the error is not present, this test will + // complete successfully, in about 20 minutes. + // + + string zipFileToCreate = "ZipFile_PDOS_LeakTest_wi10030.zip"; + int nCycles = 4096; + int nFiles = 3; + int sizeBase = 384 * 1024; + int sizeRange = 32 * 1024; + int count = 0; + byte[] buffer = new byte[1024]; + int n; + + // fill a couple memory streams with random text + MemoryStream[] ms = new MemoryStream[nFiles]; + for (int i = 0; i < ms.Length; i++) + { + ms[i] = new MemoryStream(); + int sz = sizeBase + _rnd.Next(sizeRange); + using (Stream rtg = new Ionic.Zip.Tests.Utilities.RandomTextInputStream(sz)) + { + while ((n = rtg.Read(buffer, 0, buffer.Length)) > 0) + { + ms[i].Write(buffer, 0, n); + } + } + } + buffer = null; + + OpenDelegate opener = (x) => + { + Stream s = ms[count % ms.Length]; + s.Seek(0L, SeekOrigin.Begin); + count++; + return s; + }; + + CloseDelegate closer = (e, s) => + { + //s.Close(); + }; + + string txrxLabel = "PDOS Leak Test"; + _txrx = TestUtilities.StartProgressMonitor("ZipFile_PDOS_LeakTest_wi10030", txrxLabel, "starting up..."); + + TestContext.WriteLine("Testing for leaks...."); + + _txrx.Send(String.Format("pb 0 max {0}", nCycles)); + _txrx.Send("pb 0 value 0"); + + for (int x = 0; x < nCycles; x++) + { + if (x != 0 && x % 16 == 0) + { + TestContext.WriteLine("Cycle {0}...", x); + string status = String.Format("status Cycle {0}/{1} {2:N0}%", + x + 1, nCycles, + ((x+1)/(0.01 * nCycles))); + _txrx.Send(status); + } + + using (ZipFile zip = new ZipFile()) + { + zip.ParallelDeflateThreshold = 128 * 1024; + zip.CompressionLevel = Ionic.Zlib.CompressionLevel.BestCompression; + //zip.SaveProgress += streams_SaveProgress; + for (int y = 0; y < nFiles; y++) + { + zip.AddEntry("Entry" + y + ".txt", opener, closer); + } + zip.Comment = "Produced at " + System.DateTime.UtcNow.ToString("G"); + zip.Save(zipFileToCreate); + } + + _txrx.Send("pb 0 step"); + } + + for (int i = 0; i < ms.Length; i++) + { + ms[i].Dispose(); + ms[i] = null; + } + ms = null; + } + + + + [TestMethod] + public void ZipOutputStream_Parallel() + { + int _sizeBase = 1024 * 1024; + int _sizeRange = 256 * 1024; + //int _sizeBase = 1024 * 256; + //int _sizeRange = 256 * 12; + var sw = new System.Diagnostics.Stopwatch(); + byte[] buffer = new byte[0x8000]; + int n = 0; + TimeSpan[] ts = new TimeSpan[2]; + int nFiles = _rnd.Next(8) + 8; + //int nFiles = 2; + string[] filenames = new string[nFiles]; + string dirToZip = Path.Combine(TopLevelDir, "dirToZip"); + + + string channel = String.Format("ZOS_Parallel{0:000}", _rnd.Next(1000)); + string txrxLabel = "ZipOutputStream Parallel"; + _txrx = TestUtilities.StartProgressMonitor(channel, txrxLabel, "starting up..."); + + TestContext.WriteLine("Creating {0} fodder files...", nFiles); + Directory.CreateDirectory(dirToZip); + + _txrx.Send(String.Format("pb 0 max {0}", nFiles)); + _txrx.Send("pb 0 value 0"); + + sw.Start(); + + for (int x = 0; x < nFiles; x++) + { + string status = String.Format("status Creating file {0}/{1}", x + 1, nFiles); + _txrx.Send(status); + + filenames[x] = Path.Combine(dirToZip, String.Format("file{0:000}.txt", x)); + using (var output = File.Create(filenames[x])) + { + using (Stream input = new Ionic.Zip.Tests.Utilities.RandomTextInputStream(_sizeBase + _rnd.Next(_sizeRange))) + { + while ((n = input.Read(buffer, 0, buffer.Length)) != 0) + { + output.Write(buffer, 0, n); + } + } + } + _txrx.Send("pb 0 step"); + } + sw.Stop(); + TestContext.WriteLine("file generation took {0}", sw.Elapsed); + + _txrx.Send(String.Format("pb 0 max {0}", crypto.Length)); + _txrx.Send("pb 0 value 0"); + + for (int i = 0; i < crypto.Length; i++) + { + //int c = i; + int c = (i + 2) % crypto.Length; + + _txrx.Send(String.Format("pb 1 max {0}", compLevels.Length)); + _txrx.Send("pb 1 value 0"); + + for (int j = 0; j < compLevels.Length; j++) + { + string password = Path.GetRandomFileName(); + + // I wanna do 2 cycles if there is compression, so I can compare MT + // vs 1T compression. The first cycle will ALWAYS use the threaded + // compression, the 2nd will NEVER use it. If + // CompressionLevel==None, then just do one cycle. + // + int kCycles = (compLevels[j] == Ionic.Zlib.CompressionLevel.None) + ? 1 + : 2; + + for (int k = 0; k < kCycles; k++) + { + // Also, I use Stopwatch to time the compression, and compare. + // In light of that, I wanna do one warmup, and then one timed + // trial (for t==0..2). But here again, if CompressionLevel==None, then I + // don't want to do a timing comparison, so I don't need 2 trials. + // Therefore, in that case, the "warmup" is the only trial I want to do. + // So when k==1 and Compression==None, do no cycles at all. + // + int tCycles = (compLevels[j] == Ionic.Zlib.CompressionLevel.None) + ? ((k == 0) ? 1 : 0) + : 2; + + if (k == 0) + { + _txrx.Send(String.Format("pb 2 max {0}", kCycles * tCycles)); + _txrx.Send("pb 2 value 0"); + } + + for (int t = 0; t < tCycles; t++) + { + TestContext.WriteLine(new String('-', 72)); + string zipFileToCreate = String.Format("ZipOutputStream_Parallel.E-{0}.C-{1}.{2}.{3}timed.zip", + crypto[c].ToString(), compLevels[j].ToString(), + (compLevels[j] == Ionic.Zlib.CompressionLevel.None) + ? "NA" + : (k == 0) ? "1T" : "MT", + (t == 0) ? "not-" : ""); + + TestContext.WriteLine("Trial {0}.{1}.{2}.{3}", i, j, k, t); + TestContext.WriteLine("Create zip file {0}", zipFileToCreate); + + _txrx.Send("status " + zipFileToCreate); + + sw.Reset(); + sw.Start(); + using (var output = new ZipOutputStream(zipFileToCreate)) + { + if (k == 0) + output.ParallelDeflateThreshold = -1L; // never + else + output.ParallelDeflateThreshold = 0L; // always + + output.Password = password; + output.Encryption = crypto[c]; // maybe "None" + output.CompressionLevel = compLevels[j]; + + _txrx.Send(String.Format("pb 3 max {0}", nFiles)); + _txrx.Send("pb 3 value 0"); + + for (int x = 0; x < nFiles; x++) + { + output.PutNextEntry(Path.GetFileName(filenames[x])); + using (var input = File.OpenRead(filenames[x])) + { + while ((n = input.Read(buffer, 0, buffer.Length)) > 0) + { + output.Write(buffer, 0, n); + } + } + _txrx.Send("pb 3 step"); + } + } + + sw.Stop(); + ts[k] = sw.Elapsed; + TestContext.WriteLine("compression took {0}", ts[k]); + + //if (t==0) + BasicVerifyZip(zipFileToCreate, password); + + Assert.AreEqual(nFiles, TestUtilities.CountEntries(zipFileToCreate), + "Trial ({0}.{1}.{2}.{3}): The zip file created has the wrong number of entries.", i, j, k, t); + + _txrx.Send("pb 2 step"); + } + + } + +#if NOT_DEBUGGING + // parallel is not always faster! + if (_sizeBase > 256 * 1024 && + compLevels[j] != Ionic.Zlib.CompressionLevel.None && + compLevels[j] != Ionic.Zlib.CompressionLevel.BestSpeed && + crypto[c] != EncryptionAlgorithm.WinZipAes256 && + crypto[c] != EncryptionAlgorithm.WinZipAes128 ) + Assert.IsTrue(ts[0]>ts[1], "Whoops! Cycle {0}.{1} (crypto({4}) Comp({5})): Parallel deflate is slower ({2}<{3})", + i, j, ts[0], ts[1], + crypto[c], + compLevels[j]); +#endif + _txrx.Send("pb 1 step"); + } + _txrx.Send("pb 0 step"); + } + + _txrx.Send("stop"); + } + + + + + + [TestMethod] + public void Streams_7z_Zip_ZeroLength() + { + _Internal_Streams_7z_Zip(0, "zero"); + } + + [TestMethod] + public void Streams_7z_Zip() + { + _Internal_Streams_7z_Zip(1, "nonzero"); + } + + [TestMethod] + public void Streams_7z_Zip_Mixed() + { + _Internal_Streams_7z_Zip(2, "mixed"); + } + + [TestMethod] + public void Streams_Winzip_Zip_Mixed_Password() + { + string password = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + _Internal_Streams_WinZip_Zip(2, password, "mixed"); + } + + [TestMethod] + public void Streams_Winzip_Zip() + { + _Internal_Streams_WinZip_Zip(1, null, "nonzero"); + } + + private string CreateZeroLengthFile(int ix, string directory) + { + string nameOfFileToCreate = Path.Combine(directory, String.Format("ZeroLength{0:D4}.txt", ix)); + using (var fs = File.Create(nameOfFileToCreate)) { } + return nameOfFileToCreate; + } + + + public void _Internal_Streams_7z_Zip(int flavor, string label) + { + if (!SevenZipIsPresent) + { + TestContext.WriteLine("skipping test [_Internal_Streams_7z_Zip] : SevenZip is not present"); + return; + } + + int[] fileCounts = { 1, 2, _rnd.Next(8) + 6, _rnd.Next(18) + 16, _rnd.Next(48) + 56 }; + + for (int m = 0; m < fileCounts.Length; m++) + { + string dirToZip = String.Format("trial{0:D2}", m); + if (!Directory.Exists(dirToZip)) Directory.CreateDirectory(dirToZip); + + int fileCount = fileCounts[m]; + string zipFileToCreate = Path.Combine(TopLevelDir, + String.Format("Streams_7z_Zip.{0}.{1}.{2}.zip", flavor, label, m)); + + string[] files = null; + if (flavor == 0) + { + // zero length files + files = new string[fileCount]; + for (int i = 0; i < fileCount; i++) + files[i] = CreateZeroLengthFile(i, dirToZip); + } + else if (flavor == 1) + files = TestUtilities.GenerateFilesFlat(dirToZip, fileCount, 100, 72000); + else + { + // mixed + files = new string[fileCount]; + for (int i = 0; i < fileCount; i++) + { + if (_rnd.Next(3) == 0) + files[i] = CreateZeroLengthFile(i, dirToZip); + else + { + files[i] = Path.Combine(dirToZip, String.Format("nonzero{0:D4}.txt", i)); + TestUtilities.CreateAndFillFileText(files[i], _rnd.Next(60000) + 100); + } + } + } + + // Create the zip archive via 7z.exe + this.Exec(sevenZip, String.Format("a {0} {1}", zipFileToCreate, dirToZip)); + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), files.Length, + "Incorrect number of entries in the zip file."); + + // extract the files + string extractDir = String.Format("extract{0:D2}", m); + byte[] buffer = new byte[2048]; + int n; + using (var raw = File.OpenRead(zipFileToCreate)) + { + using (var input = new ZipInputStream(raw)) + { + ZipEntry e; + while ((e = input.GetNextEntry()) != null) + { + TestContext.WriteLine("entry: {0}", e.FileName); + string outputPath = Path.Combine(extractDir, e.FileName); + if (e.IsDirectory) + { + // create the directory + Directory.CreateDirectory(outputPath); + } + else + { + // create the file + using (var output = File.Create(outputPath)) + { + while ((n = input.Read(buffer, 0, buffer.Length)) > 0) + { + output.Write(buffer, 0, n); + } + } + } + + // we don't set the timestamps or attributes + // on the file/directory. + } + } + } + + // winzip does not include the base path in the filename; + // 7zip does. + string[] filesUnzipped = Directory.GetFiles(Path.Combine(extractDir, dirToZip)); + + // Verify the number of files extracted + Assert.AreEqual(files.Length, filesUnzipped.Length, + "Incorrect number of files extracted."); + } + } + + + public void _Internal_Streams_WinZip_Zip(int fodderOption, string password, string label) + { + if (!WinZipIsPresent) + throw new Exception("skipping test [_Internal_Streams_WinZip_Zip] : winzip is not present"); + + int[] fileCounts = { 1, 2, _rnd.Next(8) + 6, _rnd.Next(18) + 16, _rnd.Next(48) + 56 }; + + for (int m = 0; m < fileCounts.Length; m++) + { + string dirToZip = String.Format("trial{0:D2}", m); + if (!Directory.Exists(dirToZip)) Directory.CreateDirectory(dirToZip); + + int fileCount = fileCounts[m]; + string zipFileToCreate = Path.Combine(TopLevelDir, + String.Format("Streams_Winzip_Zip.{0}.{1}.{2}.zip", fodderOption, label, m)); + + string[] files = null; + if (fodderOption == 0) + { + // zero length files + files = new string[fileCount]; + for (int i = 0; i < fileCount; i++) + files[i] = CreateZeroLengthFile(i, dirToZip); + } + else if (fodderOption == 1) + files = TestUtilities.GenerateFilesFlat(dirToZip, fileCount, 100, 72000); + else + { + // mixed + files = new string[fileCount]; + for (int i = 0; i < fileCount; i++) + { + if (_rnd.Next(3) == 0) + files[i] = CreateZeroLengthFile(i, dirToZip); + else + { + files[i] = Path.Combine(dirToZip, String.Format("nonzero{0:D4}.txt", i)); + TestUtilities.CreateAndFillFileText(files[i], _rnd.Next(60000) + 100); + } + } + } + + // Create the zip archive via WinZip.exe + string pwdOption = String.IsNullOrEmpty(password) ? "" : "-s" + password; + string formatString = "-a -p {0} -yx {1} {2}\\*.*"; + string wzzipOut = this.Exec(wzzip, String.Format(formatString, pwdOption, zipFileToCreate, dirToZip)); + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), files.Length, + "Incorrect number of entries in the zip file."); + + // extract the files + string extractDir = String.Format("extract{0:D2}", m); + Directory.CreateDirectory(extractDir); + byte[] buffer = new byte[2048]; + int n; + + using (var raw = File.OpenRead(zipFileToCreate)) + { + using (var input = new ZipInputStream(raw)) + { + input.Password = password; + ZipEntry e; + while ((e = input.GetNextEntry()) != null) + { + TestContext.WriteLine("entry: {0}", e.FileName); + string outputPath = Path.Combine(extractDir, e.FileName); + if (e.IsDirectory) + { + // create the directory + Directory.CreateDirectory(outputPath); + continue; + } + // create the file + using (var output = File.Create(outputPath)) + { + while ((n = input.Read(buffer, 0, buffer.Length)) > 0) + { + output.Write(buffer, 0, n); + } + } + + // we don't set the timestamps or attributes + // on the file/directory. + } + } + } + + string[] filesUnzipped = Directory.GetFiles(extractDir); + + // Verify the number of files extracted + Assert.AreEqual(files.Length, filesUnzipped.Length, + "Incorrect number of files extracted."); + } + } + + + + + [TestMethod] + public void ZIS_Crypto_zero() + { + _Internal_Streams_ZipInput_Encryption(0); + } + + [TestMethod] + public void ZIS_Crypto_zero_subdir() + { + _Internal_Streams_ZipInput_Encryption(3); + } + + [TestMethod] + public void ZIS_Crypto_nonzero() + { + _Internal_Streams_ZipInput_Encryption(1); + } + + + [TestMethod] + public void ZIS_Crypto_nonzero_subdir() + { + _Internal_Streams_ZipInput_Encryption(4); + } + + + [TestMethod] + public void ZIS_Crypto_mixed() + { + _Internal_Streams_ZipInput_Encryption(2); + } + + + [TestMethod] + public void ZIS_Crypto_mixed_subdir() + { + _Internal_Streams_ZipInput_Encryption(5); + } + + + + + + [TestMethod] + public void ZIS_Crypto_zero_file() + { + _Internal_Streams_ZipInput_Encryption(0, 1); + } + + [TestMethod] + public void ZIS_Crypto_zero_subdir_file() + { + + _Internal_Streams_ZipInput_Encryption(3, 1); + } + + [TestMethod] + public void ZIS_Crypto_nonzero_file() + { + _Internal_Streams_ZipInput_Encryption(1, 1); + } + + + [TestMethod] + public void ZIS_Crypto_nonzero_subdir_file() + { + _Internal_Streams_ZipInput_Encryption(4, 1); + } + + + [TestMethod] + public void ZIS_Crypto_mixed_file() + { + _Internal_Streams_ZipInput_Encryption(2, 1); + } + + + [TestMethod] + public void ZIS_Crypto_mixed_subdir_file() + { + _Internal_Streams_ZipInput_Encryption(5, 1); + } + + + + public void _Internal_Streams_ZipInput_Encryption(int fodderOption) + { + _Internal_Streams_ZipInput_Encryption(fodderOption, 0); + } + + + public void _Internal_Streams_ZipInput_Encryption(int fodderOption, int fileReadOption) + { + byte[] buffer = new byte[2048]; + int n; + + int[] fileCounts = { 1, + 2, + _rnd.Next(8) + 6, + _rnd.Next(18) + 16, + _rnd.Next(48) + 56 }; + + for (int m = 0; m < fileCounts.Length; m++) + { + string password = TestUtilities.GenerateRandomPassword(); + string dirToZip = String.Format("trial{0:D2}", m); + if (!Directory.Exists(dirToZip)) Directory.CreateDirectory(dirToZip); + + int fileCount = fileCounts[m]; + TestContext.WriteLine("====="); + TestContext.WriteLine("Trial {0} filecount={1}", m, fileCount); + + var files = (new Func( () => { + if (fodderOption == 0) + { + // zero length files + var a = new string[fileCount]; + for (int i = 0; i < fileCount; i++) + a[i] = CreateZeroLengthFile(i, dirToZip); + return a; + } + + if (fodderOption == 1) + return TestUtilities.GenerateFilesFlat(dirToZip, fileCount, 100, 72000); + + + // mixed = some zero and some not + var b = new string[fileCount]; + for (int i = 0; i < fileCount; i++) + { + if (_rnd.Next(3) == 0) + b[i] = CreateZeroLengthFile(i, dirToZip); + else + { + b[i] = Path.Combine(dirToZip, String.Format("nonzero{0:D4}.txt", i)); + TestUtilities.CreateAndFillFileText(b[i], _rnd.Next(60000) + 100); + } + } + return b; + }))(); + + + for (int i = 0; i < crypto.Length; i++) + { + EncryptionAlgorithm c = crypto[i]; + + string zipFileToCreate = + Path.Combine(TopLevelDir, + String.Format("ZIS_Crypto.{0}.count.{1:D2}.{2}.zip", + c.ToString(), fileCounts[m], fodderOption)); + + // Create the zip archive + using (var zip = new ZipFile()) + { + zip.Password = password; + zip.Encryption = c; + if (fodderOption > 2) + { + zip.AddDirectoryByName("subdir"); + zip.AddDirectory(dirToZip, "subdir"); + } + else + zip.AddDirectory(dirToZip); + + zip.Save(zipFileToCreate); + } + + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), files.Length, + "Incorrect number of entries in the zip file."); + + // extract the files + string extractDir = String.Format("extract{0:D2}.{1:D2}", m, i); + TestContext.WriteLine("Extract to: {0}", extractDir); + Directory.CreateDirectory(extractDir); + + var input = (new Func( () => { + if (fileReadOption == 0) + { + var raw = File.OpenRead(zipFileToCreate); + return new ZipInputStream(raw); + } + + return new ZipInputStream(zipFileToCreate); + }))(); + + using (input) + { + // set password if necessary + if (crypto[i] != EncryptionAlgorithm.None) + input.Password = password; + + ZipEntry e; + while ((e = input.GetNextEntry()) != null) + { + TestContext.WriteLine("entry: {0}", e.FileName); + string outputPath = Path.Combine(extractDir, e.FileName); + if (e.IsDirectory) + { + // create the directory + Directory.CreateDirectory(outputPath); + } + else + { + // emit the file + using (var output = File.Create(outputPath)) + { + while ((n = input.Read(buffer, 0, buffer.Length)) > 0) + { + output.Write(buffer, 0, n); + } + } + } + } + } + + string[] filesUnzipped = (fodderOption > 2) + ? Directory.GetFiles(Path.Combine(extractDir, "subdir")) + : Directory.GetFiles(extractDir); + + // Verify the number of files extracted + Assert.AreEqual(files.Length, filesUnzipped.Length, + "Incorrect number of files extracted. ({0}!={1})", files.Length, filesUnzipped.Length); + } + } + } + + + + + + [TestMethod] + public void ASPNET_GenerateZip() + { + string testBin = TestUtilities.GetTestBinDir(CurrentDir); + string resourceDir = Path.Combine(testBin, "Resources"); + string aspnetHost = Path.Combine(resourceDir, "AspNetHost.exe"); + Assert.IsTrue(File.Exists(aspnetHost), "file {0} does not exit.", aspnetHost); + string aspnetHostPdb = Path.Combine(resourceDir, "AspNetHost.pdb"); + + // page that generates a zip file. + string aspxPage = Path.Combine(resourceDir, "GenerateZip-cs.aspx"); + Assert.IsTrue(File.Exists(aspxPage)); + + string ionicZipDll = Path.Combine(testBin, "DotNetZip.dll"); + string loremFile = "LoremIpsum.txt"; + + Action copyToBin = (x) => + File.Copy(x, Path.Combine("bin", + Path.GetFileName(x))); + Directory.CreateDirectory("bin"); + copyToBin(aspnetHost); + copyToBin(aspnetHostPdb); + copyToBin(ionicZipDll); + File.Copy(aspxPage, Path.GetFileName(aspxPage)); + File.WriteAllText(loremFile, TestUtilities.LoremIpsum); + + string zipFileToCreate = "ASPX-output.out"; + string binAspNetHostExe = Path.Combine("bin", + Path.GetFileName(aspnetHost)); + string urlRequest = Path.GetFileName(aspxPage) + "?file=LoremIpsum.txt"; + + int rc = this.ExecRedirectStdOut(binAspNetHostExe, + urlRequest, + zipFileToCreate); + + Assert.AreEqual(rc, 0, "Non-zero RC: ({0})", rc); + + int nEntries = TestUtilities.CountEntries(zipFileToCreate); + Assert.AreEqual(nEntries, + 2, "wrong number of entries ({0})", nEntries); + + string extractDir = "extract"; + // read/extract the generated zip + using (var zip = ZipFile.Read(zipFileToCreate)) + { + foreach (var e in zip) + { + e.Extract(extractDir); + } + } + + // compare checksums + var chk1 = TestUtilities.ComputeChecksum(loremFile); + var chk2 = TestUtilities.ComputeChecksum(Path.Combine(extractDir,loremFile)); + string s1 = TestUtilities.CheckSumToString(chk1); + string s2 = TestUtilities.CheckSumToString(chk2); + Assert.AreEqual(s1, s2, "Unexpected checksum on extracted file."); + } + + + void CopyStream(Stream source, Stream dest) + { + int n; + var buf = new byte[2048]; + while ((n= source.Read(buf, 0, buf.Length)) > 0) + { + dest.Write(buf,0,n); + } + } + + + [TestMethod] + public void ZIS_ZOS_VaryCompression() + { + string testBin = TestUtilities.GetTestBinDir(CurrentDir); + string resourceDir = Path.Combine(testBin, "Resources"); + var filesToAdd = Directory.GetFiles(resourceDir); + + Func chooseCompression = (ix, cycle) => { + var name = Path.GetFileName(filesToAdd[ix]); + switch (cycle) + { + case 0: + return !(name.EndsWith(".zip") || + name.EndsWith(".docx") || + name.EndsWith(".xslx")); + case 1: + return ((ix%2)==0); + + default: + return (ix == filesToAdd.Length - 1); + } + }; + + // Three cycles - three different ways to vary compression + for (int k=0; k < 3; k++) + { + string zipFileToCreate = String.Format("VaryCompression-{0}.zip", k); + + TestContext.WriteLine(""); + TestContext.WriteLine("Creating zip, cycle {0}", k); + using (var fileStream = File.OpenWrite(zipFileToCreate)) + { + using (var zos = new ZipOutputStream(fileStream, true)) + { + for (int i=0; i < filesToAdd.Length; i++) + { + var file = filesToAdd[i]; + var shortName = Path.GetFileName(file); + bool compress = chooseCompression(i, k); + + if (compress) + zos.CompressionLevel = Ionic.Zlib.CompressionLevel.Default; + else + zos.CompressionLevel = Ionic.Zlib.CompressionLevel.None; + + zos.PutNextEntry(shortName); + using (var input = File.OpenRead(file)) + { + CopyStream(input, zos); + } + } + } + } + + TestContext.WriteLine(""); + TestContext.WriteLine("Extracting cycle {0}", k); + string extractDir = "extract-" + k; + Directory.CreateDirectory(extractDir); + using (var raw = File.OpenRead(zipFileToCreate)) + { + using (var input = new ZipInputStream(raw)) + { + ZipEntry e; + while ((e = input.GetNextEntry()) != null) + { + TestContext.WriteLine("entry: {0}", e.FileName); + string outputPath = Path.Combine(extractDir, e.FileName); + if (e.IsDirectory) + { + // create the directory + Directory.CreateDirectory(outputPath); + } + else + { + // create the file + using (var output = File.Create(outputPath)) + { + CopyStream(input,output); + } + } + } + } + } + + string[] filesUnzipped = Directory.GetFiles(extractDir); + Assert.AreEqual(filesToAdd.Length, filesUnzipped.Length, + "Incorrect number of files extracted."); + + } + } + + } +} diff --git a/src/Zip Tests/TestUtilities.cs b/old/src/Zip Tests/TestUtilities.cs similarity index 97% rename from src/Zip Tests/TestUtilities.cs rename to old/src/Zip Tests/TestUtilities.cs index 1ec2791..c9bc47d 100644 --- a/src/Zip Tests/TestUtilities.cs +++ b/old/src/Zip Tests/TestUtilities.cs @@ -1,926 +1,926 @@ -// TestUtilities.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009-2011 Dino Chiesa. -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-August-11 07:54:52> -// -// ------------------------------------------------------------------ -// -// This module defines some utility classes used by the unit tests for -// DotNetZip. -// -// ------------------------------------------------------------------ - -using System; -using System.Collections.Generic; -using System.Text; -using System.Text.RegularExpressions; -using System.Net; -using System.IO; -using Ionic.Zip; -using Microsoft.VisualStudio.TestTools.UnitTesting; - -namespace Ionic.Zip.Tests.Utilities -{ - class TestUtilities - { - static System.Random _rnd; - static string cdir; - static TestUtilities() - { - _rnd = new System.Random(); - LoremIpsumWords = LoremIpsum.Split(" ".ToCharArray(), System.StringSplitOptions.RemoveEmptyEntries); - cdir = Directory.GetCurrentDirectory(); - } - - - - #region Test Init and Cleanup - - internal static void Initialize(out string TopLevelDir) - { - if (cdir == null) cdir = Directory.GetCurrentDirectory(); - - TopLevelDir = TestUtilities.GenerateUniquePathname("tmp"); - Directory.CreateDirectory(TopLevelDir); - Directory.SetCurrentDirectory(Path.GetDirectoryName(TopLevelDir)); - } - - internal static void Cleanup(string CurrentDir, List FilesToRemove) - { - Assert.AreNotEqual(Path.GetFileName(CurrentDir), "Temp", "at finish"); - Directory.SetCurrentDirectory(CurrentDir); - IOException GotException = null; - int Tries = 0; - do - { - try - { - GotException = null; - foreach (string filename in FilesToRemove) - { - if (Directory.Exists(filename)) - { - // turn off any ReadOnly attributes - ClearReadOnly(filename); - Directory.Delete(filename, true); - } - if (File.Exists(filename)) - { - File.Delete(filename); - } - } - Tries++; - } - catch (IOException ioexc) - { - GotException = ioexc; - // use an backoff interval before retry - System.Threading.Thread.Sleep(200 * Tries); - } - } while ((GotException != null) && (Tries < 4)); - if (GotException != null) throw GotException; - } - - - public static void ClearReadOnly(string dirname) - { - // don't traverse reparse points - if ((File.GetAttributes(dirname) & FileAttributes.ReparsePoint) != 0) - return; - - foreach (var d in Directory.GetDirectories(dirname)) - { - ClearReadOnly(d); // recurse - } - - foreach (var f in Directory.GetFiles(dirname)) - { - // clear ReadOnly and System attributes - var a = File.GetAttributes(f); - if ((a & FileAttributes.ReadOnly) == FileAttributes.ReadOnly) - { - a ^= FileAttributes.ReadOnly; - File.SetAttributes(f, a); - } - if ((a & FileAttributes.System) == FileAttributes.System) - { - a ^= FileAttributes.System; - File.SetAttributes(f, a); - } - } - } - - - - #endregion - - - #region Helper methods - - internal static string TrimVolumeAndSwapSlashes(string pathName) - { - //return (((pathname[1] == ':') && (pathname[2] == '\\')) ? pathname.Substring(3) : pathname) - // .Replace('\\', '/'); - if (String.IsNullOrEmpty(pathName)) return pathName; - if (pathName.Length < 2) return pathName.Replace('\\', '/'); - return (((pathName[1] == ':') && (pathName[2] == '\\')) ? pathName.Substring(3) : pathName) - .Replace('\\', '/'); - } - - internal static DateTime RoundToEvenSecond(DateTime source) - { - // round to nearest second: - if ((source.Second % 2) == 1) - source += new TimeSpan(0, 0, 1); - - DateTime dtRounded = new DateTime(source.Year, source.Month, source.Day, source.Hour, source.Minute, source.Second); - //if (source.Millisecond >= 500) dtRounded = dtRounded.AddSeconds(1); - return dtRounded; - } - - - /// - /// count occurrences of sample in string s. - /// - internal static int CountOccurrences(string s, string sample) - { - int nFound = 0; - int n = 0; - do - { - n = s.IndexOf(sample,n); - if (n>0) nFound++; - n++; - } while (n>0); - return nFound; - } - - - internal static void CreateAndFillFileText(string filename, Int64 size) - { - CreateAndFillFileText(filename, size, null); - } - - - internal static void CreateAndFillFileText(string filename, - Int64 size, - Action update) - { - Int64 bytesRemaining = size; - - if (size > 128 * 1024) - { - var rnd = new System.Random(); - RandomTextGenerator rtg = new RandomTextGenerator(); - int chunkSize = 48 * 1024; - int variationSize = 2 * 1024; - var newLinePair = Encoding.ASCII.GetBytes("\n\n"); - int nCycles = 0; - // fill the file with text data, selecting large blocks at a time - var fodder = new byte[32][]; - using (var fs = File.Create(filename)) - { - do - { - int n = rnd.Next(fodder.Length); - if (fodder[n] == null) - { - string generatedText = rtg.Generate(chunkSize); - fodder[n] = Encoding.ASCII.GetBytes(generatedText); - } - - var bytes = fodder[n]; - int len = bytes.Length - rnd.Next(variationSize); - fs.Write(bytes,0,len); - bytesRemaining -= len; - fs.Write(newLinePair, 0, newLinePair.Length); - bytesRemaining -= newLinePair.Length; - nCycles++; - if ((nCycles % 1024) == 0) - { - if (update != null) - update(size - bytesRemaining); - } - } while (bytesRemaining > 0); - } - } - else - { - // fill the file with text data, selecting one word at a time - using (StreamWriter sw = File.CreateText(filename)) - { - do - { - // pick a word at random - string selectedWord = LoremIpsumWords[_rnd.Next(LoremIpsumWords.Length)]; - if (bytesRemaining < selectedWord.Length + 1) - { - sw.Write(selectedWord.Substring(0, (int)bytesRemaining)); - bytesRemaining = 0; - } - else - { - sw.Write(selectedWord); - sw.Write(" "); - bytesRemaining -= (selectedWord.Length + 1); - } - if (update != null) - update(size - bytesRemaining); - - } while (bytesRemaining > 0); - sw.Close(); - } - } - } - - internal static void CreateAndFillFileText(string Filename, - string Line, - Int64 size) - { - CreateAndFillFileText(Filename, Line, size, null); - } - - - internal static void CreateAndFillFileText(string Filename, - string Line, - Int64 size, - System.Action update) - { - Int64 bytesRemaining = size; - // fill the file by repeatedly writing out the same line - using (StreamWriter sw = File.CreateText(Filename)) - { - do - { - if (bytesRemaining < Line.Length + 2) - { - if (bytesRemaining == 1) - sw.Write(" "); - else if (bytesRemaining == 1) - sw.WriteLine(); - else - sw.WriteLine(Line.Substring(0, (int)bytesRemaining - 2)); - bytesRemaining = 0; - } - else - { - sw.WriteLine(Line); - bytesRemaining -= (Line.Length + 2); - } - if (update != null) - update(size - bytesRemaining); - } while (bytesRemaining > 0); - sw.Close(); - } - } - - internal static void CreateAndFillFileBinary(string Filename, Int64 size) - { - _CreateAndFillBinary(Filename, size, false, null); - } - - internal static void CreateAndFillFileBinary(string Filename, Int64 size, System.Action update) - { - _CreateAndFillBinary(Filename, size, false, update); - } - - internal static void CreateAndFillFileBinaryZeroes(string Filename, Int64 size, System.Action update) - { - _CreateAndFillBinary(Filename, size, true, update); - } - - delegate void ProgressUpdate(System.Int64 bytesXferred); - - private static void _CreateAndFillBinary(string filename, Int64 size, bool zeroes, System.Action update) - { - Int64 bytesRemaining = size; - // fill with binary data - int sz = 65536 * 8; - if (size < sz) sz = (int)size; - byte[] buffer = new byte[sz]; - int nCycles = 0; - using (var fileStream = File.Create(filename)) - { - while (bytesRemaining > 0) - { - int sizeOfChunkToWrite = (bytesRemaining > buffer.Length) ? buffer.Length : (int)bytesRemaining; - if (!zeroes) _rnd.NextBytes(buffer); - fileStream.Write(buffer, 0, sizeOfChunkToWrite); - bytesRemaining -= sizeOfChunkToWrite; - nCycles++; - if (size > 1024*1024) - { - if ((nCycles % 256) == 0) - { - if (update != null) - update(size - bytesRemaining); - } - } - } - fileStream.Close(); - } - } - - - internal static void CreateAndFillFile(string filename, Int64 size) - { - if (size == 0) - File.Create(filename); - else if (_rnd.Next(2) == 0) - CreateAndFillFileText(filename, size); - else - CreateAndFillFileBinary(filename, size); - } - - internal enum FileFlavor - { - Text = 0, Binary = 1, - } - - internal static void CreateAndFillFile(string filename, - Int64 size, - FileFlavor flavor) - { - if (size == 0) - File.Create(filename); - else if (flavor == FileFlavor.Text) - CreateAndFillFileText(filename, size); - else - CreateAndFillFileBinary(filename, size); - } - - internal static string CreateUniqueFile(string extension, string ContainingDirectory) - { - //string nameOfFileToCreate = GenerateUniquePathname(extension, ContainingDirectory); - string nameOfFileToCreate = Path.Combine(ContainingDirectory, String.Format("{0}.{1}", Path.GetRandomFileName(), extension)); - // create an empty file - using (var fs = File.Create(nameOfFileToCreate)) { } - return nameOfFileToCreate; - } - - internal static string CreateUniqueFile(string extension) - { - return CreateUniqueFile(extension, null); - } - - internal static string CreateUniqueFile(string extension, Int64 size) - { - return CreateUniqueFile(extension, null, size); - } - - internal static string CreateUniqueFile(string extension, string ContainingDirectory, Int64 size) - { - //string fileToCreate = GenerateUniquePathname(extension, ContainingDirectory); - string nameOfFileToCreate = Path.Combine(ContainingDirectory, String.Format("{0}.{1}", Path.GetRandomFileName(), extension)); - CreateAndFillFile(nameOfFileToCreate, size); - return nameOfFileToCreate; - } - - static System.Reflection.Assembly _a = null; - private static System.Reflection.Assembly _MyAssembly - { - get - { - if (_a == null) - { - _a = System.Reflection.Assembly.GetExecutingAssembly(); - } - return _a; - } - } - - internal static string GenerateUniquePathname(string extension) - { - return GenerateUniquePathname(extension, null); - } - - internal static string GenerateUniquePathname(string extension, string ContainingDirectory) - { - string candidate = null; - String AppName = _MyAssembly.GetName().Name; - - string parentDir = (ContainingDirectory == null) ? System.Environment.GetEnvironmentVariable("TEMP") : - ContainingDirectory; - if (parentDir == null) return null; - - int index = 0; - do - { - index++; - string Name = String.Format("{0}-{1}-{2}.{3}", - AppName, System.DateTime.Now.ToString("yyyyMMMdd-HHmmss"), index, extension); - candidate = Path.Combine(parentDir, Name); - } while (File.Exists(candidate)); - - // this file/path does not exist. It can now be created, as - // file or directory. - return candidate; - } - - internal static int CountEntries(string zipfile) - { - int entries = 0; - using (ZipFile zip = ZipFile.Read(zipfile)) - { - foreach (ZipEntry e in zip) - if (!e.IsDirectory) entries++; - } - return entries; - } - - - internal static string GetCheckSumString(string filename) - { - return CheckSumToString(ComputeChecksum(filename)); - } - - internal static string CheckSumToString(byte[] checksum) - { - var sb = new System.Text.StringBuilder(); - foreach (byte b in checksum) - sb.Append(b.ToString("x2").ToLower()); - return sb.ToString(); - } - - internal static byte[] ComputeChecksum(string filename) - { - var _md5 = System.Security.Cryptography.MD5.Create(); - using (FileStream fs = File.OpenRead(filename)) - { - return _md5.ComputeHash(fs); - } - } - - private static char GetOneRandomPasswordChar() - { - const int range = 126 - 33; - const int start = 33; - char x = '\0'; - do - { - x = (char)(_rnd.Next(range) + start); - - } while (x == '^' || x == '&' || x == '"' || x == '>' || x == '<'); - return x; - } - - internal static string GenerateRandomPassword() - { - int length = _rnd.Next(22) + 12; - return GenerateRandomPassword(length); - } - - internal static string GenerateRandomPassword(int length) - { - char[] a = new char[length]; - for (int i = 0; i < length; i++) - { - a[i] = GetOneRandomPasswordChar(); - } - - string result = new System.String(a); - return result; - } - - - public static string GenerateRandomAsciiString() - { - return GenerateRandomAsciiString(_rnd.Next(14)); - } - - public static string GenerateRandomName() - { - return - GenerateRandomUpperString(1) + - GenerateRandomLowerString(_rnd.Next(9) + 3); - } - - public static string GenerateRandomName(int length) - { - return - GenerateRandomUpperString(1) + - GenerateRandomLowerString(length - 1); - } - - public static string GenerateRandomAsciiString(int length) - { - return GenerateRandomAsciiStringImpl(length, 0); - } - - public static string GenerateRandomUpperString() - { - return GenerateRandomAsciiStringImpl(_rnd.Next(10) + 3, 65); - } - - public static string GenerateRandomUpperString(int length) - { - return GenerateRandomAsciiStringImpl(length, 65); - } - - public static string GenerateRandomLowerString(int length) - { - return GenerateRandomAsciiStringImpl(length, 97); - } - - public static string GenerateRandomLowerString() - { - return GenerateRandomAsciiStringImpl(_rnd.Next(9) + 4, 97); - } - - private static string GenerateRandomAsciiStringImpl(int length, int delta) - { - bool WantRandomized = (delta == 0); - - string result = ""; - char[] a = new char[length]; - - for (int i = 0; i < length; i++) - { - if (WantRandomized) - delta = (_rnd.Next(2) == 0) ? 65 : 97; - a[i] = GetOneRandomAsciiChar(delta); - } - - result = new System.String(a); - return result; - } - - - - private static char GetOneRandomAsciiChar(int delta) - { - // delta == 65 means uppercase - // delta == 97 means lowercase - return (char)(_rnd.Next(26) + delta); - } - - public static char GetOneRandomLowercaseAsciiChar() - { - return (char)(_rnd.Next(26) + 97); - } - - public static char GetOneRandomUppercaseAsciiChar() - { - return (char)(_rnd.Next(26) + 65); - } - - - - - internal static int GenerateFilesOneLevelDeep(TestContext tc, - string testName, - string dirToZip, - Action update, - out int subdirCount) - { - int[] settings = { 7, 6, 17, 23, 4000, 4000 }; // to randomly set dircount, filecount, and filesize - return GenerateFilesOneLevelDeep(tc, testName, dirToZip, settings, update, out subdirCount); - } - - - internal static int GenerateFilesOneLevelDeep(TestContext tc, - string testName, - string dirToZip, - int[] settings, - Action update, - out int subdirCount) - { - int entriesAdded = 0; - String filename = null; - - subdirCount = _rnd.Next(settings[0]) + settings[1]; - if (update != null) - update(0, subdirCount); - tc.WriteLine("{0}: Creating {1} subdirs.", testName, subdirCount); - for (int i = 0; i < subdirCount; i++) - { - string subdir = Path.Combine(dirToZip, String.Format("dir{0:D4}", i)); - Directory.CreateDirectory(subdir); - - int filecount = _rnd.Next(settings[2]) + settings[3]; - if (update != null) - update(1, filecount); - tc.WriteLine(":: Subdir {0}, Creating {1} files.", i, filecount); - for (int j = 0; j < filecount; j++) - { - int n = _rnd.Next(2); - filename = String.Format("file{0:D4}.{1}", j, (n == 0) ? "txt" : "bin"); - TestUtilities.CreateAndFillFile(Path.Combine(subdir, filename), - _rnd.Next(settings[4]) + settings[5], - (FileFlavor)n); - entriesAdded++; - if (update != null) - update(3, j + 1); - } - if (update != null) - update(2, i + 1); - } - if (update != null) - update(4, entriesAdded); - return entriesAdded; - } - - - internal static string[] GenerateFilesFlat(string subdir) - { - return GenerateFilesFlat(subdir, 0); - } - - internal static string[] GenerateFilesFlat(string subdir, int numFilesToCreate) - { - return GenerateFilesFlat(subdir, numFilesToCreate, 0, 0); - } - - internal static string[] GenerateFilesFlat(string subdir, int numFilesToCreate, int size) - { - return GenerateFilesFlat(subdir, numFilesToCreate, size, size); - } - - internal static string[] GenerateFilesFlat(string subdir, - int numFilesToCreate, - int lowSize, int highSize) - { - return GenerateFilesFlat(subdir, numFilesToCreate, lowSize, highSize, - null); - } - - internal static string[] GenerateFilesFlat(string subdir, - int numFilesToCreate, - int lowSize, - int highSize, - Action update) - { - if (numFilesToCreate==0) - numFilesToCreate = _rnd.Next(23) + 14; - - if (lowSize == highSize && lowSize == 0) - { - lowSize = 5000; - highSize = 39000; - } - if (!Directory.Exists(subdir)) - Directory.CreateDirectory(subdir); - - int i = 0; - Action byteUpdate = null; - if (update != null) - { - byteUpdate = new Action( x => { - update(1,i,x); - }); - } - - string[] filesToZip = new string[numFilesToCreate]; - for (i = 0; i < numFilesToCreate; i++) - { - filesToZip[i] = Path.Combine(subdir, String.Format("testfile{0:D3}.txt", i)); - var sz = _rnd.Next(highSize - lowSize) + lowSize; - if (update != null) - update(0, i, sz); - TestUtilities.CreateAndFillFileText(filesToZip[i], - sz, - byteUpdate); - if (update != null) update(2,i,numFilesToCreate); - } - return filesToZip; - } - - - internal static string GetTestBinDir(string startingPoint) - { - return GetTestDependentDir(startingPoint, "Zip Tests\\bin\\Debug"); - } - - internal static string GetTestSrcDir(string startingPoint) - { - return GetTestDependentDir(startingPoint, "Zip Tests"); - } - - private static string GetTestDependentDir(string startingPoint, string subdir) - { - var location = startingPoint; - for (int i = 0; i < 3; i++) - location = Path.GetDirectoryName(location); - - location = Path.Combine(location, subdir); - return location; - } - - - internal static Ionic.CopyData.Transceiver - StartProgressMonitor(string progressChannel, string title, string initialStatus) - { - string testBin = TestUtilities.GetTestBinDir(cdir); - string progressMonitorTool = Path.Combine(testBin, "Resources\\UnitTestProgressMonitor.exe"); - string requiredDll = Path.Combine(testBin, "Resources\\Ionic.CopyData.dll"); - Assert.IsTrue(File.Exists(progressMonitorTool), "progress monitor tool does not exist ({0})", progressMonitorTool); - Assert.IsTrue(File.Exists(requiredDll), "required DLL does not exist ({0})", requiredDll); - - // start the progress monitor - string ignored; - //this.Exec(progressMonitorTool, String.Format("-channel {0}", progressChannel), false); - TestUtilities.Exec_NoContext(progressMonitorTool, String.Format("-channel {0}", progressChannel), false, out ignored); - - var txrx = new Ionic.CopyData.Transceiver(); - System.Threading.Thread.Sleep(1000); - txrx.Channel = progressChannel; - System.Threading.Thread.Sleep(450); - txrx.Send("test " + title); - System.Threading.Thread.Sleep(120); - txrx.Send("status " + initialStatus); - return txrx; - } - - internal static int Exec_NoContext(string program, string args, out string output) - { - return Exec_NoContext(program, args, true, out output); - } - - - internal static int Exec_NoContext(string program, string args, bool waitForExit, out string output) - { - System.Diagnostics.Process p = new System.Diagnostics.Process - { - StartInfo = - { - FileName = program, - CreateNoWindow = true, - Arguments = args, - WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden, - UseShellExecute = false, - } - }; - - if (waitForExit) - { - p.StartInfo.RedirectStandardOutput = true; - p.StartInfo.RedirectStandardError = true; - // Must read at least one of the stderr or stdout asynchronously, - // to avoid deadlock. I choose to read stderr. - StringBuilder sb = new StringBuilder(); - p.ErrorDataReceived += new System.Diagnostics.DataReceivedEventHandler((o, e) => { - if (!String.IsNullOrEmpty(e.Data)) - sb.Append(e.Data); - }); - p.Start(); - p.BeginErrorReadLine(); - output = p.StandardOutput.ReadToEnd(); - p.WaitForExit(); - if (sb.Length > 0) - output += sb.ToString(); - output = CleanWzzipOut(output); // just in case - return p.ExitCode; - } - else - { - p.Start(); - } - output = ""; - return 0; - } - - - /// - /// The WinZip command-line tools emit dots and backspaces in the output. - /// For a large zip file, the output can be 1mb or more, of which 99% is - /// dots and backspaces. This method trims them from the output, making it - /// suitable for printing into the TestContext output. - /// - protected static string CleanWzzipOut(string txt) - { - int previousLength = 0; - int cycles = 0; - do - { - // wzzip.exe can generate long sequences of dots, followed by long - // sequences of backspaces. Don't want to replace two backspaces - // with the empty string, so replace a sequence of a non-backspace - // char followed by backspace with the empty string. Do it in - // cycles to handle those long sequences. - - cycles++; - previousLength = txt.Length; - txt = Regex.Replace(txt, "[^\u0008]\u0008", ""); - } while (previousLength != txt.Length && cycles < 80); - - return txt; - } - - #endregion - - internal static string LoremIpsum = - "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer " + - "vulputate, nibh non rhoncus euismod, erat odio pellentesque lacus, sit " + - "amet convallis mi augue et odio. Phasellus cursus urna facilisis " + - "quam. Suspendisse nec metus et sapien scelerisque euismod. Nullam " + - "molestie sem quis nisl. Fusce pellentesque, ante sed semper egestas, sem " + - "nulla vestibulum nulla, quis sollicitudin leo lorem elementum " + - "wisi. Aliquam vestibulum nonummy orci. Sed in dolor sed enim ullamcorper " + - "accumsan. Duis vel nibh. Class aptent taciti sociosqu ad litora torquent " + - "per conubia nostra, per inceptos hymenaeos. Sed faucibus, enim sit amet " + - "venenatis laoreet, nisl elit posuere est, ut sollicitudin tortor velit " + - "ut ipsum. Aliquam erat volutpat. Phasellus tincidunt vehicula " + - "eros. Curabitur vitae erat. " + - "\n " + - "Quisque pharetra lacus quis sapien. Duis id est non wisi sagittis " + - "adipiscing. Nulla facilisi. Etiam quam erat, lobortis eu, facilisis nec, " + - "blandit hendrerit, metus. Fusce hendrerit. Nunc magna libero, " + - "sollicitudin non, vulputate non, ornare id, nulla. Suspendisse " + - "potenti. Nullam in mauris. Curabitur et nisl vel purus vehicula " + - "sodales. Class aptent taciti sociosqu ad litora torquent per conubia " + - "nostra, per inceptos hymenaeos. Cum sociis natoque penatibus et magnis " + - "dis parturient montes, nascetur ridiculus mus. Donec semper, arcu nec " + - "dignissim porta, eros odio tempus pede, et laoreet nibh arcu et " + - "nisl. Morbi pellentesque eleifend ante. Morbi dictum lorem non " + - "ante. Nullam et augue sit amet sapien varius mollis. " + - "\n " + - "Nulla erat lorem, fringilla eget, ultrices nec, dictum sed, " + - "sapien. Aliquam libero ligula, porttitor scelerisque, lobortis nec, " + - "dignissim eu, elit. Etiam feugiat, dui vitae laoreet faucibus, tellus " + - "urna molestie purus, sit amet pretium lorem pede in erat. Ut non libero " + - "et sapien porttitor eleifend. Vestibulum ante ipsum primis in faucibus " + - "orci luctus et ultrices posuere cubilia Curae; In at lorem et lacus " + - "feugiat iaculis. Nunc tempus eros nec arcu tristique egestas. Quisque " + - "metus arcu, pretium in, suscipit dictum, bibendum sit amet, " + - "mauris. Aliquam non urna. Suspendisse eget diam. Aliquam erat " + - "volutpat. In euismod aliquam lorem. Mauris dolor nisl, consectetuer sit " + - "amet, suscipit sodales, rutrum in, lorem. Nunc nec nisl. Nulla ante " + - "libero, aliquam porttitor, aliquet at, imperdiet sed, diam. Pellentesque " + - "tincidunt nisl et ipsum. Suspendisse purus urna, semper quis, laoreet " + - "in, vestibulum vel, arcu. Nunc elementum eros nec mauris. " + - "\n " + - "Vivamus congue pede at quam. Aliquam aliquam leo vel turpis. Ut " + - "commodo. Integer tincidunt sem a risus. Cras aliquam libero quis " + - "arcu. Integer posuere. Nulla malesuada, wisi ac elementum sollicitudin, " + - "libero libero molestie velit, eu faucibus est ante eu libero. Sed " + - "vestibulum, dolor ac ultricies consectetuer, tellus risus interdum diam, " + - "a imperdiet nibh eros eget mauris. Donec faucibus volutpat " + - "augue. Phasellus vitae arcu quis ipsum ultrices fermentum. Vivamus " + - "ultricies porta ligula. Nullam malesuada. Ut feugiat urna non " + - "turpis. Vivamus ipsum. Vivamus eleifend condimentum risus. Curabitur " + - "pede. Maecenas suscipit pretium tortor. Integer pellentesque. " + - "\n " + - "Mauris est. Aenean accumsan purus vitae ligula. Lorem ipsum dolor sit " + - "amet, consectetuer adipiscing elit. Nullam at mauris id turpis placerat " + - "accumsan. Sed pharetra metus ut ante. Aenean vel urna sit amet ante " + - "pretium dapibus. Sed nulla. Sed nonummy, lacus a suscipit semper, erat " + - "wisi convallis mi, et accumsan magna elit laoreet sem. Nam leo est, " + - "cursus ut, molestie ac, laoreet id, mauris. Suspendisse auctor nibh. " + - "\n"; - - static string[] LoremIpsumWords; - - - } - - - - public static class Extensions - { - - public static IEnumerable SplitByWords(this string subject) - { - List tokens = new List(); - Regex regex = new Regex(@"\s+"); - tokens.AddRange(regex.Split(subject)); - - return tokens; - } - - // Capitalize - public static string Capitalize(this string subject) - { - if (subject.Length < 2) return subject.ToUpper(); - return subject.Substring(0, 1).ToUpper() + - subject.Substring(1); - } - - // TrimPunctuation - public static string TrimPunctuation(this string subject) - { - while (subject.EndsWith(".") || - subject.EndsWith(",") || - subject.EndsWith(";") || - subject.EndsWith("?") || - subject.EndsWith("!")) - subject = subject.Substring(0, subject.Length - 1); - return subject; - } - } - - -} +// TestUtilities.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009-2011 Dino Chiesa. +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-August-11 07:54:52> +// +// ------------------------------------------------------------------ +// +// This module defines some utility classes used by the unit tests for +// DotNetZip. +// +// ------------------------------------------------------------------ + +using System; +using System.Collections.Generic; +using System.Text; +using System.Text.RegularExpressions; +using System.Net; +using System.IO; +using Ionic.Zip; +using Microsoft.VisualStudio.TestTools.UnitTesting; + +namespace Ionic.Zip.Tests.Utilities +{ + class TestUtilities + { + static System.Random _rnd; + static string cdir; + static TestUtilities() + { + _rnd = new System.Random(); + LoremIpsumWords = LoremIpsum.Split(" ".ToCharArray(), System.StringSplitOptions.RemoveEmptyEntries); + cdir = Directory.GetCurrentDirectory(); + } + + + + #region Test Init and Cleanup + + internal static void Initialize(out string TopLevelDir) + { + if (cdir == null) cdir = Directory.GetCurrentDirectory(); + + TopLevelDir = TestUtilities.GenerateUniquePathname("tmp"); + Directory.CreateDirectory(TopLevelDir); + Directory.SetCurrentDirectory(Path.GetDirectoryName(TopLevelDir)); + } + + internal static void Cleanup(string CurrentDir, List FilesToRemove) + { + Assert.AreNotEqual(Path.GetFileName(CurrentDir), "Temp", "at finish"); + Directory.SetCurrentDirectory(CurrentDir); + IOException GotException = null; + int Tries = 0; + do + { + try + { + GotException = null; + foreach (string filename in FilesToRemove) + { + if (Directory.Exists(filename)) + { + // turn off any ReadOnly attributes + ClearReadOnly(filename); + Directory.Delete(filename, true); + } + if (File.Exists(filename)) + { + File.Delete(filename); + } + } + Tries++; + } + catch (IOException ioexc) + { + GotException = ioexc; + // use an backoff interval before retry + System.Threading.Thread.Sleep(200 * Tries); + } + } while ((GotException != null) && (Tries < 4)); + if (GotException != null) throw GotException; + } + + + public static void ClearReadOnly(string dirname) + { + // don't traverse reparse points + if ((File.GetAttributes(dirname) & FileAttributes.ReparsePoint) != 0) + return; + + foreach (var d in Directory.GetDirectories(dirname)) + { + ClearReadOnly(d); // recurse + } + + foreach (var f in Directory.GetFiles(dirname)) + { + // clear ReadOnly and System attributes + var a = File.GetAttributes(f); + if ((a & FileAttributes.ReadOnly) == FileAttributes.ReadOnly) + { + a ^= FileAttributes.ReadOnly; + File.SetAttributes(f, a); + } + if ((a & FileAttributes.System) == FileAttributes.System) + { + a ^= FileAttributes.System; + File.SetAttributes(f, a); + } + } + } + + + + #endregion + + + #region Helper methods + + internal static string TrimVolumeAndSwapSlashes(string pathName) + { + //return (((pathname[1] == ':') && (pathname[2] == '\\')) ? pathname.Substring(3) : pathname) + // .Replace('\\', '/'); + if (String.IsNullOrEmpty(pathName)) return pathName; + if (pathName.Length < 2) return pathName.Replace('\\', '/'); + return (((pathName[1] == ':') && (pathName[2] == '\\')) ? pathName.Substring(3) : pathName) + .Replace('\\', '/'); + } + + internal static DateTime RoundToEvenSecond(DateTime source) + { + // round to nearest second: + if ((source.Second % 2) == 1) + source += new TimeSpan(0, 0, 1); + + DateTime dtRounded = new DateTime(source.Year, source.Month, source.Day, source.Hour, source.Minute, source.Second); + //if (source.Millisecond >= 500) dtRounded = dtRounded.AddSeconds(1); + return dtRounded; + } + + + /// + /// count occurrences of sample in string s. + /// + internal static int CountOccurrences(string s, string sample) + { + int nFound = 0; + int n = 0; + do + { + n = s.IndexOf(sample,n); + if (n>0) nFound++; + n++; + } while (n>0); + return nFound; + } + + + internal static void CreateAndFillFileText(string filename, Int64 size) + { + CreateAndFillFileText(filename, size, null); + } + + + internal static void CreateAndFillFileText(string filename, + Int64 size, + Action update) + { + Int64 bytesRemaining = size; + + if (size > 128 * 1024) + { + var rnd = new System.Random(); + RandomTextGenerator rtg = new RandomTextGenerator(); + int chunkSize = 48 * 1024; + int variationSize = 2 * 1024; + var newLinePair = Encoding.ASCII.GetBytes("\n\n"); + int nCycles = 0; + // fill the file with text data, selecting large blocks at a time + var fodder = new byte[32][]; + using (var fs = File.Create(filename)) + { + do + { + int n = rnd.Next(fodder.Length); + if (fodder[n] == null) + { + string generatedText = rtg.Generate(chunkSize); + fodder[n] = Encoding.ASCII.GetBytes(generatedText); + } + + var bytes = fodder[n]; + int len = bytes.Length - rnd.Next(variationSize); + fs.Write(bytes,0,len); + bytesRemaining -= len; + fs.Write(newLinePair, 0, newLinePair.Length); + bytesRemaining -= newLinePair.Length; + nCycles++; + if ((nCycles % 1024) == 0) + { + if (update != null) + update(size - bytesRemaining); + } + } while (bytesRemaining > 0); + } + } + else + { + // fill the file with text data, selecting one word at a time + using (StreamWriter sw = File.CreateText(filename)) + { + do + { + // pick a word at random + string selectedWord = LoremIpsumWords[_rnd.Next(LoremIpsumWords.Length)]; + if (bytesRemaining < selectedWord.Length + 1) + { + sw.Write(selectedWord.Substring(0, (int)bytesRemaining)); + bytesRemaining = 0; + } + else + { + sw.Write(selectedWord); + sw.Write(" "); + bytesRemaining -= (selectedWord.Length + 1); + } + if (update != null) + update(size - bytesRemaining); + + } while (bytesRemaining > 0); + sw.Close(); + } + } + } + + internal static void CreateAndFillFileText(string Filename, + string Line, + Int64 size) + { + CreateAndFillFileText(Filename, Line, size, null); + } + + + internal static void CreateAndFillFileText(string Filename, + string Line, + Int64 size, + System.Action update) + { + Int64 bytesRemaining = size; + // fill the file by repeatedly writing out the same line + using (StreamWriter sw = File.CreateText(Filename)) + { + do + { + if (bytesRemaining < Line.Length + 2) + { + if (bytesRemaining == 1) + sw.Write(" "); + else if (bytesRemaining == 1) + sw.WriteLine(); + else + sw.WriteLine(Line.Substring(0, (int)bytesRemaining - 2)); + bytesRemaining = 0; + } + else + { + sw.WriteLine(Line); + bytesRemaining -= (Line.Length + 2); + } + if (update != null) + update(size - bytesRemaining); + } while (bytesRemaining > 0); + sw.Close(); + } + } + + internal static void CreateAndFillFileBinary(string Filename, Int64 size) + { + _CreateAndFillBinary(Filename, size, false, null); + } + + internal static void CreateAndFillFileBinary(string Filename, Int64 size, System.Action update) + { + _CreateAndFillBinary(Filename, size, false, update); + } + + internal static void CreateAndFillFileBinaryZeroes(string Filename, Int64 size, System.Action update) + { + _CreateAndFillBinary(Filename, size, true, update); + } + + delegate void ProgressUpdate(System.Int64 bytesXferred); + + private static void _CreateAndFillBinary(string filename, Int64 size, bool zeroes, System.Action update) + { + Int64 bytesRemaining = size; + // fill with binary data + int sz = 65536 * 8; + if (size < sz) sz = (int)size; + byte[] buffer = new byte[sz]; + int nCycles = 0; + using (var fileStream = File.Create(filename)) + { + while (bytesRemaining > 0) + { + int sizeOfChunkToWrite = (bytesRemaining > buffer.Length) ? buffer.Length : (int)bytesRemaining; + if (!zeroes) _rnd.NextBytes(buffer); + fileStream.Write(buffer, 0, sizeOfChunkToWrite); + bytesRemaining -= sizeOfChunkToWrite; + nCycles++; + if (size > 1024*1024) + { + if ((nCycles % 256) == 0) + { + if (update != null) + update(size - bytesRemaining); + } + } + } + fileStream.Close(); + } + } + + + internal static void CreateAndFillFile(string filename, Int64 size) + { + if (size == 0) + File.Create(filename); + else if (_rnd.Next(2) == 0) + CreateAndFillFileText(filename, size); + else + CreateAndFillFileBinary(filename, size); + } + + internal enum FileFlavor + { + Text = 0, Binary = 1, + } + + internal static void CreateAndFillFile(string filename, + Int64 size, + FileFlavor flavor) + { + if (size == 0) + File.Create(filename); + else if (flavor == FileFlavor.Text) + CreateAndFillFileText(filename, size); + else + CreateAndFillFileBinary(filename, size); + } + + internal static string CreateUniqueFile(string extension, string ContainingDirectory) + { + //string nameOfFileToCreate = GenerateUniquePathname(extension, ContainingDirectory); + string nameOfFileToCreate = Path.Combine(ContainingDirectory, String.Format("{0}.{1}", Path.GetRandomFileName(), extension)); + // create an empty file + using (var fs = File.Create(nameOfFileToCreate)) { } + return nameOfFileToCreate; + } + + internal static string CreateUniqueFile(string extension) + { + return CreateUniqueFile(extension, null); + } + + internal static string CreateUniqueFile(string extension, Int64 size) + { + return CreateUniqueFile(extension, null, size); + } + + internal static string CreateUniqueFile(string extension, string ContainingDirectory, Int64 size) + { + //string fileToCreate = GenerateUniquePathname(extension, ContainingDirectory); + string nameOfFileToCreate = Path.Combine(ContainingDirectory, String.Format("{0}.{1}", Path.GetRandomFileName(), extension)); + CreateAndFillFile(nameOfFileToCreate, size); + return nameOfFileToCreate; + } + + static System.Reflection.Assembly _a = null; + private static System.Reflection.Assembly _MyAssembly + { + get + { + if (_a == null) + { + _a = System.Reflection.Assembly.GetExecutingAssembly(); + } + return _a; + } + } + + internal static string GenerateUniquePathname(string extension) + { + return GenerateUniquePathname(extension, null); + } + + internal static string GenerateUniquePathname(string extension, string ContainingDirectory) + { + string candidate = null; + String AppName = _MyAssembly.GetName().Name; + + string parentDir = (ContainingDirectory == null) ? System.Environment.GetEnvironmentVariable("TEMP") : + ContainingDirectory; + if (parentDir == null) return null; + + int index = 0; + do + { + index++; + string Name = String.Format("{0}-{1}-{2}.{3}", + AppName, System.DateTime.Now.ToString("yyyyMMMdd-HHmmss"), index, extension); + candidate = Path.Combine(parentDir, Name); + } while (File.Exists(candidate)); + + // this file/path does not exist. It can now be created, as + // file or directory. + return candidate; + } + + internal static int CountEntries(string zipfile) + { + int entries = 0; + using (ZipFile zip = ZipFile.Read(zipfile)) + { + foreach (ZipEntry e in zip) + if (!e.IsDirectory) entries++; + } + return entries; + } + + + internal static string GetCheckSumString(string filename) + { + return CheckSumToString(ComputeChecksum(filename)); + } + + internal static string CheckSumToString(byte[] checksum) + { + var sb = new System.Text.StringBuilder(); + foreach (byte b in checksum) + sb.Append(b.ToString("x2").ToLower()); + return sb.ToString(); + } + + internal static byte[] ComputeChecksum(string filename) + { + var _md5 = System.Security.Cryptography.MD5.Create(); + using (FileStream fs = File.OpenRead(filename)) + { + return _md5.ComputeHash(fs); + } + } + + private static char GetOneRandomPasswordChar() + { + const int range = 126 - 33; + const int start = 33; + char x = '\0'; + do + { + x = (char)(_rnd.Next(range) + start); + + } while (x == '^' || x == '&' || x == '"' || x == '>' || x == '<'); + return x; + } + + internal static string GenerateRandomPassword() + { + int length = _rnd.Next(22) + 12; + return GenerateRandomPassword(length); + } + + internal static string GenerateRandomPassword(int length) + { + char[] a = new char[length]; + for (int i = 0; i < length; i++) + { + a[i] = GetOneRandomPasswordChar(); + } + + string result = new System.String(a); + return result; + } + + + public static string GenerateRandomAsciiString() + { + return GenerateRandomAsciiString(_rnd.Next(14)); + } + + public static string GenerateRandomName() + { + return + GenerateRandomUpperString(1) + + GenerateRandomLowerString(_rnd.Next(9) + 3); + } + + public static string GenerateRandomName(int length) + { + return + GenerateRandomUpperString(1) + + GenerateRandomLowerString(length - 1); + } + + public static string GenerateRandomAsciiString(int length) + { + return GenerateRandomAsciiStringImpl(length, 0); + } + + public static string GenerateRandomUpperString() + { + return GenerateRandomAsciiStringImpl(_rnd.Next(10) + 3, 65); + } + + public static string GenerateRandomUpperString(int length) + { + return GenerateRandomAsciiStringImpl(length, 65); + } + + public static string GenerateRandomLowerString(int length) + { + return GenerateRandomAsciiStringImpl(length, 97); + } + + public static string GenerateRandomLowerString() + { + return GenerateRandomAsciiStringImpl(_rnd.Next(9) + 4, 97); + } + + private static string GenerateRandomAsciiStringImpl(int length, int delta) + { + bool WantRandomized = (delta == 0); + + string result = ""; + char[] a = new char[length]; + + for (int i = 0; i < length; i++) + { + if (WantRandomized) + delta = (_rnd.Next(2) == 0) ? 65 : 97; + a[i] = GetOneRandomAsciiChar(delta); + } + + result = new System.String(a); + return result; + } + + + + private static char GetOneRandomAsciiChar(int delta) + { + // delta == 65 means uppercase + // delta == 97 means lowercase + return (char)(_rnd.Next(26) + delta); + } + + public static char GetOneRandomLowercaseAsciiChar() + { + return (char)(_rnd.Next(26) + 97); + } + + public static char GetOneRandomUppercaseAsciiChar() + { + return (char)(_rnd.Next(26) + 65); + } + + + + + internal static int GenerateFilesOneLevelDeep(TestContext tc, + string testName, + string dirToZip, + Action update, + out int subdirCount) + { + int[] settings = { 7, 6, 17, 23, 4000, 4000 }; // to randomly set dircount, filecount, and filesize + return GenerateFilesOneLevelDeep(tc, testName, dirToZip, settings, update, out subdirCount); + } + + + internal static int GenerateFilesOneLevelDeep(TestContext tc, + string testName, + string dirToZip, + int[] settings, + Action update, + out int subdirCount) + { + int entriesAdded = 0; + String filename = null; + + subdirCount = _rnd.Next(settings[0]) + settings[1]; + if (update != null) + update(0, subdirCount); + tc.WriteLine("{0}: Creating {1} subdirs.", testName, subdirCount); + for (int i = 0; i < subdirCount; i++) + { + string subdir = Path.Combine(dirToZip, String.Format("dir{0:D4}", i)); + Directory.CreateDirectory(subdir); + + int filecount = _rnd.Next(settings[2]) + settings[3]; + if (update != null) + update(1, filecount); + tc.WriteLine(":: Subdir {0}, Creating {1} files.", i, filecount); + for (int j = 0; j < filecount; j++) + { + int n = _rnd.Next(2); + filename = String.Format("file{0:D4}.{1}", j, (n == 0) ? "txt" : "bin"); + TestUtilities.CreateAndFillFile(Path.Combine(subdir, filename), + _rnd.Next(settings[4]) + settings[5], + (FileFlavor)n); + entriesAdded++; + if (update != null) + update(3, j + 1); + } + if (update != null) + update(2, i + 1); + } + if (update != null) + update(4, entriesAdded); + return entriesAdded; + } + + + internal static string[] GenerateFilesFlat(string subdir) + { + return GenerateFilesFlat(subdir, 0); + } + + internal static string[] GenerateFilesFlat(string subdir, int numFilesToCreate) + { + return GenerateFilesFlat(subdir, numFilesToCreate, 0, 0); + } + + internal static string[] GenerateFilesFlat(string subdir, int numFilesToCreate, int size) + { + return GenerateFilesFlat(subdir, numFilesToCreate, size, size); + } + + internal static string[] GenerateFilesFlat(string subdir, + int numFilesToCreate, + int lowSize, int highSize) + { + return GenerateFilesFlat(subdir, numFilesToCreate, lowSize, highSize, + null); + } + + internal static string[] GenerateFilesFlat(string subdir, + int numFilesToCreate, + int lowSize, + int highSize, + Action update) + { + if (numFilesToCreate==0) + numFilesToCreate = _rnd.Next(23) + 14; + + if (lowSize == highSize && lowSize == 0) + { + lowSize = 5000; + highSize = 39000; + } + if (!Directory.Exists(subdir)) + Directory.CreateDirectory(subdir); + + int i = 0; + Action byteUpdate = null; + if (update != null) + { + byteUpdate = new Action( x => { + update(1,i,x); + }); + } + + string[] filesToZip = new string[numFilesToCreate]; + for (i = 0; i < numFilesToCreate; i++) + { + filesToZip[i] = Path.Combine(subdir, String.Format("testfile{0:D3}.txt", i)); + var sz = _rnd.Next(highSize - lowSize) + lowSize; + if (update != null) + update(0, i, sz); + TestUtilities.CreateAndFillFileText(filesToZip[i], + sz, + byteUpdate); + if (update != null) update(2,i,numFilesToCreate); + } + return filesToZip; + } + + + internal static string GetTestBinDir(string startingPoint) + { + return GetTestDependentDir(startingPoint, "Zip Tests\\bin\\Debug"); + } + + internal static string GetTestSrcDir(string startingPoint) + { + return GetTestDependentDir(startingPoint, "Zip Tests"); + } + + private static string GetTestDependentDir(string startingPoint, string subdir) + { + var location = startingPoint; + for (int i = 0; i < 3; i++) + location = Path.GetDirectoryName(location); + + location = Path.Combine(location, subdir); + return location; + } + + + internal static Ionic.CopyData.Transceiver + StartProgressMonitor(string progressChannel, string title, string initialStatus) + { + string testBin = TestUtilities.GetTestBinDir(cdir); + string progressMonitorTool = Path.Combine(testBin, "Resources\\UnitTestProgressMonitor.exe"); + string requiredDll = Path.Combine(testBin, "Resources\\Ionic.CopyData.dll"); + Assert.IsTrue(File.Exists(progressMonitorTool), "progress monitor tool does not exist ({0})", progressMonitorTool); + Assert.IsTrue(File.Exists(requiredDll), "required DLL does not exist ({0})", requiredDll); + + // start the progress monitor + string ignored; + //this.Exec(progressMonitorTool, String.Format("-channel {0}", progressChannel), false); + TestUtilities.Exec_NoContext(progressMonitorTool, String.Format("-channel {0}", progressChannel), false, out ignored); + + var txrx = new Ionic.CopyData.Transceiver(); + System.Threading.Thread.Sleep(1000); + txrx.Channel = progressChannel; + System.Threading.Thread.Sleep(450); + txrx.Send("test " + title); + System.Threading.Thread.Sleep(120); + txrx.Send("status " + initialStatus); + return txrx; + } + + internal static int Exec_NoContext(string program, string args, out string output) + { + return Exec_NoContext(program, args, true, out output); + } + + + internal static int Exec_NoContext(string program, string args, bool waitForExit, out string output) + { + System.Diagnostics.Process p = new System.Diagnostics.Process + { + StartInfo = + { + FileName = program, + CreateNoWindow = true, + Arguments = args, + WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden, + UseShellExecute = false, + } + }; + + if (waitForExit) + { + p.StartInfo.RedirectStandardOutput = true; + p.StartInfo.RedirectStandardError = true; + // Must read at least one of the stderr or stdout asynchronously, + // to avoid deadlock. I choose to read stderr. + StringBuilder sb = new StringBuilder(); + p.ErrorDataReceived += new System.Diagnostics.DataReceivedEventHandler((o, e) => { + if (!String.IsNullOrEmpty(e.Data)) + sb.Append(e.Data); + }); + p.Start(); + p.BeginErrorReadLine(); + output = p.StandardOutput.ReadToEnd(); + p.WaitForExit(); + if (sb.Length > 0) + output += sb.ToString(); + output = CleanWzzipOut(output); // just in case + return p.ExitCode; + } + else + { + p.Start(); + } + output = ""; + return 0; + } + + + /// + /// The WinZip command-line tools emit dots and backspaces in the output. + /// For a large zip file, the output can be 1mb or more, of which 99% is + /// dots and backspaces. This method trims them from the output, making it + /// suitable for printing into the TestContext output. + /// + protected static string CleanWzzipOut(string txt) + { + int previousLength = 0; + int cycles = 0; + do + { + // wzzip.exe can generate long sequences of dots, followed by long + // sequences of backspaces. Don't want to replace two backspaces + // with the empty string, so replace a sequence of a non-backspace + // char followed by backspace with the empty string. Do it in + // cycles to handle those long sequences. + + cycles++; + previousLength = txt.Length; + txt = Regex.Replace(txt, "[^\u0008]\u0008", ""); + } while (previousLength != txt.Length && cycles < 80); + + return txt; + } + + #endregion + + internal static string LoremIpsum = + "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer " + + "vulputate, nibh non rhoncus euismod, erat odio pellentesque lacus, sit " + + "amet convallis mi augue et odio. Phasellus cursus urna facilisis " + + "quam. Suspendisse nec metus et sapien scelerisque euismod. Nullam " + + "molestie sem quis nisl. Fusce pellentesque, ante sed semper egestas, sem " + + "nulla vestibulum nulla, quis sollicitudin leo lorem elementum " + + "wisi. Aliquam vestibulum nonummy orci. Sed in dolor sed enim ullamcorper " + + "accumsan. Duis vel nibh. Class aptent taciti sociosqu ad litora torquent " + + "per conubia nostra, per inceptos hymenaeos. Sed faucibus, enim sit amet " + + "venenatis laoreet, nisl elit posuere est, ut sollicitudin tortor velit " + + "ut ipsum. Aliquam erat volutpat. Phasellus tincidunt vehicula " + + "eros. Curabitur vitae erat. " + + "\n " + + "Quisque pharetra lacus quis sapien. Duis id est non wisi sagittis " + + "adipiscing. Nulla facilisi. Etiam quam erat, lobortis eu, facilisis nec, " + + "blandit hendrerit, metus. Fusce hendrerit. Nunc magna libero, " + + "sollicitudin non, vulputate non, ornare id, nulla. Suspendisse " + + "potenti. Nullam in mauris. Curabitur et nisl vel purus vehicula " + + "sodales. Class aptent taciti sociosqu ad litora torquent per conubia " + + "nostra, per inceptos hymenaeos. Cum sociis natoque penatibus et magnis " + + "dis parturient montes, nascetur ridiculus mus. Donec semper, arcu nec " + + "dignissim porta, eros odio tempus pede, et laoreet nibh arcu et " + + "nisl. Morbi pellentesque eleifend ante. Morbi dictum lorem non " + + "ante. Nullam et augue sit amet sapien varius mollis. " + + "\n " + + "Nulla erat lorem, fringilla eget, ultrices nec, dictum sed, " + + "sapien. Aliquam libero ligula, porttitor scelerisque, lobortis nec, " + + "dignissim eu, elit. Etiam feugiat, dui vitae laoreet faucibus, tellus " + + "urna molestie purus, sit amet pretium lorem pede in erat. Ut non libero " + + "et sapien porttitor eleifend. Vestibulum ante ipsum primis in faucibus " + + "orci luctus et ultrices posuere cubilia Curae; In at lorem et lacus " + + "feugiat iaculis. Nunc tempus eros nec arcu tristique egestas. Quisque " + + "metus arcu, pretium in, suscipit dictum, bibendum sit amet, " + + "mauris. Aliquam non urna. Suspendisse eget diam. Aliquam erat " + + "volutpat. In euismod aliquam lorem. Mauris dolor nisl, consectetuer sit " + + "amet, suscipit sodales, rutrum in, lorem. Nunc nec nisl. Nulla ante " + + "libero, aliquam porttitor, aliquet at, imperdiet sed, diam. Pellentesque " + + "tincidunt nisl et ipsum. Suspendisse purus urna, semper quis, laoreet " + + "in, vestibulum vel, arcu. Nunc elementum eros nec mauris. " + + "\n " + + "Vivamus congue pede at quam. Aliquam aliquam leo vel turpis. Ut " + + "commodo. Integer tincidunt sem a risus. Cras aliquam libero quis " + + "arcu. Integer posuere. Nulla malesuada, wisi ac elementum sollicitudin, " + + "libero libero molestie velit, eu faucibus est ante eu libero. Sed " + + "vestibulum, dolor ac ultricies consectetuer, tellus risus interdum diam, " + + "a imperdiet nibh eros eget mauris. Donec faucibus volutpat " + + "augue. Phasellus vitae arcu quis ipsum ultrices fermentum. Vivamus " + + "ultricies porta ligula. Nullam malesuada. Ut feugiat urna non " + + "turpis. Vivamus ipsum. Vivamus eleifend condimentum risus. Curabitur " + + "pede. Maecenas suscipit pretium tortor. Integer pellentesque. " + + "\n " + + "Mauris est. Aenean accumsan purus vitae ligula. Lorem ipsum dolor sit " + + "amet, consectetuer adipiscing elit. Nullam at mauris id turpis placerat " + + "accumsan. Sed pharetra metus ut ante. Aenean vel urna sit amet ante " + + "pretium dapibus. Sed nulla. Sed nonummy, lacus a suscipit semper, erat " + + "wisi convallis mi, et accumsan magna elit laoreet sem. Nam leo est, " + + "cursus ut, molestie ac, laoreet id, mauris. Suspendisse auctor nibh. " + + "\n"; + + static string[] LoremIpsumWords; + + + } + + + + public static class Extensions + { + + public static IEnumerable SplitByWords(this string subject) + { + List tokens = new List(); + Regex regex = new Regex(@"\s+"); + tokens.AddRange(regex.Split(subject)); + + return tokens; + } + + // Capitalize + public static string Capitalize(this string subject) + { + if (subject.Length < 2) return subject.ToUpper(); + return subject.Substring(0, 1).ToUpper() + + subject.Substring(1); + } + + // TrimPunctuation + public static string TrimPunctuation(this string subject) + { + while (subject.EndsWith(".") || + subject.EndsWith(",") || + subject.EndsWith(";") || + subject.EndsWith("?") || + subject.EndsWith("!")) + subject = subject.Substring(0, subject.Length - 1); + return subject; + } + } + + +} diff --git a/src/Zip Tests/UnicodeTests.cs b/old/src/Zip Tests/UnicodeTests.cs similarity index 97% rename from src/Zip Tests/UnicodeTests.cs rename to old/src/Zip Tests/UnicodeTests.cs index 97b048d..d7e1508 100644 --- a/src/Zip Tests/UnicodeTests.cs +++ b/old/src/Zip Tests/UnicodeTests.cs @@ -1,686 +1,686 @@ -// UnicodeTests.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2008-2011 Dino Chiesa . -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// Last Saved: <2011-July-06 19:29:37> -// -// ------------------------------------------------------------------ -// -// This module defines the tests for the Unicode features in DotNetZip. -// -// ------------------------------------------------------------------ - - -using System; -using System.Text; -using System.Collections.Generic; -using Microsoft.VisualStudio.TestTools.UnitTesting; - -using Ionic.Zip; -using Ionic.Zip.Tests.Utilities; -using System.IO; - -namespace Ionic.Zip.Tests.Unicode -{ - /// - /// Summary description for UnicodeTests - /// - [TestClass] - public class UnicodeTests : IonicTestClass - { - public UnicodeTests() : base() { } - - - [TestMethod] - public void Create_UnicodeEntries() - { - int i; - string origComment = "This is a Unicode comment. "+ - "Chinese: 弹 出 应 用 程 序 "+ - "Norwegian/Danish: æøåÆØÅ. "+ - "Portugese: Configurações."; - string[] formats = { - "弹出应用程序{0:D3}.bin", - "n.æøåÆØÅ{0:D3}.bin", - "Configurações-弹出-ÆØÅ-xx{0:D3}.bin" - }; - - for (int k = 0; k < formats.Length; k++) - { - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "files" + k); - Directory.CreateDirectory(subdir); - - // create a bunch of files - int numFilesToCreate = _rnd.Next(18) + 14; - string[] filesToZip = new string[numFilesToCreate]; - for (i = 0; i < numFilesToCreate; i++) - { - filesToZip[i] = Path.Combine(subdir, String.Format(formats[k], i)); - TestUtilities.CreateAndFillFileBinary(filesToZip[i], _rnd.Next(5000) + 2000); - } - - // create a zipfile twice, once using Unicode, once without - for (int j = 0; j < 2; j++) - { - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Create_UnicodeEntries_{0}_{1}.zip", k, j)); - Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); - - TestContext.WriteLine("\n\nFormat {0}, trial {1}. filename: {2}...", k, j, zipFileToCreate); - string dirInArchive = String.Format("{0}-{1}", Path.GetFileName(subdir), j); - - using (ZipFile zip1 = new ZipFile()) - { -#pragma warning disable 618 - zip1.UseUnicodeAsNecessary = (j == 0); -#pragma warning restore 618 - for (i = 0; i < filesToZip.Length; i++) - { - // use the local filename (not fully qualified) - ZipEntry e = zip1.AddFile(filesToZip[i], dirInArchive); - e.Comment = String.Format("This entry encoded with {0}", (j == 0) ? "unicode" : "the default code page."); - } - zip1.Comment = origComment; - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, - "Incorrect number of entries in the zip file."); - - i = 0; - - // verify the filenames are (or are not) unicode - - var options = new ReadOptions { - Encoding = (j == 0) ? System.Text.Encoding.UTF8 : ZipFile.DefaultEncoding - }; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate, options)) - { - foreach (ZipEntry e in zip2) - { - string fname = String.Format(formats[k], i); - if (j == 0) - { - Assert.AreEqual(fname, Path.GetFileName(e.FileName)); - } - else - { - Assert.AreNotEqual(fname, Path.GetFileName(e.FileName)); - } - i++; - } - - - // according to the spec, - // unicode is not supported on the zip archive comment! - // But this library won't enforce that. - // We will leave it up to the application. - // Assert.AreNotEqual(origComment, zip2.Comment); - - } - } - } - } - - string[] miscNameFormats = { - "file{0:D3}.bin", // keep this at index==0 - "弹出应用程序{0:D3}.bin", // Chinese - "codeplexの更新RSSを見てふと書いた投稿だったけど日本語情報がないかは調{0:D3}.bin", // Japanese - "n.æøåÆØÅ{0:D3}.bin", // greek - "Configurações-弹出-ÆØÅ-xx{0:D3}.bin", // portugese + Chinese - "¡¢£ ¥â° €Ãƒ †œ Ñ añoAbba{0:D3.bin}", //?? - "А Б В Г Д Є Ж Ѕ З И І К Л М Н О П Р С Т Ф Х Ц Ч Ш Щ Ъ ЪІ Ь Ю ІА {0:D3}.b", // Russian - "Ελληνικό αλφάβητο {0:D3}.b", - "א ב ג ד ה ו ז ח ט י " + "{0:D3}", // I don't know what language this is - }; - - - private List _CreateUnicodeFiles() - { - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "files"); - Directory.CreateDirectory(subdir); - var filesToZip = new List(); - // create a bunch of files in that subdir - int numFilesToCreate = _rnd.Next(18) + 14; - for (int i = 0; i < numFilesToCreate; i++) - { - int k = i % miscNameFormats.Length; - var f = Path.Combine(subdir, String.Format(miscNameFormats[k], i)); - filesToZip.Add(f); - TestUtilities.CreateAndFillFileBinary(f, _rnd.Next(5000) + 2000); - } - - return filesToZip; - } - - - [TestMethod] - public void Create_UnicodeEntries_Mixed() - { - var filesToZip = _CreateUnicodeFiles(); - - // Using those files create a zipfile 4 times: - // cycle 0 - UseUnicodeAsNecessary - // cycle 1 - Nothing - // cycle 2 - AlternateEncoding = UTF8, AlternateEncodingUsage = Always - // cycle 3 - AlternateEncoding = UTF8, AlternateEncodingUsage = AsNecessary - for (int j = 0; j < 4; j++) - { - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Archive-{0}.zip", j)); - Assert.IsFalse(File.Exists(zipFileToCreate), "The file already exists ({0}).", zipFileToCreate); - - using (ZipFile zip1 = new ZipFile(zipFileToCreate)) - { - switch (j) - { -#pragma warning disable 618 - case 0: - zip1.UseUnicodeAsNecessary = (j == 0); - break; -#pragma warning restore 618 - case 1: - // do nothing - break; - case 2: - zip1.AlternateEncoding = System.Text.Encoding.UTF8; - zip1.AlternateEncodingUsage = ZipOption.Always; - break; - case 3: - zip1.AlternateEncoding = System.Text.Encoding.UTF8; - zip1.AlternateEncodingUsage = ZipOption.AsNecessary; - break; - } - foreach (var fileToZip in filesToZip) - { - zip1.AddFile(fileToZip, ""); - } - zip1.Save(); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Count, - "Incorrect number of entries in the zip file."); - - _CheckUnicodeZip(zipFileToCreate, j); - } - } - - - - - [TestMethod] - public void Unicode_Create_ZOS_wi12634() - { - TestContext.WriteLine("==Unicode_Create_ZOS_wi12634()="); - var filesToZip = _CreateUnicodeFiles(); - byte[] buffer = new byte[2048]; - int n; - - // using those files create a zipfile twice. First cycle uses Unicode, - // 2nd cycle does not. - for (int j = 0; j < 2; j++) - { - // select the name of the zip file - var bpath = String.Format("wi12634-{0}.zip", j); - string zipFileToCreate = Path.Combine(TopLevelDir, bpath); - TestContext.WriteLine("========"); - TestContext.WriteLine("Trial {0}", j); - - Assert.IsFalse(File.Exists(zipFileToCreate), - "The zip file '{0}' already exists.", - zipFileToCreate); - TestContext.WriteLine("file {0}", zipFileToCreate); - - int excCount = 0; - - // create using ZOS - using (var ofs = File.Open(zipFileToCreate, FileMode.Create, FileAccess.ReadWrite)) - { - using (var zos = new ZipOutputStream(ofs)) - { -#pragma warning disable 618 - if (j == 0) - zos.ProvisionalAlternateEncoding = System.Text.Encoding.UTF8; -#pragma warning restore 618 - - try - { - foreach (var fileToZip in filesToZip) - { - var ename = Path.GetFileName(fileToZip); - TestContext.WriteLine("adding entry '{0}'", ename); - zos.PutNextEntry(ename); // with no path - using (var ifs = File.OpenRead(fileToZip)) - { - while ((n = ifs.Read(buffer, 0, buffer.Length)) > 0) - { - zos.Write(buffer, 0, n); - } - } - } - } - catch (System.Exception exc1) - { - TestContext.WriteLine("Exception #{0}", excCount); - TestContext.WriteLine("{0}", exc1.ToString()); - excCount++; - } - } - } - - Assert.IsTrue(excCount==0, - "Exceptions occurred during zip creation."); - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Count, - "Incorrect number of entries in the zip file."); - - _CheckUnicodeZip(zipFileToCreate, j); - TestContext.WriteLine("Trial {0} file checks ok", j); - } - } - - - - [TestMethod] - public void UnicodeComment_wi10392() - { - const string zipFileToCreate = "UnicodeComment_wi10392.zip"; - const string cyrillicComment = "Hello, Привет"; - - TestContext.WriteLine("{0}", zipFileToCreate); - TestContext.WriteLine("==== creating zip"); - using (ZipFile zip1 = new ZipFile(zipFileToCreate, Encoding.UTF8)) - { - zip1.Comment = cyrillicComment; - zip1.AddEntry("entry", "this is the content of the added entry"); - zip1.Save(); - } - - string comment2 = null; - TestContext.WriteLine("==== checking zip"); - var options = new ReadOptions { - Encoding = Encoding.UTF8 - }; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate, options)) - { - comment2 = zip2.Comment; - } - - Assert.AreEqual(cyrillicComment, comment2, - "The comments are not equal."); - } - - - [TestMethod] - public void UnicodeUpdate_wi12744() - { - const string specialEntryName = "Привет.txt"; - - // two passes: one that uses the old "useUnicodeAsNecessary" property, - // and the second that uses the newer property. - for (int k=0; k < 2; k++) - { - - string zipFileToCreate = String.Format("UnicodeUpdate_wi12744-{0}.zip", k); - - TestContext.WriteLine("{0}", zipFileToCreate); - TestContext.WriteLine("==== creating zip, trial {0}", k); - using (ZipFile zip1 = new ZipFile()) - { - if (k==0) - { -#pragma warning disable 618 - zip1.UseUnicodeAsNecessary = true; -#pragma warning restore 618 - } - else - { - zip1.AlternateEncoding = System.Text.Encoding.UTF8; - zip1.AlternateEncodingUsage = ZipOption.AsNecessary; - } - - zip1.AddEntry(specialEntryName, "this is the content of the added entry"); - zip1.Save(zipFileToCreate); - } - - - TestContext.WriteLine("==== create a directory with 2 addl files in it"); - string subdir = Path.Combine(TopLevelDir, "files"+k); - Directory.CreateDirectory(subdir); - for (int i=0; i < 2; i++) - { - var filename = Path.Combine(subdir, "file" + i + ".txt"); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(5000) + 2000); - } - - TestContext.WriteLine("==== update the zip"); - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - zip2.AddDirectory(subdir); - zip2.Save(); - } - - TestContext.WriteLine("==== check the original file in the zip"); - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - var e = zip3[specialEntryName]; - Assert.IsTrue(e!=null, "Entry not found"); - Assert.IsTrue(e.FileName == specialEntryName, "name mismatch"); - } - } - } - - - - - private void _CheckUnicodeZip(string filename, int j) - { - int i = 0; - - // Verify that the filenames do, or do not, match the - // names that were added. They will match if unicode - // was used (j!=1) or if the filename used was the first - // in the formats list (k==0). - using (ZipFile zip2 = ZipFile.Read(filename)) - { - foreach (ZipEntry e in zip2) - { - int k = i % miscNameFormats.Length; - string fname = String.Format(miscNameFormats[k], i); - if (j != 1 || k == 0) - { - Assert.AreEqual(fname, e.FileName, "cycle ({0},{1},{2})", i, j, k); - } - else - { - Assert.AreNotEqual(fname, e.FileName, "cycle ({0},{1},{2})", i, j, k); - } - i++; - } - } - } - - - struct CodepageTrial - { - public string codepage; - public string filenameFormat; - public bool exceptionExpected; // not all codepages will yield legal filenames for a given filenameFormat - public CodepageTrial(string cp, string format, bool except) - { - codepage = cp; - filenameFormat = format; - exceptionExpected = except; - } - } - - [TestMethod] - public void Create_WithSpecifiedCodepage() - { - int i; - CodepageTrial[] trials = { - new CodepageTrial( "big5", "弹出应用程序{0:D3}.bin", true), - new CodepageTrial ("big5", "您好{0:D3}.bin", false), - new CodepageTrial ("gb2312", "弹出应用程序{0:D3}.bin", false), - new CodepageTrial ("gb2312", "您好{0:D3}.bin", false), - // insert other trials here.?? - }; - - for (int k = 0; k < trials.Length; k++) - { - TestContext.WriteLine(""); - TestContext.WriteLine("---------------------Trial {0}....", k); - TestContext.WriteLine("---------------------codepage: {0}....", trials[k].codepage); - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, String.Format("trial{0}-files", k)); - Directory.CreateDirectory(subdir); - - // create a bunch of files - int numFiles = _rnd.Next(3) + 3; - string[] filesToZip = new string[numFiles]; - for (i = 0; i < numFiles; i++) - { - filesToZip[i] = Path.Combine(subdir, String.Format(trials[k].filenameFormat, i)); - TestUtilities.CreateAndFillFileBinary(filesToZip[i], _rnd.Next(5000) + 2000); - } - - Directory.SetCurrentDirectory(subdir); - - // three cases: one for old-style - // ProvisionalAlternateEncoding, one for "AsNecessary" - // and one for "Always" - for (int j=0; j < 3; j++) - { - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("WithSpecifiedCodepage_{0}_{1}_{2}.zip", - k, j, trials[k].codepage)); - - TestContext.WriteLine(""); - TestContext.WriteLine("---------------Creating zip, trial ({0},{1})....", k, j); - - using (ZipFile zip1 = new ZipFile(zipFileToCreate)) - { - switch (j) - { - case 0: -#pragma warning disable 618 - zip1.ProvisionalAlternateEncoding = System.Text.Encoding.GetEncoding(trials[k].codepage); -#pragma warning restore 618 - break; - case 1: - zip1.AlternateEncoding = System.Text.Encoding.GetEncoding(trials[k].codepage); - zip1.AlternateEncodingUsage = ZipOption.AsNecessary; - break; - case 2: - zip1.AlternateEncoding = System.Text.Encoding.GetEncoding(trials[k].codepage); - zip1.AlternateEncodingUsage = ZipOption.Always; - break; - } - - for (i = 0; i < filesToZip.Length; i++) - { - TestContext.WriteLine("adding entry {0}", filesToZip[i]); - // use the local filename (not fully qualified) - ZipEntry e = zip1.AddFile(filesToZip[i], ""); - e.Comment = String.Format("This entry was encoded in the {0} codepage", trials[k].codepage); - } - zip1.Save(); - } - - TestContext.WriteLine("\n---------------------Extracting...."); - Directory.SetCurrentDirectory(TopLevelDir); - - try - { - // verify the filenames are (or are not) unicode - var options = new ReadOptions { - Encoding = System.Text.Encoding.GetEncoding(trials[k].codepage) - }; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate, options)) - { - foreach (ZipEntry e in zip2) - { - TestContext.WriteLine("found entry {0}", e.FileName); - e.Extract(String.Format("trial{0}-{1}-{2}-extract", k, j, trials[k].codepage)); - } - } - } - catch (Exception e1) - { - if (trials[k].exceptionExpected) - TestContext.WriteLine("caught expected exception"); - else - throw new System.Exception("while extracting", e1); - - } - } - - } - TestContext.WriteLine("\n---------------------Done."); - } - - - - [TestMethod] - public void CodePage_UpdateZip_AlternateEncoding_wi10180() - { - System.Text.Encoding JIS = System.Text.Encoding.GetEncoding("shift_jis"); - TestContext.WriteLine("The CP for JIS is: {0}", JIS.CodePage); - ReadOptions options = new ReadOptions { Encoding = JIS }; - string[] filenames = { - "日本語.txt", - "日本語テスト.txt" - }; - - // three trials: one for old-style - // ProvisionalAlternateEncoding, one for "AsNecessary" - // and one for "Always" - for (int j=0; j < 3; j++) - { - string zipFileToCreate = String.Format("wi10180-{0}.zip", j); - - // pass 1 - create it - TestContext.WriteLine("Create zip, cycle {0}...", j); - using (var zip = new ZipFile()) - { - switch (j) - { - case 0: -#pragma warning disable 618 - zip.ProvisionalAlternateEncoding = JIS; -#pragma warning restore 618 - break; - case 1: - zip.AlternateEncoding = JIS; - zip.AlternateEncodingUsage = ZipOption.AsNecessary; - break; - case 2: - zip.AlternateEncoding = JIS; - zip.AlternateEncodingUsage = ZipOption.Always; - break; - } - zip.AddEntry(filenames[0], "This is the content for entry (" + filenames[0] + ")"); - TestContext.WriteLine("adding file: {0}", filenames[0]); - zip.Save(zipFileToCreate); - } - - // pass 2 - read and update it - TestContext.WriteLine("Update zip..."); - using (var zip0 = ZipFile.Read(zipFileToCreate, options)) - { - foreach (var e in zip0) - { - TestContext.WriteLine("existing entry name: {0} encoding: {1}", - e.FileName, e.AlternateEncoding.EncodingName ); - Assert.AreEqual - (options.Encoding, e.AlternateEncoding); - } - zip0.AddEntry(filenames[1], "This is more content..." + System.DateTime.UtcNow.ToString("G")); - TestContext.WriteLine("adding file: {0}", filenames[1]); - zip0.Save(); - } - - // pass 3 - verify the filenames, again - TestContext.WriteLine("Verify zip..."); - using (var zip0 = ZipFile.Read(zipFileToCreate, options)) - { - foreach (string f in filenames) - { - Assert.AreEqual(f, zip0[f].FileName, - "The FileName was not expected, (cycle {0}) ", j); - } - } - } - } - - - - [TestMethod] - public void Unicode_AddDirectoryByName_wi8984() - { - string format = "弹出应用程序{0:D3}.dir"; // Chinese characters - System.Text.Encoding UTF8 = System.Text.Encoding.GetEncoding("UTF-8"); - - TestContext.WriteLine("== WorkItem 8984"); - // three trials: one for old-style - // ProvisionalAlternateEncoding, one for "AsNecessary" - // and one for "Always" - for (int j=0; j < 3; j++) - { - TestContext.WriteLine("Trial {0}", j); - for (int n = 1; n <= 10; n++) - { - TestContext.WriteLine("nEntries {0}", n); - var dirsAdded = new System.Collections.Generic.List(); - var zipFileToCreate = String.Format("wi8984-{0}-{1:N2}.zip", j, n); - using (ZipFile zip1 = new ZipFile(zipFileToCreate)) - { - switch (j) - { - case 0: -#pragma warning disable 618 - zip1.UseUnicodeAsNecessary = true; -#pragma warning restore 618 - break; - case 1: - zip1.AlternateEncoding = UTF8; - zip1.AlternateEncodingUsage = ZipOption.AsNecessary; - break; - case 2: - zip1.AlternateEncoding = UTF8; - zip1.AlternateEncodingUsage = ZipOption.Always; - break; - } - for (int i = 0; i < n; i++) - { - // create an arbitrary directory name, add it to the zip archive - string dirName = String.Format(format, i); - zip1.AddDirectoryByName(dirName); - dirsAdded.Add(dirName + "/"); - } - zip1.Save(); - } - - - string extractDir = String.Format("extract-{0}-{1:D3}", j, n); - int dirCount = 0; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (var e in zip2) - { - TestContext.WriteLine("dir: {0}", e.FileName); - Assert.IsTrue(dirsAdded.Contains(e.FileName), "Cannot find the expected entry ({0})", e.FileName); - Assert.IsTrue(e.IsDirectory); - e.Extract(extractDir); - dirCount++; - } - } - Assert.AreEqual(n, dirCount); - TestContext.WriteLine(""); - } - TestContext.WriteLine(""); - } - } - - - - - } -} +// UnicodeTests.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2008-2011 Dino Chiesa . +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// Last Saved: <2011-July-06 19:29:37> +// +// ------------------------------------------------------------------ +// +// This module defines the tests for the Unicode features in DotNetZip. +// +// ------------------------------------------------------------------ + + +using System; +using System.Text; +using System.Collections.Generic; +using Microsoft.VisualStudio.TestTools.UnitTesting; + +using Ionic.Zip; +using Ionic.Zip.Tests.Utilities; +using System.IO; + +namespace Ionic.Zip.Tests.Unicode +{ + /// + /// Summary description for UnicodeTests + /// + [TestClass] + public class UnicodeTests : IonicTestClass + { + public UnicodeTests() : base() { } + + + [TestMethod] + public void Create_UnicodeEntries() + { + int i; + string origComment = "This is a Unicode comment. "+ + "Chinese: 弹 出 应 用 程 序 "+ + "Norwegian/Danish: æøåÆØÅ. "+ + "Portugese: Configurações."; + string[] formats = { + "弹出应用程序{0:D3}.bin", + "n.æøåÆØÅ{0:D3}.bin", + "Configurações-弹出-ÆØÅ-xx{0:D3}.bin" + }; + + for (int k = 0; k < formats.Length; k++) + { + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "files" + k); + Directory.CreateDirectory(subdir); + + // create a bunch of files + int numFilesToCreate = _rnd.Next(18) + 14; + string[] filesToZip = new string[numFilesToCreate]; + for (i = 0; i < numFilesToCreate; i++) + { + filesToZip[i] = Path.Combine(subdir, String.Format(formats[k], i)); + TestUtilities.CreateAndFillFileBinary(filesToZip[i], _rnd.Next(5000) + 2000); + } + + // create a zipfile twice, once using Unicode, once without + for (int j = 0; j < 2; j++) + { + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Create_UnicodeEntries_{0}_{1}.zip", k, j)); + Assert.IsFalse(File.Exists(zipFileToCreate), "The zip file '{0}' already exists.", zipFileToCreate); + + TestContext.WriteLine("\n\nFormat {0}, trial {1}. filename: {2}...", k, j, zipFileToCreate); + string dirInArchive = String.Format("{0}-{1}", Path.GetFileName(subdir), j); + + using (ZipFile zip1 = new ZipFile()) + { +#pragma warning disable 618 + zip1.UseUnicodeAsNecessary = (j == 0); +#pragma warning restore 618 + for (i = 0; i < filesToZip.Length; i++) + { + // use the local filename (not fully qualified) + ZipEntry e = zip1.AddFile(filesToZip[i], dirInArchive); + e.Comment = String.Format("This entry encoded with {0}", (j == 0) ? "unicode" : "the default code page."); + } + zip1.Comment = origComment; + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Length, + "Incorrect number of entries in the zip file."); + + i = 0; + + // verify the filenames are (or are not) unicode + + var options = new ReadOptions { + Encoding = (j == 0) ? System.Text.Encoding.UTF8 : ZipFile.DefaultEncoding + }; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate, options)) + { + foreach (ZipEntry e in zip2) + { + string fname = String.Format(formats[k], i); + if (j == 0) + { + Assert.AreEqual(fname, Path.GetFileName(e.FileName)); + } + else + { + Assert.AreNotEqual(fname, Path.GetFileName(e.FileName)); + } + i++; + } + + + // according to the spec, + // unicode is not supported on the zip archive comment! + // But this library won't enforce that. + // We will leave it up to the application. + // Assert.AreNotEqual(origComment, zip2.Comment); + + } + } + } + } + + string[] miscNameFormats = { + "file{0:D3}.bin", // keep this at index==0 + "弹出应用程序{0:D3}.bin", // Chinese + "codeplexの更新RSSを見てふと書いた投稿だったけど日本語情報がないかは調{0:D3}.bin", // Japanese + "n.æøåÆØÅ{0:D3}.bin", // greek + "Configurações-弹出-ÆØÅ-xx{0:D3}.bin", // portugese + Chinese + "¡¢£ ¥â° €Ãƒ †œ Ñ añoAbba{0:D3.bin}", //?? + "А Б В Г Д Є Ж Ѕ З И І К Л М Н О П Р С Т Ф Х Ц Ч Ш Щ Ъ ЪІ Ь Ю ІА {0:D3}.b", // Russian + "Ελληνικό αλφάβητο {0:D3}.b", + "א ב ג ד ה ו ז ח ט י " + "{0:D3}", // I don't know what language this is + }; + + + private List _CreateUnicodeFiles() + { + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "files"); + Directory.CreateDirectory(subdir); + var filesToZip = new List(); + // create a bunch of files in that subdir + int numFilesToCreate = _rnd.Next(18) + 14; + for (int i = 0; i < numFilesToCreate; i++) + { + int k = i % miscNameFormats.Length; + var f = Path.Combine(subdir, String.Format(miscNameFormats[k], i)); + filesToZip.Add(f); + TestUtilities.CreateAndFillFileBinary(f, _rnd.Next(5000) + 2000); + } + + return filesToZip; + } + + + [TestMethod] + public void Create_UnicodeEntries_Mixed() + { + var filesToZip = _CreateUnicodeFiles(); + + // Using those files create a zipfile 4 times: + // cycle 0 - UseUnicodeAsNecessary + // cycle 1 - Nothing + // cycle 2 - AlternateEncoding = UTF8, AlternateEncodingUsage = Always + // cycle 3 - AlternateEncoding = UTF8, AlternateEncodingUsage = AsNecessary + for (int j = 0; j < 4; j++) + { + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Archive-{0}.zip", j)); + Assert.IsFalse(File.Exists(zipFileToCreate), "The file already exists ({0}).", zipFileToCreate); + + using (ZipFile zip1 = new ZipFile(zipFileToCreate)) + { + switch (j) + { +#pragma warning disable 618 + case 0: + zip1.UseUnicodeAsNecessary = (j == 0); + break; +#pragma warning restore 618 + case 1: + // do nothing + break; + case 2: + zip1.AlternateEncoding = System.Text.Encoding.UTF8; + zip1.AlternateEncodingUsage = ZipOption.Always; + break; + case 3: + zip1.AlternateEncoding = System.Text.Encoding.UTF8; + zip1.AlternateEncodingUsage = ZipOption.AsNecessary; + break; + } + foreach (var fileToZip in filesToZip) + { + zip1.AddFile(fileToZip, ""); + } + zip1.Save(); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Count, + "Incorrect number of entries in the zip file."); + + _CheckUnicodeZip(zipFileToCreate, j); + } + } + + + + + [TestMethod] + public void Unicode_Create_ZOS_wi12634() + { + TestContext.WriteLine("==Unicode_Create_ZOS_wi12634()="); + var filesToZip = _CreateUnicodeFiles(); + byte[] buffer = new byte[2048]; + int n; + + // using those files create a zipfile twice. First cycle uses Unicode, + // 2nd cycle does not. + for (int j = 0; j < 2; j++) + { + // select the name of the zip file + var bpath = String.Format("wi12634-{0}.zip", j); + string zipFileToCreate = Path.Combine(TopLevelDir, bpath); + TestContext.WriteLine("========"); + TestContext.WriteLine("Trial {0}", j); + + Assert.IsFalse(File.Exists(zipFileToCreate), + "The zip file '{0}' already exists.", + zipFileToCreate); + TestContext.WriteLine("file {0}", zipFileToCreate); + + int excCount = 0; + + // create using ZOS + using (var ofs = File.Open(zipFileToCreate, FileMode.Create, FileAccess.ReadWrite)) + { + using (var zos = new ZipOutputStream(ofs)) + { +#pragma warning disable 618 + if (j == 0) + zos.ProvisionalAlternateEncoding = System.Text.Encoding.UTF8; +#pragma warning restore 618 + + try + { + foreach (var fileToZip in filesToZip) + { + var ename = Path.GetFileName(fileToZip); + TestContext.WriteLine("adding entry '{0}'", ename); + zos.PutNextEntry(ename); // with no path + using (var ifs = File.OpenRead(fileToZip)) + { + while ((n = ifs.Read(buffer, 0, buffer.Length)) > 0) + { + zos.Write(buffer, 0, n); + } + } + } + } + catch (System.Exception exc1) + { + TestContext.WriteLine("Exception #{0}", excCount); + TestContext.WriteLine("{0}", exc1.ToString()); + excCount++; + } + } + } + + Assert.IsTrue(excCount==0, + "Exceptions occurred during zip creation."); + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), filesToZip.Count, + "Incorrect number of entries in the zip file."); + + _CheckUnicodeZip(zipFileToCreate, j); + TestContext.WriteLine("Trial {0} file checks ok", j); + } + } + + + + [TestMethod] + public void UnicodeComment_wi10392() + { + const string zipFileToCreate = "UnicodeComment_wi10392.zip"; + const string cyrillicComment = "Hello, Привет"; + + TestContext.WriteLine("{0}", zipFileToCreate); + TestContext.WriteLine("==== creating zip"); + using (ZipFile zip1 = new ZipFile(zipFileToCreate, Encoding.UTF8)) + { + zip1.Comment = cyrillicComment; + zip1.AddEntry("entry", "this is the content of the added entry"); + zip1.Save(); + } + + string comment2 = null; + TestContext.WriteLine("==== checking zip"); + var options = new ReadOptions { + Encoding = Encoding.UTF8 + }; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate, options)) + { + comment2 = zip2.Comment; + } + + Assert.AreEqual(cyrillicComment, comment2, + "The comments are not equal."); + } + + + [TestMethod] + public void UnicodeUpdate_wi12744() + { + const string specialEntryName = "Привет.txt"; + + // two passes: one that uses the old "useUnicodeAsNecessary" property, + // and the second that uses the newer property. + for (int k=0; k < 2; k++) + { + + string zipFileToCreate = String.Format("UnicodeUpdate_wi12744-{0}.zip", k); + + TestContext.WriteLine("{0}", zipFileToCreate); + TestContext.WriteLine("==== creating zip, trial {0}", k); + using (ZipFile zip1 = new ZipFile()) + { + if (k==0) + { +#pragma warning disable 618 + zip1.UseUnicodeAsNecessary = true; +#pragma warning restore 618 + } + else + { + zip1.AlternateEncoding = System.Text.Encoding.UTF8; + zip1.AlternateEncodingUsage = ZipOption.AsNecessary; + } + + zip1.AddEntry(specialEntryName, "this is the content of the added entry"); + zip1.Save(zipFileToCreate); + } + + + TestContext.WriteLine("==== create a directory with 2 addl files in it"); + string subdir = Path.Combine(TopLevelDir, "files"+k); + Directory.CreateDirectory(subdir); + for (int i=0; i < 2; i++) + { + var filename = Path.Combine(subdir, "file" + i + ".txt"); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(5000) + 2000); + } + + TestContext.WriteLine("==== update the zip"); + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + zip2.AddDirectory(subdir); + zip2.Save(); + } + + TestContext.WriteLine("==== check the original file in the zip"); + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + var e = zip3[specialEntryName]; + Assert.IsTrue(e!=null, "Entry not found"); + Assert.IsTrue(e.FileName == specialEntryName, "name mismatch"); + } + } + } + + + + + private void _CheckUnicodeZip(string filename, int j) + { + int i = 0; + + // Verify that the filenames do, or do not, match the + // names that were added. They will match if unicode + // was used (j!=1) or if the filename used was the first + // in the formats list (k==0). + using (ZipFile zip2 = ZipFile.Read(filename)) + { + foreach (ZipEntry e in zip2) + { + int k = i % miscNameFormats.Length; + string fname = String.Format(miscNameFormats[k], i); + if (j != 1 || k == 0) + { + Assert.AreEqual(fname, e.FileName, "cycle ({0},{1},{2})", i, j, k); + } + else + { + Assert.AreNotEqual(fname, e.FileName, "cycle ({0},{1},{2})", i, j, k); + } + i++; + } + } + } + + + struct CodepageTrial + { + public string codepage; + public string filenameFormat; + public bool exceptionExpected; // not all codepages will yield legal filenames for a given filenameFormat + public CodepageTrial(string cp, string format, bool except) + { + codepage = cp; + filenameFormat = format; + exceptionExpected = except; + } + } + + [TestMethod] + public void Create_WithSpecifiedCodepage() + { + int i; + CodepageTrial[] trials = { + new CodepageTrial( "big5", "弹出应用程序{0:D3}.bin", true), + new CodepageTrial ("big5", "您好{0:D3}.bin", false), + new CodepageTrial ("gb2312", "弹出应用程序{0:D3}.bin", false), + new CodepageTrial ("gb2312", "您好{0:D3}.bin", false), + // insert other trials here.?? + }; + + for (int k = 0; k < trials.Length; k++) + { + TestContext.WriteLine(""); + TestContext.WriteLine("---------------------Trial {0}....", k); + TestContext.WriteLine("---------------------codepage: {0}....", trials[k].codepage); + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, String.Format("trial{0}-files", k)); + Directory.CreateDirectory(subdir); + + // create a bunch of files + int numFiles = _rnd.Next(3) + 3; + string[] filesToZip = new string[numFiles]; + for (i = 0; i < numFiles; i++) + { + filesToZip[i] = Path.Combine(subdir, String.Format(trials[k].filenameFormat, i)); + TestUtilities.CreateAndFillFileBinary(filesToZip[i], _rnd.Next(5000) + 2000); + } + + Directory.SetCurrentDirectory(subdir); + + // three cases: one for old-style + // ProvisionalAlternateEncoding, one for "AsNecessary" + // and one for "Always" + for (int j=0; j < 3; j++) + { + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("WithSpecifiedCodepage_{0}_{1}_{2}.zip", + k, j, trials[k].codepage)); + + TestContext.WriteLine(""); + TestContext.WriteLine("---------------Creating zip, trial ({0},{1})....", k, j); + + using (ZipFile zip1 = new ZipFile(zipFileToCreate)) + { + switch (j) + { + case 0: +#pragma warning disable 618 + zip1.ProvisionalAlternateEncoding = System.Text.Encoding.GetEncoding(trials[k].codepage); +#pragma warning restore 618 + break; + case 1: + zip1.AlternateEncoding = System.Text.Encoding.GetEncoding(trials[k].codepage); + zip1.AlternateEncodingUsage = ZipOption.AsNecessary; + break; + case 2: + zip1.AlternateEncoding = System.Text.Encoding.GetEncoding(trials[k].codepage); + zip1.AlternateEncodingUsage = ZipOption.Always; + break; + } + + for (i = 0; i < filesToZip.Length; i++) + { + TestContext.WriteLine("adding entry {0}", filesToZip[i]); + // use the local filename (not fully qualified) + ZipEntry e = zip1.AddFile(filesToZip[i], ""); + e.Comment = String.Format("This entry was encoded in the {0} codepage", trials[k].codepage); + } + zip1.Save(); + } + + TestContext.WriteLine("\n---------------------Extracting...."); + Directory.SetCurrentDirectory(TopLevelDir); + + try + { + // verify the filenames are (or are not) unicode + var options = new ReadOptions { + Encoding = System.Text.Encoding.GetEncoding(trials[k].codepage) + }; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate, options)) + { + foreach (ZipEntry e in zip2) + { + TestContext.WriteLine("found entry {0}", e.FileName); + e.Extract(String.Format("trial{0}-{1}-{2}-extract", k, j, trials[k].codepage)); + } + } + } + catch (Exception e1) + { + if (trials[k].exceptionExpected) + TestContext.WriteLine("caught expected exception"); + else + throw new System.Exception("while extracting", e1); + + } + } + + } + TestContext.WriteLine("\n---------------------Done."); + } + + + + [TestMethod] + public void CodePage_UpdateZip_AlternateEncoding_wi10180() + { + System.Text.Encoding JIS = System.Text.Encoding.GetEncoding("shift_jis"); + TestContext.WriteLine("The CP for JIS is: {0}", JIS.CodePage); + ReadOptions options = new ReadOptions { Encoding = JIS }; + string[] filenames = { + "日本語.txt", + "日本語テスト.txt" + }; + + // three trials: one for old-style + // ProvisionalAlternateEncoding, one for "AsNecessary" + // and one for "Always" + for (int j=0; j < 3; j++) + { + string zipFileToCreate = String.Format("wi10180-{0}.zip", j); + + // pass 1 - create it + TestContext.WriteLine("Create zip, cycle {0}...", j); + using (var zip = new ZipFile()) + { + switch (j) + { + case 0: +#pragma warning disable 618 + zip.ProvisionalAlternateEncoding = JIS; +#pragma warning restore 618 + break; + case 1: + zip.AlternateEncoding = JIS; + zip.AlternateEncodingUsage = ZipOption.AsNecessary; + break; + case 2: + zip.AlternateEncoding = JIS; + zip.AlternateEncodingUsage = ZipOption.Always; + break; + } + zip.AddEntry(filenames[0], "This is the content for entry (" + filenames[0] + ")"); + TestContext.WriteLine("adding file: {0}", filenames[0]); + zip.Save(zipFileToCreate); + } + + // pass 2 - read and update it + TestContext.WriteLine("Update zip..."); + using (var zip0 = ZipFile.Read(zipFileToCreate, options)) + { + foreach (var e in zip0) + { + TestContext.WriteLine("existing entry name: {0} encoding: {1}", + e.FileName, e.AlternateEncoding.EncodingName ); + Assert.AreEqual + (options.Encoding, e.AlternateEncoding); + } + zip0.AddEntry(filenames[1], "This is more content..." + System.DateTime.UtcNow.ToString("G")); + TestContext.WriteLine("adding file: {0}", filenames[1]); + zip0.Save(); + } + + // pass 3 - verify the filenames, again + TestContext.WriteLine("Verify zip..."); + using (var zip0 = ZipFile.Read(zipFileToCreate, options)) + { + foreach (string f in filenames) + { + Assert.AreEqual(f, zip0[f].FileName, + "The FileName was not expected, (cycle {0}) ", j); + } + } + } + } + + + + [TestMethod] + public void Unicode_AddDirectoryByName_wi8984() + { + string format = "弹出应用程序{0:D3}.dir"; // Chinese characters + System.Text.Encoding UTF8 = System.Text.Encoding.GetEncoding("UTF-8"); + + TestContext.WriteLine("== WorkItem 8984"); + // three trials: one for old-style + // ProvisionalAlternateEncoding, one for "AsNecessary" + // and one for "Always" + for (int j=0; j < 3; j++) + { + TestContext.WriteLine("Trial {0}", j); + for (int n = 1; n <= 10; n++) + { + TestContext.WriteLine("nEntries {0}", n); + var dirsAdded = new System.Collections.Generic.List(); + var zipFileToCreate = String.Format("wi8984-{0}-{1:N2}.zip", j, n); + using (ZipFile zip1 = new ZipFile(zipFileToCreate)) + { + switch (j) + { + case 0: +#pragma warning disable 618 + zip1.UseUnicodeAsNecessary = true; +#pragma warning restore 618 + break; + case 1: + zip1.AlternateEncoding = UTF8; + zip1.AlternateEncodingUsage = ZipOption.AsNecessary; + break; + case 2: + zip1.AlternateEncoding = UTF8; + zip1.AlternateEncodingUsage = ZipOption.Always; + break; + } + for (int i = 0; i < n; i++) + { + // create an arbitrary directory name, add it to the zip archive + string dirName = String.Format(format, i); + zip1.AddDirectoryByName(dirName); + dirsAdded.Add(dirName + "/"); + } + zip1.Save(); + } + + + string extractDir = String.Format("extract-{0}-{1:D3}", j, n); + int dirCount = 0; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (var e in zip2) + { + TestContext.WriteLine("dir: {0}", e.FileName); + Assert.IsTrue(dirsAdded.Contains(e.FileName), "Cannot find the expected entry ({0})", e.FileName); + Assert.IsTrue(e.IsDirectory); + e.Extract(extractDir); + dirCount++; + } + } + Assert.AreEqual(n, dirCount); + TestContext.WriteLine(""); + } + TestContext.WriteLine(""); + } + } + + + + + } +} diff --git a/src/Zip Tests/UpdateTests.cs b/old/src/Zip Tests/UpdateTests.cs similarity index 97% rename from src/Zip Tests/UpdateTests.cs rename to old/src/Zip Tests/UpdateTests.cs index 59cc2e3..bc87122 100644 --- a/src/Zip Tests/UpdateTests.cs +++ b/old/src/Zip Tests/UpdateTests.cs @@ -1,2527 +1,2527 @@ -// UpdateTests.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009-2011 Dino Chiesa -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-August-05 16:52:59> -// -// ------------------------------------------------------------------ -// -// This module defines tests for updating zip files via DotNetZip. -// -// ------------------------------------------------------------------ - -using System; -using System.Linq; -using System.IO; -using System.Text; -using System.Collections.Generic; -using Microsoft.VisualStudio.TestTools.UnitTesting; - -using Ionic.Zip; -using Ionic.Zip.Tests.Utilities; - -namespace Ionic.Zip.Tests.Update -{ - /// - /// Summary description for UnitTest1 - /// - [TestClass] - public class UpdateTests : IonicTestClass - { - public UpdateTests() : base() { } - - [TestMethod] - public void UpdateZip_AddNewDirectory() - { - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_AddNewDirectory.zip"); - - String CommentOnArchive = "BasicTests::UpdateZip_AddNewDirectory(): This archive will be overwritten."; - - string newComment = "This comment has been OVERWRITTEN." + DateTime.Now.ToString("G"); - string dirToZip = Path.Combine(TopLevelDir, "zipup"); - - int i, j; - int entries = 0; - string subdir = null; - String filename = null; - int subdirCount = _rnd.Next(4) + 4; - for (i = 0; i < subdirCount; i++) - { - subdir = Path.Combine(dirToZip, "Directory." + i); - Directory.CreateDirectory(subdir); - - int fileCount = _rnd.Next(3) + 3; - for (j = 0; j < fileCount; j++) - { - filename = Path.Combine(subdir, "file" + j + ".txt"); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(12000) + 5000); - entries++; - } - } - - using (ZipFile zip = new ZipFile()) - { - zip.AddDirectory(dirToZip); - zip.Comment = CommentOnArchive; - zip.Save(zipFileToCreate); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries, - "The created Zip file has an unexpected number of entries."); - - BasicVerifyZip(zipFileToCreate); - - // Now create a new subdirectory and add that one - subdir = Path.Combine(TopLevelDir, "NewSubDirectory"); - Directory.CreateDirectory(subdir); - - filename = Path.Combine(subdir, "newfile.txt"); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(12000) + 5000); - entries++; - - using (ZipFile zip = new ZipFile(zipFileToCreate)) - { - zip.AddDirectory(subdir); - zip.Comment = newComment; - // this will add entries into the existing zip file - zip.Save(); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries, - "The overwritten Zip file has the wrong number of entries."); - - using (ZipFile readzip = new ZipFile(zipFileToCreate)) - { - Assert.AreEqual(newComment, - readzip.Comment, - "The zip comment is incorrect."); - } - } - - - - [TestMethod] - public void UpdateZip_ChangeMetadata_AES() - { - Directory.SetCurrentDirectory(TopLevelDir); - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_ChangeMetadata_AES.zip"); - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - // create the files - int numFilesToCreate = _rnd.Next(13) + 24; - //int numFilesToCreate = 2; - string filename = null; - for (int j = 0; j < numFilesToCreate; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - //TestUtilities.CreateAndFillFileText(filename, 500); - } - - string password = Path.GetRandomFileName() + Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - - using (var zip = new ZipFile()) - { - zip.Password = password; - zip.Encryption = EncryptionAlgorithm.WinZipAes256; - zip.AddFiles(Directory.GetFiles(subdir), ""); - zip.Save(zipFileToCreate); - } - - // Verify the correct number of files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), numFilesToCreate, - "Fie! The updated Zip file has the wrong number of entries."); - - // test extract (and implicitly check CRCs, passwords, etc) - VerifyZip(zipFileToCreate, password); - - byte[] buffer = new byte[_rnd.Next(10000) + 10000]; - _rnd.NextBytes(buffer); - using (var zip = ZipFile.Read(zipFileToCreate)) - { - // modify the metadata for an entry - zip[0].LastModified = DateTime.Now - new TimeSpan(7 * 31, 0, 0); - zip.Password = password; - zip.Encryption = EncryptionAlgorithm.WinZipAes256; - zip.AddEntry(Path.GetRandomFileName(), buffer); - zip.Save(); - } - - // Verify the correct number of files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), numFilesToCreate + 1, - "Fie! The updated Zip file has the wrong number of entries."); - - // test extract (and implicitly check CRCs, passwords, etc) - VerifyZip(zipFileToCreate, password); - } - - - - private void VerifyZip(string zipfile, string password) - { - Stream bitBucket = Stream.Null; - TestContext.WriteLine("Checking file {0}", zipfile); - using (ZipFile zip = ZipFile.Read(zipfile)) - { - zip.Password = password; - zip.BufferSize = 65536; - foreach (var s in zip.EntryFileNames) - { - TestContext.WriteLine(" Entry: {0}", s); - zip[s].Extract(bitBucket); - } - } - System.Threading.Thread.Sleep(0x500); - } - - - - [TestMethod] - public void UpdateZip_RemoveEntry_ByLastModTime() - { - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_RemoveEntry_ByLastModTime.zip"); - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - // create the files - int numFilesToCreate = _rnd.Next(13) + 24; - string filename = null; - int entriesAdded = 0; - for (int j = 0; j < numFilesToCreate; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - entriesAdded++; - } - - // Add the files to the zip, save the zip - Directory.SetCurrentDirectory(TopLevelDir); - int ix = 0; - System.DateTime origDate = new System.DateTime(2007, 1, 15, 12, 1, 0); - using (ZipFile zip1 = new ZipFile()) - { - String[] filenames = Directory.GetFiles("A"); - foreach (String f in filenames) - { - ZipEntry e = zip1.AddFile(f, ""); - e.LastModified = origDate + new TimeSpan(24 * 31 * ix, 0, 0); // 31 days * number of entries - ix++; - } - zip1.Comment = "UpdateTests::UpdateZip_RemoveEntry_ByLastModTime(): This archive will soon be updated."; - zip1.Save(zipFileToCreate); - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, - "The Zip file has the wrong number of entries."); - - - // selectively remove a few files in the zip archive - var threshold = new TimeSpan(24 * 31 * (2 + _rnd.Next(ix - 12)), 0, 0); - int numRemoved = 0; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - // We cannot remove the entry from the list, within the context of - // an enumeration of said list. - // So we add the doomed entry to a list to be removed - // later. - // pass 1: mark the entries for removal - var entriesToRemove = new List(); - foreach (ZipEntry e in zip2) - { - if (e.LastModified < origDate + threshold) - { - entriesToRemove.Add(e); - numRemoved++; - } - } - - // pass 2: actually remove the entry. - foreach (ZipEntry zombie in entriesToRemove) - zip2.RemoveEntry(zombie); - - zip2.Comment = "UpdateTests::UpdateZip_RemoveEntry_ByLastModTime(): This archive has been updated."; - zip2.Save(); - } - - // Verify the correct number of files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded - numRemoved, - "Fie! The updated Zip file has the wrong number of entries."); - - // verify that all entries in the archive are within the threshold - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - foreach (ZipEntry e in zip3) - Assert.IsTrue((e.LastModified >= origDate + threshold), - "Merde. The updated Zip file has entries that lie outside the threshold."); - } - - } - - - [TestMethod] - public void UpdateZip_RemoveEntry_ByFilename_WithPassword() - { - string password = "*!ookahoo"; - string filename = null; - int entriesToBeAdded = 0; - string repeatedLine = null; - int j; - - // select the name of the zip file - string zipFileToCreate = "ByFilename_WithPassword.zip"; - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - // create a bunch of files, fill them with content - int numFilesToCreate = _rnd.Next(13) + 24; - for (j = 0; j < numFilesToCreate; j++) - { - filename = String.Format("file{0:D3}.txt", j); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - filename); - TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); - entriesToBeAdded++; - } - - // Add the files to the zip, save the zip - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - String[] filenames = Directory.GetFiles("A"); - zip1.Password = password; - zip1.AddFiles(filenames, ""); - - zip1.Comment = "UpdateTests::UpdateZip_RemoveEntry_ByFilename_WithPassword(): This archive will be updated."; - zip1.Save(zipFileToCreate); - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesToBeAdded, - "The Zip file has the wrong number of entries."); - - - // selectively remove a few files in the zip archive - var filesToRemove = new List(); - int numToRemove = _rnd.Next(numFilesToCreate - 4) + 1; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - for (j = 0; j < numToRemove; j++) - { - // select a new, uniquely named file to create - do - { - filename = String.Format("file{0:D3}.txt", _rnd.Next(numFilesToCreate)); - } while (filesToRemove.Contains(filename)); - // add this file to the list - filesToRemove.Add(filename); - zip2.RemoveEntry(filename); - } - - zip2.Comment = "This archive has been modified. Some files have been removed."; - zip2.Save(); - } - - - // extract all files, verify none should have been removed, - // and verify the contents of those that remain - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s1 in zip3.EntryFileNames) - { - Assert.IsFalse(filesToRemove.Contains(s1), String.Format("File ({0}) was not expected.", s1)); - - zip3[s1].ExtractWithPassword("extract", password); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - s1); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s1)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); - - } - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesToBeAdded - filesToRemove.Count, - "The updated Zip file has the wrong number of entries."); - } - - - - [TestMethod] - public void UpdateZip_RenameEntry() - { - string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - var files = TestUtilities.GenerateFilesFlat(dirToZip, - _rnd.Next(13) + 24, - 42 * 1024 + _rnd.Next(20000)); - - // Two passes: in pass 1, simply rename the file; - // in pass 2, rename it so that it has a directory. - // This shouldn't matter, but we test it anyway. - for (int k = 0; k < 2; k++) - { - string zipFileToCreate = String.Format("UpdateZip_RenameEntry-{0}.zip", k); - TestContext.WriteLine("-----------------------------"); - TestContext.WriteLine("{0}: Trial {1}, adding {2} files into '{3}'...", - DateTime.Now.ToString("HH:mm:ss"), - k, - files.Length, - zipFileToCreate); - - // Add the files to the zip, save the zip - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - foreach (String f in files) - zip1.AddFile(f, ""); - zip1.Comment = "This archive will be updated."; - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - files.Length, - "the Zip file has the wrong number of entries."); - - // selectively rename a few files in the zip archive - int renameCount = 0; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - var toRename = new List(); - while (toRename.Count < 2) - { - foreach (ZipEntry e in zip2) - { - if (_rnd.Next(2) == 1) - toRename.Add(e); - } - } - - foreach (ZipEntry e in toRename) - { - var newname = (k == 0) - ? e.FileName + "-renamed" - : "renamed_files\\" + e.FileName; - - TestContext.WriteLine(" renaming {0} to {1}", e.FileName, newname); - e.FileName = newname; - e.Comment = "renamed"; - renameCount++; - } - - zip2.Comment = String.Format("This archive has been modified. {0} files have been renamed.", renameCount); - zip2.Save(); - } - - - // Extract all the files, verify that none have been removed, - // and verify the names of the entries. - int renameCount2 = 0; - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s1 in zip3.EntryFileNames) - { - string dir = String.Format("extract{0}", k); - zip3[s1].Extract(dir); - string origFilename = Path.GetFileName((s1.Contains("renamed")) - ? s1.Replace("-renamed", "") - : s1); - - if (zip3[s1].Comment == "renamed") renameCount2++; - } - } - - Assert.AreEqual(renameCount, renameCount2, - "The updated Zip file has the wrong number of renamed entries."); - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - files.Length, - "Wrong number of entries."); - } - } - - - [TestMethod] - public void UpdateZip_UpdateEntryComment() - { - for (int k = 0; k < 2; k++) - { - int j; - int entriesToBeAdded = 0; - string filename = null; - string repeatedLine = null; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("UpdateZip_UpdateEntryComment-{0}.zip", k)); - - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, String.Format("A{0}", k)); - Directory.CreateDirectory(subdir); - - // create a bunch of files - //int numFilesToCreate = _rnd.Next(15) + 18; - int numFilesToCreate = _rnd.Next(5) + 3; - - TestContext.WriteLine("\n-----------------------------\r\n{0}: Trial {1}, adding {2} files into '{3}'...", - DateTime.Now.ToString("HH:mm:ss"), - k, - numFilesToCreate, - zipFileToCreate); - - for (j = 0; j < numFilesToCreate; j++) - { - filename = String.Format("file{0:D3}.txt", j); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - filename); - - int filesize = _rnd.Next(34000) + 800; - - TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), - repeatedLine, - filesize); - entriesToBeAdded++; - } - - // Add the files to the zip, save the zip - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - String[] filenames = Directory.GetFiles(String.Format("A{0}", k)); - foreach (String f in filenames) - zip1.AddFile(f, ""); - - zip1.Comment = "UpdateTests::UpdateZip_UpdateEntryComment(): This archive will be updated."; - zip1.Save(zipFileToCreate); - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesToBeAdded, - "the Zip file has the wrong number of entries."); - - // update the comments for a few files in the zip archive - int updateCount = 0; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - do - { - foreach (ZipEntry e in zip2) - { - if (_rnd.Next(2) == 1) - { - if (String.IsNullOrEmpty(e.Comment)) - { - e.Comment = "This is a new comment on entry " + e.FileName; - updateCount++; - } - } - } - } while (updateCount < 2); - zip2.Comment = String.Format("This archive has been modified. Comments on {0} entries have been inserted.", updateCount); - zip2.Save(); - } - - - // Extract all files, verify that none have been removed, - // and verify the contents of those that remain. - int commentCount = 0; - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s1 in zip3.EntryFileNames) - { - string dir = String.Format("extract{0}", k); - zip3[s1].Extract(dir); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - s1); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine(dir, s1)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); - - if (!String.IsNullOrEmpty(zip3[s1].Comment)) - { - commentCount++; - } - } - } - - Assert.AreEqual(updateCount, commentCount, - "The updated Zip file has the wrong number of entries with comments."); - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesToBeAdded, - "The updated Zip file has the wrong number of entries."); - } - } - - - - - [TestMethod] - public void UpdateZip_RemoveEntry_ByFilename() - { - for (int k = 0; k < 2; k++) - { - int j; - int entriesToBeAdded = 0; - string filename = null; - string repeatedLine = null; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("UpdateZip_RemoveEntry_ByFilename-{0}.zip", k)); - - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, String.Format("A{0}", k)); - Directory.CreateDirectory(subdir); - - // create a bunch of files - int numFilesToCreate = _rnd.Next(13) + 24; - - for (j = 0; j < numFilesToCreate; j++) - { - filename = String.Format("file{0:D3}.txt", j); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - filename); - TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); - entriesToBeAdded++; - } - - // Add the files to the zip, save the zip. - // in pass 2, remove one file, then save again. - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - String[] filenames = Directory.GetFiles(String.Format("A{0}", k)); - - foreach (String f in filenames) - zip1.AddFile(f, ""); - - zip1.Comment = "UpdateTests::UpdateZip_RemoveEntry_ByFilename(): This archive will be updated."; - zip1.Save(zipFileToCreate); - - // conditionally remove a single entry, on the 2nd trial - if (k == 1) - { - int chosen = _rnd.Next(filenames.Length); - zip1.RemoveEntry(zip1[chosen]); - zip1.Save(); - } - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesToBeAdded - k, - "Trial {0}: the Zip file has the wrong number of entries.", k); - - if (k == 0) - { - // selectively remove a few files in the zip archive - var filesToRemove = new List(); - int numToRemove = _rnd.Next(numFilesToCreate - 4) + 1; - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - for (j = 0; j < numToRemove; j++) - { - // select a new, uniquely named file to create - do - { - filename = String.Format("file{0:D3}.txt", _rnd.Next(numFilesToCreate)); - } while (filesToRemove.Contains(filename)); - // add this file to the list - filesToRemove.Add(filename); - zip2.RemoveEntry(filename); - - } - - zip2.Comment = "This archive has been modified. Some files have been removed."; - zip2.Save(); - } - - - // extract all files, verify none should have been removed, - // and verify the contents of those that remain - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s1 in zip3.EntryFileNames) - { - Assert.IsFalse(filesToRemove.Contains(s1), - String.Format("File ({0}) was not expected.", s1)); - - zip3[s1].Extract("extract"); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - s1); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s1)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); - - } - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - entriesToBeAdded - filesToRemove.Count, - "The updated Zip file has the wrong number of entries."); - } - } - } - - - - - [TestMethod] - public void UpdateZip_RemoveEntry_ViaIndexer_WithPassword() - { - string password = TestUtilities.GenerateRandomPassword(); - string filename = null; - int entriesToBeAdded = 0; - string repeatedLine = null; - int j; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_RemoveEntry_ViaIndexer_WithPassword.zip"); - - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - // create the files - int numFilesToCreate = _rnd.Next(13) + 14; - for (j = 0; j < numFilesToCreate; j++) - { - filename = String.Format("file{0:D3}.txt", j); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - filename); - TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); - entriesToBeAdded++; - } - - // Add the files to the zip, save the zip - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip = new ZipFile()) - { - String[] filenames = Directory.GetFiles("A"); - zip.Password = password; - foreach (String f in filenames) - zip.AddFile(f, ""); - - zip.Comment = "UpdateTests::UpdateZip_OpenForUpdate_Password_RemoveViaIndexer(): This archive will be updated."; - zip.Save(zipFileToCreate); - } - - // Verify the files are in the zip - Assert.AreEqual(entriesToBeAdded, TestUtilities.CountEntries(zipFileToCreate), - "The Zip file has the wrong number of entries."); - - // selectively remove a few files in the zip archive - var filesToRemove = new List(); - int numToRemove = _rnd.Next(numFilesToCreate - 4); - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - for (j = 0; j < numToRemove; j++) - { - // select a new, uniquely named file to create - do - { - filename = String.Format("file{0:D3}.txt", _rnd.Next(numFilesToCreate)); - } while (filesToRemove.Contains(filename)); - // add this file to the list - filesToRemove.Add(filename); - - // remove the file from the zip archive - zip2.RemoveEntry(filename); - } - - zip2.Comment = "This archive has been modified. Some files have been removed."; - zip2.Save(); - } - - // extract all files, verify none should have been removed, - // and verify the contents of those that remain - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s1 in zip3.EntryFileNames) - { - Assert.IsFalse(filesToRemove.Contains(s1), String.Format("File ({0}) was not expected.", s1)); - - zip3[s1].ExtractWithPassword("extract", password); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - s1); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s1)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, - sLine, - String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); - - } - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - entriesToBeAdded - filesToRemove.Count, - "The updated Zip file has the wrong number of entries."); - } - - - - [TestMethod] - public void UpdateZip_RemoveAllEntries() - { - string password = "Wheeee!!" + TestUtilities.GenerateRandomLowerString(7); - string filename = null; - int entriesToBeAdded = 0; - string repeatedLine = null; - int j; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_RemoveAllEntries.zip"); - - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - // create the files - int numFilesToCreate = _rnd.Next(13) + 14; - for (j = 0; j < numFilesToCreate; j++) - { - filename = String.Format("file{0:D3}.txt", j); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - filename); - TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); - entriesToBeAdded++; - } - - // Add the files to the zip, save the zip - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip = new ZipFile()) - { - String[] filenames = Directory.GetFiles("A"); - zip.Password = password; - foreach (String f in filenames) - zip.AddFile(f, ""); - - zip.Comment = "UpdateTests::UpdateZip_RemoveAllEntries(): This archive will be updated."; - zip.Save(zipFileToCreate); - } - - // Verify the files are in the zip - Assert.AreEqual(entriesToBeAdded, - TestUtilities.CountEntries(zipFileToCreate), - "The Zip file has the wrong number of entries."); - - // remove all the entries from the zip archive - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - zip2.RemoveSelectedEntries("*.*"); - zip2.Comment = "This archive has been modified. All the entries have been removed."; - zip2.Save(); - } - - // Verify the files are in the zip - Assert.AreEqual(0, TestUtilities.CountEntries(zipFileToCreate), - "The Zip file has the wrong number of entries."); - - - } - - - [TestMethod] - public void UpdateZip_AddFile_OldEntriesWithPassword() - { - string password = "Secret!"; - string filename = null; - int entriesAdded = 0; - string repeatedLine = null; - int j; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_AddFile_OldEntriesWithPassword.zip"); - - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - // create the files - int numFilesToCreate = _rnd.Next(10) + 8; - for (j = 0; j < numFilesToCreate; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - Path.GetFileName(filename)); - TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); - entriesAdded++; - } - - // Create the zip file - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - zip1.Password = password; - String[] filenames = Directory.GetFiles("A"); - foreach (String f in filenames) - zip1.AddFile(f, ""); - zip1.Comment = "UpdateTests::UpdateZip_AddFile_OldEntriesWithPassword(): This archive will be updated."; - zip1.Save(zipFileToCreate); - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, - "The Zip file has the wrong number of entries."); - - - // Create a bunch of new files... - var addedFiles = new List(); - int numToUpdate = _rnd.Next(numFilesToCreate - 4); - for (j = 0; j < numToUpdate; j++) - { - // select a new, uniquely named file to create - filename = String.Format("newfile{0:D3}.txt", j); - // create a new file, and fill that new file with text data - repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", - filename, System.DateTime.Now.ToString("yyyy-MM-dd")); - TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); - addedFiles.Add(filename); - } - - // add each one of those new files in the zip archive - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s in addedFiles) - zip2.AddFile(Path.Combine(subdir, s), ""); - zip2.Comment = "UpdateTests::UpdateZip_AddFile_OldEntriesWithPassword(): This archive has been updated."; - zip2.Save(); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - entriesAdded + addedFiles.Count, - "The Zip file has the wrong number of entries."); - - - // now extract the newly-added files and verify their contents - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s in addedFiles) - { - repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", - s, System.DateTime.Now.ToString("yyyy-MM-dd")); - zip3[s].Extract("extract"); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); - } - } - - - // extract all the other files and verify their contents - using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s1 in zip4.EntryFileNames) - { - bool addedLater = false; - foreach (string s2 in addedFiles) - { - if (s2 == s1) addedLater = true; - } - if (!addedLater) - { - zip4[s1].ExtractWithPassword("extract", password); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - s1); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s1)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); - } - } - } - } - - - - [TestMethod] - public void UpdateZip_UpdateItem() - { - string filename = null; - int entriesAdded = 0; - string repeatedLine = null; - int j; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem.zip"); - - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - // create a bunch of files - int numFilesToCreate = _rnd.Next(10) + 8; - for (j = 0; j < numFilesToCreate; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - repeatedLine = String.Format("Content for Original file {0}", - Path.GetFileName(filename)); - TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); - entriesAdded++; - } - - // Create the zip file - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - String[] filenames = Directory.GetFiles("A"); - foreach (String f in filenames) - zip1.AddFile(f, ""); - zip1.Comment = "UpdateTests::UpdateZip_UpdateItem(): This archive will be updated."; - zip1.Save(zipFileToCreate); - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, - "The Zip file has the wrong number of entries."); - - // create another subdirectory - subdir = Path.Combine(TopLevelDir, "B"); - Directory.CreateDirectory(subdir); - - // create a bunch more files - int newFileCount = numFilesToCreate + _rnd.Next(3) + 3; - for (j = 0; j < newFileCount; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - repeatedLine = String.Format("Content for the updated file {0} {1}", - Path.GetFileName(filename), - System.DateTime.Now.ToString("yyyy-MM-dd")); - TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(1000) + 2000); - entriesAdded++; - } - - // Update those files in the zip file - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - String[] filenames = Directory.GetFiles("B"); - foreach (String f in filenames) - zip1.UpdateItem(f, ""); - zip1.Comment = "UpdateTests::UpdateZip_UpdateItem(): This archive has been updated."; - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), newFileCount, - "The Zip file has the wrong number of entries."); - - // now extract the files and verify their contents - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s in zip3.EntryFileNames) - { - repeatedLine = String.Format("Content for the updated file {0} {1}", - s, - System.DateTime.Now.ToString("yyyy-MM-dd")); - zip3[s].Extract("extract"); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); - } - } - } - - - [TestMethod] - public void UpdateZip_UpdateItem_UpdateTwice() - { - string filename = "text.txt"; - string contentText1 = "Content 1"; - string contentText2 = "Content 2 - this is longer"; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateTwice.zip"); - - // Create the zip file - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - var content1 = new MemoryStream(Encoding.Default.GetBytes(contentText1)); - var entry1 = zip1.UpdateEntry(filename, content1); - Assert.IsNotNull(entry1); - zip1.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateTwice(): This archive will be updated."; - zip1.Save(zipFileToCreate); - - using (ZipFile zip2 = new ZipFile(zipFileToCreate)) - { - var entry = zip2[filename]; - using (var ms = new MemoryStream()) - { - entry.OpenReader().CopyTo(ms); - var content = Encoding.Default.GetString(ms.ToArray()); - Assert.AreEqual(contentText1, content); - } - } - - var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); - var entry2 = zip1.UpdateEntry(filename, content2); - Assert.IsNotNull(entry2); - zip1.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateTwice(): This archive was updated."; - zip1.Save(zipFileToCreate); - - using (ZipFile zip3 = new ZipFile(zipFileToCreate)) - { - var entry = zip3[filename]; - using (var ms = new MemoryStream()) - { - entry.OpenReader().CopyTo(ms); - var content = Encoding.Default.GetString(ms.ToArray()); - Assert.AreEqual(contentText2, content); - } - } - } - } - - - [TestMethod] - public void UpdateZip_UpdateItem_UpdateMultipleTimes_SaveAs_Save() - { - string filename = "text1.txt"; - string filename2 = "text2.txt"; - string contentText1 = "Content 1"; - string contentText2 = "Content 2 - this is longer"; - string contentText3 = "Content 3"; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateMultipleTimes.zip"); - string zipFileToSaveAs = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateMultipleTimes_New.zip"); - - #region Create the zip file - - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zipSave = new ZipFile()) - { - var content1 = new MemoryStream(Encoding.Default.GetBytes(contentText1)); - var entry1 = zipSave.UpdateEntry(filename, content1); - Assert.IsNotNull(entry1); - - var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); - var entry2 = zipSave.UpdateEntry(filename2, content2); - Assert.IsNotNull(entry2); - zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive will be updated."; - zipSave.Save(zipFileToCreate); - } - using (ZipFile zipTest = new ZipFile(zipFileToCreate)) - { - var entry = zipTest[filename]; - using (var ms = new MemoryStream()) - { - entry.OpenReader().CopyTo(ms); - var content = Encoding.Default.GetString(ms.ToArray()); - Assert.AreEqual(contentText1, content); - } - } - - #endregion - - using (ZipFile zipSave = new ZipFile(zipFileToCreate)) - { - var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); - var entry2 = zipSave.UpdateEntry(filename, content2); - Assert.IsNotNull(entry2); - zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive was updated once."; - zipSave.Save(zipFileToSaveAs); - - Assert.IsTrue(ZipFile.CheckZip(zipFileToSaveAs)); - - var content3 = new MemoryStream(Encoding.Default.GetBytes(contentText3)); - var entry3 = zipSave.UpdateEntry(filename, content3); - Assert.IsNotNull(entry3); - zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive was updated twice."; - zipSave.Save(); - } - - Assert.IsTrue(ZipFile.CheckZip(zipFileToSaveAs)); - using (ZipFile zipTest = new ZipFile(zipFileToSaveAs)) - { - var entry = zipTest[filename]; - using (var ms = new MemoryStream()) - { - entry.OpenReader().CopyTo(ms); - var content = Encoding.Default.GetString(ms.ToArray()); - Assert.AreEqual(contentText3, content); - } - } - } - - - [TestMethod] - public void UpdateZip_UpdateItem_UpdateMultipleTimes_SaveAsTwice() - { - string filename = "text1.txt"; - string filename2 = "text2.txt"; - string contentText1 = "Content 1"; - string contentText2 = "Content 2 - this is longer"; - string contentText3 = "Content 3"; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateMultipleTimes.zip"); - string zipFileToSaveAs = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateMultipleTimes_New.zip"); - - #region Create the zip file - - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zipSave = new ZipFile()) - { - var content1 = new MemoryStream(Encoding.Default.GetBytes(contentText1)); - var entry1 = zipSave.UpdateEntry(filename, content1); - Assert.IsNotNull(entry1); - - var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); - var entry2 = zipSave.UpdateEntry(filename2, content2); - Assert.IsNotNull(entry2); - zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive will be updated."; - zipSave.Save(zipFileToCreate); - } - using (ZipFile zipTest = new ZipFile(zipFileToCreate)) - { - var entry = zipTest[filename]; - using (var ms = new MemoryStream()) - { - entry.OpenReader().CopyTo(ms); - var content = Encoding.Default.GetString(ms.ToArray()); - Assert.AreEqual(contentText1, content); - } - } - - #endregion - - using (ZipFile zipSave = new ZipFile(zipFileToCreate)) - { - var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); - var entry2 = zipSave.UpdateEntry(filename, content2); - Assert.IsNotNull(entry2); - zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive was updated once."; - zipSave.Save(zipFileToSaveAs); - - Assert.IsTrue(ZipFile.CheckZip(zipFileToSaveAs)); - - var content3 = new MemoryStream(Encoding.Default.GetBytes(contentText3)); - var entry3 = zipSave.UpdateEntry(filename, content3); - Assert.IsNotNull(entry3); - zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive was updated twice."; - zipSave.Save(zipFileToSaveAs); - } - - Assert.IsTrue(ZipFile.CheckZip(zipFileToSaveAs)); - using (ZipFile zipTest = new ZipFile(zipFileToSaveAs)) - { - var entry = zipTest[filename]; - using (var ms = new MemoryStream()) - { - entry.OpenReader().CopyTo(ms); - var content = Encoding.Default.GetString(ms.ToArray()); - Assert.AreEqual(contentText3, content); - } - } - } - - - [TestMethod] - public void UpdateZip_UpdateItem_UpdateMultipleTimes_SaveAsStream() - { - string filename = "text1.txt"; - string filename2 = "text2.txt"; - string contentText1 = "Content 1"; - string contentText2 = "Content 2 - this is longer"; - string contentText3 = "Content 3"; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateMultipleTimes.zip"); - string zipFileToSaveAs = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateMultipleTimes_New.zip"); - - #region Create the zip file - - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zipSave = new ZipFile()) - { - var content1 = new MemoryStream(Encoding.Default.GetBytes(contentText1)); - var entry1 = zipSave.UpdateEntry(filename, content1); - Assert.IsNotNull(entry1); - - var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); - var entry2 = zipSave.UpdateEntry(filename2, content2); - Assert.IsNotNull(entry2); - zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive will be updated."; - zipSave.Save(zipFileToCreate); - } - using (ZipFile zipTest = new ZipFile(zipFileToCreate)) - { - var entry = zipTest[filename]; - using (var ms = new MemoryStream()) - { - entry.OpenReader().CopyTo(ms); - var content = Encoding.Default.GetString(ms.ToArray()); - Assert.AreEqual(contentText1, content); - } - } - - #endregion - - using (ZipFile zipSave = new ZipFile(zipFileToCreate)) - { - var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); - var entry2 = zipSave.UpdateEntry(filename, content2); - Assert.IsNotNull(entry2); - zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive was updated once."; - - var memoryStream = new MemoryStream(); //Attention: the source stream can't be disposed, as its needed to read not edited entries on the next save - zipSave.Save(memoryStream); - File.WriteAllBytes(zipFileToSaveAs, memoryStream.ToArray()); - Assert.IsTrue(ZipFile.CheckZip(zipFileToSaveAs)); - - var content3 = new MemoryStream(Encoding.Default.GetBytes(contentText3)); - var entry3 = zipSave.UpdateEntry(filename, content3); - Assert.IsNotNull(entry3); - zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive was updated twice."; - - memoryStream = new MemoryStream(); - zipSave.Save(memoryStream); - File.WriteAllBytes(zipFileToSaveAs, memoryStream.ToArray()); - } - - Assert.IsTrue(ZipFile.CheckZip(zipFileToSaveAs)); - using (ZipFile zipTest = new ZipFile(zipFileToSaveAs)) - { - var entry = zipTest[filename]; - using (var ms = new MemoryStream()) - { - entry.OpenReader().CopyTo(ms); - var content = Encoding.Default.GetString(ms.ToArray()); - Assert.AreEqual(contentText3, content); - } - } - } - - - [TestMethod] - public void UpdateZip_UpdateItem_UpdateMultipleTimesFromStream_SaveAsStream() - { - string filename = "text1.txt"; - string filename2 = "text2.txt"; - string contentText1 = "Content 1"; - string contentText2 = "Content 2 - this is longer"; - string contentText3 = "Content 3"; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateMultipleTimes.zip"); - string zipFileToSaveAs = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateMultipleTimes_New.zip"); - - #region Create the zip file - - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zipSave = new ZipFile()) - { - var content1 = new MemoryStream(Encoding.Default.GetBytes(contentText1)); - var entry1 = zipSave.UpdateEntry(filename, content1); - Assert.IsNotNull(entry1); - - var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); - var entry2 = zipSave.UpdateEntry(filename2, content2); - Assert.IsNotNull(entry2); - zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive will be updated."; - zipSave.Save(zipFileToCreate); - } - using (ZipFile zipTest = new ZipFile(zipFileToCreate)) - { - var entry = zipTest[filename]; - using (var ms = new MemoryStream()) - { - entry.OpenReader().CopyTo(ms); - var content = Encoding.Default.GetString(ms.ToArray()); - Assert.AreEqual(contentText1, content); - } - } - - #endregion - - var zipData = File.ReadAllBytes(zipFileToCreate); - var sourceStream = new MemoryStream(zipData); - using (ZipFile zipSave = ZipFile.Read(sourceStream)) - { - var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); - var entry2 = zipSave.UpdateEntry(filename, content2); - Assert.IsNotNull(entry2); - zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive was updated once."; - - var memoryStream = new MemoryStream(); //Attention: the source stream can't be disposed, as its needed to read not edited entries on the next save - zipSave.Save(memoryStream); - File.WriteAllBytes(zipFileToSaveAs, memoryStream.ToArray()); - Assert.IsTrue(ZipFile.CheckZip(zipFileToSaveAs)); - - var content3 = new MemoryStream(Encoding.Default.GetBytes(contentText3)); - var entry3 = zipSave.UpdateEntry(filename, content3); - Assert.IsNotNull(entry3); - zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive was updated twice."; - - memoryStream = new MemoryStream(); - zipSave.Save(memoryStream); - File.WriteAllBytes(zipFileToSaveAs, memoryStream.ToArray()); - } - - Assert.IsTrue(ZipFile.CheckZip(zipFileToSaveAs)); - using (ZipFile zipTest = new ZipFile(zipFileToSaveAs)) - { - var entry = zipTest[filename]; - using (var ms = new MemoryStream()) - { - entry.OpenReader().CopyTo(ms); - var content = Encoding.Default.GetString(ms.ToArray()); - Assert.AreEqual(contentText3, content); - } - } - } - - - [TestMethod] - public void UpdateZip_AddFile_NewEntriesWithPassword() - { - string password = "V.Secret!"; - string filename = null; - int entriesAdded = 0; - string repeatedLine = null; - int j; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_AddFile_NewEntriesWithPassword.zip"); - - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - // create a bunch of files - int numFilesToCreate = _rnd.Next(10) + 8; - for (j = 0; j < numFilesToCreate; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - Path.GetFileName(filename)); - TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); - entriesAdded++; - } - - // Create the zip archive - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip = new ZipFile()) - { - String[] filenames = Directory.GetFiles("A"); - zip.AddFiles(filenames, ""); - zip.Comment = "UpdateTests::UpdateZip_AddFile_NewEntriesWithPassword(): This archive will be updated."; - zip.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, - "The Zip file has the wrong number of entries."); - - // Create a bunch of new files... - var addedFiles = new List(); - int numToUpdate = _rnd.Next(numFilesToCreate - 4); - for (j = 0; j < numToUpdate; j++) - { - // select a new, uniquely named file to create - filename = String.Format("newfile{0:D3}.txt", j); - // create a new file, and fill that new file with text data - repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", - filename, System.DateTime.Now.ToString("yyyy-MM-dd")); - TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); - addedFiles.Add(filename); - } - - // add each one of those new files in the zip archive using a password - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - zip2.Password = password; - foreach (string s in addedFiles) - zip2.AddFile(Path.Combine(subdir, s), ""); - zip2.Comment = "UpdateTests::UpdateZip_AddFile_OldEntriesWithPassword(): This archive has been updated."; - zip2.Save(); - } - - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded + addedFiles.Count, - "The Zip file has the wrong number of entries."); - - - // now extract the newly-added files and verify their contents - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s in addedFiles) - { - repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", - s, System.DateTime.Now.ToString("yyyy-MM-dd")); - zip3[s].ExtractWithPassword("extract", password); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); - } - } - - - // extract all the other files and verify their contents - using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s1 in zip4.EntryFileNames) - { - bool addedLater = false; - foreach (string s2 in addedFiles) - { - if (s2 == s1) addedLater = true; - } - if (!addedLater) - { - zip4[s1].Extract("extract"); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - s1); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s1)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); - } - } - } - } - - - [TestMethod] - public void UpdateZip_AddFile_DifferentPasswords() - { - string password1 = Path.GetRandomFileName(); - string password2 = "Secret2" + Path.GetRandomFileName(); - string filename = null; - int entriesAdded = 0; - string repeatedLine = null; - int j; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_AddFile_DifferentPasswords.zip"); - - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - // create a bunch of files - int numFilesToCreate = _rnd.Next(11) + 8; - for (j = 0; j < numFilesToCreate; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - Path.GetFileName(filename)); - TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); - entriesAdded++; - } - - // Add the files to the zip, save the zip - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - zip1.Password = password1; - String[] filenames = Directory.GetFiles("A"); - foreach (String f in filenames) - zip1.AddFile(f, ""); - zip1.Comment = "UpdateTests::UpdateZip_AddFile_DifferentPasswords(): This archive will be updated."; - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, - "The Zip file has the wrong number of entries."); - - // Create a bunch of new files... - var addedFiles = new List(); - //int numToUpdate = _rnd.Next(numFilesToCreate - 4); - int numToUpdate = 1; - for (j = 0; j < numToUpdate; j++) - { - // select a new, uniquely named file to create - filename = String.Format("newfile{0:D3}.txt", j); - // create a new file, and fill that new file with text data - repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", - filename, System.DateTime.Now.ToString("yyyy-MM-dd")); - TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); - addedFiles.Add(filename); - } - - // add each one of those new files in the zip archive using a password - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - zip2.Password = password2; - foreach (string s in addedFiles) - zip2.AddFile(Path.Combine(subdir, s), ""); - zip2.Comment = "UpdateTests::UpdateZip_AddFile_OldEntriesWithPassword(): This archive has been updated."; - zip2.Save(); - } - - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded + addedFiles.Count, - "The Zip file has the wrong number of entries."); - - - // now extract the newly-added files and verify their contents - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s in addedFiles) - { - repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", - s, System.DateTime.Now.ToString("yyyy-MM-dd")); - zip3[s].ExtractWithPassword("extract", password2); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); - } - } - - - // extract all the other files and verify their contents - using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s1 in zip4.EntryFileNames) - { - bool addedLater = false; - foreach (string s2 in addedFiles) - { - if (s2 == s1) addedLater = true; - } - if (!addedLater) - { - zip4[s1].ExtractWithPassword("extract", password1); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - s1); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s1)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); - } - } - } - } - - - - - [TestMethod] - public void UpdateZip_UpdateFile_NoPasswords() - { - string filename = null; - int entriesAdded = 0; - int j = 0; - string repeatedLine = null; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateFile_NoPasswords.zip"); - - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - // create the files - int NumFilesToCreate = _rnd.Next(23) + 14; - for (j = 0; j < NumFilesToCreate; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - Path.GetFileName(filename)); - TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); - entriesAdded++; - } - - // create the zip archive - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - String[] filenames = Directory.GetFiles("A"); - foreach (String f in filenames) - zip1.AddFile(f, ""); - zip1.Comment = "UpdateTests::UpdateZip_UpdateFile_NoPasswords(): This archive will be updated."; - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, - "Zoiks! The Zip file has the wrong number of entries."); - - - - // create another subdirectory - subdir = Path.Combine(TopLevelDir, "updates"); - Directory.CreateDirectory(subdir); - - // Create a bunch of new files, in that new subdirectory - var UpdatedFiles = new List(); - int NumToUpdate = _rnd.Next(NumFilesToCreate - 4); - for (j = 0; j < NumToUpdate; j++) - { - // select a new, uniquely named file to create - do - { - filename = String.Format("file{0:D3}.txt", _rnd.Next(NumFilesToCreate)); - } while (UpdatedFiles.Contains(filename)); - // create a new file, and fill that new file with text data - repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", - filename, System.DateTime.Now.ToString("yyyy-MM-dd")); - TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); - UpdatedFiles.Add(filename); - } - - // update those files in the zip archive - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s in UpdatedFiles) - zip2.UpdateFile(Path.Combine(subdir, s), ""); - zip2.Comment = "UpdateTests::UpdateZip_UpdateFile_OldEntriesWithPassword(): This archive has been updated."; - zip2.Save(); - } - - // extract those files and verify their contents - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s in UpdatedFiles) - { - repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", - s, System.DateTime.Now.ToString("yyyy-MM-dd")); - zip3[s].Extract("extract"); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); - } - } - - // extract all the other files and verify their contents - using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s1 in zip4.EntryFileNames) - { - bool NotUpdated = true; - foreach (string s2 in UpdatedFiles) - { - if (s2 == s1) NotUpdated = false; - } - if (NotUpdated) - { - zip4[s1].Extract("extract"); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - s1); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s1)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); - } - } - } - } - - - [TestMethod] - public void UpdateZip_UpdateFile_2_NoPasswords() - { - string filename = null; - int entriesAdded = 0; - int j = 0; - string repeatedLine = null; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateFile_NoPasswords.zip"); - - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - // create the files - int NumFilesToCreate = _rnd.Next(23) + 14; - for (j = 0; j < NumFilesToCreate; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - Path.GetFileName(filename)); - TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); - entriesAdded++; - } - - // create the zip archive - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - String[] filenames = Directory.GetFiles("A"); - foreach (String f in filenames) - zip1.UpdateFile(f, ""); - zip1.Comment = "UpdateTests::UpdateZip_UpdateFile_NoPasswords(): This archive will be updated."; - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, - "Zoiks! The Zip file has the wrong number of entries."); - - - // create another subdirectory - subdir = Path.Combine(TopLevelDir, "updates"); - Directory.CreateDirectory(subdir); - - // Create a bunch of new files, in that new subdirectory - var UpdatedFiles = new List(); - int NumToUpdate = _rnd.Next(NumFilesToCreate - 4); - for (j = 0; j < NumToUpdate; j++) - { - // select a new, uniquely named file to create - do - { - filename = String.Format("file{0:D3}.txt", _rnd.Next(NumFilesToCreate)); - } while (UpdatedFiles.Contains(filename)); - // create a new file, and fill that new file with text data - repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", - filename, System.DateTime.Now.ToString("yyyy-MM-dd")); - TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); - UpdatedFiles.Add(filename); - } - - // update those files in the zip archive - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s in UpdatedFiles) - zip2.UpdateFile(Path.Combine(subdir, s), ""); - zip2.Comment = "UpdateTests::UpdateZip_UpdateFile_NoPasswords(): This archive has been updated."; - zip2.Save(); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, - "Zoiks! The Zip file has the wrong number of entries."); - - // update those files AGAIN in the zip archive - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s in UpdatedFiles) - zip3.UpdateFile(Path.Combine(subdir, s), ""); - zip3.Comment = "UpdateTests::UpdateZip_UpdateFile_NoPasswords(): This archive has been re-updated."; - zip3.Save(); - } - - // extract the updated files and verify their contents - using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s in UpdatedFiles) - { - repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", - s, System.DateTime.Now.ToString("yyyy-MM-dd")); - zip4[s].Extract("extract"); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); - } - } - - // extract all the other files and verify their contents - using (ZipFile zip5 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s1 in zip5.EntryFileNames) - { - bool NotUpdated = true; - foreach (string s2 in UpdatedFiles) - { - if (s2 == s1) NotUpdated = false; - } - if (NotUpdated) - { - zip5[s1].Extract("extract"); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - s1); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s1)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); - } - } - } - } - - - - [TestMethod] - public void UpdateZip_UpdateFile_OldEntriesWithPassword() - { - string Password = "1234567"; - string filename = null; - int entriesAdded = 0; - int j = 0; - string repeatedLine = null; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateFile_OldEntriesWithPassword.zip"); - - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - // create a bunch of files - int NumFilesToCreate = _rnd.Next(23) + 14; - for (j = 0; j < NumFilesToCreate; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - Path.GetFileName(filename)); - TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); - entriesAdded++; - } - - // Create the zip archive - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - zip1.Password = Password; - String[] filenames = Directory.GetFiles("A"); - foreach (String f in filenames) - zip1.AddFile(f, ""); - zip1.Comment = "UpdateTests::UpdateZip_UpdateFile_OldEntriesWithPassword(): This archive will be updated."; - zip1.Save(zipFileToCreate); - } - - // Verify the number of files in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, - "The Zip file has the wrong number of entries."); - - // create another subdirectory - subdir = Path.Combine(TopLevelDir, "updates"); - Directory.CreateDirectory(subdir); - - // Create a bunch of new files, in that new subdirectory - var UpdatedFiles = new List(); - int NumToUpdate = _rnd.Next(NumFilesToCreate - 4); - for (j = 0; j < NumToUpdate; j++) - { - // select a new, uniquely named file to create - do - { - filename = String.Format("file{0:D3}.txt", _rnd.Next(NumFilesToCreate)); - } while (UpdatedFiles.Contains(filename)); - // create a new file, and fill that new file with text data - repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", - filename, System.DateTime.Now.ToString("yyyy-MM-dd")); - TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); - UpdatedFiles.Add(filename); - } - - // update those files in the zip archive - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s in UpdatedFiles) - zip2.UpdateFile(Path.Combine(subdir, s), ""); - zip2.Comment = "UpdateTests::UpdateZip_UpdateFile_OldEntriesWithPassword(): This archive has been updated."; - zip2.Save(); - } - - // extract those files and verify their contents - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s in UpdatedFiles) - { - repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", - s, System.DateTime.Now.ToString("yyyy-MM-dd")); - zip3[s].Extract("extract"); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); - } - } - - // extract all the other files and verify their contents - using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s1 in zip4.EntryFileNames) - { - bool NotUpdated = true; - foreach (string s2 in UpdatedFiles) - { - if (s2 == s1) NotUpdated = false; - } - if (NotUpdated) - { - zip4[s1].ExtractWithPassword("extract", Password); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - s1); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s1)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); - } - } - } - } - - - [TestMethod] - public void UpdateZip_UpdateFile_NewEntriesWithPassword() - { - string Password = " P@ssw$rd"; - string filename = null; - int entriesAdded = 0; - string repeatedLine = null; - int j = 0; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateFile_NewEntriesWithPassword.zip"); - - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - // create a bunch of files - int NumFilesToCreate = _rnd.Next(23) + 9; - for (j = 0; j < NumFilesToCreate; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - Path.GetFileName(filename)); - TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); - entriesAdded++; - } - - // create the zip archive, add those files to it - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - // no password used here. - String[] filenames = Directory.GetFiles("A"); - foreach (String f in filenames) - zip1.AddFile(f, ""); - zip1.Comment = "UpdateTests::UpdateZip_UpdateFile_NewEntriesWithPassword(): This archive will be updated."; - zip1.Save(zipFileToCreate); - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, - "The Zip file has the wrong number of entries."); - - // create another subdirectory - subdir = Path.Combine(TopLevelDir, "updates"); - Directory.CreateDirectory(subdir); - - // Create a bunch of new files, in that new subdirectory - var UpdatedFiles = new List(); - int NumToUpdate = _rnd.Next(NumFilesToCreate - 5); - for (j = 0; j < NumToUpdate; j++) - { - // select a new, uniquely named file to create - do - { - filename = String.Format("file{0:D3}.txt", _rnd.Next(NumFilesToCreate)); - } while (UpdatedFiles.Contains(filename)); - // create the new file, and fill that new file with text data - repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", - filename, System.DateTime.Now.ToString("yyyy-MM-dd")); - TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); - UpdatedFiles.Add(filename); - } - - // update those files in the zip archive - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - zip2.Password = Password; - foreach (string s in UpdatedFiles) - zip2.UpdateFile(Path.Combine(subdir, s), ""); - zip2.Comment = "UpdateTests::UpdateZip_UpdateFile_NewEntriesWithPassword(): This archive has been updated."; - zip2.Save(); - } - - // extract those files and verify their contents - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s in UpdatedFiles) - { - repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", - s, System.DateTime.Now.ToString("yyyy-MM-dd")); - zip3[s].ExtractWithPassword("extract", Password); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); - } - } - - // extract all the other files and verify their contents - using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s1 in zip4.EntryFileNames) - { - bool NotUpdated = true; - foreach (string s2 in UpdatedFiles) - { - if (s2 == s1) NotUpdated = false; - } - if (NotUpdated) - { - zip4[s1].Extract("extract"); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - s1); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s1)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); - } - } - } - } - - - [TestMethod] - public void UpdateZip_UpdateFile_DifferentPasswords() - { - string Password1 = "Whoofy1"; - string Password2 = "Furbakl1"; - string filename = null; - int entriesAdded = 0; - int j = 0; - string repeatedLine; - - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateFile_DifferentPasswords.zip"); - - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - // create a bunch of files - int NumFilesToCreate = _rnd.Next(13) + 14; - for (j = 0; j < NumFilesToCreate; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - Path.GetFileName(filename)); - TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); - entriesAdded++; - } - - // create the zip archive - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip1 = new ZipFile()) - { - zip1.Password = Password1; - String[] filenames = Directory.GetFiles("A"); - foreach (String f in filenames) - zip1.AddFile(f, ""); - zip1.Comment = "UpdateTests::UpdateZip_UpdateFile_DifferentPasswords(): This archive will be updated."; - zip1.Save(zipFileToCreate); - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, - "The Zip file has the wrong number of entries."); - - // create another subdirectory - subdir = Path.Combine(TopLevelDir, "updates"); - Directory.CreateDirectory(subdir); - - // Create a bunch of new files, in that new subdirectory - var UpdatedFiles = new List(); - int NumToUpdate = _rnd.Next(NumFilesToCreate - 4); - for (j = 0; j < NumToUpdate; j++) - { - // select a new, uniquely named file to create - do - { - filename = String.Format("file{0:D3}.txt", _rnd.Next(NumFilesToCreate)); - } while (UpdatedFiles.Contains(filename)); - // create a new file, and fill that new file with text data - repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", - filename, System.DateTime.Now.ToString("yyyy-MM-dd")); - TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); - UpdatedFiles.Add(filename); - } - - // update those files in the zip archive - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - zip2.Password = Password2; - foreach (string s in UpdatedFiles) - zip2.UpdateFile(Path.Combine(subdir, s), ""); - zip2.Comment = "UpdateTests::UpdateZip_UpdateFile_DifferentPasswords(): This archive has been updated."; - zip2.Save(); - } - - // extract those files and verify their contents - using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s in UpdatedFiles) - { - repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", - s, System.DateTime.Now.ToString("yyyy-MM-dd")); - zip3[s].ExtractWithPassword("extract", Password2); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(sLine, repeatedLine, - String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); - } - } - - // extract all the other files and verify their contents - using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) - { - foreach (string s1 in zip4.EntryFileNames) - { - bool wasUpdated = false; - foreach (string s2 in UpdatedFiles) - { - if (s2 == s1) wasUpdated = true; - } - if (!wasUpdated) - { - // use original password - zip4[s1].ExtractWithPassword("extract", Password1); - repeatedLine = String.Format("This line is repeated over and over and over in file {0}", - s1); - - // verify the content of the updated file. - var sr = new StreamReader(Path.Combine("extract", s1)); - string sLine = sr.ReadLine(); - sr.Close(); - - Assert.AreEqual(repeatedLine, sLine, - String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); - } - } - } - } - - - [TestMethod] - [ExpectedException(typeof(System.ArgumentException))] - public void UpdateZip_AddFile_ExistingFile_Error() - { - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_AddFile_ExistingFile_Error.zip"); - // create the subdirectory - string subdir = Path.Combine(TopLevelDir, "A"); - Directory.CreateDirectory(subdir); - - // create the files - int fileCount = _rnd.Next(3) + 4; - string filename = null; - int entriesAdded = 0; - for (int j = 0; j < fileCount; j++) - { - filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); - entriesAdded++; - } - - // Add the files to the zip, save the zip - Directory.SetCurrentDirectory(TopLevelDir); - using (ZipFile zip = new ZipFile()) - { - String[] filenames = Directory.GetFiles("A"); - foreach (String f in filenames) - zip.AddFile(f, ""); - zip.Comment = "UpdateTests::UpdateZip_AddFile_ExistingFile_Error(): This archive will be updated."; - zip.Save(zipFileToCreate); - } - - // create and file a new file with text data - int FileToUpdate = _rnd.Next(fileCount); - filename = String.Format("file{0:D3}.txt", FileToUpdate); - string repeatedLine = String.Format("**UPDATED** This file ({0}) was updated at {1}.", - filename, - System.DateTime.Now.ToString("G")); - TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(21567) + 23872); - - // Try to again add that file in the zip archive. This - // should fail. - using (ZipFile z = ZipFile.Read(zipFileToCreate)) - { - // Try Adding a file again. THIS SHOULD THROW. - ZipEntry e = z.AddFile(filename, ""); - z.Comment = "UpdateTests::UpdateZip_AddFile_ExistingFile_Error(): This archive has been updated."; - z.Save(); - } - } - - - [TestMethod] - public void Update_MultipleSaves_wi10319() - { - string zipFileToCreate = "MultipleSaves_wi10319.zip"; - - using (ZipFile _zipFile = new ZipFile(zipFileToCreate)) - { - using (MemoryStream data = new MemoryStream()) - { - using (StreamWriter writer = new StreamWriter(data)) - { - writer.Write("Dit is een test string."); - writer.Flush(); - - data.Seek(0, SeekOrigin.Begin); - _zipFile.AddEntry("test.txt", data); - _zipFile.Save(); - _zipFile.AddEntry("test2.txt", "Esta es un string de test"); - _zipFile.Save(); - _zipFile.AddEntry("test3.txt", "this is some content for the entry."); - _zipFile.Save(); - } - } - } - - using (ZipFile _zipFile = new ZipFile(zipFileToCreate)) - { - using (MemoryStream data = new MemoryStream()) - { - using (StreamWriter writer = new StreamWriter(data)) - { - writer.Write("Dit is een andere test string."); - writer.Flush(); - - data.Seek(0, SeekOrigin.Begin); - - _zipFile.UpdateEntry("test.txt", data); - _zipFile.Save(); - _zipFile.UpdateEntry("test2.txt", "Esta es un otro string de test"); - _zipFile.Save(); - _zipFile.UpdateEntry("test3.txt", "This is another string for content."); - _zipFile.Save(); - - } - } - } - } - - - - - [TestMethod] - public void Update_MultipleSaves_wi10694() - { - string zipFileToCreate = "Update_MultipleSaves_wi10694.zip"; - var shortDir = "fodder"; - string subdir = Path.Combine(TopLevelDir, shortDir); - string[] filesToZip = TestUtilities.GenerateFilesFlat(subdir); - - using (ZipFile zip1 = new ZipFile()) - { - zip1.AddFiles(filesToZip, "Download"); - zip1.AddFiles(filesToZip, "other"); - zip1.Save(zipFileToCreate); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), 2 * filesToZip.Length, - "Incorrect number of entries in the zip file."); - - using (var zip2 = ZipFile.Read(zipFileToCreate)) - { - var entries = zip2.Entries.Where(e => e.FileName.Contains("Download")).ToArray(); - //PART1 - Add directory and save - zip2.AddDirectoryByName("XX"); - zip2.Save(); - - //PART2 - Rename paths (not related to XX directory from above) and save - foreach (var zipEntry in entries) - { - zipEntry.FileName = zipEntry.FileName.Replace("Download", "Download2"); - } - zip2.Save(); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), 2 * filesToZip.Length, - "Incorrect number of entries in the zip file."); - } - - - - [TestMethod] - public void Update_MultipleSavesWithRename_wi10544() - { - // select the name of the zip file - string zipFileToCreate = Path.Combine(TopLevelDir, "Update_MultipleSaves_wi10319.zip"); - string entryName = "Entry1.txt"; - - TestContext.WriteLine("Creating zip file... "); - using (var zip = new ZipFile()) - { - string firstline = "This is the first line in the Entry.\n"; - byte[] a = System.Text.Encoding.ASCII.GetBytes(firstline.ToCharArray()); - - zip.AddEntry(entryName, a); - zip.Save(zipFileToCreate); - } - - int N = _rnd.Next(34) + 59; - for (int i = 0; i < N; i++) - { - string tempZipFile = "AppendToEntry.zip.tmp" + i; - - TestContext.WriteLine("Update cycle {0}... ", i); - using (var zip1 = ZipFile.Read(zipFileToCreate)) - { - using (var zip = new ZipFile()) - { - zip.AddEntry(entryName, (name, stream) => - { - var src = zip1[name].OpenReader(); - int n; - byte[] b = new byte[2048]; - while ((n = src.Read(b, 0, b.Length)) > 0) - stream.Write(b, 0, n); - - string update = String.Format("Updating zip file {0} at {1}\n", i, DateTime.Now.ToString("G")); - byte[] a = System.Text.Encoding.ASCII.GetBytes(update.ToCharArray()); - stream.Write(a, 0, a.Length); - }); - - zip.Save(tempZipFile); - } - } - - File.Delete(zipFileToCreate); - System.Threading.Thread.Sleep(1400); - File.Move(tempZipFile, zipFileToCreate); - } - - } - - - [TestMethod] - public void Update_FromRoot_wi11988() - { - string zipFileToCreate = "FromRoot.zip"; - string dirToZip = "Fodder"; - var files = TestUtilities.GenerateFilesFlat(dirToZip); - string windir = System.Environment.GetEnvironmentVariable("Windir"); - string substExe = Path.Combine(Path.Combine(windir, "system32"), "subst.exe"); - Assert.IsTrue(File.Exists(substExe), "subst.exe does not exist ({0})", - substExe); - - try - { - // create a subst drive - this.Exec(substExe, "G: " + dirToZip); - - using (var zip = new ZipFile()) - { - zip.UpdateSelectedFiles("*.*", "G:\\", "", true); - zip.Save(zipFileToCreate); - } - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - files.Length); - Assert.IsTrue(files.Length > 3); - BasicVerifyZip(zipFileToCreate); - } - finally - { - // remove the virt drive - this.Exec(substExe, "/D G:"); - } - } - - } -} - +// UpdateTests.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009-2011 Dino Chiesa +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-August-05 16:52:59> +// +// ------------------------------------------------------------------ +// +// This module defines tests for updating zip files via DotNetZip. +// +// ------------------------------------------------------------------ + +using System; +using System.Linq; +using System.IO; +using System.Text; +using System.Collections.Generic; +using Microsoft.VisualStudio.TestTools.UnitTesting; + +using Ionic.Zip; +using Ionic.Zip.Tests.Utilities; + +namespace Ionic.Zip.Tests.Update +{ + /// + /// Summary description for UnitTest1 + /// + [TestClass] + public class UpdateTests : IonicTestClass + { + public UpdateTests() : base() { } + + [TestMethod] + public void UpdateZip_AddNewDirectory() + { + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_AddNewDirectory.zip"); + + String CommentOnArchive = "BasicTests::UpdateZip_AddNewDirectory(): This archive will be overwritten."; + + string newComment = "This comment has been OVERWRITTEN." + DateTime.Now.ToString("G"); + string dirToZip = Path.Combine(TopLevelDir, "zipup"); + + int i, j; + int entries = 0; + string subdir = null; + String filename = null; + int subdirCount = _rnd.Next(4) + 4; + for (i = 0; i < subdirCount; i++) + { + subdir = Path.Combine(dirToZip, "Directory." + i); + Directory.CreateDirectory(subdir); + + int fileCount = _rnd.Next(3) + 3; + for (j = 0; j < fileCount; j++) + { + filename = Path.Combine(subdir, "file" + j + ".txt"); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(12000) + 5000); + entries++; + } + } + + using (ZipFile zip = new ZipFile()) + { + zip.AddDirectory(dirToZip); + zip.Comment = CommentOnArchive; + zip.Save(zipFileToCreate); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries, + "The created Zip file has an unexpected number of entries."); + + BasicVerifyZip(zipFileToCreate); + + // Now create a new subdirectory and add that one + subdir = Path.Combine(TopLevelDir, "NewSubDirectory"); + Directory.CreateDirectory(subdir); + + filename = Path.Combine(subdir, "newfile.txt"); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(12000) + 5000); + entries++; + + using (ZipFile zip = new ZipFile(zipFileToCreate)) + { + zip.AddDirectory(subdir); + zip.Comment = newComment; + // this will add entries into the existing zip file + zip.Save(); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries, + "The overwritten Zip file has the wrong number of entries."); + + using (ZipFile readzip = new ZipFile(zipFileToCreate)) + { + Assert.AreEqual(newComment, + readzip.Comment, + "The zip comment is incorrect."); + } + } + + + + [TestMethod] + public void UpdateZip_ChangeMetadata_AES() + { + Directory.SetCurrentDirectory(TopLevelDir); + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_ChangeMetadata_AES.zip"); + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + // create the files + int numFilesToCreate = _rnd.Next(13) + 24; + //int numFilesToCreate = 2; + string filename = null; + for (int j = 0; j < numFilesToCreate; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + //TestUtilities.CreateAndFillFileText(filename, 500); + } + + string password = Path.GetRandomFileName() + Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + + using (var zip = new ZipFile()) + { + zip.Password = password; + zip.Encryption = EncryptionAlgorithm.WinZipAes256; + zip.AddFiles(Directory.GetFiles(subdir), ""); + zip.Save(zipFileToCreate); + } + + // Verify the correct number of files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), numFilesToCreate, + "Fie! The updated Zip file has the wrong number of entries."); + + // test extract (and implicitly check CRCs, passwords, etc) + VerifyZip(zipFileToCreate, password); + + byte[] buffer = new byte[_rnd.Next(10000) + 10000]; + _rnd.NextBytes(buffer); + using (var zip = ZipFile.Read(zipFileToCreate)) + { + // modify the metadata for an entry + zip[0].LastModified = DateTime.Now - new TimeSpan(7 * 31, 0, 0); + zip.Password = password; + zip.Encryption = EncryptionAlgorithm.WinZipAes256; + zip.AddEntry(Path.GetRandomFileName(), buffer); + zip.Save(); + } + + // Verify the correct number of files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), numFilesToCreate + 1, + "Fie! The updated Zip file has the wrong number of entries."); + + // test extract (and implicitly check CRCs, passwords, etc) + VerifyZip(zipFileToCreate, password); + } + + + + private void VerifyZip(string zipfile, string password) + { + Stream bitBucket = Stream.Null; + TestContext.WriteLine("Checking file {0}", zipfile); + using (ZipFile zip = ZipFile.Read(zipfile)) + { + zip.Password = password; + zip.BufferSize = 65536; + foreach (var s in zip.EntryFileNames) + { + TestContext.WriteLine(" Entry: {0}", s); + zip[s].Extract(bitBucket); + } + } + System.Threading.Thread.Sleep(0x500); + } + + + + [TestMethod] + public void UpdateZip_RemoveEntry_ByLastModTime() + { + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_RemoveEntry_ByLastModTime.zip"); + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + // create the files + int numFilesToCreate = _rnd.Next(13) + 24; + string filename = null; + int entriesAdded = 0; + for (int j = 0; j < numFilesToCreate; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + entriesAdded++; + } + + // Add the files to the zip, save the zip + Directory.SetCurrentDirectory(TopLevelDir); + int ix = 0; + System.DateTime origDate = new System.DateTime(2007, 1, 15, 12, 1, 0); + using (ZipFile zip1 = new ZipFile()) + { + String[] filenames = Directory.GetFiles("A"); + foreach (String f in filenames) + { + ZipEntry e = zip1.AddFile(f, ""); + e.LastModified = origDate + new TimeSpan(24 * 31 * ix, 0, 0); // 31 days * number of entries + ix++; + } + zip1.Comment = "UpdateTests::UpdateZip_RemoveEntry_ByLastModTime(): This archive will soon be updated."; + zip1.Save(zipFileToCreate); + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, + "The Zip file has the wrong number of entries."); + + + // selectively remove a few files in the zip archive + var threshold = new TimeSpan(24 * 31 * (2 + _rnd.Next(ix - 12)), 0, 0); + int numRemoved = 0; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + // We cannot remove the entry from the list, within the context of + // an enumeration of said list. + // So we add the doomed entry to a list to be removed + // later. + // pass 1: mark the entries for removal + var entriesToRemove = new List(); + foreach (ZipEntry e in zip2) + { + if (e.LastModified < origDate + threshold) + { + entriesToRemove.Add(e); + numRemoved++; + } + } + + // pass 2: actually remove the entry. + foreach (ZipEntry zombie in entriesToRemove) + zip2.RemoveEntry(zombie); + + zip2.Comment = "UpdateTests::UpdateZip_RemoveEntry_ByLastModTime(): This archive has been updated."; + zip2.Save(); + } + + // Verify the correct number of files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded - numRemoved, + "Fie! The updated Zip file has the wrong number of entries."); + + // verify that all entries in the archive are within the threshold + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + foreach (ZipEntry e in zip3) + Assert.IsTrue((e.LastModified >= origDate + threshold), + "Merde. The updated Zip file has entries that lie outside the threshold."); + } + + } + + + [TestMethod] + public void UpdateZip_RemoveEntry_ByFilename_WithPassword() + { + string password = "*!ookahoo"; + string filename = null; + int entriesToBeAdded = 0; + string repeatedLine = null; + int j; + + // select the name of the zip file + string zipFileToCreate = "ByFilename_WithPassword.zip"; + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + // create a bunch of files, fill them with content + int numFilesToCreate = _rnd.Next(13) + 24; + for (j = 0; j < numFilesToCreate; j++) + { + filename = String.Format("file{0:D3}.txt", j); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + filename); + TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); + entriesToBeAdded++; + } + + // Add the files to the zip, save the zip + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + String[] filenames = Directory.GetFiles("A"); + zip1.Password = password; + zip1.AddFiles(filenames, ""); + + zip1.Comment = "UpdateTests::UpdateZip_RemoveEntry_ByFilename_WithPassword(): This archive will be updated."; + zip1.Save(zipFileToCreate); + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesToBeAdded, + "The Zip file has the wrong number of entries."); + + + // selectively remove a few files in the zip archive + var filesToRemove = new List(); + int numToRemove = _rnd.Next(numFilesToCreate - 4) + 1; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + for (j = 0; j < numToRemove; j++) + { + // select a new, uniquely named file to create + do + { + filename = String.Format("file{0:D3}.txt", _rnd.Next(numFilesToCreate)); + } while (filesToRemove.Contains(filename)); + // add this file to the list + filesToRemove.Add(filename); + zip2.RemoveEntry(filename); + } + + zip2.Comment = "This archive has been modified. Some files have been removed."; + zip2.Save(); + } + + + // extract all files, verify none should have been removed, + // and verify the contents of those that remain + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s1 in zip3.EntryFileNames) + { + Assert.IsFalse(filesToRemove.Contains(s1), String.Format("File ({0}) was not expected.", s1)); + + zip3[s1].ExtractWithPassword("extract", password); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + s1); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s1)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); + + } + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesToBeAdded - filesToRemove.Count, + "The updated Zip file has the wrong number of entries."); + } + + + + [TestMethod] + public void UpdateZip_RenameEntry() + { + string dirToZip = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + var files = TestUtilities.GenerateFilesFlat(dirToZip, + _rnd.Next(13) + 24, + 42 * 1024 + _rnd.Next(20000)); + + // Two passes: in pass 1, simply rename the file; + // in pass 2, rename it so that it has a directory. + // This shouldn't matter, but we test it anyway. + for (int k = 0; k < 2; k++) + { + string zipFileToCreate = String.Format("UpdateZip_RenameEntry-{0}.zip", k); + TestContext.WriteLine("-----------------------------"); + TestContext.WriteLine("{0}: Trial {1}, adding {2} files into '{3}'...", + DateTime.Now.ToString("HH:mm:ss"), + k, + files.Length, + zipFileToCreate); + + // Add the files to the zip, save the zip + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + foreach (String f in files) + zip1.AddFile(f, ""); + zip1.Comment = "This archive will be updated."; + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + files.Length, + "the Zip file has the wrong number of entries."); + + // selectively rename a few files in the zip archive + int renameCount = 0; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + var toRename = new List(); + while (toRename.Count < 2) + { + foreach (ZipEntry e in zip2) + { + if (_rnd.Next(2) == 1) + toRename.Add(e); + } + } + + foreach (ZipEntry e in toRename) + { + var newname = (k == 0) + ? e.FileName + "-renamed" + : "renamed_files\\" + e.FileName; + + TestContext.WriteLine(" renaming {0} to {1}", e.FileName, newname); + e.FileName = newname; + e.Comment = "renamed"; + renameCount++; + } + + zip2.Comment = String.Format("This archive has been modified. {0} files have been renamed.", renameCount); + zip2.Save(); + } + + + // Extract all the files, verify that none have been removed, + // and verify the names of the entries. + int renameCount2 = 0; + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s1 in zip3.EntryFileNames) + { + string dir = String.Format("extract{0}", k); + zip3[s1].Extract(dir); + string origFilename = Path.GetFileName((s1.Contains("renamed")) + ? s1.Replace("-renamed", "") + : s1); + + if (zip3[s1].Comment == "renamed") renameCount2++; + } + } + + Assert.AreEqual(renameCount, renameCount2, + "The updated Zip file has the wrong number of renamed entries."); + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + files.Length, + "Wrong number of entries."); + } + } + + + [TestMethod] + public void UpdateZip_UpdateEntryComment() + { + for (int k = 0; k < 2; k++) + { + int j; + int entriesToBeAdded = 0; + string filename = null; + string repeatedLine = null; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("UpdateZip_UpdateEntryComment-{0}.zip", k)); + + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, String.Format("A{0}", k)); + Directory.CreateDirectory(subdir); + + // create a bunch of files + //int numFilesToCreate = _rnd.Next(15) + 18; + int numFilesToCreate = _rnd.Next(5) + 3; + + TestContext.WriteLine("\n-----------------------------\r\n{0}: Trial {1}, adding {2} files into '{3}'...", + DateTime.Now.ToString("HH:mm:ss"), + k, + numFilesToCreate, + zipFileToCreate); + + for (j = 0; j < numFilesToCreate; j++) + { + filename = String.Format("file{0:D3}.txt", j); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + filename); + + int filesize = _rnd.Next(34000) + 800; + + TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), + repeatedLine, + filesize); + entriesToBeAdded++; + } + + // Add the files to the zip, save the zip + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + String[] filenames = Directory.GetFiles(String.Format("A{0}", k)); + foreach (String f in filenames) + zip1.AddFile(f, ""); + + zip1.Comment = "UpdateTests::UpdateZip_UpdateEntryComment(): This archive will be updated."; + zip1.Save(zipFileToCreate); + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesToBeAdded, + "the Zip file has the wrong number of entries."); + + // update the comments for a few files in the zip archive + int updateCount = 0; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + do + { + foreach (ZipEntry e in zip2) + { + if (_rnd.Next(2) == 1) + { + if (String.IsNullOrEmpty(e.Comment)) + { + e.Comment = "This is a new comment on entry " + e.FileName; + updateCount++; + } + } + } + } while (updateCount < 2); + zip2.Comment = String.Format("This archive has been modified. Comments on {0} entries have been inserted.", updateCount); + zip2.Save(); + } + + + // Extract all files, verify that none have been removed, + // and verify the contents of those that remain. + int commentCount = 0; + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s1 in zip3.EntryFileNames) + { + string dir = String.Format("extract{0}", k); + zip3[s1].Extract(dir); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + s1); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine(dir, s1)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); + + if (!String.IsNullOrEmpty(zip3[s1].Comment)) + { + commentCount++; + } + } + } + + Assert.AreEqual(updateCount, commentCount, + "The updated Zip file has the wrong number of entries with comments."); + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesToBeAdded, + "The updated Zip file has the wrong number of entries."); + } + } + + + + + [TestMethod] + public void UpdateZip_RemoveEntry_ByFilename() + { + for (int k = 0; k < 2; k++) + { + int j; + int entriesToBeAdded = 0; + string filename = null; + string repeatedLine = null; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("UpdateZip_RemoveEntry_ByFilename-{0}.zip", k)); + + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, String.Format("A{0}", k)); + Directory.CreateDirectory(subdir); + + // create a bunch of files + int numFilesToCreate = _rnd.Next(13) + 24; + + for (j = 0; j < numFilesToCreate; j++) + { + filename = String.Format("file{0:D3}.txt", j); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + filename); + TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); + entriesToBeAdded++; + } + + // Add the files to the zip, save the zip. + // in pass 2, remove one file, then save again. + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + String[] filenames = Directory.GetFiles(String.Format("A{0}", k)); + + foreach (String f in filenames) + zip1.AddFile(f, ""); + + zip1.Comment = "UpdateTests::UpdateZip_RemoveEntry_ByFilename(): This archive will be updated."; + zip1.Save(zipFileToCreate); + + // conditionally remove a single entry, on the 2nd trial + if (k == 1) + { + int chosen = _rnd.Next(filenames.Length); + zip1.RemoveEntry(zip1[chosen]); + zip1.Save(); + } + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesToBeAdded - k, + "Trial {0}: the Zip file has the wrong number of entries.", k); + + if (k == 0) + { + // selectively remove a few files in the zip archive + var filesToRemove = new List(); + int numToRemove = _rnd.Next(numFilesToCreate - 4) + 1; + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + for (j = 0; j < numToRemove; j++) + { + // select a new, uniquely named file to create + do + { + filename = String.Format("file{0:D3}.txt", _rnd.Next(numFilesToCreate)); + } while (filesToRemove.Contains(filename)); + // add this file to the list + filesToRemove.Add(filename); + zip2.RemoveEntry(filename); + + } + + zip2.Comment = "This archive has been modified. Some files have been removed."; + zip2.Save(); + } + + + // extract all files, verify none should have been removed, + // and verify the contents of those that remain + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s1 in zip3.EntryFileNames) + { + Assert.IsFalse(filesToRemove.Contains(s1), + String.Format("File ({0}) was not expected.", s1)); + + zip3[s1].Extract("extract"); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + s1); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s1)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); + + } + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + entriesToBeAdded - filesToRemove.Count, + "The updated Zip file has the wrong number of entries."); + } + } + } + + + + + [TestMethod] + public void UpdateZip_RemoveEntry_ViaIndexer_WithPassword() + { + string password = TestUtilities.GenerateRandomPassword(); + string filename = null; + int entriesToBeAdded = 0; + string repeatedLine = null; + int j; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_RemoveEntry_ViaIndexer_WithPassword.zip"); + + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + // create the files + int numFilesToCreate = _rnd.Next(13) + 14; + for (j = 0; j < numFilesToCreate; j++) + { + filename = String.Format("file{0:D3}.txt", j); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + filename); + TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); + entriesToBeAdded++; + } + + // Add the files to the zip, save the zip + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip = new ZipFile()) + { + String[] filenames = Directory.GetFiles("A"); + zip.Password = password; + foreach (String f in filenames) + zip.AddFile(f, ""); + + zip.Comment = "UpdateTests::UpdateZip_OpenForUpdate_Password_RemoveViaIndexer(): This archive will be updated."; + zip.Save(zipFileToCreate); + } + + // Verify the files are in the zip + Assert.AreEqual(entriesToBeAdded, TestUtilities.CountEntries(zipFileToCreate), + "The Zip file has the wrong number of entries."); + + // selectively remove a few files in the zip archive + var filesToRemove = new List(); + int numToRemove = _rnd.Next(numFilesToCreate - 4); + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + for (j = 0; j < numToRemove; j++) + { + // select a new, uniquely named file to create + do + { + filename = String.Format("file{0:D3}.txt", _rnd.Next(numFilesToCreate)); + } while (filesToRemove.Contains(filename)); + // add this file to the list + filesToRemove.Add(filename); + + // remove the file from the zip archive + zip2.RemoveEntry(filename); + } + + zip2.Comment = "This archive has been modified. Some files have been removed."; + zip2.Save(); + } + + // extract all files, verify none should have been removed, + // and verify the contents of those that remain + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s1 in zip3.EntryFileNames) + { + Assert.IsFalse(filesToRemove.Contains(s1), String.Format("File ({0}) was not expected.", s1)); + + zip3[s1].ExtractWithPassword("extract", password); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + s1); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s1)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, + sLine, + String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); + + } + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + entriesToBeAdded - filesToRemove.Count, + "The updated Zip file has the wrong number of entries."); + } + + + + [TestMethod] + public void UpdateZip_RemoveAllEntries() + { + string password = "Wheeee!!" + TestUtilities.GenerateRandomLowerString(7); + string filename = null; + int entriesToBeAdded = 0; + string repeatedLine = null; + int j; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_RemoveAllEntries.zip"); + + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + // create the files + int numFilesToCreate = _rnd.Next(13) + 14; + for (j = 0; j < numFilesToCreate; j++) + { + filename = String.Format("file{0:D3}.txt", j); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + filename); + TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); + entriesToBeAdded++; + } + + // Add the files to the zip, save the zip + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip = new ZipFile()) + { + String[] filenames = Directory.GetFiles("A"); + zip.Password = password; + foreach (String f in filenames) + zip.AddFile(f, ""); + + zip.Comment = "UpdateTests::UpdateZip_RemoveAllEntries(): This archive will be updated."; + zip.Save(zipFileToCreate); + } + + // Verify the files are in the zip + Assert.AreEqual(entriesToBeAdded, + TestUtilities.CountEntries(zipFileToCreate), + "The Zip file has the wrong number of entries."); + + // remove all the entries from the zip archive + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + zip2.RemoveSelectedEntries("*.*"); + zip2.Comment = "This archive has been modified. All the entries have been removed."; + zip2.Save(); + } + + // Verify the files are in the zip + Assert.AreEqual(0, TestUtilities.CountEntries(zipFileToCreate), + "The Zip file has the wrong number of entries."); + + + } + + + [TestMethod] + public void UpdateZip_AddFile_OldEntriesWithPassword() + { + string password = "Secret!"; + string filename = null; + int entriesAdded = 0; + string repeatedLine = null; + int j; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_AddFile_OldEntriesWithPassword.zip"); + + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + // create the files + int numFilesToCreate = _rnd.Next(10) + 8; + for (j = 0; j < numFilesToCreate; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + Path.GetFileName(filename)); + TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); + entriesAdded++; + } + + // Create the zip file + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + zip1.Password = password; + String[] filenames = Directory.GetFiles("A"); + foreach (String f in filenames) + zip1.AddFile(f, ""); + zip1.Comment = "UpdateTests::UpdateZip_AddFile_OldEntriesWithPassword(): This archive will be updated."; + zip1.Save(zipFileToCreate); + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, + "The Zip file has the wrong number of entries."); + + + // Create a bunch of new files... + var addedFiles = new List(); + int numToUpdate = _rnd.Next(numFilesToCreate - 4); + for (j = 0; j < numToUpdate; j++) + { + // select a new, uniquely named file to create + filename = String.Format("newfile{0:D3}.txt", j); + // create a new file, and fill that new file with text data + repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", + filename, System.DateTime.Now.ToString("yyyy-MM-dd")); + TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); + addedFiles.Add(filename); + } + + // add each one of those new files in the zip archive + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s in addedFiles) + zip2.AddFile(Path.Combine(subdir, s), ""); + zip2.Comment = "UpdateTests::UpdateZip_AddFile_OldEntriesWithPassword(): This archive has been updated."; + zip2.Save(); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + entriesAdded + addedFiles.Count, + "The Zip file has the wrong number of entries."); + + + // now extract the newly-added files and verify their contents + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s in addedFiles) + { + repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", + s, System.DateTime.Now.ToString("yyyy-MM-dd")); + zip3[s].Extract("extract"); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); + } + } + + + // extract all the other files and verify their contents + using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s1 in zip4.EntryFileNames) + { + bool addedLater = false; + foreach (string s2 in addedFiles) + { + if (s2 == s1) addedLater = true; + } + if (!addedLater) + { + zip4[s1].ExtractWithPassword("extract", password); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + s1); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s1)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); + } + } + } + } + + + + [TestMethod] + public void UpdateZip_UpdateItem() + { + string filename = null; + int entriesAdded = 0; + string repeatedLine = null; + int j; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem.zip"); + + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + // create a bunch of files + int numFilesToCreate = _rnd.Next(10) + 8; + for (j = 0; j < numFilesToCreate; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + repeatedLine = String.Format("Content for Original file {0}", + Path.GetFileName(filename)); + TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); + entriesAdded++; + } + + // Create the zip file + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + String[] filenames = Directory.GetFiles("A"); + foreach (String f in filenames) + zip1.AddFile(f, ""); + zip1.Comment = "UpdateTests::UpdateZip_UpdateItem(): This archive will be updated."; + zip1.Save(zipFileToCreate); + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, + "The Zip file has the wrong number of entries."); + + // create another subdirectory + subdir = Path.Combine(TopLevelDir, "B"); + Directory.CreateDirectory(subdir); + + // create a bunch more files + int newFileCount = numFilesToCreate + _rnd.Next(3) + 3; + for (j = 0; j < newFileCount; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + repeatedLine = String.Format("Content for the updated file {0} {1}", + Path.GetFileName(filename), + System.DateTime.Now.ToString("yyyy-MM-dd")); + TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(1000) + 2000); + entriesAdded++; + } + + // Update those files in the zip file + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + String[] filenames = Directory.GetFiles("B"); + foreach (String f in filenames) + zip1.UpdateItem(f, ""); + zip1.Comment = "UpdateTests::UpdateZip_UpdateItem(): This archive has been updated."; + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), newFileCount, + "The Zip file has the wrong number of entries."); + + // now extract the files and verify their contents + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s in zip3.EntryFileNames) + { + repeatedLine = String.Format("Content for the updated file {0} {1}", + s, + System.DateTime.Now.ToString("yyyy-MM-dd")); + zip3[s].Extract("extract"); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); + } + } + } + + + [TestMethod] + public void UpdateZip_UpdateItem_UpdateTwice() + { + string filename = "text.txt"; + string contentText1 = "Content 1"; + string contentText2 = "Content 2 - this is longer"; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateTwice.zip"); + + // Create the zip file + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + var content1 = new MemoryStream(Encoding.Default.GetBytes(contentText1)); + var entry1 = zip1.UpdateEntry(filename, content1); + Assert.IsNotNull(entry1); + zip1.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateTwice(): This archive will be updated."; + zip1.Save(zipFileToCreate); + + using (ZipFile zip2 = new ZipFile(zipFileToCreate)) + { + var entry = zip2[filename]; + using (var ms = new MemoryStream()) + { + entry.OpenReader().CopyTo(ms); + var content = Encoding.Default.GetString(ms.ToArray()); + Assert.AreEqual(contentText1, content); + } + } + + var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); + var entry2 = zip1.UpdateEntry(filename, content2); + Assert.IsNotNull(entry2); + zip1.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateTwice(): This archive was updated."; + zip1.Save(zipFileToCreate); + + using (ZipFile zip3 = new ZipFile(zipFileToCreate)) + { + var entry = zip3[filename]; + using (var ms = new MemoryStream()) + { + entry.OpenReader().CopyTo(ms); + var content = Encoding.Default.GetString(ms.ToArray()); + Assert.AreEqual(contentText2, content); + } + } + } + } + + + [TestMethod] + public void UpdateZip_UpdateItem_UpdateMultipleTimes_SaveAs_Save() + { + string filename = "text1.txt"; + string filename2 = "text2.txt"; + string contentText1 = "Content 1"; + string contentText2 = "Content 2 - this is longer"; + string contentText3 = "Content 3"; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateMultipleTimes.zip"); + string zipFileToSaveAs = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateMultipleTimes_New.zip"); + + #region Create the zip file + + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zipSave = new ZipFile()) + { + var content1 = new MemoryStream(Encoding.Default.GetBytes(contentText1)); + var entry1 = zipSave.UpdateEntry(filename, content1); + Assert.IsNotNull(entry1); + + var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); + var entry2 = zipSave.UpdateEntry(filename2, content2); + Assert.IsNotNull(entry2); + zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive will be updated."; + zipSave.Save(zipFileToCreate); + } + using (ZipFile zipTest = new ZipFile(zipFileToCreate)) + { + var entry = zipTest[filename]; + using (var ms = new MemoryStream()) + { + entry.OpenReader().CopyTo(ms); + var content = Encoding.Default.GetString(ms.ToArray()); + Assert.AreEqual(contentText1, content); + } + } + + #endregion + + using (ZipFile zipSave = new ZipFile(zipFileToCreate)) + { + var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); + var entry2 = zipSave.UpdateEntry(filename, content2); + Assert.IsNotNull(entry2); + zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive was updated once."; + zipSave.Save(zipFileToSaveAs); + + Assert.IsTrue(ZipFile.CheckZip(zipFileToSaveAs)); + + var content3 = new MemoryStream(Encoding.Default.GetBytes(contentText3)); + var entry3 = zipSave.UpdateEntry(filename, content3); + Assert.IsNotNull(entry3); + zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive was updated twice."; + zipSave.Save(); + } + + Assert.IsTrue(ZipFile.CheckZip(zipFileToSaveAs)); + using (ZipFile zipTest = new ZipFile(zipFileToSaveAs)) + { + var entry = zipTest[filename]; + using (var ms = new MemoryStream()) + { + entry.OpenReader().CopyTo(ms); + var content = Encoding.Default.GetString(ms.ToArray()); + Assert.AreEqual(contentText3, content); + } + } + } + + + [TestMethod] + public void UpdateZip_UpdateItem_UpdateMultipleTimes_SaveAsTwice() + { + string filename = "text1.txt"; + string filename2 = "text2.txt"; + string contentText1 = "Content 1"; + string contentText2 = "Content 2 - this is longer"; + string contentText3 = "Content 3"; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateMultipleTimes.zip"); + string zipFileToSaveAs = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateMultipleTimes_New.zip"); + + #region Create the zip file + + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zipSave = new ZipFile()) + { + var content1 = new MemoryStream(Encoding.Default.GetBytes(contentText1)); + var entry1 = zipSave.UpdateEntry(filename, content1); + Assert.IsNotNull(entry1); + + var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); + var entry2 = zipSave.UpdateEntry(filename2, content2); + Assert.IsNotNull(entry2); + zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive will be updated."; + zipSave.Save(zipFileToCreate); + } + using (ZipFile zipTest = new ZipFile(zipFileToCreate)) + { + var entry = zipTest[filename]; + using (var ms = new MemoryStream()) + { + entry.OpenReader().CopyTo(ms); + var content = Encoding.Default.GetString(ms.ToArray()); + Assert.AreEqual(contentText1, content); + } + } + + #endregion + + using (ZipFile zipSave = new ZipFile(zipFileToCreate)) + { + var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); + var entry2 = zipSave.UpdateEntry(filename, content2); + Assert.IsNotNull(entry2); + zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive was updated once."; + zipSave.Save(zipFileToSaveAs); + + Assert.IsTrue(ZipFile.CheckZip(zipFileToSaveAs)); + + var content3 = new MemoryStream(Encoding.Default.GetBytes(contentText3)); + var entry3 = zipSave.UpdateEntry(filename, content3); + Assert.IsNotNull(entry3); + zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive was updated twice."; + zipSave.Save(zipFileToSaveAs); + } + + Assert.IsTrue(ZipFile.CheckZip(zipFileToSaveAs)); + using (ZipFile zipTest = new ZipFile(zipFileToSaveAs)) + { + var entry = zipTest[filename]; + using (var ms = new MemoryStream()) + { + entry.OpenReader().CopyTo(ms); + var content = Encoding.Default.GetString(ms.ToArray()); + Assert.AreEqual(contentText3, content); + } + } + } + + + [TestMethod] + public void UpdateZip_UpdateItem_UpdateMultipleTimes_SaveAsStream() + { + string filename = "text1.txt"; + string filename2 = "text2.txt"; + string contentText1 = "Content 1"; + string contentText2 = "Content 2 - this is longer"; + string contentText3 = "Content 3"; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateMultipleTimes.zip"); + string zipFileToSaveAs = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateMultipleTimes_New.zip"); + + #region Create the zip file + + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zipSave = new ZipFile()) + { + var content1 = new MemoryStream(Encoding.Default.GetBytes(contentText1)); + var entry1 = zipSave.UpdateEntry(filename, content1); + Assert.IsNotNull(entry1); + + var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); + var entry2 = zipSave.UpdateEntry(filename2, content2); + Assert.IsNotNull(entry2); + zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive will be updated."; + zipSave.Save(zipFileToCreate); + } + using (ZipFile zipTest = new ZipFile(zipFileToCreate)) + { + var entry = zipTest[filename]; + using (var ms = new MemoryStream()) + { + entry.OpenReader().CopyTo(ms); + var content = Encoding.Default.GetString(ms.ToArray()); + Assert.AreEqual(contentText1, content); + } + } + + #endregion + + using (ZipFile zipSave = new ZipFile(zipFileToCreate)) + { + var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); + var entry2 = zipSave.UpdateEntry(filename, content2); + Assert.IsNotNull(entry2); + zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive was updated once."; + + var memoryStream = new MemoryStream(); //Attention: the source stream can't be disposed, as its needed to read not edited entries on the next save + zipSave.Save(memoryStream); + File.WriteAllBytes(zipFileToSaveAs, memoryStream.ToArray()); + Assert.IsTrue(ZipFile.CheckZip(zipFileToSaveAs)); + + var content3 = new MemoryStream(Encoding.Default.GetBytes(contentText3)); + var entry3 = zipSave.UpdateEntry(filename, content3); + Assert.IsNotNull(entry3); + zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive was updated twice."; + + memoryStream = new MemoryStream(); + zipSave.Save(memoryStream); + File.WriteAllBytes(zipFileToSaveAs, memoryStream.ToArray()); + } + + Assert.IsTrue(ZipFile.CheckZip(zipFileToSaveAs)); + using (ZipFile zipTest = new ZipFile(zipFileToSaveAs)) + { + var entry = zipTest[filename]; + using (var ms = new MemoryStream()) + { + entry.OpenReader().CopyTo(ms); + var content = Encoding.Default.GetString(ms.ToArray()); + Assert.AreEqual(contentText3, content); + } + } + } + + + [TestMethod] + public void UpdateZip_UpdateItem_UpdateMultipleTimesFromStream_SaveAsStream() + { + string filename = "text1.txt"; + string filename2 = "text2.txt"; + string contentText1 = "Content 1"; + string contentText2 = "Content 2 - this is longer"; + string contentText3 = "Content 3"; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateMultipleTimes.zip"); + string zipFileToSaveAs = Path.Combine(TopLevelDir, "UpdateZip_UpdateItem_UpdateMultipleTimes_New.zip"); + + #region Create the zip file + + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zipSave = new ZipFile()) + { + var content1 = new MemoryStream(Encoding.Default.GetBytes(contentText1)); + var entry1 = zipSave.UpdateEntry(filename, content1); + Assert.IsNotNull(entry1); + + var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); + var entry2 = zipSave.UpdateEntry(filename2, content2); + Assert.IsNotNull(entry2); + zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive will be updated."; + zipSave.Save(zipFileToCreate); + } + using (ZipFile zipTest = new ZipFile(zipFileToCreate)) + { + var entry = zipTest[filename]; + using (var ms = new MemoryStream()) + { + entry.OpenReader().CopyTo(ms); + var content = Encoding.Default.GetString(ms.ToArray()); + Assert.AreEqual(contentText1, content); + } + } + + #endregion + + var zipData = File.ReadAllBytes(zipFileToCreate); + var sourceStream = new MemoryStream(zipData); + using (ZipFile zipSave = ZipFile.Read(sourceStream)) + { + var content2 = new MemoryStream(Encoding.Default.GetBytes(contentText2)); + var entry2 = zipSave.UpdateEntry(filename, content2); + Assert.IsNotNull(entry2); + zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive was updated once."; + + var memoryStream = new MemoryStream(); //Attention: the source stream can't be disposed, as its needed to read not edited entries on the next save + zipSave.Save(memoryStream); + File.WriteAllBytes(zipFileToSaveAs, memoryStream.ToArray()); + Assert.IsTrue(ZipFile.CheckZip(zipFileToSaveAs)); + + var content3 = new MemoryStream(Encoding.Default.GetBytes(contentText3)); + var entry3 = zipSave.UpdateEntry(filename, content3); + Assert.IsNotNull(entry3); + zipSave.Comment = "UpdateTests::UpdateZip_UpdateItem_UpdateMultipleTimes(): This archive was updated twice."; + + memoryStream = new MemoryStream(); + zipSave.Save(memoryStream); + File.WriteAllBytes(zipFileToSaveAs, memoryStream.ToArray()); + } + + Assert.IsTrue(ZipFile.CheckZip(zipFileToSaveAs)); + using (ZipFile zipTest = new ZipFile(zipFileToSaveAs)) + { + var entry = zipTest[filename]; + using (var ms = new MemoryStream()) + { + entry.OpenReader().CopyTo(ms); + var content = Encoding.Default.GetString(ms.ToArray()); + Assert.AreEqual(contentText3, content); + } + } + } + + + [TestMethod] + public void UpdateZip_AddFile_NewEntriesWithPassword() + { + string password = "V.Secret!"; + string filename = null; + int entriesAdded = 0; + string repeatedLine = null; + int j; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_AddFile_NewEntriesWithPassword.zip"); + + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + // create a bunch of files + int numFilesToCreate = _rnd.Next(10) + 8; + for (j = 0; j < numFilesToCreate; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + Path.GetFileName(filename)); + TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); + entriesAdded++; + } + + // Create the zip archive + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip = new ZipFile()) + { + String[] filenames = Directory.GetFiles("A"); + zip.AddFiles(filenames, ""); + zip.Comment = "UpdateTests::UpdateZip_AddFile_NewEntriesWithPassword(): This archive will be updated."; + zip.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, + "The Zip file has the wrong number of entries."); + + // Create a bunch of new files... + var addedFiles = new List(); + int numToUpdate = _rnd.Next(numFilesToCreate - 4); + for (j = 0; j < numToUpdate; j++) + { + // select a new, uniquely named file to create + filename = String.Format("newfile{0:D3}.txt", j); + // create a new file, and fill that new file with text data + repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", + filename, System.DateTime.Now.ToString("yyyy-MM-dd")); + TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); + addedFiles.Add(filename); + } + + // add each one of those new files in the zip archive using a password + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + zip2.Password = password; + foreach (string s in addedFiles) + zip2.AddFile(Path.Combine(subdir, s), ""); + zip2.Comment = "UpdateTests::UpdateZip_AddFile_OldEntriesWithPassword(): This archive has been updated."; + zip2.Save(); + } + + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded + addedFiles.Count, + "The Zip file has the wrong number of entries."); + + + // now extract the newly-added files and verify their contents + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s in addedFiles) + { + repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", + s, System.DateTime.Now.ToString("yyyy-MM-dd")); + zip3[s].ExtractWithPassword("extract", password); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); + } + } + + + // extract all the other files and verify their contents + using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s1 in zip4.EntryFileNames) + { + bool addedLater = false; + foreach (string s2 in addedFiles) + { + if (s2 == s1) addedLater = true; + } + if (!addedLater) + { + zip4[s1].Extract("extract"); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + s1); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s1)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); + } + } + } + } + + + [TestMethod] + public void UpdateZip_AddFile_DifferentPasswords() + { + string password1 = Path.GetRandomFileName(); + string password2 = "Secret2" + Path.GetRandomFileName(); + string filename = null; + int entriesAdded = 0; + string repeatedLine = null; + int j; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_AddFile_DifferentPasswords.zip"); + + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + // create a bunch of files + int numFilesToCreate = _rnd.Next(11) + 8; + for (j = 0; j < numFilesToCreate; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + Path.GetFileName(filename)); + TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); + entriesAdded++; + } + + // Add the files to the zip, save the zip + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + zip1.Password = password1; + String[] filenames = Directory.GetFiles("A"); + foreach (String f in filenames) + zip1.AddFile(f, ""); + zip1.Comment = "UpdateTests::UpdateZip_AddFile_DifferentPasswords(): This archive will be updated."; + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, + "The Zip file has the wrong number of entries."); + + // Create a bunch of new files... + var addedFiles = new List(); + //int numToUpdate = _rnd.Next(numFilesToCreate - 4); + int numToUpdate = 1; + for (j = 0; j < numToUpdate; j++) + { + // select a new, uniquely named file to create + filename = String.Format("newfile{0:D3}.txt", j); + // create a new file, and fill that new file with text data + repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", + filename, System.DateTime.Now.ToString("yyyy-MM-dd")); + TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); + addedFiles.Add(filename); + } + + // add each one of those new files in the zip archive using a password + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + zip2.Password = password2; + foreach (string s in addedFiles) + zip2.AddFile(Path.Combine(subdir, s), ""); + zip2.Comment = "UpdateTests::UpdateZip_AddFile_OldEntriesWithPassword(): This archive has been updated."; + zip2.Save(); + } + + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded + addedFiles.Count, + "The Zip file has the wrong number of entries."); + + + // now extract the newly-added files and verify their contents + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s in addedFiles) + { + repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", + s, System.DateTime.Now.ToString("yyyy-MM-dd")); + zip3[s].ExtractWithPassword("extract", password2); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); + } + } + + + // extract all the other files and verify their contents + using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s1 in zip4.EntryFileNames) + { + bool addedLater = false; + foreach (string s2 in addedFiles) + { + if (s2 == s1) addedLater = true; + } + if (!addedLater) + { + zip4[s1].ExtractWithPassword("extract", password1); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + s1); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s1)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); + } + } + } + } + + + + + [TestMethod] + public void UpdateZip_UpdateFile_NoPasswords() + { + string filename = null; + int entriesAdded = 0; + int j = 0; + string repeatedLine = null; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateFile_NoPasswords.zip"); + + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + // create the files + int NumFilesToCreate = _rnd.Next(23) + 14; + for (j = 0; j < NumFilesToCreate; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + Path.GetFileName(filename)); + TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); + entriesAdded++; + } + + // create the zip archive + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + String[] filenames = Directory.GetFiles("A"); + foreach (String f in filenames) + zip1.AddFile(f, ""); + zip1.Comment = "UpdateTests::UpdateZip_UpdateFile_NoPasswords(): This archive will be updated."; + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, + "Zoiks! The Zip file has the wrong number of entries."); + + + + // create another subdirectory + subdir = Path.Combine(TopLevelDir, "updates"); + Directory.CreateDirectory(subdir); + + // Create a bunch of new files, in that new subdirectory + var UpdatedFiles = new List(); + int NumToUpdate = _rnd.Next(NumFilesToCreate - 4); + for (j = 0; j < NumToUpdate; j++) + { + // select a new, uniquely named file to create + do + { + filename = String.Format("file{0:D3}.txt", _rnd.Next(NumFilesToCreate)); + } while (UpdatedFiles.Contains(filename)); + // create a new file, and fill that new file with text data + repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", + filename, System.DateTime.Now.ToString("yyyy-MM-dd")); + TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); + UpdatedFiles.Add(filename); + } + + // update those files in the zip archive + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s in UpdatedFiles) + zip2.UpdateFile(Path.Combine(subdir, s), ""); + zip2.Comment = "UpdateTests::UpdateZip_UpdateFile_OldEntriesWithPassword(): This archive has been updated."; + zip2.Save(); + } + + // extract those files and verify their contents + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s in UpdatedFiles) + { + repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", + s, System.DateTime.Now.ToString("yyyy-MM-dd")); + zip3[s].Extract("extract"); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); + } + } + + // extract all the other files and verify their contents + using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s1 in zip4.EntryFileNames) + { + bool NotUpdated = true; + foreach (string s2 in UpdatedFiles) + { + if (s2 == s1) NotUpdated = false; + } + if (NotUpdated) + { + zip4[s1].Extract("extract"); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + s1); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s1)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); + } + } + } + } + + + [TestMethod] + public void UpdateZip_UpdateFile_2_NoPasswords() + { + string filename = null; + int entriesAdded = 0; + int j = 0; + string repeatedLine = null; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateFile_NoPasswords.zip"); + + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + // create the files + int NumFilesToCreate = _rnd.Next(23) + 14; + for (j = 0; j < NumFilesToCreate; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + Path.GetFileName(filename)); + TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); + entriesAdded++; + } + + // create the zip archive + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + String[] filenames = Directory.GetFiles("A"); + foreach (String f in filenames) + zip1.UpdateFile(f, ""); + zip1.Comment = "UpdateTests::UpdateZip_UpdateFile_NoPasswords(): This archive will be updated."; + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, + "Zoiks! The Zip file has the wrong number of entries."); + + + // create another subdirectory + subdir = Path.Combine(TopLevelDir, "updates"); + Directory.CreateDirectory(subdir); + + // Create a bunch of new files, in that new subdirectory + var UpdatedFiles = new List(); + int NumToUpdate = _rnd.Next(NumFilesToCreate - 4); + for (j = 0; j < NumToUpdate; j++) + { + // select a new, uniquely named file to create + do + { + filename = String.Format("file{0:D3}.txt", _rnd.Next(NumFilesToCreate)); + } while (UpdatedFiles.Contains(filename)); + // create a new file, and fill that new file with text data + repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", + filename, System.DateTime.Now.ToString("yyyy-MM-dd")); + TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); + UpdatedFiles.Add(filename); + } + + // update those files in the zip archive + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s in UpdatedFiles) + zip2.UpdateFile(Path.Combine(subdir, s), ""); + zip2.Comment = "UpdateTests::UpdateZip_UpdateFile_NoPasswords(): This archive has been updated."; + zip2.Save(); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, + "Zoiks! The Zip file has the wrong number of entries."); + + // update those files AGAIN in the zip archive + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s in UpdatedFiles) + zip3.UpdateFile(Path.Combine(subdir, s), ""); + zip3.Comment = "UpdateTests::UpdateZip_UpdateFile_NoPasswords(): This archive has been re-updated."; + zip3.Save(); + } + + // extract the updated files and verify their contents + using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s in UpdatedFiles) + { + repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", + s, System.DateTime.Now.ToString("yyyy-MM-dd")); + zip4[s].Extract("extract"); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); + } + } + + // extract all the other files and verify their contents + using (ZipFile zip5 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s1 in zip5.EntryFileNames) + { + bool NotUpdated = true; + foreach (string s2 in UpdatedFiles) + { + if (s2 == s1) NotUpdated = false; + } + if (NotUpdated) + { + zip5[s1].Extract("extract"); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + s1); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s1)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); + } + } + } + } + + + + [TestMethod] + public void UpdateZip_UpdateFile_OldEntriesWithPassword() + { + string Password = "1234567"; + string filename = null; + int entriesAdded = 0; + int j = 0; + string repeatedLine = null; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateFile_OldEntriesWithPassword.zip"); + + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + // create a bunch of files + int NumFilesToCreate = _rnd.Next(23) + 14; + for (j = 0; j < NumFilesToCreate; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + Path.GetFileName(filename)); + TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); + entriesAdded++; + } + + // Create the zip archive + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + zip1.Password = Password; + String[] filenames = Directory.GetFiles("A"); + foreach (String f in filenames) + zip1.AddFile(f, ""); + zip1.Comment = "UpdateTests::UpdateZip_UpdateFile_OldEntriesWithPassword(): This archive will be updated."; + zip1.Save(zipFileToCreate); + } + + // Verify the number of files in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, + "The Zip file has the wrong number of entries."); + + // create another subdirectory + subdir = Path.Combine(TopLevelDir, "updates"); + Directory.CreateDirectory(subdir); + + // Create a bunch of new files, in that new subdirectory + var UpdatedFiles = new List(); + int NumToUpdate = _rnd.Next(NumFilesToCreate - 4); + for (j = 0; j < NumToUpdate; j++) + { + // select a new, uniquely named file to create + do + { + filename = String.Format("file{0:D3}.txt", _rnd.Next(NumFilesToCreate)); + } while (UpdatedFiles.Contains(filename)); + // create a new file, and fill that new file with text data + repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", + filename, System.DateTime.Now.ToString("yyyy-MM-dd")); + TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); + UpdatedFiles.Add(filename); + } + + // update those files in the zip archive + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s in UpdatedFiles) + zip2.UpdateFile(Path.Combine(subdir, s), ""); + zip2.Comment = "UpdateTests::UpdateZip_UpdateFile_OldEntriesWithPassword(): This archive has been updated."; + zip2.Save(); + } + + // extract those files and verify their contents + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s in UpdatedFiles) + { + repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", + s, System.DateTime.Now.ToString("yyyy-MM-dd")); + zip3[s].Extract("extract"); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); + } + } + + // extract all the other files and verify their contents + using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s1 in zip4.EntryFileNames) + { + bool NotUpdated = true; + foreach (string s2 in UpdatedFiles) + { + if (s2 == s1) NotUpdated = false; + } + if (NotUpdated) + { + zip4[s1].ExtractWithPassword("extract", Password); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + s1); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s1)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); + } + } + } + } + + + [TestMethod] + public void UpdateZip_UpdateFile_NewEntriesWithPassword() + { + string Password = " P@ssw$rd"; + string filename = null; + int entriesAdded = 0; + string repeatedLine = null; + int j = 0; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateFile_NewEntriesWithPassword.zip"); + + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + // create a bunch of files + int NumFilesToCreate = _rnd.Next(23) + 9; + for (j = 0; j < NumFilesToCreate; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + Path.GetFileName(filename)); + TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); + entriesAdded++; + } + + // create the zip archive, add those files to it + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + // no password used here. + String[] filenames = Directory.GetFiles("A"); + foreach (String f in filenames) + zip1.AddFile(f, ""); + zip1.Comment = "UpdateTests::UpdateZip_UpdateFile_NewEntriesWithPassword(): This archive will be updated."; + zip1.Save(zipFileToCreate); + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, + "The Zip file has the wrong number of entries."); + + // create another subdirectory + subdir = Path.Combine(TopLevelDir, "updates"); + Directory.CreateDirectory(subdir); + + // Create a bunch of new files, in that new subdirectory + var UpdatedFiles = new List(); + int NumToUpdate = _rnd.Next(NumFilesToCreate - 5); + for (j = 0; j < NumToUpdate; j++) + { + // select a new, uniquely named file to create + do + { + filename = String.Format("file{0:D3}.txt", _rnd.Next(NumFilesToCreate)); + } while (UpdatedFiles.Contains(filename)); + // create the new file, and fill that new file with text data + repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", + filename, System.DateTime.Now.ToString("yyyy-MM-dd")); + TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); + UpdatedFiles.Add(filename); + } + + // update those files in the zip archive + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + zip2.Password = Password; + foreach (string s in UpdatedFiles) + zip2.UpdateFile(Path.Combine(subdir, s), ""); + zip2.Comment = "UpdateTests::UpdateZip_UpdateFile_NewEntriesWithPassword(): This archive has been updated."; + zip2.Save(); + } + + // extract those files and verify their contents + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s in UpdatedFiles) + { + repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", + s, System.DateTime.Now.ToString("yyyy-MM-dd")); + zip3[s].ExtractWithPassword("extract", Password); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); + } + } + + // extract all the other files and verify their contents + using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s1 in zip4.EntryFileNames) + { + bool NotUpdated = true; + foreach (string s2 in UpdatedFiles) + { + if (s2 == s1) NotUpdated = false; + } + if (NotUpdated) + { + zip4[s1].Extract("extract"); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + s1); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s1)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); + } + } + } + } + + + [TestMethod] + public void UpdateZip_UpdateFile_DifferentPasswords() + { + string Password1 = "Whoofy1"; + string Password2 = "Furbakl1"; + string filename = null; + int entriesAdded = 0; + int j = 0; + string repeatedLine; + + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_UpdateFile_DifferentPasswords.zip"); + + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + // create a bunch of files + int NumFilesToCreate = _rnd.Next(13) + 14; + for (j = 0; j < NumFilesToCreate; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + Path.GetFileName(filename)); + TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(34000) + 5000); + entriesAdded++; + } + + // create the zip archive + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip1 = new ZipFile()) + { + zip1.Password = Password1; + String[] filenames = Directory.GetFiles("A"); + foreach (String f in filenames) + zip1.AddFile(f, ""); + zip1.Comment = "UpdateTests::UpdateZip_UpdateFile_DifferentPasswords(): This archive will be updated."; + zip1.Save(zipFileToCreate); + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entriesAdded, + "The Zip file has the wrong number of entries."); + + // create another subdirectory + subdir = Path.Combine(TopLevelDir, "updates"); + Directory.CreateDirectory(subdir); + + // Create a bunch of new files, in that new subdirectory + var UpdatedFiles = new List(); + int NumToUpdate = _rnd.Next(NumFilesToCreate - 4); + for (j = 0; j < NumToUpdate; j++) + { + // select a new, uniquely named file to create + do + { + filename = String.Format("file{0:D3}.txt", _rnd.Next(NumFilesToCreate)); + } while (UpdatedFiles.Contains(filename)); + // create a new file, and fill that new file with text data + repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", + filename, System.DateTime.Now.ToString("yyyy-MM-dd")); + TestUtilities.CreateAndFillFileText(Path.Combine(subdir, filename), repeatedLine, _rnd.Next(34000) + 5000); + UpdatedFiles.Add(filename); + } + + // update those files in the zip archive + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + zip2.Password = Password2; + foreach (string s in UpdatedFiles) + zip2.UpdateFile(Path.Combine(subdir, s), ""); + zip2.Comment = "UpdateTests::UpdateZip_UpdateFile_DifferentPasswords(): This archive has been updated."; + zip2.Save(); + } + + // extract those files and verify their contents + using (ZipFile zip3 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s in UpdatedFiles) + { + repeatedLine = String.Format("**UPDATED** This file ({0}) has been updated on {1}.", + s, System.DateTime.Now.ToString("yyyy-MM-dd")); + zip3[s].ExtractWithPassword("extract", Password2); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(sLine, repeatedLine, + String.Format("The content of the Updated file ({0}) in the zip archive is incorrect.", s)); + } + } + + // extract all the other files and verify their contents + using (ZipFile zip4 = ZipFile.Read(zipFileToCreate)) + { + foreach (string s1 in zip4.EntryFileNames) + { + bool wasUpdated = false; + foreach (string s2 in UpdatedFiles) + { + if (s2 == s1) wasUpdated = true; + } + if (!wasUpdated) + { + // use original password + zip4[s1].ExtractWithPassword("extract", Password1); + repeatedLine = String.Format("This line is repeated over and over and over in file {0}", + s1); + + // verify the content of the updated file. + var sr = new StreamReader(Path.Combine("extract", s1)); + string sLine = sr.ReadLine(); + sr.Close(); + + Assert.AreEqual(repeatedLine, sLine, + String.Format("The content of the originally added file ({0}) in the zip archive is incorrect.", s1)); + } + } + } + } + + + [TestMethod] + [ExpectedException(typeof(System.ArgumentException))] + public void UpdateZip_AddFile_ExistingFile_Error() + { + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "UpdateZip_AddFile_ExistingFile_Error.zip"); + // create the subdirectory + string subdir = Path.Combine(TopLevelDir, "A"); + Directory.CreateDirectory(subdir); + + // create the files + int fileCount = _rnd.Next(3) + 4; + string filename = null; + int entriesAdded = 0; + for (int j = 0; j < fileCount; j++) + { + filename = Path.Combine(subdir, String.Format("file{0:D3}.txt", j)); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(34000) + 5000); + entriesAdded++; + } + + // Add the files to the zip, save the zip + Directory.SetCurrentDirectory(TopLevelDir); + using (ZipFile zip = new ZipFile()) + { + String[] filenames = Directory.GetFiles("A"); + foreach (String f in filenames) + zip.AddFile(f, ""); + zip.Comment = "UpdateTests::UpdateZip_AddFile_ExistingFile_Error(): This archive will be updated."; + zip.Save(zipFileToCreate); + } + + // create and file a new file with text data + int FileToUpdate = _rnd.Next(fileCount); + filename = String.Format("file{0:D3}.txt", FileToUpdate); + string repeatedLine = String.Format("**UPDATED** This file ({0}) was updated at {1}.", + filename, + System.DateTime.Now.ToString("G")); + TestUtilities.CreateAndFillFileText(filename, repeatedLine, _rnd.Next(21567) + 23872); + + // Try to again add that file in the zip archive. This + // should fail. + using (ZipFile z = ZipFile.Read(zipFileToCreate)) + { + // Try Adding a file again. THIS SHOULD THROW. + ZipEntry e = z.AddFile(filename, ""); + z.Comment = "UpdateTests::UpdateZip_AddFile_ExistingFile_Error(): This archive has been updated."; + z.Save(); + } + } + + + [TestMethod] + public void Update_MultipleSaves_wi10319() + { + string zipFileToCreate = "MultipleSaves_wi10319.zip"; + + using (ZipFile _zipFile = new ZipFile(zipFileToCreate)) + { + using (MemoryStream data = new MemoryStream()) + { + using (StreamWriter writer = new StreamWriter(data)) + { + writer.Write("Dit is een test string."); + writer.Flush(); + + data.Seek(0, SeekOrigin.Begin); + _zipFile.AddEntry("test.txt", data); + _zipFile.Save(); + _zipFile.AddEntry("test2.txt", "Esta es un string de test"); + _zipFile.Save(); + _zipFile.AddEntry("test3.txt", "this is some content for the entry."); + _zipFile.Save(); + } + } + } + + using (ZipFile _zipFile = new ZipFile(zipFileToCreate)) + { + using (MemoryStream data = new MemoryStream()) + { + using (StreamWriter writer = new StreamWriter(data)) + { + writer.Write("Dit is een andere test string."); + writer.Flush(); + + data.Seek(0, SeekOrigin.Begin); + + _zipFile.UpdateEntry("test.txt", data); + _zipFile.Save(); + _zipFile.UpdateEntry("test2.txt", "Esta es un otro string de test"); + _zipFile.Save(); + _zipFile.UpdateEntry("test3.txt", "This is another string for content."); + _zipFile.Save(); + + } + } + } + } + + + + + [TestMethod] + public void Update_MultipleSaves_wi10694() + { + string zipFileToCreate = "Update_MultipleSaves_wi10694.zip"; + var shortDir = "fodder"; + string subdir = Path.Combine(TopLevelDir, shortDir); + string[] filesToZip = TestUtilities.GenerateFilesFlat(subdir); + + using (ZipFile zip1 = new ZipFile()) + { + zip1.AddFiles(filesToZip, "Download"); + zip1.AddFiles(filesToZip, "other"); + zip1.Save(zipFileToCreate); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), 2 * filesToZip.Length, + "Incorrect number of entries in the zip file."); + + using (var zip2 = ZipFile.Read(zipFileToCreate)) + { + var entries = zip2.Entries.Where(e => e.FileName.Contains("Download")).ToArray(); + //PART1 - Add directory and save + zip2.AddDirectoryByName("XX"); + zip2.Save(); + + //PART2 - Rename paths (not related to XX directory from above) and save + foreach (var zipEntry in entries) + { + zipEntry.FileName = zipEntry.FileName.Replace("Download", "Download2"); + } + zip2.Save(); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), 2 * filesToZip.Length, + "Incorrect number of entries in the zip file."); + } + + + + [TestMethod] + public void Update_MultipleSavesWithRename_wi10544() + { + // select the name of the zip file + string zipFileToCreate = Path.Combine(TopLevelDir, "Update_MultipleSaves_wi10319.zip"); + string entryName = "Entry1.txt"; + + TestContext.WriteLine("Creating zip file... "); + using (var zip = new ZipFile()) + { + string firstline = "This is the first line in the Entry.\n"; + byte[] a = System.Text.Encoding.ASCII.GetBytes(firstline.ToCharArray()); + + zip.AddEntry(entryName, a); + zip.Save(zipFileToCreate); + } + + int N = _rnd.Next(34) + 59; + for (int i = 0; i < N; i++) + { + string tempZipFile = "AppendToEntry.zip.tmp" + i; + + TestContext.WriteLine("Update cycle {0}... ", i); + using (var zip1 = ZipFile.Read(zipFileToCreate)) + { + using (var zip = new ZipFile()) + { + zip.AddEntry(entryName, (name, stream) => + { + var src = zip1[name].OpenReader(); + int n; + byte[] b = new byte[2048]; + while ((n = src.Read(b, 0, b.Length)) > 0) + stream.Write(b, 0, n); + + string update = String.Format("Updating zip file {0} at {1}\n", i, DateTime.Now.ToString("G")); + byte[] a = System.Text.Encoding.ASCII.GetBytes(update.ToCharArray()); + stream.Write(a, 0, a.Length); + }); + + zip.Save(tempZipFile); + } + } + + File.Delete(zipFileToCreate); + System.Threading.Thread.Sleep(1400); + File.Move(tempZipFile, zipFileToCreate); + } + + } + + + [TestMethod] + public void Update_FromRoot_wi11988() + { + string zipFileToCreate = "FromRoot.zip"; + string dirToZip = "Fodder"; + var files = TestUtilities.GenerateFilesFlat(dirToZip); + string windir = System.Environment.GetEnvironmentVariable("Windir"); + string substExe = Path.Combine(Path.Combine(windir, "system32"), "subst.exe"); + Assert.IsTrue(File.Exists(substExe), "subst.exe does not exist ({0})", + substExe); + + try + { + // create a subst drive + this.Exec(substExe, "G: " + dirToZip); + + using (var zip = new ZipFile()) + { + zip.UpdateSelectedFiles("*.*", "G:\\", "", true); + zip.Save(zipFileToCreate); + } + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + files.Length); + Assert.IsTrue(files.Length > 3); + BasicVerifyZip(zipFileToCreate); + } + finally + { + // remove the virt drive + this.Exec(substExe, "/D G:"); + } + } + + } +} + diff --git a/src/Zip Tests/WinZipAesTests.cs b/old/src/Zip Tests/WinZipAesTests.cs similarity index 97% rename from src/Zip Tests/WinZipAesTests.cs rename to old/src/Zip Tests/WinZipAesTests.cs index 38a217b..755bd32 100644 --- a/src/Zip Tests/WinZipAesTests.cs +++ b/old/src/Zip Tests/WinZipAesTests.cs @@ -1,1055 +1,1055 @@ -// WinZipAesTests.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009 Dino Chiesa and Microsoft Corporation. -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-July-13 21:25:38> -// -// ------------------------------------------------------------------ -// -// This module defines the tests of the WinZIP AES Encryption capability -// of DotNetZip. -// -// ------------------------------------------------------------------ - -using System; -using System.IO; -using System.Collections.Generic; -using Microsoft.VisualStudio.TestTools.UnitTesting; - -using Ionic.Zip; -using Ionic.Zip.Tests.Utilities; - -namespace Ionic.Zip.Tests.WinZipAes -{ - /// - /// Summary description for WinZipAesTests - /// - [TestClass] - public class WinZipAesTests : IonicTestClass - { - public WinZipAesTests() : base() { } - - - [TestMethod] - public void WZA_CreateZip() - { - WZA_CreateZip_Impl("WZA_CreateZip", 14400, 5000); - } - - [TestMethod] - public void WZA_CreateZip_VerySmallFiles() - { - WZA_CreateZip_Impl("WZA_CreateZip_VerySmallFiles", 14, 5); - } - - - - private void WZA_CreateZip_Impl(string name, int size1, int size2) - { - if (!WinZipIsPresent) - throw new Exception("no winzip! [WZA_CreateZip_Impl]"); - - string filename = null; - int entries = _rnd.Next(11) + 8; - var checksums = new Dictionary(); - var filesToZip = new List(); - for (int i = 0; i < entries; i++) - { - int filesize = _rnd.Next(size1) + size2; - if (_rnd.Next(2) == 1) - { - filename = Path.Combine(TopLevelDir, String.Format("Data{0}.bin", i)); - TestUtilities.CreateAndFillFileBinary(filename, filesize); - } - else - { - filename = Path.Combine(TopLevelDir, String.Format("Data{0}.txt", i)); - TestUtilities.CreateAndFillFileText(filename, filesize); - } - - var chk = TestUtilities.ComputeChecksum(filename); - checksums.Add(Path.GetFileName(filename), TestUtilities.CheckSumToString(chk)); - filesToZip.Add(filename); - } - - - Ionic.Zip.EncryptionAlgorithm[] EncOptions = { - EncryptionAlgorithm.None, - EncryptionAlgorithm.WinZipAes256, - EncryptionAlgorithm.WinZipAes128, - EncryptionAlgorithm.PkzipWeak - }; - - for (int k = 0; k < EncOptions.Length; k++) - { - - for (int m = 0; m < 2; m++) - { - //string password = TestUtilities.GenerateRandomPassword(); - string password = Path.GetRandomFileName().Replace(".", "-"); - Directory.SetCurrentDirectory(TopLevelDir); - TestContext.WriteLine("\n\n==================Trial {0}.{1}..", k, m); - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("{0}-{1}-{2}.zip", name, k, m)); - - TestContext.WriteLine("Creating file {0}", zipFileToCreate); - TestContext.WriteLine(" Password: {0}", password); - TestContext.WriteLine(" Encryption: {0}", EncOptions[k].ToString()); - TestContext.WriteLine(" NonSeekable output: {0}", (m == 0) ? "No" : "Yes"); - TestContext.WriteLine(" #entries: {0}", entries); - - string comment = String.Format("This archive uses Encryption: {0}, password({1}), NonSeekable=({2})", - EncOptions[k], password, (m == 0) ? "No" : "Yes"); - - _DotNetZip_CreateZip(filesToZip, EncOptions[k], password, comment, zipFileToCreate, (m==1)); - - if (EncOptions[k] == EncryptionAlgorithm.None) - BasicVerifyZip(zipFileToCreate); - else - BasicVerifyZip(zipFileToCreate, password); - - - TestContext.WriteLine("---------------Reading {0}...", zipFileToCreate); - System.Threading.Thread.Sleep(1200); // seems to be a race condition? sometimes? - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - string extractDir = String.Format("extract-{0}.{1}", k, m); - foreach (var e in zip2) - { - TestContext.WriteLine(" Entry: {0} c({1}) unc({2})", e.FileName, e.CompressedSize, e.UncompressedSize); - Assert.AreEqual(EncOptions[k], e.Encryption); - e.ExtractWithPassword(extractDir, password); - filename = Path.Combine(extractDir, e.FileName); - string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(filename)); - Assert.IsTrue(checksums.ContainsKey(e.FileName), "Checksum is missing"); - Assert.AreEqual(checksums[e.FileName], actualCheckString, "Checksums for ({0}) do not match.", e.FileName); - TestContext.WriteLine(" Checksums match ({0}).\n", actualCheckString); - } - } - } - } - } - - private static void _DotNetZip_CreateZip(List filesToZip, - EncryptionAlgorithm encryption, - string password, - string comment, - string zipFileToCreate, - bool nonSeekable) - { - // Want to test the library when saving to non-seekable output streams. Like - // stdout or ASPNET's Response.OutputStream. This simulates it. - if (nonSeekable) - { - using (var outStream = new Ionic.Zip.Tests.NonSeekableOutputStream(File.Create(zipFileToCreate))) - { - using (ZipFile zip1 = new ZipFile()) - { - zip1.Encryption = encryption; - if (zip1.Encryption != EncryptionAlgorithm.None) - zip1.Password = password; - - zip1.AddFiles(filesToZip, ""); - zip1.Comment = comment; - zip1.Save(outStream); - } - } - } - else - { - using (ZipFile zip1 = new ZipFile()) - { - zip1.Encryption = encryption; - if (zip1.Encryption != EncryptionAlgorithm.None) - zip1.Password = password; - - zip1.AddFiles(filesToZip, ""); - zip1.Comment = comment; - zip1.Save(zipFileToCreate); - } - } - } - - - - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.BadPasswordException))] - public void WZA_CreateZip_NoPassword() - { - string zipFileToCreate = "WZA_CreateZip_NoPassword.zip"; - TestContext.WriteLine("Creating file {0}", zipFileToCreate); - int entries = _rnd.Next(11) + 8; - - string filename = null; - var checksums = new Dictionary(); - using (ZipFile zip1 = new ZipFile()) - { - zip1.Encryption = EncryptionAlgorithm.WinZipAes256; - for (int i = 0; i < entries; i++) - { - if (_rnd.Next(2) == 1) - { - filename = Path.Combine(TopLevelDir, String.Format("Data{0}.bin", i)); - int filesize = _rnd.Next(144000) + 5000; - TestUtilities.CreateAndFillFileBinary(filename, filesize); - } - else - { - filename = Path.Combine(TopLevelDir, String.Format("Data{0}.txt", i)); - int filesize = _rnd.Next(144000) + 5000; - TestUtilities.CreateAndFillFileText(filename, filesize); - } - zip1.AddFile(filename, ""); - - var chk = TestUtilities.ComputeChecksum(filename); - checksums.Add(Path.GetFileName(filename), TestUtilities.CheckSumToString(chk)); - } - - zip1.Comment = String.Format("This archive uses Encryption: {0}, no password!", zip1.Encryption); - // With no password, we expect no encryption in the output. - zip1.Save(zipFileToCreate); - } - - #if NOT - WinzipVerify(zipFileToCreate); - - // validate all the checksums - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (ZipEntry e in zip2) - { - if (!e.IsDirectory) - { - e.Extract("unpack"); - string PathToExtractedFile = Path.Combine("unpack", e.FileName); - - Assert.IsTrue(e.Encryption == EncryptionAlgorithm.None); - Assert.IsTrue(checksums.ContainsKey(e.FileName)); - - // verify the checksum of the file is correct - string expectedCheckString = checksums[e.FileName]; - string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(PathToExtractedFile)); - Assert.AreEqual(expectedCheckString, actualCheckString, "Unexpected checksum on extracted filesystem file ({0}).", PathToExtractedFile); - } - } - } - #endif - - } - - - - [TestMethod] - public void WZA_CreateZip_DirectoriesOnly() - { - if (!WinZipIsPresent) - throw new Exception("no winzip! [WZA_CreateZip_DirectoriesOnly]"); - - string zipFileToCreate = "WZA_CreateZip_DirectoriesOnly.zip"; - Assert.IsFalse(File.Exists(zipFileToCreate)); - - string password = TestUtilities.GenerateRandomPassword(); - string dirToZip = Path.Combine(TopLevelDir, "zipthis"); - Directory.CreateDirectory(dirToZip); - - int entries = 0; - int subdirCount = _rnd.Next(8) + 8; - - TestContext.WriteLine("Creating file {0}", zipFileToCreate); - TestContext.WriteLine(" Password: {0}", password); - TestContext.WriteLine(" #directories: {0}", subdirCount); - - for (int i = 0; i < subdirCount; i++) - { - string subdir = Path.Combine(dirToZip, "EmptyDir" + i); - Directory.CreateDirectory(subdir); - } - - using (ZipFile zip1 = new ZipFile()) - { - zip1.Encryption = EncryptionAlgorithm.WinZipAes256; - zip1.Password = password; - zip1.AddDirectory(Path.GetFileName(dirToZip)); - zip1.Save(zipFileToCreate); - } - - BasicVerifyZip(zipFileToCreate, password); - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries); - } - - - - [TestMethod] - public void WZA_CreateZip_ZeroLengthFiles_256() - { - string password = TestUtilities.GenerateRandomPassword(12); - _Internal_CreateZip_ZeroLengthFiles(password, EncryptionAlgorithm.WinZipAes256); - } - [TestMethod] - public void WZA_CreateZip_ZeroLengthFiles_128() - { - string password = TestUtilities.GenerateRandomPassword(12); - _Internal_CreateZip_ZeroLengthFiles(password, EncryptionAlgorithm.WinZipAes128); - } - - [TestMethod] - public void WZA_CreateZip_ZeroLengthFiles_NoPassword_256() - { - _Internal_CreateZip_ZeroLengthFiles(null, EncryptionAlgorithm.WinZipAes256); - } - [TestMethod] - public void WZA_CreateZip_ZeroLengthFiles_NoPassword_128() - { - _Internal_CreateZip_ZeroLengthFiles(null, EncryptionAlgorithm.WinZipAes128); - } - - public void _Internal_CreateZip_ZeroLengthFiles(string password, EncryptionAlgorithm algorithm) - { - if (!WinZipIsPresent) - throw new Exception("no winzip! [_Internal_CreateZip_ZeroLengthFiles]"); - - string zipFileToCreate = "WZA_CreateZip_ZeroLengthFiles.zip"; - Assert.IsFalse(File.Exists(zipFileToCreate)); - - TestContext.WriteLine("Creating file {0}", zipFileToCreate); - TestContext.WriteLine(" Password: {0}", password); - - // create a bunch of zero-length files - int entries = _rnd.Next(21) + 5; - int i; - string[] filesToZip = new string[entries]; - for (i = 0; i < entries; i++) - filesToZip[i] = TestUtilities.CreateUniqueFile("zerolength", TopLevelDir); - - using (ZipFile zip = new ZipFile()) - { - zip.Encryption = algorithm; - zip.Password = password; - zip.AddFiles(filesToZip); - zip.Save(zipFileToCreate); - } - - BasicVerifyZip(zipFileToCreate, password); - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), - filesToZip.Length); - } - - - - private void WinzipCreate(string zipfile, string fileOrDir, string encryptionArg, string password) - { - string[] files = { fileOrDir }; - WinzipCreate(zipfile, files, encryptionArg, password); - } - - private void WinzipCreate(string zipfile, IEnumerable files, string encryptionArg, string password) - { - string args = null; - if (password == null) - { - args = String.Format("-a -whs {0}", zipfile); - } - else - { - args = String.Format("-a -whs -s\"{0}\" {1} {2}", password, encryptionArg, zipfile); - } - - // This had better not be too long a list, otherwise the cmd - // line length limit will be exceeded. To avoid that, could - // use directory names, but.... for now let's just hope. - foreach (var f in files) - args += " " + f; - - string wzzipOut = this.Exec(wzzip, args); - TestContext.WriteLine(wzzipOut); - } - - - - - [TestMethod] - public void WZA_ReadEncryptedZips() - { - _Internal_ReadEncryptedZips(true); - } - - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.BadPasswordException))] - public void WZA_ReadZip_Fail_BadPassword() - { - _Internal_ReadEncryptedZips(false); - } - - - private void _Internal_ReadEncryptedZips(bool correctPw) - { - if (!WinZipIsPresent) - throw new Exception("no winzip!"); - - string[] cryptoArg = new string[] { "-ycAES128", "-ycAES256", }; - for (int m = 0; m < cryptoArg.Length; m++) - { - Directory.SetCurrentDirectory(TopLevelDir); - - // get a set of files to zip up - string subdir = Path.Combine(TopLevelDir, "files" + m); - string[] filesToZip; - Dictionary checksums; - Compatibility.CreateFilesAndChecksums(subdir, out filesToZip, out checksums); - string password = TestUtilities.GenerateRandomPassword(); - string[] dirsToZip = new string[] - { - subdir + "\\*.*", - }; - string zipFileToCreate = String.Format("WZA_ReadZips-{0}.zip", m); - WinzipCreate(zipFileToCreate, dirsToZip, cryptoArg[m], password); - - _Internal_ReadZip(zipFileToCreate, (correctPw) ? password : null, filesToZip.Length); - } - } - - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.BadPasswordException))] - public void WZA_ReadZip_Fail_NoPassword_128() - { - string password = TestUtilities.GenerateRandomPassword(); - GenerateFiles_CreateZip("-ycAES128", password, 1); - } - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.BadPasswordException))] - public void WZA_ReadZip_Fail_NoPassword_256() - { - string password = TestUtilities.GenerateRandomPassword(); - GenerateFiles_CreateZip("-ycAES256", password, 1); - } - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.BadPasswordException))] - public void WZA_ReadZip_Fail_WrongPassword() - { - string password = TestUtilities.GenerateRandomPassword(); - GenerateFiles_CreateZip("-ycAES256", password, 2); - } - - [TestMethod] - [ExpectedException(typeof(Ionic.Zip.BadPasswordException))] - public void WZA_ReadZip_Fail_WrongMethod() - { - string password = TestUtilities.GenerateRandomPassword(); - GenerateFiles_CreateZip("-ycAES256", password, 3); - } - - - public void GenerateFiles_CreateZip(string cryptoArg, string password, int pwFlavor) - { - // This method generates files, then zips them up using WinZip, then tries - // to unzip using DotNetZip. It is parameterized to test both success and - // failure cases. If pwFlavor is zero, then it uses the correct password to - // unzip, and everything should work. If pwFlavor is non-zero then it uses - // some incorrect password, either null or a bogus string, and generates a failure. - - if (!WinZipIsPresent) - throw new Exception("no winzip! [GenerateFiles_CreateZip]"); - - Directory.SetCurrentDirectory(TopLevelDir); - // get a set of files to zip up - string subdir = Path.Combine(TopLevelDir, "files"); - - string[] filesToZip = TestUtilities.GenerateFilesFlat(subdir); - string zipFileToCreate = "GenerateFiles_CreateZip.zip"; - - WinzipCreate(zipFileToCreate, subdir, cryptoArg, password); - - string pwForReading = (pwFlavor == 0) - ? password - : (pwFlavor == 1) - ? null - : (pwFlavor == 2) - ? "-wrongpassword-" - : TestUtilities.GenerateRandomPassword(); - - _Internal_ReadZip(zipFileToCreate, pwForReading, filesToZip.Length); - } - - - - int zipCount = 0; - private void _Internal_ReadZip(string zipFileToRead, string password, int expectedFilesExtracted) - { - Directory.SetCurrentDirectory(TopLevelDir); - - Assert.IsTrue(File.Exists(zipFileToRead), "The zip file '{0}' does not exist.", zipFileToRead); - - // extract all the files - int actualFilesExtracted = 0; - string extractDir = String.Format("Extract{0}", zipCount++); - - using (ZipFile zip2 = ZipFile.Read(zipFileToRead)) - { - //zip2.Password = password; - foreach (ZipEntry e in zip2) - { - if (!e.IsDirectory) - { - if (password == "-null-") - e.Extract(extractDir); - else - e.ExtractWithPassword(extractDir, password); - actualFilesExtracted++; - } - } - } - Assert.AreEqual(expectedFilesExtracted, actualFilesExtracted); - } - - - [TestMethod] - public void WZA_OneZeroByteFile_wi11131() - { - string zipF = "WZA_OneZeroByteFile_wi11131.zip"; - TestContext.WriteLine("Create file {0}", zipF); - using (ZipFile zipFile = new ZipFile()) - { - zipFile.Encryption = EncryptionAlgorithm.WinZipAes256; - zipFile.Password = TestUtilities.GenerateRandomPassword(); - zipFile.AddEntry("dummy", new byte[0]); - using (var fs = File.Create(zipF)) - { - zipFile.Save(fs); - } - } - - BasicVerifyZip(zipF); - Assert.AreEqual(1, TestUtilities.CountEntries(zipF)); - } - - - [TestMethod] - public void WZA_CreateZip_NoCompression() - { - if (!WinZipIsPresent) - throw new Exception("no winzip! [WZA_CreateZip_NoCompression]"); - - string zipFileToCreate = "WZA_CreateZip_NoCompression.zip"; - string password = TestUtilities.GenerateRandomPassword(); - - TestContext.WriteLine("======================================="); - TestContext.WriteLine("Creating file {0}", zipFileToCreate); - TestContext.WriteLine(" Password: {0}", password); - int entries = _rnd.Next(21) + 5; - - string filename = null; - var checksums = new Dictionary(); - using (ZipFile zip1 = new ZipFile()) - { - zip1.Encryption = EncryptionAlgorithm.WinZipAes256; - zip1.Password = password; - zip1.CompressionLevel = Ionic.Zlib.CompressionLevel.None; - - for (int i = 0; i < entries; i++) - { - if (_rnd.Next(2) == 1) - { - filename = Path.Combine(TopLevelDir, String.Format("Data{0}.bin", i)); - int filesize = _rnd.Next(144000) + 5000; - TestUtilities.CreateAndFillFileBinary(filename, filesize); - } - else - { - filename = Path.Combine(TopLevelDir, String.Format("Data{0}.txt", i)); - int filesize = _rnd.Next(144000) + 5000; - TestUtilities.CreateAndFillFileText(filename, filesize); - } - zip1.AddFile(filename, ""); - - var chk = TestUtilities.ComputeChecksum(filename); - checksums.Add(Path.GetFileName(filename), TestUtilities.CheckSumToString(chk)); - } - - zip1.Comment = String.Format("This archive uses Encryption({0}) password({1}) no compression.", zip1.Encryption, password); - zip1.Save(zipFileToCreate); - } - - BasicVerifyZip(zipFileToCreate, password); - - // validate all the checksums - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (ZipEntry e in zip2) - { - if (!e.IsDirectory) - { - Assert.AreEqual(0, (short)e.CompressionMethod); - e.ExtractWithPassword("unpack", password); - string PathToExtractedFile = Path.Combine("unpack", e.FileName); - Assert.IsTrue(checksums.ContainsKey(e.FileName)); - - // verify the checksum of the file is correct - string expectedCheckString = checksums[e.FileName]; - string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(PathToExtractedFile)); - Assert.AreEqual(expectedCheckString, actualCheckString, "Unexpected checksum on extracted filesystem file ({0}).", PathToExtractedFile); - } - } - } - } - - [TestMethod] - public void WZA_CreateZip_Spanned() - { - int filesize = 1024 * 1024; - TestUtilities.CreateAndFillFileBinary("aestest.dat", filesize); - using (ZipFile zip1 = new ZipFile()) - { - zip1.Encryption = EncryptionAlgorithm.WinZipAes256; - zip1.MaxOutputSegmentSize = 262144; - zip1.Password = "test1234"; - zip1.AddFile("aestest.dat"); - zip1.Save("aes256test.zip"); - } - - using (Stream sr = new MemoryStream()) - { - using (ZipFile zip2 = ZipFile.Read("aes256test.zip")) - { - foreach (ZipEntry ze in zip2.Entries) - ze.ExtractWithPassword(sr, "test1234"); - } - Assert.AreEqual(filesize, sr.Length, "Unexpected output length"); - } - } - - - [TestMethod] - public void WZA_CreateZip_EmptyPassword() - { - if (!WinZipIsPresent) - throw new Exception("no winzip! [WZA_CreateZip_EmptyPassword]"); - - // Using a blank password, eh? - // Just what exactly is this *supposed* to do? - // - string zipFileToCreate = "WZA_CreateZip_EmptyPassword.zip"; - string password = ""; - - TestContext.WriteLine("======================================="); - TestContext.WriteLine("Creating file {0}", zipFileToCreate); - TestContext.WriteLine(" Password: '{0}'", password); - int entries = _rnd.Next(21) + 5; - - string filename = null; - var checksums = new Dictionary(); - using (ZipFile zip1 = new ZipFile()) - { - zip1.Encryption = EncryptionAlgorithm.WinZipAes256; - zip1.Password = password; - - for (int i = 0; i < entries; i++) - { - if (_rnd.Next(2) == 1) - { - filename = Path.Combine(TopLevelDir, String.Format("Data{0}.bin", i)); - int filesize = _rnd.Next(144000) + 5000; - TestUtilities.CreateAndFillFileBinary(filename, filesize); - } - else - { - filename = Path.Combine(TopLevelDir, String.Format("Data{0}.txt", i)); - int filesize = _rnd.Next(144000) + 5000; - TestUtilities.CreateAndFillFileText(filename, filesize); - } - zip1.AddFile(filename, ""); - - var chk = TestUtilities.ComputeChecksum(filename); - checksums.Add(Path.GetFileName(filename), TestUtilities.CheckSumToString(chk)); - } - - zip1.Comment = String.Format("This archive uses Encryption({0}) password({1}) no compression.", zip1.Encryption, password); - zip1.Save(zipFileToCreate); - } - - BasicVerifyZip(zipFileToCreate, password); - - // validate all the checksums - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - foreach (ZipEntry e in zip2) - { - if (!e.IsDirectory) - { - e.ExtractWithPassword("unpack", password); - string PathToExtractedFile = Path.Combine("unpack", e.FileName); - Assert.IsTrue(checksums.ContainsKey(e.FileName)); - - // verify the checksum of the file is correct - string expectedCheckString = checksums[e.FileName]; - string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(PathToExtractedFile)); - Assert.AreEqual(expectedCheckString, actualCheckString, "Unexpected checksum on extracted filesystem file ({0}).", PathToExtractedFile); - } - } - } - } - - - [TestMethod] - public void WZA_RemoveEntryAndSave() - { - if (!WinZipIsPresent) - throw new Exception("no winzip! [WZA_RemoveEntryAndSave]"); - - // make a few text files - string[] TextFiles = new string[5]; - for (int i = 0; i < TextFiles.Length; i++) - { - TextFiles[i] = Path.Combine(TopLevelDir, String.Format("TextFile{0}.txt", i)); - TestUtilities.CreateAndFillFileText(TextFiles[i], _rnd.Next(4000) + 5000); - } - TestContext.WriteLine(new String('=', 66)); - TestContext.WriteLine("RemoveEntryAndSave()"); - string password = Path.GetRandomFileName(); - for (int k = 0; k < 2; k++) - { - TestContext.WriteLine(new String('-', 55)); - TestContext.WriteLine("Trial {0}", k); - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("RemoveEntryAndSave-{0}.zip", k)); - - // create the zip: add some files, and Save() it - using (ZipFile zip = new ZipFile()) - { - if (k == 1) - { - TestContext.WriteLine("Specifying a password..."); - zip.Password = password; - zip.Encryption = EncryptionAlgorithm.WinZipAes256; - } - for (int i = 0; i < TextFiles.Length; i++) - zip.AddFile(TextFiles[i], ""); - - zip.AddEntry("Readme.txt", "This is the content of the file. Ho ho ho!"); - TestContext.WriteLine("Save..."); - zip.Save(zipFileToCreate); - } - - if (k == 1) - BasicVerifyZip(zipFileToCreate, password); - - // remove a file and re-Save - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - int entryToRemove = _rnd.Next(TextFiles.Length); - TestContext.WriteLine("Removing an entry...: {0}", Path.GetFileName(TextFiles[entryToRemove])); - zip2.RemoveEntry(Path.GetFileName(TextFiles[entryToRemove])); - zip2.Save(); - } - - // Verify the files are in the zip - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), TextFiles.Length, - String.Format("Trial {0}: The Zip file has the wrong number of entries.", k)); - - if (k == 1) - BasicVerifyZip(zipFileToCreate, password); - } - } - - - [TestMethod] - public void WZA_SmallBuffers_wi7967() - { - if (!WinZipIsPresent) - throw new Exception("no winzip! [WZA_SmallBuffers_wi7967]"); - - Directory.SetCurrentDirectory(TopLevelDir); - - string password = Path.GetRandomFileName() + Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - - int[] sizes = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 21, 35, 93 }; - for (int i = 0; i < sizes.Length; i++) - { - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("WZA_SmallBuffers_wi7967-{0}.zip", i)); - //MemoryStream zippedStream = new MemoryStream(); - byte[] buffer = new byte[sizes[i]]; - _rnd.NextBytes(buffer); - MemoryStream source = new MemoryStream(buffer); - - using (var zip = new ZipFile()) - { - source.Seek(0, SeekOrigin.Begin); - zip.Password = password; - zip.Encryption = EncryptionAlgorithm.WinZipAes256; - zip.AddEntry(Path.GetRandomFileName(), source); - zip.Save(zipFileToCreate); - } - - BasicVerifyZip(zipFileToCreate, password); - } - } - - - - [TestMethod] - public void WZA_InMemory_wi8493() - { - if (!WinZipIsPresent) - throw new Exception("no winzip! [WZA_InMemory_wi8493]"); - - string password = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - - using (MemoryStream ms = new MemoryStream()) - { - for (int m = 0; m < 2; m++) - { - string zipFileToCreate = - String.Format("WZA_InMemory_wi8493-{0}.zip", m); - - using (var zip = new ZipFile()) - { - zip.Password = password; - zip.Encryption = EncryptionAlgorithm.WinZipAes256; - zip.AddEntry(Path.GetRandomFileName(), "Hello, World!"); - if (m==1) - zip.Save(ms); - else - zip.Save(zipFileToCreate); - } - - if (m==1) - File.WriteAllBytes(zipFileToCreate,ms.ToArray()); - - BasicVerifyZip(zipFileToCreate, password); - } - } - } - - - [TestMethod] - public void WZA_InMemory_wi8493a() - { - if (!WinZipIsPresent) - throw new Exception("no winzip! [WZA_InMemory_wi8493a]"); - - string zipFileToCreate = "WZA_InMemory_wi8493a.zip"; - string password = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); - - string[] TextFiles = new string[25 + _rnd.Next(8)]; - for (int i = 0; i < TextFiles.Length; i++) - { - TextFiles[i] = Path.Combine(TopLevelDir, String.Format("TextFile{0}.txt", i)); - TestUtilities.CreateAndFillFileText(TextFiles[i], _rnd.Next(14000) + 13000); - } - - using (MemoryStream ms = new MemoryStream()) - { - using (var zip = new ZipFile()) - { - zip.Password = password; - zip.Encryption = EncryptionAlgorithm.WinZipAes256; - zip.AddEntry("Readme.txt", "Hello, World! ABC ABC ABC ABC ABCDE ABC ABCDEF ABC ABCD"); - zip.AddFiles(TextFiles, "files"); - zip.Save(ms); - } - File.WriteAllBytes(zipFileToCreate,ms.ToArray()); - - BasicVerifyZip(zipFileToCreate, password); - } - } - - - [TestMethod] - public void WZA_MacCheck_ZeroLengthEntry_wi13892() - { - if (!WinZipIsPresent) - throw new Exception("no winzip!"); - - // This zipfile has some zero-length entries. Previously - // DotNetZip was throwing a spurious MAC mismatch error on - // those zero-length entries. - string baseFileName = "wi13892.zip"; - string extractDir = "extract"; - string password = "C-XPSQ5-BRT5302-"; - - string sourceDir = CurrentDir; - for (int i = 0; i < 3; i++) - sourceDir = Path.GetDirectoryName(sourceDir); - - string fqFileName = Path.Combine(Path.Combine(sourceDir, - "Zip Tests\\bin\\Debug\\zips"), - baseFileName); - - TestContext.WriteLine("Reading zip file: '{0}'", fqFileName); - using (ZipFile zip = ZipFile.Read(fqFileName)) - { - zip.Password = password; - foreach (ZipEntry e in zip) - { - TestContext.WriteLine("{1,-22} {2,9} {3,5:F0}% {4,9} {5,3} {6:X8} {0}", - e.FileName, - e.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), - e.UncompressedSize, - e.CompressionRatio, - e.CompressedSize, - (e.UsesEncryption) ? "Y" : "N", - e.Crc); - e.Extract(extractDir); - } - } - } - - - - - - - [TestMethod] - public void WZA_Update_SwitchCompression() - { - if (!WinZipIsPresent) - throw new Exception("no winzip! [WZA_Update_SwitchCompression]"); - - string zipFileToCreate = "WZA_Update_SwitchCompression.zip"; - string password = TestUtilities.GenerateRandomPassword(); - - TestContext.WriteLine("======================================="); - TestContext.WriteLine("Creating file {0}", zipFileToCreate); - TestContext.WriteLine(" Password: {0}", password); - int entries = _rnd.Next(21) + 5; - - string filename = null; - var checksums = new Dictionary(); - using (ZipFile zip1 = new ZipFile()) - { - zip1.Encryption = EncryptionAlgorithm.WinZipAes256; - zip1.CompressionLevel = Ionic.Zlib.CompressionLevel.BestCompression; - zip1.Password = password; - - for (int i = 0; i < entries; i++) - { - if (_rnd.Next(2) == 1) - { - filename = Path.Combine(TopLevelDir, String.Format("Data{0}.bin", i)); - int filesize = _rnd.Next(144000) + 5000; - TestUtilities.CreateAndFillFileBinary(filename, filesize); - } - else - { - filename = Path.Combine(TopLevelDir, String.Format("Data{0}.txt", i)); - int filesize = _rnd.Next(144000) + 5000; - TestUtilities.CreateAndFillFileText(filename, filesize); - } - zip1.AddFile(filename, ""); - - var chk = TestUtilities.ComputeChecksum(filename); - checksums.Add(Path.GetFileName(filename), TestUtilities.CheckSumToString(chk)); - } - - zip1.Comment = String.Format("This archive uses Encryption({0}) password({1}) no compression.", zip1.Encryption, password); - TestContext.WriteLine("{0}", zip1.Comment); - TestContext.WriteLine("Saving the zip..."); - zip1.Save(zipFileToCreate); - } - - BasicVerifyZip(zipFileToCreate, password); - - TestContext.WriteLine("======================================="); - TestContext.WriteLine("Updating the zip file"); - - // Update the zip file - using (ZipFile zip = ZipFile.Read(zipFileToCreate)) - { - for (int j = 0; j < 5; j++) - { - zip[j].Password = password; - zip[j].CompressionMethod = 0; - } - zip.Save(); // this should succeed - } - - } - - [TestMethod] - public void WZA_InMemory_MultiplesOf16KBlockSize() - { - - string fname = "BadFile"; - string password = "a"; - - int redundancy = 175; // something less than 256 to introduce redundancy for deflate to compress out - - EncryptionAlgorithm ea = EncryptionAlgorithm.WinZipAes256; - - for (int fileLen = 17383; fileLen <= 17388; ++fileLen) // WinZip AES256 - { - - // ARRANGE: generate a compressed zip file - - // File of pseudo-random bytes - int m = 65537; - int a = 75; - int randSeed = 231; - - var dat = new byte[fileLen]; - for (int i = 0; i < fileLen; ++i) - { - // generate predicatable pseudo-random numbers for test: - randSeed = (randSeed * a) % m; - dat[i] = (byte)((randSeed * redundancy) / m); - } - - // generate the zip file - var zipStream = new MemoryStream(); - byte[] zipData; - using (ZipFile zip = new ZipFile()) - { - zip.Password = password; - zip.Encryption = ea; - zip.ParallelDeflateThreshold = -1; - zip.AddEntry(fname, dat); - - zip.Save(zipStream); - - zipData = zipStream.ToArray(); - } - - // ACT: - - // now attempt to extract - byte[] reBuilt; - using (var decryptedStream = new MemoryStream()) - { - using (var ms = new MemoryStream(zipData)) - { - using (ZipFile zip = ZipFile.Read(ms)) - { - zip.Password = password; - zip[fname].Extract(decryptedStream); - } - } - // get the rebuilt stream - reBuilt = decryptedStream.ToArray(); - } - - // ASSERT: - - CollectionAssert.AreEqual(dat, reBuilt); - } - } - - - } -} +// WinZipAesTests.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009 Dino Chiesa and Microsoft Corporation. +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-July-13 21:25:38> +// +// ------------------------------------------------------------------ +// +// This module defines the tests of the WinZIP AES Encryption capability +// of DotNetZip. +// +// ------------------------------------------------------------------ + +using System; +using System.IO; +using System.Collections.Generic; +using Microsoft.VisualStudio.TestTools.UnitTesting; + +using Ionic.Zip; +using Ionic.Zip.Tests.Utilities; + +namespace Ionic.Zip.Tests.WinZipAes +{ + /// + /// Summary description for WinZipAesTests + /// + [TestClass] + public class WinZipAesTests : IonicTestClass + { + public WinZipAesTests() : base() { } + + + [TestMethod] + public void WZA_CreateZip() + { + WZA_CreateZip_Impl("WZA_CreateZip", 14400, 5000); + } + + [TestMethod] + public void WZA_CreateZip_VerySmallFiles() + { + WZA_CreateZip_Impl("WZA_CreateZip_VerySmallFiles", 14, 5); + } + + + + private void WZA_CreateZip_Impl(string name, int size1, int size2) + { + if (!WinZipIsPresent) + throw new Exception("no winzip! [WZA_CreateZip_Impl]"); + + string filename = null; + int entries = _rnd.Next(11) + 8; + var checksums = new Dictionary(); + var filesToZip = new List(); + for (int i = 0; i < entries; i++) + { + int filesize = _rnd.Next(size1) + size2; + if (_rnd.Next(2) == 1) + { + filename = Path.Combine(TopLevelDir, String.Format("Data{0}.bin", i)); + TestUtilities.CreateAndFillFileBinary(filename, filesize); + } + else + { + filename = Path.Combine(TopLevelDir, String.Format("Data{0}.txt", i)); + TestUtilities.CreateAndFillFileText(filename, filesize); + } + + var chk = TestUtilities.ComputeChecksum(filename); + checksums.Add(Path.GetFileName(filename), TestUtilities.CheckSumToString(chk)); + filesToZip.Add(filename); + } + + + Ionic.Zip.EncryptionAlgorithm[] EncOptions = { + EncryptionAlgorithm.None, + EncryptionAlgorithm.WinZipAes256, + EncryptionAlgorithm.WinZipAes128, + EncryptionAlgorithm.PkzipWeak + }; + + for (int k = 0; k < EncOptions.Length; k++) + { + + for (int m = 0; m < 2; m++) + { + //string password = TestUtilities.GenerateRandomPassword(); + string password = Path.GetRandomFileName().Replace(".", "-"); + Directory.SetCurrentDirectory(TopLevelDir); + TestContext.WriteLine("\n\n==================Trial {0}.{1}..", k, m); + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("{0}-{1}-{2}.zip", name, k, m)); + + TestContext.WriteLine("Creating file {0}", zipFileToCreate); + TestContext.WriteLine(" Password: {0}", password); + TestContext.WriteLine(" Encryption: {0}", EncOptions[k].ToString()); + TestContext.WriteLine(" NonSeekable output: {0}", (m == 0) ? "No" : "Yes"); + TestContext.WriteLine(" #entries: {0}", entries); + + string comment = String.Format("This archive uses Encryption: {0}, password({1}), NonSeekable=({2})", + EncOptions[k], password, (m == 0) ? "No" : "Yes"); + + _DotNetZip_CreateZip(filesToZip, EncOptions[k], password, comment, zipFileToCreate, (m==1)); + + if (EncOptions[k] == EncryptionAlgorithm.None) + BasicVerifyZip(zipFileToCreate); + else + BasicVerifyZip(zipFileToCreate, password); + + + TestContext.WriteLine("---------------Reading {0}...", zipFileToCreate); + System.Threading.Thread.Sleep(1200); // seems to be a race condition? sometimes? + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + string extractDir = String.Format("extract-{0}.{1}", k, m); + foreach (var e in zip2) + { + TestContext.WriteLine(" Entry: {0} c({1}) unc({2})", e.FileName, e.CompressedSize, e.UncompressedSize); + Assert.AreEqual(EncOptions[k], e.Encryption); + e.ExtractWithPassword(extractDir, password); + filename = Path.Combine(extractDir, e.FileName); + string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(filename)); + Assert.IsTrue(checksums.ContainsKey(e.FileName), "Checksum is missing"); + Assert.AreEqual(checksums[e.FileName], actualCheckString, "Checksums for ({0}) do not match.", e.FileName); + TestContext.WriteLine(" Checksums match ({0}).\n", actualCheckString); + } + } + } + } + } + + private static void _DotNetZip_CreateZip(List filesToZip, + EncryptionAlgorithm encryption, + string password, + string comment, + string zipFileToCreate, + bool nonSeekable) + { + // Want to test the library when saving to non-seekable output streams. Like + // stdout or ASPNET's Response.OutputStream. This simulates it. + if (nonSeekable) + { + using (var outStream = new Ionic.Zip.Tests.NonSeekableOutputStream(File.Create(zipFileToCreate))) + { + using (ZipFile zip1 = new ZipFile()) + { + zip1.Encryption = encryption; + if (zip1.Encryption != EncryptionAlgorithm.None) + zip1.Password = password; + + zip1.AddFiles(filesToZip, ""); + zip1.Comment = comment; + zip1.Save(outStream); + } + } + } + else + { + using (ZipFile zip1 = new ZipFile()) + { + zip1.Encryption = encryption; + if (zip1.Encryption != EncryptionAlgorithm.None) + zip1.Password = password; + + zip1.AddFiles(filesToZip, ""); + zip1.Comment = comment; + zip1.Save(zipFileToCreate); + } + } + } + + + + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.BadPasswordException))] + public void WZA_CreateZip_NoPassword() + { + string zipFileToCreate = "WZA_CreateZip_NoPassword.zip"; + TestContext.WriteLine("Creating file {0}", zipFileToCreate); + int entries = _rnd.Next(11) + 8; + + string filename = null; + var checksums = new Dictionary(); + using (ZipFile zip1 = new ZipFile()) + { + zip1.Encryption = EncryptionAlgorithm.WinZipAes256; + for (int i = 0; i < entries; i++) + { + if (_rnd.Next(2) == 1) + { + filename = Path.Combine(TopLevelDir, String.Format("Data{0}.bin", i)); + int filesize = _rnd.Next(144000) + 5000; + TestUtilities.CreateAndFillFileBinary(filename, filesize); + } + else + { + filename = Path.Combine(TopLevelDir, String.Format("Data{0}.txt", i)); + int filesize = _rnd.Next(144000) + 5000; + TestUtilities.CreateAndFillFileText(filename, filesize); + } + zip1.AddFile(filename, ""); + + var chk = TestUtilities.ComputeChecksum(filename); + checksums.Add(Path.GetFileName(filename), TestUtilities.CheckSumToString(chk)); + } + + zip1.Comment = String.Format("This archive uses Encryption: {0}, no password!", zip1.Encryption); + // With no password, we expect no encryption in the output. + zip1.Save(zipFileToCreate); + } + + #if NOT + WinzipVerify(zipFileToCreate); + + // validate all the checksums + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (ZipEntry e in zip2) + { + if (!e.IsDirectory) + { + e.Extract("unpack"); + string PathToExtractedFile = Path.Combine("unpack", e.FileName); + + Assert.IsTrue(e.Encryption == EncryptionAlgorithm.None); + Assert.IsTrue(checksums.ContainsKey(e.FileName)); + + // verify the checksum of the file is correct + string expectedCheckString = checksums[e.FileName]; + string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(PathToExtractedFile)); + Assert.AreEqual(expectedCheckString, actualCheckString, "Unexpected checksum on extracted filesystem file ({0}).", PathToExtractedFile); + } + } + } + #endif + + } + + + + [TestMethod] + public void WZA_CreateZip_DirectoriesOnly() + { + if (!WinZipIsPresent) + throw new Exception("no winzip! [WZA_CreateZip_DirectoriesOnly]"); + + string zipFileToCreate = "WZA_CreateZip_DirectoriesOnly.zip"; + Assert.IsFalse(File.Exists(zipFileToCreate)); + + string password = TestUtilities.GenerateRandomPassword(); + string dirToZip = Path.Combine(TopLevelDir, "zipthis"); + Directory.CreateDirectory(dirToZip); + + int entries = 0; + int subdirCount = _rnd.Next(8) + 8; + + TestContext.WriteLine("Creating file {0}", zipFileToCreate); + TestContext.WriteLine(" Password: {0}", password); + TestContext.WriteLine(" #directories: {0}", subdirCount); + + for (int i = 0; i < subdirCount; i++) + { + string subdir = Path.Combine(dirToZip, "EmptyDir" + i); + Directory.CreateDirectory(subdir); + } + + using (ZipFile zip1 = new ZipFile()) + { + zip1.Encryption = EncryptionAlgorithm.WinZipAes256; + zip1.Password = password; + zip1.AddDirectory(Path.GetFileName(dirToZip)); + zip1.Save(zipFileToCreate); + } + + BasicVerifyZip(zipFileToCreate, password); + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries); + } + + + + [TestMethod] + public void WZA_CreateZip_ZeroLengthFiles_256() + { + string password = TestUtilities.GenerateRandomPassword(12); + _Internal_CreateZip_ZeroLengthFiles(password, EncryptionAlgorithm.WinZipAes256); + } + [TestMethod] + public void WZA_CreateZip_ZeroLengthFiles_128() + { + string password = TestUtilities.GenerateRandomPassword(12); + _Internal_CreateZip_ZeroLengthFiles(password, EncryptionAlgorithm.WinZipAes128); + } + + [TestMethod] + public void WZA_CreateZip_ZeroLengthFiles_NoPassword_256() + { + _Internal_CreateZip_ZeroLengthFiles(null, EncryptionAlgorithm.WinZipAes256); + } + [TestMethod] + public void WZA_CreateZip_ZeroLengthFiles_NoPassword_128() + { + _Internal_CreateZip_ZeroLengthFiles(null, EncryptionAlgorithm.WinZipAes128); + } + + public void _Internal_CreateZip_ZeroLengthFiles(string password, EncryptionAlgorithm algorithm) + { + if (!WinZipIsPresent) + throw new Exception("no winzip! [_Internal_CreateZip_ZeroLengthFiles]"); + + string zipFileToCreate = "WZA_CreateZip_ZeroLengthFiles.zip"; + Assert.IsFalse(File.Exists(zipFileToCreate)); + + TestContext.WriteLine("Creating file {0}", zipFileToCreate); + TestContext.WriteLine(" Password: {0}", password); + + // create a bunch of zero-length files + int entries = _rnd.Next(21) + 5; + int i; + string[] filesToZip = new string[entries]; + for (i = 0; i < entries; i++) + filesToZip[i] = TestUtilities.CreateUniqueFile("zerolength", TopLevelDir); + + using (ZipFile zip = new ZipFile()) + { + zip.Encryption = algorithm; + zip.Password = password; + zip.AddFiles(filesToZip); + zip.Save(zipFileToCreate); + } + + BasicVerifyZip(zipFileToCreate, password); + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), + filesToZip.Length); + } + + + + private void WinzipCreate(string zipfile, string fileOrDir, string encryptionArg, string password) + { + string[] files = { fileOrDir }; + WinzipCreate(zipfile, files, encryptionArg, password); + } + + private void WinzipCreate(string zipfile, IEnumerable files, string encryptionArg, string password) + { + string args = null; + if (password == null) + { + args = String.Format("-a -whs {0}", zipfile); + } + else + { + args = String.Format("-a -whs -s\"{0}\" {1} {2}", password, encryptionArg, zipfile); + } + + // This had better not be too long a list, otherwise the cmd + // line length limit will be exceeded. To avoid that, could + // use directory names, but.... for now let's just hope. + foreach (var f in files) + args += " " + f; + + string wzzipOut = this.Exec(wzzip, args); + TestContext.WriteLine(wzzipOut); + } + + + + + [TestMethod] + public void WZA_ReadEncryptedZips() + { + _Internal_ReadEncryptedZips(true); + } + + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.BadPasswordException))] + public void WZA_ReadZip_Fail_BadPassword() + { + _Internal_ReadEncryptedZips(false); + } + + + private void _Internal_ReadEncryptedZips(bool correctPw) + { + if (!WinZipIsPresent) + throw new Exception("no winzip!"); + + string[] cryptoArg = new string[] { "-ycAES128", "-ycAES256", }; + for (int m = 0; m < cryptoArg.Length; m++) + { + Directory.SetCurrentDirectory(TopLevelDir); + + // get a set of files to zip up + string subdir = Path.Combine(TopLevelDir, "files" + m); + string[] filesToZip; + Dictionary checksums; + Compatibility.CreateFilesAndChecksums(subdir, out filesToZip, out checksums); + string password = TestUtilities.GenerateRandomPassword(); + string[] dirsToZip = new string[] + { + subdir + "\\*.*", + }; + string zipFileToCreate = String.Format("WZA_ReadZips-{0}.zip", m); + WinzipCreate(zipFileToCreate, dirsToZip, cryptoArg[m], password); + + _Internal_ReadZip(zipFileToCreate, (correctPw) ? password : null, filesToZip.Length); + } + } + + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.BadPasswordException))] + public void WZA_ReadZip_Fail_NoPassword_128() + { + string password = TestUtilities.GenerateRandomPassword(); + GenerateFiles_CreateZip("-ycAES128", password, 1); + } + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.BadPasswordException))] + public void WZA_ReadZip_Fail_NoPassword_256() + { + string password = TestUtilities.GenerateRandomPassword(); + GenerateFiles_CreateZip("-ycAES256", password, 1); + } + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.BadPasswordException))] + public void WZA_ReadZip_Fail_WrongPassword() + { + string password = TestUtilities.GenerateRandomPassword(); + GenerateFiles_CreateZip("-ycAES256", password, 2); + } + + [TestMethod] + [ExpectedException(typeof(Ionic.Zip.BadPasswordException))] + public void WZA_ReadZip_Fail_WrongMethod() + { + string password = TestUtilities.GenerateRandomPassword(); + GenerateFiles_CreateZip("-ycAES256", password, 3); + } + + + public void GenerateFiles_CreateZip(string cryptoArg, string password, int pwFlavor) + { + // This method generates files, then zips them up using WinZip, then tries + // to unzip using DotNetZip. It is parameterized to test both success and + // failure cases. If pwFlavor is zero, then it uses the correct password to + // unzip, and everything should work. If pwFlavor is non-zero then it uses + // some incorrect password, either null or a bogus string, and generates a failure. + + if (!WinZipIsPresent) + throw new Exception("no winzip! [GenerateFiles_CreateZip]"); + + Directory.SetCurrentDirectory(TopLevelDir); + // get a set of files to zip up + string subdir = Path.Combine(TopLevelDir, "files"); + + string[] filesToZip = TestUtilities.GenerateFilesFlat(subdir); + string zipFileToCreate = "GenerateFiles_CreateZip.zip"; + + WinzipCreate(zipFileToCreate, subdir, cryptoArg, password); + + string pwForReading = (pwFlavor == 0) + ? password + : (pwFlavor == 1) + ? null + : (pwFlavor == 2) + ? "-wrongpassword-" + : TestUtilities.GenerateRandomPassword(); + + _Internal_ReadZip(zipFileToCreate, pwForReading, filesToZip.Length); + } + + + + int zipCount = 0; + private void _Internal_ReadZip(string zipFileToRead, string password, int expectedFilesExtracted) + { + Directory.SetCurrentDirectory(TopLevelDir); + + Assert.IsTrue(File.Exists(zipFileToRead), "The zip file '{0}' does not exist.", zipFileToRead); + + // extract all the files + int actualFilesExtracted = 0; + string extractDir = String.Format("Extract{0}", zipCount++); + + using (ZipFile zip2 = ZipFile.Read(zipFileToRead)) + { + //zip2.Password = password; + foreach (ZipEntry e in zip2) + { + if (!e.IsDirectory) + { + if (password == "-null-") + e.Extract(extractDir); + else + e.ExtractWithPassword(extractDir, password); + actualFilesExtracted++; + } + } + } + Assert.AreEqual(expectedFilesExtracted, actualFilesExtracted); + } + + + [TestMethod] + public void WZA_OneZeroByteFile_wi11131() + { + string zipF = "WZA_OneZeroByteFile_wi11131.zip"; + TestContext.WriteLine("Create file {0}", zipF); + using (ZipFile zipFile = new ZipFile()) + { + zipFile.Encryption = EncryptionAlgorithm.WinZipAes256; + zipFile.Password = TestUtilities.GenerateRandomPassword(); + zipFile.AddEntry("dummy", new byte[0]); + using (var fs = File.Create(zipF)) + { + zipFile.Save(fs); + } + } + + BasicVerifyZip(zipF); + Assert.AreEqual(1, TestUtilities.CountEntries(zipF)); + } + + + [TestMethod] + public void WZA_CreateZip_NoCompression() + { + if (!WinZipIsPresent) + throw new Exception("no winzip! [WZA_CreateZip_NoCompression]"); + + string zipFileToCreate = "WZA_CreateZip_NoCompression.zip"; + string password = TestUtilities.GenerateRandomPassword(); + + TestContext.WriteLine("======================================="); + TestContext.WriteLine("Creating file {0}", zipFileToCreate); + TestContext.WriteLine(" Password: {0}", password); + int entries = _rnd.Next(21) + 5; + + string filename = null; + var checksums = new Dictionary(); + using (ZipFile zip1 = new ZipFile()) + { + zip1.Encryption = EncryptionAlgorithm.WinZipAes256; + zip1.Password = password; + zip1.CompressionLevel = Ionic.Zlib.CompressionLevel.None; + + for (int i = 0; i < entries; i++) + { + if (_rnd.Next(2) == 1) + { + filename = Path.Combine(TopLevelDir, String.Format("Data{0}.bin", i)); + int filesize = _rnd.Next(144000) + 5000; + TestUtilities.CreateAndFillFileBinary(filename, filesize); + } + else + { + filename = Path.Combine(TopLevelDir, String.Format("Data{0}.txt", i)); + int filesize = _rnd.Next(144000) + 5000; + TestUtilities.CreateAndFillFileText(filename, filesize); + } + zip1.AddFile(filename, ""); + + var chk = TestUtilities.ComputeChecksum(filename); + checksums.Add(Path.GetFileName(filename), TestUtilities.CheckSumToString(chk)); + } + + zip1.Comment = String.Format("This archive uses Encryption({0}) password({1}) no compression.", zip1.Encryption, password); + zip1.Save(zipFileToCreate); + } + + BasicVerifyZip(zipFileToCreate, password); + + // validate all the checksums + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (ZipEntry e in zip2) + { + if (!e.IsDirectory) + { + Assert.AreEqual(0, (short)e.CompressionMethod); + e.ExtractWithPassword("unpack", password); + string PathToExtractedFile = Path.Combine("unpack", e.FileName); + Assert.IsTrue(checksums.ContainsKey(e.FileName)); + + // verify the checksum of the file is correct + string expectedCheckString = checksums[e.FileName]; + string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(PathToExtractedFile)); + Assert.AreEqual(expectedCheckString, actualCheckString, "Unexpected checksum on extracted filesystem file ({0}).", PathToExtractedFile); + } + } + } + } + + [TestMethod] + public void WZA_CreateZip_Spanned() + { + int filesize = 1024 * 1024; + TestUtilities.CreateAndFillFileBinary("aestest.dat", filesize); + using (ZipFile zip1 = new ZipFile()) + { + zip1.Encryption = EncryptionAlgorithm.WinZipAes256; + zip1.MaxOutputSegmentSize = 262144; + zip1.Password = "test1234"; + zip1.AddFile("aestest.dat"); + zip1.Save("aes256test.zip"); + } + + using (Stream sr = new MemoryStream()) + { + using (ZipFile zip2 = ZipFile.Read("aes256test.zip")) + { + foreach (ZipEntry ze in zip2.Entries) + ze.ExtractWithPassword(sr, "test1234"); + } + Assert.AreEqual(filesize, sr.Length, "Unexpected output length"); + } + } + + + [TestMethod] + public void WZA_CreateZip_EmptyPassword() + { + if (!WinZipIsPresent) + throw new Exception("no winzip! [WZA_CreateZip_EmptyPassword]"); + + // Using a blank password, eh? + // Just what exactly is this *supposed* to do? + // + string zipFileToCreate = "WZA_CreateZip_EmptyPassword.zip"; + string password = ""; + + TestContext.WriteLine("======================================="); + TestContext.WriteLine("Creating file {0}", zipFileToCreate); + TestContext.WriteLine(" Password: '{0}'", password); + int entries = _rnd.Next(21) + 5; + + string filename = null; + var checksums = new Dictionary(); + using (ZipFile zip1 = new ZipFile()) + { + zip1.Encryption = EncryptionAlgorithm.WinZipAes256; + zip1.Password = password; + + for (int i = 0; i < entries; i++) + { + if (_rnd.Next(2) == 1) + { + filename = Path.Combine(TopLevelDir, String.Format("Data{0}.bin", i)); + int filesize = _rnd.Next(144000) + 5000; + TestUtilities.CreateAndFillFileBinary(filename, filesize); + } + else + { + filename = Path.Combine(TopLevelDir, String.Format("Data{0}.txt", i)); + int filesize = _rnd.Next(144000) + 5000; + TestUtilities.CreateAndFillFileText(filename, filesize); + } + zip1.AddFile(filename, ""); + + var chk = TestUtilities.ComputeChecksum(filename); + checksums.Add(Path.GetFileName(filename), TestUtilities.CheckSumToString(chk)); + } + + zip1.Comment = String.Format("This archive uses Encryption({0}) password({1}) no compression.", zip1.Encryption, password); + zip1.Save(zipFileToCreate); + } + + BasicVerifyZip(zipFileToCreate, password); + + // validate all the checksums + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + foreach (ZipEntry e in zip2) + { + if (!e.IsDirectory) + { + e.ExtractWithPassword("unpack", password); + string PathToExtractedFile = Path.Combine("unpack", e.FileName); + Assert.IsTrue(checksums.ContainsKey(e.FileName)); + + // verify the checksum of the file is correct + string expectedCheckString = checksums[e.FileName]; + string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(PathToExtractedFile)); + Assert.AreEqual(expectedCheckString, actualCheckString, "Unexpected checksum on extracted filesystem file ({0}).", PathToExtractedFile); + } + } + } + } + + + [TestMethod] + public void WZA_RemoveEntryAndSave() + { + if (!WinZipIsPresent) + throw new Exception("no winzip! [WZA_RemoveEntryAndSave]"); + + // make a few text files + string[] TextFiles = new string[5]; + for (int i = 0; i < TextFiles.Length; i++) + { + TextFiles[i] = Path.Combine(TopLevelDir, String.Format("TextFile{0}.txt", i)); + TestUtilities.CreateAndFillFileText(TextFiles[i], _rnd.Next(4000) + 5000); + } + TestContext.WriteLine(new String('=', 66)); + TestContext.WriteLine("RemoveEntryAndSave()"); + string password = Path.GetRandomFileName(); + for (int k = 0; k < 2; k++) + { + TestContext.WriteLine(new String('-', 55)); + TestContext.WriteLine("Trial {0}", k); + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("RemoveEntryAndSave-{0}.zip", k)); + + // create the zip: add some files, and Save() it + using (ZipFile zip = new ZipFile()) + { + if (k == 1) + { + TestContext.WriteLine("Specifying a password..."); + zip.Password = password; + zip.Encryption = EncryptionAlgorithm.WinZipAes256; + } + for (int i = 0; i < TextFiles.Length; i++) + zip.AddFile(TextFiles[i], ""); + + zip.AddEntry("Readme.txt", "This is the content of the file. Ho ho ho!"); + TestContext.WriteLine("Save..."); + zip.Save(zipFileToCreate); + } + + if (k == 1) + BasicVerifyZip(zipFileToCreate, password); + + // remove a file and re-Save + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + int entryToRemove = _rnd.Next(TextFiles.Length); + TestContext.WriteLine("Removing an entry...: {0}", Path.GetFileName(TextFiles[entryToRemove])); + zip2.RemoveEntry(Path.GetFileName(TextFiles[entryToRemove])); + zip2.Save(); + } + + // Verify the files are in the zip + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), TextFiles.Length, + String.Format("Trial {0}: The Zip file has the wrong number of entries.", k)); + + if (k == 1) + BasicVerifyZip(zipFileToCreate, password); + } + } + + + [TestMethod] + public void WZA_SmallBuffers_wi7967() + { + if (!WinZipIsPresent) + throw new Exception("no winzip! [WZA_SmallBuffers_wi7967]"); + + Directory.SetCurrentDirectory(TopLevelDir); + + string password = Path.GetRandomFileName() + Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + + int[] sizes = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 21, 35, 93 }; + for (int i = 0; i < sizes.Length; i++) + { + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("WZA_SmallBuffers_wi7967-{0}.zip", i)); + //MemoryStream zippedStream = new MemoryStream(); + byte[] buffer = new byte[sizes[i]]; + _rnd.NextBytes(buffer); + MemoryStream source = new MemoryStream(buffer); + + using (var zip = new ZipFile()) + { + source.Seek(0, SeekOrigin.Begin); + zip.Password = password; + zip.Encryption = EncryptionAlgorithm.WinZipAes256; + zip.AddEntry(Path.GetRandomFileName(), source); + zip.Save(zipFileToCreate); + } + + BasicVerifyZip(zipFileToCreate, password); + } + } + + + + [TestMethod] + public void WZA_InMemory_wi8493() + { + if (!WinZipIsPresent) + throw new Exception("no winzip! [WZA_InMemory_wi8493]"); + + string password = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + + using (MemoryStream ms = new MemoryStream()) + { + for (int m = 0; m < 2; m++) + { + string zipFileToCreate = + String.Format("WZA_InMemory_wi8493-{0}.zip", m); + + using (var zip = new ZipFile()) + { + zip.Password = password; + zip.Encryption = EncryptionAlgorithm.WinZipAes256; + zip.AddEntry(Path.GetRandomFileName(), "Hello, World!"); + if (m==1) + zip.Save(ms); + else + zip.Save(zipFileToCreate); + } + + if (m==1) + File.WriteAllBytes(zipFileToCreate,ms.ToArray()); + + BasicVerifyZip(zipFileToCreate, password); + } + } + } + + + [TestMethod] + public void WZA_InMemory_wi8493a() + { + if (!WinZipIsPresent) + throw new Exception("no winzip! [WZA_InMemory_wi8493a]"); + + string zipFileToCreate = "WZA_InMemory_wi8493a.zip"; + string password = Path.GetFileNameWithoutExtension(Path.GetRandomFileName()); + + string[] TextFiles = new string[25 + _rnd.Next(8)]; + for (int i = 0; i < TextFiles.Length; i++) + { + TextFiles[i] = Path.Combine(TopLevelDir, String.Format("TextFile{0}.txt", i)); + TestUtilities.CreateAndFillFileText(TextFiles[i], _rnd.Next(14000) + 13000); + } + + using (MemoryStream ms = new MemoryStream()) + { + using (var zip = new ZipFile()) + { + zip.Password = password; + zip.Encryption = EncryptionAlgorithm.WinZipAes256; + zip.AddEntry("Readme.txt", "Hello, World! ABC ABC ABC ABC ABCDE ABC ABCDEF ABC ABCD"); + zip.AddFiles(TextFiles, "files"); + zip.Save(ms); + } + File.WriteAllBytes(zipFileToCreate,ms.ToArray()); + + BasicVerifyZip(zipFileToCreate, password); + } + } + + + [TestMethod] + public void WZA_MacCheck_ZeroLengthEntry_wi13892() + { + if (!WinZipIsPresent) + throw new Exception("no winzip!"); + + // This zipfile has some zero-length entries. Previously + // DotNetZip was throwing a spurious MAC mismatch error on + // those zero-length entries. + string baseFileName = "wi13892.zip"; + string extractDir = "extract"; + string password = "C-XPSQ5-BRT5302-"; + + string sourceDir = CurrentDir; + for (int i = 0; i < 3; i++) + sourceDir = Path.GetDirectoryName(sourceDir); + + string fqFileName = Path.Combine(Path.Combine(sourceDir, + "Zip Tests\\bin\\Debug\\zips"), + baseFileName); + + TestContext.WriteLine("Reading zip file: '{0}'", fqFileName); + using (ZipFile zip = ZipFile.Read(fqFileName)) + { + zip.Password = password; + foreach (ZipEntry e in zip) + { + TestContext.WriteLine("{1,-22} {2,9} {3,5:F0}% {4,9} {5,3} {6:X8} {0}", + e.FileName, + e.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), + e.UncompressedSize, + e.CompressionRatio, + e.CompressedSize, + (e.UsesEncryption) ? "Y" : "N", + e.Crc); + e.Extract(extractDir); + } + } + } + + + + + + + [TestMethod] + public void WZA_Update_SwitchCompression() + { + if (!WinZipIsPresent) + throw new Exception("no winzip! [WZA_Update_SwitchCompression]"); + + string zipFileToCreate = "WZA_Update_SwitchCompression.zip"; + string password = TestUtilities.GenerateRandomPassword(); + + TestContext.WriteLine("======================================="); + TestContext.WriteLine("Creating file {0}", zipFileToCreate); + TestContext.WriteLine(" Password: {0}", password); + int entries = _rnd.Next(21) + 5; + + string filename = null; + var checksums = new Dictionary(); + using (ZipFile zip1 = new ZipFile()) + { + zip1.Encryption = EncryptionAlgorithm.WinZipAes256; + zip1.CompressionLevel = Ionic.Zlib.CompressionLevel.BestCompression; + zip1.Password = password; + + for (int i = 0; i < entries; i++) + { + if (_rnd.Next(2) == 1) + { + filename = Path.Combine(TopLevelDir, String.Format("Data{0}.bin", i)); + int filesize = _rnd.Next(144000) + 5000; + TestUtilities.CreateAndFillFileBinary(filename, filesize); + } + else + { + filename = Path.Combine(TopLevelDir, String.Format("Data{0}.txt", i)); + int filesize = _rnd.Next(144000) + 5000; + TestUtilities.CreateAndFillFileText(filename, filesize); + } + zip1.AddFile(filename, ""); + + var chk = TestUtilities.ComputeChecksum(filename); + checksums.Add(Path.GetFileName(filename), TestUtilities.CheckSumToString(chk)); + } + + zip1.Comment = String.Format("This archive uses Encryption({0}) password({1}) no compression.", zip1.Encryption, password); + TestContext.WriteLine("{0}", zip1.Comment); + TestContext.WriteLine("Saving the zip..."); + zip1.Save(zipFileToCreate); + } + + BasicVerifyZip(zipFileToCreate, password); + + TestContext.WriteLine("======================================="); + TestContext.WriteLine("Updating the zip file"); + + // Update the zip file + using (ZipFile zip = ZipFile.Read(zipFileToCreate)) + { + for (int j = 0; j < 5; j++) + { + zip[j].Password = password; + zip[j].CompressionMethod = 0; + } + zip.Save(); // this should succeed + } + + } + + [TestMethod] + public void WZA_InMemory_MultiplesOf16KBlockSize() + { + + string fname = "BadFile"; + string password = "a"; + + int redundancy = 175; // something less than 256 to introduce redundancy for deflate to compress out + + EncryptionAlgorithm ea = EncryptionAlgorithm.WinZipAes256; + + for (int fileLen = 17383; fileLen <= 17388; ++fileLen) // WinZip AES256 + { + + // ARRANGE: generate a compressed zip file + + // File of pseudo-random bytes + int m = 65537; + int a = 75; + int randSeed = 231; + + var dat = new byte[fileLen]; + for (int i = 0; i < fileLen; ++i) + { + // generate predicatable pseudo-random numbers for test: + randSeed = (randSeed * a) % m; + dat[i] = (byte)((randSeed * redundancy) / m); + } + + // generate the zip file + var zipStream = new MemoryStream(); + byte[] zipData; + using (ZipFile zip = new ZipFile()) + { + zip.Password = password; + zip.Encryption = ea; + zip.ParallelDeflateThreshold = -1; + zip.AddEntry(fname, dat); + + zip.Save(zipStream); + + zipData = zipStream.ToArray(); + } + + // ACT: + + // now attempt to extract + byte[] reBuilt; + using (var decryptedStream = new MemoryStream()) + { + using (var ms = new MemoryStream(zipData)) + { + using (ZipFile zip = ZipFile.Read(ms)) + { + zip.Password = password; + zip[fname].Extract(decryptedStream); + } + } + // get the rebuilt stream + reBuilt = decryptedStream.ToArray(); + } + + // ASSERT: + + CollectionAssert.AreEqual(dat, reBuilt); + } + } + + + } +} diff --git a/src/Zip Tests/Zip Tests.csproj b/old/src/Zip Tests/Zip Tests.csproj similarity index 97% rename from src/Zip Tests/Zip Tests.csproj rename to old/src/Zip Tests/Zip Tests.csproj index 8c7be4b..c0a1490 100644 --- a/src/Zip Tests/Zip Tests.csproj +++ b/old/src/Zip Tests/Zip Tests.csproj @@ -1,228 +1,228 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {549466CE-5CA6-4904-BA44-58141544BE70} - Library - Properties - Ionic.Zip.Tests - Ionic.Zip.Tests - ..\Ionic.snk - v4.0 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - - - - - - - - - - - 3.5 - - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - false - - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - AllRules.ruleset - AnyCPU - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - AllRules.ruleset - - - - False - ..\..\..\..\..\vsp\UnitTestProgressMonitor\CopyDataChannel\bin\Debug\Ionic.CopyData.dll - - - - - ..\packages\Microsoft.VisualStudio.Zip.9.0.9.0\lib\Microsoft.VisualStudio.Zip.9.0.dll - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Properties\SolutionInfo.cs - - - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - Always - - - - - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} - Zip DLL - - - {A22C89E0-B5D4-4881-A61F-4B1FD82F2453} - UnZip - - - {98008721-C4DD-4F34-B3AE-A3453E29BB65} - ZipIt - - - - - Ionic.snk - - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {549466CE-5CA6-4904-BA44-58141544BE70} + Library + Properties + Ionic.Zip.Tests + Ionic.Zip.Tests + ..\Ionic.snk + v4.0 + 512 + {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + + + + + + + + + + + 3.5 + + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + false + + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + AllRules.ruleset + AnyCPU + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + AllRules.ruleset + + + + False + ..\..\..\..\..\vsp\UnitTestProgressMonitor\CopyDataChannel\bin\Debug\Ionic.CopyData.dll + + + + + ..\packages\Microsoft.VisualStudio.Zip.9.0.9.0\lib\Microsoft.VisualStudio.Zip.9.0.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Properties\SolutionInfo.cs + + + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + + + + + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} + Zip DLL + + + {A22C89E0-B5D4-4881-A61F-4B1FD82F2453} + UnZip + + + {98008721-C4DD-4F34-B3AE-A3453E29BB65} + ZipIt + + + + + Ionic.snk + + + + \ No newline at end of file diff --git a/src/Zip Tests/Zip64Tests.cs b/old/src/Zip Tests/Zip64Tests.cs similarity index 97% rename from src/Zip Tests/Zip64Tests.cs rename to old/src/Zip Tests/Zip64Tests.cs index b8d6858..d9d2160 100644 --- a/src/Zip Tests/Zip64Tests.cs +++ b/old/src/Zip Tests/Zip64Tests.cs @@ -1,1764 +1,1764 @@ -// Zip64Tests.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009-2011 Dino Chiesa -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-July-10 20:31:24> -// -// ------------------------------------------------------------------ -// -// This module defines the tests for the ZIP64 capability within DotNetZip. These -// tests can take a long time to run, as the files can be quite large - 10g or -// more. Merely generating the content for these tests can take an hour. Most tests -// in the DotNetZip test suite are self-standing - they generate the content they -// need, and then remove it after completion, either success or failure. With ZIP64, -// because content creation is expensive, for update operations this module uses a -// cache of large zip files. See _CreateHugeZipfiles(). The method looks for -// large files in a well-known location on the filesystem, in fodderDir. -// -// ------------------------------------------------------------------ - - -using System; -using System.Linq; -using System.IO; -using System.Collections.Generic; -using Microsoft.VisualStudio.TestTools.UnitTesting; -using Ionic.Zip; -using Ionic.Zip.Tests.Utilities; - - -namespace Ionic.Zip.Tests.Zip64 -{ - [TestClass] - public class Zip64Tests : IonicTestClass - { - string fodderDir = "c:\\users\\dino\\Downloads"; - string homeDir = System.Environment.GetEnvironmentVariable("TEMP"); - - public Zip64Tests() : base() { } - - private static string[] _HugeZipFiles; - private string[] GetHugeZipFiles() - { - if (_HugeZipFiles == null) - { - _HugeZipFiles = _CreateHugeZipfiles(); - } - return _HugeZipFiles; - } - - - - [ClassCleanup()] - public static void MyClassCleanup() - { - if (_HugeZipFiles != null) - { - // Keep this huge zip file around, because it takes so much - // time to create it. But Delete the directory if one of the files no - // longer exists. - if (!File.Exists(_HugeZipFiles[0]) || - !File.Exists(_HugeZipFiles[1])) - { - //File.Delete(_HugeZipFile); - string d= Path.GetDirectoryName(_HugeZipFiles[0]); - if (Directory.Exists(d)) - Directory.Delete(d, true); - } - } - } - - EncryptionAlgorithm[] crypto = - { - EncryptionAlgorithm.None, - EncryptionAlgorithm.PkzipWeak, - EncryptionAlgorithm.WinZipAes128, - EncryptionAlgorithm.WinZipAes256, - }; - - Ionic.Zlib.CompressionLevel[] compLevels = - { - Ionic.Zlib.CompressionLevel.None, - Ionic.Zlib.CompressionLevel.BestSpeed, - Ionic.Zlib.CompressionLevel.Default, - Ionic.Zlib.CompressionLevel.BestCompression, - }; - - Zip64Option[] z64 = - { - Zip64Option.Never, - Zip64Option.AsNecessary, - Zip64Option.Always, - }; - - - private Object LOCK = new Object(); - - - /// - /// Create 2 large zip64 zip files - one from DNZ, one from WinZip. Each - /// test that updates a zip file should use both. There are slight - /// differences between a zip from DNZ and one from WinZip, specifically - /// regarding metadata. These differences should be inconsequential for - /// updates of zips, and that is what some of the zip64 tests seek to - /// verify. - /// - private string[] _CreateHugeZipfiles() - { - string[] zipsToCreate = { "Zip64Test-createdBy-WZ.zip", - "Zip64Test-createdBy-DNZ.zip" }; - - // lock in case more than one test calls this at a time. - lock (LOCK) - { - TestContext.WriteLine("CreateHugeZipFiles"); - TestContext.WriteLine("Start - " + DateTime.Now.ToString("G")); - // STEP 1: - // look for existing directories, and re-use the large zip files - // there, if it exists, and if it is large enough. - string testDir = null; - var filesToAdd = new List(); - var oldDirs = Directory.GetDirectories(homeDir, "*.Zip64Tests"); - string zipFileToCreate = null; - List found = null; - - // first pass to check if any dirs, have both files, - // second pass to check if any dirs have one file plus fodder files. - for (int pass=0; pass < 2; pass++) - { - foreach (var dir in oldDirs) - { - found = new List(); - for (int m=0; m < zipsToCreate.Length; m++) - { - zipFileToCreate = Path.Combine(dir, zipsToCreate[m]); - if (File.Exists(zipFileToCreate)) - { - TestContext.WriteLine("File exists: {0}", zipFileToCreate); - FileInfo fi = new FileInfo(zipFileToCreate); - if (fi.Length < (long)System.UInt32.MaxValue) - { - TestContext.WriteLine("deleting file (too small): {0}", zipFileToCreate); - File.Delete(zipFileToCreate); - } - else found.Add(m); - } - } - - int fc = found.Count(); - switch (fc) - { - case 0: - case 1: - // check for fodder files - testDir = dir; - string fdir = Path.Combine(dir,"dir"); - if (Directory.Exists(fdir)) - { - var fodderFiles = Directory.GetFiles(fdir, "*.txt"); - if (fodderFiles == null || fodderFiles.Length <= 6) - try { Directory.Delete(dir, true); } catch { } - } - else try { Directory.Delete(dir, true); } catch { } - break; - case 2: - // found both large zips, so use them. - zipsToCreate[0] = Path.Combine(dir, zipsToCreate[0]); - zipsToCreate[1] = Path.Combine(dir, zipsToCreate[1]); - TestContext.WriteLine("Using the existing zips in: {0}", dir); - return zipsToCreate; - } - - if (pass == 1 && Directory.Exists(dir) && fc==1) - { - // on pass 2, take 1st dir with at least one zip - break; - } - } - } - - // remember the current directory so we can restore later - string originalDir = Directory.GetCurrentDirectory(); - // CurrentDir is the dir that holds the test temp directory (or directorIES) - Directory.SetCurrentDirectory(CurrentDir); - - if (!Directory.Exists(testDir)) - { - // create the dir if it does not exist - string pname = Path.GetFileName(TestUtilities.GenerateUniquePathname("Zip64Tests")); - testDir = Path.Combine(homeDir, pname); - Directory.CreateDirectory(testDir); - Directory.SetCurrentDirectory(testDir); - } - else - { - Directory.SetCurrentDirectory(testDir); - string fdir = Path.Combine(testDir,"dir"); - filesToAdd.AddRange(Directory.GetFiles(fdir, "*.txt")); - } - - TestContext.WriteLine("Creating new zip files..."); - - // create a huge ZIP64 archive with a true 64-bit offset. - _txrx = TestUtilities.StartProgressMonitor("Zip64_Setup", - "Zip64 Test Setup", - "Creating files"); - - //Directory.SetCurrentDirectory(testDir); - - // create a directory with some files in it, to zip - string dirToZip = "dir"; - Directory.CreateDirectory(dirToZip); - _txrx.Send("pb 0 step"); - System.Threading.Thread.Sleep(120); - _txrx.Send("bars 3"); - System.Threading.Thread.Sleep(220); - _txrx.Send("pb 0 max 4"); - System.Threading.Thread.Sleep(220); - int numFilesToAdd = _rnd.Next(4) + 7; - _txrx.Send("pb 1 max " + numFilesToAdd); - - // These params define the size range for the large, random text - // files that are created below. Creating files this size takes - // about 1 minute per file - _sizeBase = 0x16000000; - _sizeRandom = 0x20000000; - //_sizeBase = 0x160000; - //_sizeRandom = 0x200000; - if (filesToAdd.Count() == 0) - { - int n; - var buf = new byte[2048]; - for (int i = 0; i < numFilesToAdd; i++) - { - System.Threading.Thread.Sleep(220); - _txrx.Send("title Zip64 Create Huge Zip files"); // in case it was missed - System.Threading.Thread.Sleep(220); - int fnameLength = _rnd.Next(25) + 6; - string filename = TestUtilities.GenerateRandomName(fnameLength) + - ".txt"; - _txrx.Send(String.Format("status create {0} ({1}/{2})", filename, i+1, numFilesToAdd)); - int totalSize = _sizeBase + _rnd.Next(_sizeRandom); - System.Threading.Thread.Sleep(220); - _txrx.Send(String.Format("pb 2 max {0}", totalSize)); - System.Threading.Thread.Sleep(220); - _txrx.Send("pb 2 value 0"); - int writtenSoFar = 0; - int cycles = 0; - using (var input = new Ionic.Zip.Tests.Utilities.RandomTextInputStream(totalSize)) - { - using (var output = File.Create(Path.Combine(dirToZip,filename))) - { - while ((n = input.Read(buf,0,buf.Length)) > 0) - { - output.Write(buf,0,n); - writtenSoFar+=n; - cycles++; - if (cycles % 640 == 0) - { - _txrx.Send(String.Format("pb 2 value {0}", writtenSoFar)); - } - } - } - } - filesToAdd.Add(filename); - _txrx.Send("pb 1 step"); - } - } - - _txrx.Send("pb 0 step"); - System.Threading.Thread.Sleep(220); - _txrx.Send("pb 1 value 0"); - - // Add links to a few very large files into the same directory. We - // do this because creating such large files from nothing would take - // a very very long time. - if (CreateLinksToLargeFiles(dirToZip)) - return null; - - Directory.SetCurrentDirectory(testDir); // again - - if (found == null || !found.Contains(0)) - { - // create a zip file, using WinZip - // This will take 50 minutes or so, no progress updates possible. - System.Threading.Thread.Sleep(220); - _txrx.Send("title Zip64 Create Huge Zip files"); // in case it was missed - System.Threading.Thread.Sleep(220); - _txrx.Send("pb 2 value 0"); - zipFileToCreate = zipsToCreate[0]; - zipsToCreate[0] = Path.Combine(testDir, zipsToCreate[0]); - - // wzzip.exe will create a zip64 file automatically, as necessary. - // There is no explicit switch required. - // switches: - // -a add - // -r recurse - // -p store folder names - // -yx store extended timestamps - var sb1 = new System.Text.StringBuilder(); - sb1.Append("-a -p -r -yx \"") - .Append(zipFileToCreate) - .Append("\" \"") - .Append(dirToZip) - .Append("\" "); - - string args = sb1.ToString(); - System.Threading.Thread.Sleep(220); - _txrx.Send("status wzzip.exe " + args); - TestContext.WriteLine("Exec: wzzip {0}", args); - string wzzipOut = this.Exec(wzzip, args); - TestContext.WriteLine("Done with wzzip.exe"); - _txrx.Send("status wzzip.exe: Done"); - } - - if (found == null || !found.Contains(1)) - { - // Create a zip file using DotNetZip - // This will take 50 minutes or so. - // pb1 and pb2 will be set in the {Add,Save}Progress handlers - _txrx.Send("pb 0 step"); - System.Threading.Thread.Sleep(120); - _txrx.Send("status Saving the zip..."); - System.Threading.Thread.Sleep(120); - _txrx.Send(String.Format("pb 1 max {0}", numFilesToAdd + Directory.GetFiles(dirToZip).Length)); - _testTitle = "Zip64 Create Huge Zip files"; // used in Zip64_SaveProgress - _pb1Set = false; - zipFileToCreate = Path.Combine(testDir, zipsToCreate[1]); - zipsToCreate[1] = zipFileToCreate; - using (ZipFile zip = new ZipFile()) - { - zip.SaveProgress += Zip64SaveProgress; - zip.AddProgress += Zip64AddProgress; - zip.UpdateDirectory(dirToZip, ""); - foreach (var e in zip) - { - if (e.FileName.EndsWith(".pst") || - e.FileName.EndsWith(".ost") || - e.FileName.EndsWith(".zip")) - e.CompressionMethod = CompressionMethod.None; - } - - zip.UseZip64WhenSaving = Zip64Option.Always; - // use large buffer to speed up save for large files: - zip.BufferSize = 1024 * 756; - zip.CodecBufferSize = 1024 * 128; - zip.Save(zipFileToCreate); - } - } - - _txrx.Send("pb 0 step"); - System.Threading.Thread.Sleep(120); - - // Delete the fodder dir only if we have both zips. - // This is helpful when modifying or editing this method. - // With repeated runs you don't have to re-create all the data - // each time. - if (File.Exists(zipsToCreate[0]) && File.Exists(zipsToCreate[1])) - Directory.Delete(dirToZip, true); - - _txrx.Send("pb 0 step"); - System.Threading.Thread.Sleep(120); - - _txrx.Send("stop"); - - // restore the cwd: - Directory.SetCurrentDirectory(originalDir); - - TestContext.WriteLine("All done - " + - DateTime.Now.ToString("G")); - - return zipsToCreate; - } - } - - - - private bool CreateLinksToLargeFiles(string dirForLinks) - { - var candidates = from fi in (from fn in Directory.GetFiles(fodderDir) - select new FileInfo(fn)) - where fi.Length > 0x10000000 - orderby fi.Length descending - select fi; - - if (candidates.Count() < 3) - { - TestContext.WriteLine("Found {0} files, not enough to proceed.", - candidates.Count()); - return true; - } - TestContext.WriteLine("Found {0} large files, which seems enough to proceed.", - candidates.Count()); - - string current = Directory.GetCurrentDirectory(); - _txrx.Send("status Creating links"); - string subdir = Path.Combine(dirForLinks, "00-largelinks"); - if (Directory.Exists(subdir)) - Directory.Delete(subdir, true); - Directory.CreateDirectory(subdir); - Directory.SetCurrentDirectory(subdir); - var w = System.Environment.GetEnvironmentVariable("Windir"); - Assert.IsTrue(Directory.Exists(w), "%windir% does not exist ({0})", w); - var fsutil = Path.Combine(Path.Combine(w, "system32"), "fsutil.exe"); - Assert.IsTrue(File.Exists(fsutil), "fsutil.exe does not exist ({0})", fsutil); - string ignored; - Int64 totalLength = 0; - int cycle = 0; - const Int64 threshold = (long)(11L * 1024 * 1024 * 1024); - while (totalLength < threshold) - { - cycle++; - foreach (var fi in candidates) - { - string cmd = String.Format("hardlink create \"{0}-Copy{1}{2}\" \"{3}\"", - Path.GetFileNameWithoutExtension(fi.Name), - cycle, - Path.GetExtension(fi.Name), - Path.Combine(fodderDir,fi.Name)); - TestContext.WriteLine("Command: fsutil {0}", cmd); - _txrx.Send("status " + cmd); - TestUtilities.Exec_NoContext(fsutil, cmd, out ignored); - totalLength += fi.Length; - if (totalLength > threshold) - break; // enough - } - } - Directory.SetCurrentDirectory(current); - return false; - } - - - - - [TestMethod] - public void Zip64_Create() - { - Zip64Option[] Options = { Zip64Option.Always, - Zip64Option.Never, - Zip64Option.AsNecessary }; - for (int k = 0; k < Options.Length; k++) - { - string filename = null; - Directory.SetCurrentDirectory(TopLevelDir); - TestContext.WriteLine("\n\n==================Trial {0}...", k); - string zipFileToCreate = String.Format("Zip64_Create-{0}.zip", k); - - TestContext.WriteLine("Creating file {0}", zipFileToCreate); - TestContext.WriteLine(" ZIP64 option: {0}", Options[k].ToString()); - int entries = _rnd.Next(5) + 13; - var checksums = new Dictionary(); - using (ZipFile zip1 = new ZipFile()) - { - for (int i = 0; i < entries; i++) - { - if (_rnd.Next(2) == 1) - { - filename = Path.Combine(TopLevelDir, String.Format("Data{0}.bin", i)); - int filesize = _rnd.Next(44000) + 5000; - TestUtilities.CreateAndFillFileBinary(filename, filesize); - } - else - { - filename = Path.Combine(TopLevelDir, String.Format("Data{0}.txt", i)); - int filesize = _rnd.Next(44000) + 5000; - TestUtilities.CreateAndFillFileText(filename, filesize); - } - zip1.AddFile(filename, ""); - - var chk = TestUtilities.ComputeChecksum(filename); - checksums.Add(Path.GetFileName(filename), TestUtilities.CheckSumToString(chk)); - } - - zip1.UseZip64WhenSaving = Options[k]; - zip1.Comment = String.Format("This archive uses zip64 option: {0}", Options[k].ToString()); - zip1.Save(zipFileToCreate); - - if (Options[k] == Zip64Option.Always) - Assert.IsTrue(zip1.OutputUsedZip64.Value); - else if (Options[k] == Zip64Option.Never) - Assert.IsFalse(zip1.OutputUsedZip64.Value); - } - - BasicVerifyZip(zipFileToCreate); - - TestContext.WriteLine("---------------Reading {0}...", zipFileToCreate); - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - string extractDir = String.Format("extract{0}", k); - foreach (var e in zip2) - { - TestContext.WriteLine(" Entry: {0} c({1}) unc({2})", e.FileName, e.CompressedSize, e.UncompressedSize); - - e.Extract(extractDir); - filename = Path.Combine(extractDir, e.FileName); - string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(filename)); - Assert.IsTrue(checksums.ContainsKey(e.FileName), "Checksum is missing"); - Assert.AreEqual(checksums[e.FileName], actualCheckString, "Checksums for ({0}) do not match.", e.FileName); - TestContext.WriteLine(" Checksums match ({0}).\n", actualCheckString); - } - } - } - } - - - - [TestMethod] - public void Zip64_Convert() - { - string trialDescription = "Trial {0}/{1}: create archive as 'zip64={2}', then open it and re-save with 'zip64={3}'"; - Zip64Option[] z64a = { - Zip64Option.Never, - Zip64Option.Always, - Zip64Option.AsNecessary}; - - // ?? - for (int u = 0; u < 2; u++) - { - for (int m = 0; m < z64a.Length; m++) - { - for (int n = 0; n < z64a.Length; n++) - { - int k = m * z64a.Length + n; - - string filename = null; - Directory.SetCurrentDirectory(TopLevelDir); - TestContext.WriteLine("\n\n==================Trial {0}...", k); - - TestContext.WriteLine(trialDescription, k, (z64a.Length * z64a.Length) - 1, z64a[m], z64a[n]); - - string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Zip64_Convert-{0}.A.zip", k)); - - int entries = _rnd.Next(8) + 6; - //int entries = 2; - TestContext.WriteLine("Creating file {0}, zip64={1}, {2} entries", - Path.GetFileName(zipFileToCreate), z64a[m].ToString(), entries); - - var checksums = new Dictionary(); - using (ZipFile zip1 = new ZipFile()) - { - for (int i = 0; i < entries; i++) - { - if (_rnd.Next(2) == 1) - { - filename = Path.Combine(TopLevelDir, String.Format("Data{0}.bin", i)); - TestUtilities.CreateAndFillFileBinary(filename, _rnd.Next(44000) + 5000); - } - else - { - filename = Path.Combine(TopLevelDir, String.Format("Data{0}.txt", i)); - TestUtilities.CreateAndFillFileText(filename, _rnd.Next(44000) + 5000); - } - zip1.AddFile(filename, ""); - - var chk = TestUtilities.ComputeChecksum(filename); - checksums.Add(Path.GetFileName(filename), TestUtilities.CheckSumToString(chk)); - } - - TestContext.WriteLine("---------------Saving to {0} with Zip64={1}...", - Path.GetFileName(zipFileToCreate), z64a[m].ToString()); - zip1.UseZip64WhenSaving = z64a[m]; - zip1.Comment = String.Format("This archive uses Zip64Option={0}", z64a[m].ToString()); - zip1.Save(zipFileToCreate); - } - - - Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries, - "The Zip file has the wrong number of entries."); - - - string newFile = zipFileToCreate.Replace(".A.", ".B."); - using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) - { - TestContext.WriteLine("---------------Extracting {0} ...", - Path.GetFileName(zipFileToCreate)); - string extractDir = String.Format("extract-{0}-{1}.A", k, u); - foreach (var e in zip2) - { - TestContext.WriteLine(" {0} crc({1:X8}) c({2:X8}) unc({3:X8})", e.FileName, e.Crc, e.CompressedSize, e.UncompressedSize); - - e.Extract(extractDir); - filename = Path.Combine(extractDir, e.FileName); - string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(filename)); - Assert.IsTrue(checksums.ContainsKey(e.FileName), "Checksum is missing"); - Assert.AreEqual(checksums[e.FileName], actualCheckString, "Checksums for ({0}) do not match.", e.FileName); - } - - if (u==1) - { - TestContext.WriteLine("---------------Updating: Renaming an entry..."); - zip2[4].FileName += ".renamed"; - - string entriesToRemove = (_rnd.Next(2) == 0) ? "*.txt" : "*.bin"; - TestContext.WriteLine("---------------Updating: Removing {0} entries...", entriesToRemove); - zip2.RemoveSelectedEntries(entriesToRemove); - } - - TestContext.WriteLine("---------------Saving to {0} with Zip64={1}...", - Path.GetFileName(newFile), z64a[n].ToString()); - - zip2.UseZip64WhenSaving = z64a[n]; - zip2.Comment = String.Format("This archive uses Zip64Option={0}", z64a[n].ToString()); - zip2.Save(newFile); - } - - - - using (ZipFile zip3 = ZipFile.Read(newFile)) - { - TestContext.WriteLine("---------------Extracting {0} ...", - Path.GetFileName(newFile)); - string extractDir = String.Format("extract-{0}-{1}.B", k, u); - foreach (var e in zip3) - { - TestContext.WriteLine(" {0} crc({1:X8}) c({2:X8}) unc({3:X8})", e.FileName, e.Crc, e.CompressedSize, e.UncompressedSize); - - e.Extract(extractDir); - filename = Path.Combine(extractDir, e.FileName); - string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(filename)); - if (!e.FileName.EndsWith(".renamed")) - { - Assert.IsTrue(checksums.ContainsKey(e.FileName), "Checksum is missing"); - Assert.AreEqual(checksums[e.FileName], actualCheckString, "Checksums for ({0}) do not match.", e.FileName); - } - } - } - } - } - } - } - - - bool _pb2Set; - bool _pb1Set; - string _testTitle; - int _sizeBase; - int _sizeRandom; - int _numSaving; - int _totalToSave; - int _spCycles; - private void Zip64SaveProgress(object sender, SaveProgressEventArgs e) - { - string msg; - switch (e.EventType) - { - case ZipProgressEventType.Saving_Started: - _txrx.Send("status saving started..."); - _pb1Set = false; - _numSaving= 1; - break; - - case ZipProgressEventType.Saving_BeforeWriteEntry: - _txrx.Send(String.Format("status Compressing {0}", e.CurrentEntry.FileName)); - _spCycles = 0; - if (!_pb1Set) - { - _txrx.Send(String.Format("pb 1 max {0}", e.EntriesTotal)); - _pb1Set = true; - } - _totalToSave = e.EntriesTotal; - _pb2Set = false; - break; - - case ZipProgressEventType.Saving_EntryBytesRead: - _spCycles++; - if ((_spCycles % 128) == 0) - { - if (!_pb2Set) - { - _txrx.Send(String.Format("pb 2 max {0}", e.TotalBytesToTransfer)); - _pb2Set = true; - } - _txrx.Send(String.Format("status Saving entry {0}/{1} :: {2} :: {3}/{4}mb {5:N0}%", - _numSaving, _totalToSave, - e.CurrentEntry.FileName, - e.BytesTransferred/(1024*1024), e.TotalBytesToTransfer/(1024*1024), - ((double)e.BytesTransferred) / (0.01 * e.TotalBytesToTransfer))); - msg = String.Format("pb 2 value {0}", e.BytesTransferred); - _txrx.Send(msg); - } - break; - - case ZipProgressEventType.Saving_AfterWriteEntry: - _txrx.Send("test " + _testTitle); // just in case it was missed - _txrx.Send("pb 1 step"); - _numSaving++; - break; - - case ZipProgressEventType.Saving_Completed: - _txrx.Send("status Save completed"); - _pb1Set = false; - _pb2Set = false; - _txrx.Send("pb 1 max 1"); - _txrx.Send("pb 1 value 1"); - break; - } - } - - - - void Zip64AddProgress(object sender, AddProgressEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Adding_Started: - _txrx.Send("status Adding files to the zip..."); - break; - case ZipProgressEventType.Adding_AfterAddEntry: - _txrx.Send(String.Format("status Adding file {0}", - e.CurrentEntry.FileName)); - break; - case ZipProgressEventType.Adding_Completed: - _txrx.Send("status Added all files"); - break; - } - } - - - - private int _numExtracted; - private int _epCycles; - private int _numFilesToExtract; - void Zip64ExtractProgress(object sender, ExtractProgressEventArgs e) - { - switch (e.EventType) - { - case ZipProgressEventType.Extracting_BeforeExtractEntry: - if (!_pb1Set) - { - _txrx.Send(String.Format("pb 1 max {0}", _numFilesToExtract)); - _pb1Set = true; - } - _pb2Set = false; - _epCycles = 0; - break; - - case ZipProgressEventType.Extracting_EntryBytesWritten: - _epCycles++; - if ((_epCycles % 512) == 0) - { - if (!_pb2Set) - { - _txrx.Send(String.Format("pb 2 max {0}", e.TotalBytesToTransfer)); - _pb2Set = true; - } - _txrx.Send(String.Format("status {0} entry {1}/{2} :: {3} :: {4}/{5}mb :: {6:N0}%", - verb, - _numExtracted, _numFilesToExtract, - e.CurrentEntry.FileName, - e.BytesTransferred/(1024*1024), - e.TotalBytesToTransfer/(1024*1024), - ((double)e.BytesTransferred) / (0.01 * e.TotalBytesToTransfer) - )); - string msg = String.Format("pb 2 value {0}", e.BytesTransferred); - _txrx.Send(msg); - } - break; - - case ZipProgressEventType.Extracting_AfterExtractEntry: - _numExtracted++; - if (_numFilesToExtract < 1024 || (_numExtracted % 128) == 0) - { - _txrx.Send("test " + _testTitle); // just in case it was missed - while (_numExtracted > _numFilesToExtract) _numExtracted--; - _txrx.Send("pb 1 value " + _numExtracted); - if (_numExtracted == _numFilesToExtract) - { - _txrx.Send("status All done " + verb); - } - else - { - _txrx.Send(String.Format("status {0} entry {1}/{2} {3:N0}%", - verb, - _numExtracted, _numFilesToExtract, - _numExtracted / (0.01 *_numFilesToExtract))); - } - } - break; - } - } - - - - string verb; - - private void Zip64VerifyZip(string zipfile) - { - _pb1Set = false; - Stream bitBucket = Stream.Null; - TestContext.WriteLine(""); - TestContext.WriteLine("Checking file {0}", zipfile); - verb = "Verifying"; - using (ZipFile zip = ZipFile.Read(zipfile)) - { - // large buffer better for large files - zip.BufferSize = 65536*4; // 65536 * 8 = 512k - _numFilesToExtract = zip.Entries.Count; - _numExtracted= 1; - zip.ExtractProgress += Zip64ExtractProgress; - foreach (var s in zip.EntryFileNames) - { - TestContext.WriteLine(" Entry: {0}", s); - zip[s].Extract(bitBucket); - } - } - System.Threading.Thread.Sleep(0x500); - } - - - - [Timeout(3 * 60*60*1000), TestMethod] // 60*60*1000 = 1hr - public void Zip64_Update_WZ() - { - // this should take about an hour - string[] zipFilesToUpdate = GetHugeZipFiles(); - Assert.IsFalse(zipFilesToUpdate == null, "No files were created."); - // this should take a little less than an hour - Zip64UpdateAddFiles(zipFilesToUpdate[0], "WinZip"); - } - - - [Timeout(3 * 60*60*1000), TestMethod] // 60*60*1000 = 1hr - public void Zip64_Update_DNZ() - { - // this should take about an hour - string[] zipFilesToUpdate = GetHugeZipFiles(); - Assert.IsFalse(zipFilesToUpdate == null, "No files were created."); - // this should take a little less than an hour - Zip64UpdateAddFiles(zipFilesToUpdate[1], "DNZ"); - } - - - private void Zip64UpdateAddFiles(string zipFileToUpdate, string marker) - { - _txrx = TestUtilities.StartProgressMonitor("Zip64-Update", - "Zip64 Update - " + marker, - "Starting up..."); - - int numUpdates = 2; - int baseSize = _rnd.Next(0x1000ff) + 80000; - System.Threading.Thread.Sleep(120); - // pb 0: numUpdates + before+after verify steps - _txrx.Send( String.Format("pb 0 max {0}", numUpdates + 2)); - string workingZipFile = "Z64Update." + marker + ".zip"; - _testTitle = "Zip64 Update - " + marker + " - initial verify"; - _txrx.Send("pb 0 value 0"); - Assert.IsTrue(File.Exists(zipFileToUpdate), - "The required ZIP file does not exist ({0})", - zipFileToUpdate); - - // make sure the zip is larger than the 4.2gb size - FileInfo fi = new FileInfo(zipFileToUpdate); - Assert.IsTrue(fi.Length > (long)System.UInt32.MaxValue, - "The zip file ({0}) is not large enough.", - zipFileToUpdate); - - // this usually takes 10-12 minutes - TestContext.WriteLine("Verifying the zip - " + - DateTime.Now.ToString("G")); - _txrx.Send("status Verifying the zip"); - Zip64VerifyZip(zipFileToUpdate); - - _txrx.Send("pb 0 value 1"); - - var sw = new StringWriter(); - for (int j=0; j < numUpdates; j++) - { - _testTitle = String.Format("Zip64 Update - {0} - ({1}/{2})", - marker, j+1, numUpdates); - _pb1Set = false; - System.Threading.Thread.Sleep(220); - _txrx.Send("test " + _testTitle); - // create another folder with a single file in it - string subdir = String.Format("newfolder-{0}", j); - Directory.CreateDirectory(subdir); - string fileName = Path.Combine(subdir, - System.Guid.NewGuid().ToString() + ".txt"); - long size = baseSize + _rnd.Next(28000); - TestUtilities.CreateAndFillFileText(fileName, size); - - TestContext.WriteLine(""); - TestContext.WriteLine("Updating the zip file, cycle {0}...{1}", - j, DateTime.Now.ToString("G")); - _txrx.Send("status Updating the zip file..."); - // update the zip with that new folder+file - // will take a long time for large files - using (ZipFile zip = ZipFile.Read(zipFileToUpdate)) - { - zip.SaveProgress += Zip64SaveProgress; - zip.StatusMessageTextWriter = sw; - zip.UpdateDirectory(subdir, subdir); - zip.UseZip64WhenSaving = Zip64Option.Always; - zip.BufferSize = 65536*8; // 65536 * 8 = 512k - zip.Save(workingZipFile); - } - - TestContext.WriteLine("Save complete " + - DateTime.Now.ToString("G")); - zipFileToUpdate = workingZipFile; // for subsequent updates - // emit status into the log if available - string status = sw.ToString(); - if (status != null && status != "") - { - var lines = status.Split('\n'); - TestContext.WriteLine("status: (" - + DateTime.Now.ToString("G") + ")"); - foreach (string line in lines) - TestContext.WriteLine(line); - } - - _txrx.Send("pb 0 value " + (j+2)); - } - - System.Threading.Thread.Sleep(120); - - // make sure the zip is larger than the 4.2gb size - fi = new FileInfo(workingZipFile); - Assert.IsTrue(fi.Length > (long)System.UInt32.MaxValue, - "The zip file ({0}) is not large enough.", - workingZipFile); - - TestContext.WriteLine(""); - TestContext.WriteLine("Verifying the zip again... " + - DateTime.Now.ToString("G")); - _txrx.Send("status Verifying the zip again..."); - _testTitle = String.Format("Zip64 Update - {0} - final verify", - marker); - _pb1Set = false; - System.Threading.Thread.Sleep(220); - _txrx.Send("test " + _testTitle); - Zip64VerifyZip(workingZipFile); - - _txrx.Send( String.Format("pb 0 value {0}", numUpdates + 1)); - } - - - - [TestMethod] - public void Zip64_Winzip_Unzip_OneFile() - { - string testBin = TestUtilities.GetTestBinDir(CurrentDir); - string fileToZip = Path.Combine(testBin, "DotNetZip.dll"); - - Directory.SetCurrentDirectory(TopLevelDir); - - for (int p=0; p < compLevels.Length; p++) - { - for (int n=0; n < crypto.Length; n++) - { - for (int m=0; m < z64.Length; m++) - { - string zipFile = String.Format("WZ-Unzip.OneFile.{0}.{1}.{2}.zip", - compLevels[p].ToString(), - crypto[n].ToString(), - z64[m].ToString()); - string password = Path.GetRandomFileName(); - - TestContext.WriteLine("================================="); - TestContext.WriteLine("Creating {0}...", Path.GetFileName(zipFile)); - TestContext.WriteLine("Encryption:{0} Zip64:{1} pw={2} compLevel={3}", - crypto[n].ToString(), z64[m].ToString(), password, compLevels[p].ToString()); - - using (var zip = new ZipFile()) - { - zip.Comment = String.Format("Encryption={0} Zip64={1} pw={2}", - crypto[n].ToString(), z64[m].ToString(), password); - zip.Encryption = crypto[n]; - zip.Password = password; - zip.CompressionLevel = compLevels[p]; - zip.UseZip64WhenSaving = z64[m]; - zip.AddFile(fileToZip, "file"); - zip.Save(zipFile); - } - - TestContext.WriteLine("Unzipping with WinZip..."); - - string extractDir = String.Format("extract.{0}.{1}.{2}",p,n,m); - Directory.CreateDirectory(extractDir); - - // this will throw if the command has a non-zero exit code. - this.Exec(wzunzip, - String.Format("-s{0} -d {1} {2}\\", password, zipFile, extractDir)); - } - } - } - } - - - - [Timeout((int)(1 * 60*60*1000)), TestMethod] // in milliseconds. - public void Zip64_Winzip_Unzip_Huge() - { - string[] zipFilesToExtract = GetHugeZipFiles(); // may take a long time - int baseSize = _rnd.Next(0x1000ff) + 80000; - - _txrx = TestUtilities.StartProgressMonitor("Zip64-WinZip-Unzip", - "Zip64 WinZip unzip Huge", - "Setting up..."); - - string extractDir = "extract"; - Directory.SetCurrentDirectory(TopLevelDir); - Directory.CreateDirectory(extractDir); - - _txrx.Send("pb 0 max " + zipFilesToExtract.Length); - - for (int k=0; k < zipFilesToExtract.Length; k++) - { - string zipFileToExtract = zipFilesToExtract[k]; - Assert.IsTrue(File.Exists(zipFileToExtract), - "required ZIP file does not exist ({0})", - zipFileToExtract); - - System.Threading.Thread.Sleep(120); - _txrx.Send("pb 1 max 3"); - System.Threading.Thread.Sleep(120); - _txrx.Send("pb 1 value 0"); - - // make sure the zip is larger than the 4.2gb size - FileInfo fi = new FileInfo(zipFileToExtract); - Assert.IsTrue(fi.Length > (long)System.UInt32.MaxValue, - "The zip file ({0}) is not large enough.", - zipFileToExtract); - - _txrx.Send("pb 1 step"); - _txrx.Send("status Counting entries in the zip file..."); - - int numEntries = TestUtilities.CountEntries(zipFileToExtract); - - _txrx.Send("status Using WinZip to list the entries..."); - - // Examine and unpack the zip archive via WinZip - // first, examine the zip entry metadata: - string wzzipOut = this.Exec(wzzip, "-vt " + zipFileToExtract); - TestContext.WriteLine(wzzipOut); - - int x = 0; - int y = 0; - int wzzipEntryCount=0; - string textToLookFor= "Filename: "; - TestContext.WriteLine("================"); - TestContext.WriteLine("Files listed by WinZip:"); - while (true) - { - x = wzzipOut.IndexOf(textToLookFor, y); - if (x < 0) break; - y = wzzipOut.IndexOf("\n", x); - string name = wzzipOut.Substring(x + textToLookFor.Length, y-x-1).Trim(); - TestContext.WriteLine(" {0}", name); - if (!name.EndsWith("\\")) - { - wzzipEntryCount++; - if (wzzipEntryCount > numEntries * 3) throw new Exception("too many entries!"); - } - } - - TestContext.WriteLine("================"); - Assert.AreEqual(numEntries, wzzipEntryCount, - "Unexpected number of entries found by WinZip."); - - _txrx.Send("pb 1 step"); - System.Threading.Thread.Sleep(120); - - _txrx.Send(String.Format("pb 1 max {0}", numEntries*2)); - x=0; y = 0; - _txrx.Send("status Extracting the entries..."); - int nCycles = 0; - while (true) - { - _txrx.Send("test Zip64 WinZip unzip - " + - Path.GetFileName(zipFileToExtract)); - x = wzzipOut.IndexOf(textToLookFor, y); - if (x < 0) break; - if (nCycles > numEntries * 4) throw new Exception("too many entries?"); - y = wzzipOut.IndexOf("\n", x); - string name = wzzipOut.Substring(x + textToLookFor.Length, y-x-1).Trim(); - if (!name.EndsWith("\\")) - { - nCycles++; - _txrx.Send(String.Format("status Extracting {1}/{2} :: {0}", name, nCycles, wzzipEntryCount)); - this.Exec(wzunzip, - String.Format("-d {0} {1}\\ \"{2}\"", - Path.GetFileName(zipFileToExtract), - extractDir, name)); - string path = Path.Combine(extractDir, name); - _txrx.Send("pb 1 step"); - Assert.IsTrue(File.Exists(path), "extracted file ({0}) does not exist", path); - File.Delete(path); - System.Threading.Thread.Sleep(120); - _txrx.Send("pb 1 step"); - } - } - - _txrx.Send("pb 0 step"); - System.Threading.Thread.Sleep(120); - } - } - - - - - private void CreateLargeFiles(int numFilesToAdd, int baseSize, string dir) - { - bool firstFileDone = false; - string fileName = ""; - long fileSize = 0; - - _txrx.Send(String.Format("pb 1 max {0}", numFilesToAdd)); - - Action progressUpdate = (x) => - { - _txrx.Send(String.Format("pb 2 value {0}", x)); - _txrx.Send(String.Format("status Creating {0}, [{1}/{2}] ({3:N0}%)", - fileName, x, fileSize, ((double)x)/ (0.01 * fileSize) )); - }; - - // It takes some time to create a large file. And we need - // a bunch of them. - for (int i = 0; i < numFilesToAdd; i++) - { - // randomly select binary or text - int n = _rnd.Next(2); - fileName = string.Format("Pippo{0}.{1}", i, (n==0) ? "bin" : "txt" ); - if (i != 0) - { - int x = _rnd.Next(6); - if (x != 0) - { - string folderName = string.Format("folder{0}", x); - fileName = Path.Combine(folderName, fileName); - if (!Directory.Exists(Path.Combine(dir, folderName))) - Directory.CreateDirectory(Path.Combine(dir, folderName)); - } - } - fileName = Path.Combine(dir, fileName); - // first file is 2x larger - fileSize = (firstFileDone) ? (baseSize + _rnd.Next(0x880000)) : (2*baseSize); - _txrx.Send(String.Format("pb 2 max {0}", fileSize)); - if (n==0) - TestUtilities.CreateAndFillFileBinary(fileName, fileSize, progressUpdate); - else - TestUtilities.CreateAndFillFileText(fileName, fileSize, progressUpdate); - firstFileDone = true; - _txrx.Send("pb 1 step"); - } - } - - - - [Timeout((int)(4 * 60*60*1000)), TestMethod] // 60*60*1000 == 1 hr - public void Zip64_Winzip_Zip_Huge() - { - // This TestMethod tests if DNZ can read a huge (>4.2gb) zip64 file - // created by winzip. - int baseSize = _rnd.Next(80000) + 0x1000ff; - _txrx = TestUtilities.StartProgressMonitor("Zip64-WinZip-Zip-Huge", - "Zip64_Winzip_Zip_Huge()", - "Creating links"); - string contentDir = "fodder"; - //Directory.SetCurrentDirectory(TopLevelDir); - Directory.CreateDirectory(contentDir); - - _txrx.Send("pb 0 max 5"); - - if (CreateLinksToLargeFiles(contentDir)) - return; - - TestContext.WriteLine("Creating large files..." + - DateTime.Now.ToString("G")); - - CreateLargeFiles(_rnd.Next(4) + 4, baseSize, contentDir); - _txrx.Send("pb 0 step"); - - TestContext.WriteLine("Creating a new Zip with winzip - " + - DateTime.Now.ToString("G")); - - var fileList = Directory.GetFiles(contentDir, "*.*", SearchOption.AllDirectories); - - // create a zip archive via WinZip - string wzzipOut= null; - string zipFileToCreate = "Zip64-WinZip-Zip-Huge.zip"; - int nCycles= 0; - _txrx.Send(String.Format("pb 1 max {0}", fileList.Length)); - System.Threading.Thread.Sleep(120); - _txrx.Send("pb 2 value 0"); - - // Add one file at a time, invoking wzzip.exe for each. After it - // completes, delete the just-added file. This allows coarse-grained - // status updates in the progress window. Not sure about the exact - // impact on disk space, or execution time; my observation is that the - // time-cost to add one entry increases, as the zip file gets - // larger. Each successive cycle takes a little longer. It's tolerable - // I guess. A tradeoff to get visual progress feedback. - foreach (var filename in fileList) - { - nCycles++; - _txrx.Send(String.Format("status wzzip.exe adding {0}...({1}/{2})", filename, nCycles, fileList.Length+1)); - wzzipOut = this.Exec(wzzip, String.Format("-a -p -r -yx \"{0}\" \"{1}\"", - zipFileToCreate, - filename)); - TestContext.WriteLine(wzzipOut); - _txrx.Send("pb 1 step"); - System.Threading.Thread.Sleep(420); - File.Delete(filename); - } - - // Create one additional small text file and add it to the zip. For - // this test, it must be added last, at the end of the ZIP file. - TestContext.WriteLine("Inserting one additional file with wzzip.exe - " + - DateTime.Now.ToString("G")); - nCycles++; - var newfile = Path.Combine(contentDir, "zzz-" + Path.GetRandomFileName() + ".txt"); - _txrx.Send(String.Format("status adding {0}...({1}/{2})", newfile, nCycles, fileList.Length+1)); - int filesize = _rnd.Next(50000) + 440000; - TestUtilities.CreateAndFillFileText(newfile, filesize); - wzzipOut = this.Exec(wzzip, String.Format("-a -p -r -yx \"{0}\" \"{1}\"", zipFileToCreate, newfile)); - TestContext.WriteLine(wzzipOut); - _txrx.Send("pb 1 step"); - System.Threading.Thread.Sleep(120); - File.Delete(newfile); - - _txrx.Send("pb 0 step"); - System.Threading.Thread.Sleep(120); - - // make sure the zip is larger than the 4.2gb size - FileInfo fi = new FileInfo(zipFileToCreate); - Assert.IsTrue(fi.Length > (long)System.UInt32.MaxValue, - "The zip file ({0}) is not large enough.", - zipFileToCreate); - - // Now use DotNetZip to extract the large zip file to the bit bucket. - TestContext.WriteLine("Verifying the new Zip with DotNetZip - " + - DateTime.Now.ToString("G")); - _txrx.Send("status Verifying the zip"); - verb = "verifying"; - _testTitle = "Zip64 Winzip Zip Huge - final verify"; - Zip64VerifyZip(zipFileToCreate); - - _txrx.Send("pb 0 step"); - System.Threading.Thread.Sleep(120); - } - - [TestMethod] - public void Zip64_ExtractZip64Archives() - { - File.Delete(@"C:\tmp\test.zip"); - File.WriteAllText(@"C:\tmp\content.txt", "someContent"); - - using (ZipFile zipFile = new ZipFile(@"C:\tmp\test.zip")) - { - zipFile.AddFile(@"C:\tmp\content.txt"); - - zipFile.UseZip64WhenSaving = Zip64Option.Always; - zipFile.MaxOutputSegmentSize = 700 * 984540; - zipFile.Save(); - } - - var extractedZipFile = ZipFile.Read(@"C:\tmp\test.zip"); - extractedZipFile.ExtractAll(@"C:\tmp\extracted", ExtractExistingFileAction.OverwriteSilently); - } - - [TestMethod, Timeout((int)(2 * 60*60*1000))] // 60*60*1000 = 1 hr - public void Zip64_Winzip_Setup() - { - // Not really a test. This thing just sets up the big zip file. - TestContext.WriteLine("This test merely checks for existence of two large zip"); - TestContext.WriteLine("files, in a well-known place, and creates them as"); - TestContext.WriteLine("necessary. The zips are then used by other tests."); - TestContext.WriteLine(" "); - GetHugeZipFiles(); // usually takes about an hour - } - - - private void EmitStatus(String s) - { - TestContext.WriteLine("status:"); - foreach (string line in s.Split('\n')) - TestContext.WriteLine(line); - } - - - [TestMethod, Timeout(1 * 60*60*1000)] - public void Zip64_Over_4gb() - { - Int64 desiredSize= System.UInt32.MaxValue; - desiredSize+= System.Int32.MaxValue/4; - desiredSize+= _rnd.Next(0x1000000); - _testTitle = "Zip64 Create/Zip/Extract a file > 4.2gb"; - - _txrx = TestUtilities.StartProgressMonitor("Zip64-Over-4gb", - _testTitle, - "starting up..."); - - string zipFileToCreate = Path.Combine(TopLevelDir, "Zip64_Over_4gb.zip"); - Directory.SetCurrentDirectory(TopLevelDir); - string nameOfFodderFile="VeryVeryLargeFile.txt"; - string nameOfExtractedFile = nameOfFodderFile + ".extracted"; - - // Steps in this test: 4 - _txrx.Send("pb 0 max 4"); - - TestContext.WriteLine(""); - TestContext.WriteLine("Creating a large file..." + - DateTime.Now.ToString("G")); - - // create a very large file - Action progressUpdate = (x) => - { - _txrx.Send(String.Format("pb 1 value {0}", x)); - _txrx.Send(String.Format("status Creating {0}, [{1}/{2}mb] ({3:N0}%)", - nameOfFodderFile, - x/(1024*1024), - desiredSize/(1024*1024), - ((double)x)/ (0.01 * desiredSize))); - }; - - // This takes a few minutes... - _txrx.Send(String.Format("pb 1 max {0}", desiredSize)); - TestUtilities.CreateAndFillFileText(nameOfFodderFile, - desiredSize, - progressUpdate); - - // make sure it is larger than 4.2gb - FileInfo fi = new FileInfo(nameOfFodderFile); - Assert.IsTrue(fi.Length > (long)System.UInt32.MaxValue, - "The fodder file ({0}) is not large enough.", - nameOfFodderFile); - - TestContext.WriteLine(""); - TestContext.WriteLine("computing checksum..." + - DateTime.Now.ToString("G")); - _txrx.Send("status computing checksum..."); - var chk1 = TestUtilities.ComputeChecksum(nameOfFodderFile); - - _txrx.Send("pb 0 step"); - - var sw = new StringWriter(); - using (var zip = new ZipFile()) - { - zip.StatusMessageTextWriter = sw; - zip.UseZip64WhenSaving = Zip64Option.Always; - zip.BufferSize = 65536*8; // 65536 * 8 = 512k - zip.SaveProgress += Zip64SaveProgress; - var e = zip.AddFile(nameOfFodderFile, ""); - _txrx.Send("status Saving......"); - TestContext.WriteLine("zipping one file......" + - DateTime.Now.ToString("G")); - zip.Save(zipFileToCreate); - } - - EmitStatus(sw.ToString()); - - File.Delete(nameOfFodderFile); - TestContext.WriteLine(""); - TestContext.WriteLine("Extracting the zip..." + - DateTime.Now.ToString("G")); - _txrx.Send("status Extracting the file..."); - _txrx.Send("pb 0 step"); - - var options = new ReadOptions { StatusMessageWriter= new StringWriter() }; - verb = "Extracting"; - _pb1Set = false; - using (var zip = ZipFile.Read(zipFileToCreate, options)) - { - Assert.AreEqual(1, zip.Entries.Count, - "Incorrect number of entries in the zip file"); - zip.ExtractProgress += Zip64ExtractProgress; - _numFilesToExtract = zip.Entries.Count; - _numExtracted= 1; - ZipEntry e = zip[0]; - e.FileName = nameOfExtractedFile; - _txrx.Send("status extracting......"); - e.Extract(); - } - - EmitStatus(options.StatusMessageWriter.ToString()); - _txrx.Send("pb 0 step"); - System.Threading.Thread.Sleep(120); - - TestContext.WriteLine(""); - TestContext.WriteLine("computing checksum..." + - DateTime.Now.ToString("G")); - _txrx.Send("status computing checksum..."); - var chk2 = TestUtilities.ComputeChecksum(nameOfExtractedFile); - Assert.AreEqual(TestUtilities.CheckSumToString(chk1), - TestUtilities.CheckSumToString(chk2), - "Checksum mismatch"); - _txrx.Send("pb 0 step"); - } - - - [TestMethod, Timeout(1 * 60*60*1000)] - public void Z64_ManyEntries_NoEncryption_DefaultCompression_AsNecessary() - { - _Zip64_Over65534Entries(Zip64Option.AsNecessary, EncryptionAlgorithm.None, Ionic.Zlib.CompressionLevel.Default); - } - - [TestMethod, Timeout(1 * 60*60*1000)] - public void Z64_ManyEntries_PkZipEncryption_DefaultCompression_AsNecessary() - { - _Zip64_Over65534Entries(Zip64Option.AsNecessary, EncryptionAlgorithm.PkzipWeak, Ionic.Zlib.CompressionLevel.Default); - } - - [TestMethod, Timeout(2 * 60*60*1000)] - public void Z64_ManyEntries_WinZipEncryption_DefaultCompression_AsNecessary() - { - _Zip64_Over65534Entries(Zip64Option.AsNecessary, EncryptionAlgorithm.WinZipAes256, Ionic.Zlib.CompressionLevel.Default); - } - - - [TestMethod, Timeout(1 * 60*60*1000)] - public void Z64_ManyEntries_NoEncryption_DefaultCompression_Always() - { - _Zip64_Over65534Entries(Zip64Option.Always, EncryptionAlgorithm.None, Ionic.Zlib.CompressionLevel.Default); - } - - [TestMethod, Timeout(1 * 60*60*1000)] - public void Z64_ManyEntries_PkZipEncryption_DefaultCompression_Always() - { - _Zip64_Over65534Entries(Zip64Option.Always, EncryptionAlgorithm.PkzipWeak, Ionic.Zlib.CompressionLevel.Default); - } - - [TestMethod, Timeout(2 * 60*60*1000)] - public void Z64_ManyEntries_WinZipEncryption_DefaultCompression_Always() - { - _Zip64_Over65534Entries(Zip64Option.Always, EncryptionAlgorithm.WinZipAes256, Ionic.Zlib.CompressionLevel.Default); - } - - - - - [TestMethod, Timeout(30 * 60*1000)] - [ExpectedException(typeof(Ionic.Zip.ZipException))] - public void Z64_ManyEntries_NOZIP64() - { - _Zip64_Over65534Entries(Zip64Option.Never, EncryptionAlgorithm.None, Ionic.Zlib.CompressionLevel.Default); - } - - - void _Zip64_Over65534Entries(Zip64Option z64option, - EncryptionAlgorithm encryption, - Ionic.Zlib.CompressionLevel compression) - { - // Emitting a zip file with > 65534 entries requires the use of ZIP64 in - // the central directory. - int numTotalEntries = _rnd.Next(4616)+65534; - //int numTotalEntries = _rnd.Next(461)+6534; - //int numTotalEntries = _rnd.Next(46)+653; - string enc = encryption.ToString(); - if (enc.StartsWith("WinZip")) enc = enc.Substring(6); - else if (enc.StartsWith("Pkzip")) enc = enc.Substring(0,5); - string zipFileToCreate = String.Format("Zip64.ZF_Over65534.{0}.{1}.{2}.zip", - z64option.ToString(), - enc, - compression.ToString()); - - _testTitle = String.Format("ZipFile #{0} 64({1}) E({2}), C({3})", - numTotalEntries, - z64option.ToString(), - enc, - compression.ToString()); - _txrx = TestUtilities.StartProgressMonitor(zipFileToCreate, - _testTitle, - "starting up..."); - - _txrx.Send("pb 0 max 4"); // 3 stages: AddEntry, Save, Verify - _txrx.Send("pb 0 value 0"); - - string password = Path.GetRandomFileName(); - - string statusString = String.Format("status Encrypt:{0} Compress:{1}...", - enc, - compression.ToString()); - - int numSaved = 0; - var saveProgress = new EventHandler( (sender, e) => { - switch (e.EventType) - { - case ZipProgressEventType.Saving_Started: - _txrx.Send("status saving..."); - _txrx.Send("pb 1 max " + numTotalEntries); - numSaved= 0; - break; - - case ZipProgressEventType.Saving_AfterWriteEntry: - numSaved++; - if ((numSaved % 128) == 0) - { - _txrx.Send("pb 1 value " + numSaved); - _txrx.Send(String.Format("status Saving entry {0}/{1} ({2:N0}%)", - numSaved, numTotalEntries, - numSaved / (0.01 * numTotalEntries) - )); - } - break; - - case ZipProgressEventType.Saving_Completed: - _txrx.Send("status Save completed"); - _txrx.Send("pb 1 max 1"); - _txrx.Send("pb 1 value 1"); - break; - } - }); - - string contentFormatString = - "This is the content for entry #{0}.\r\n\r\n" + - "AAAAAAA BBBBBB AAAAA BBBBB AAAAA BBBBB AAAAA\r\n"+ - "AAAAAAA BBBBBB AAAAA BBBBB AAAAA BBBBB AAAAA\r\n"; - _txrx.Send(statusString); - int dirCount= 0; - using (var zip = new ZipFile()) - { - _txrx.Send(String.Format("pb 1 max {0}", numTotalEntries)); - _txrx.Send("pb 1 value 0"); - - zip.Password = password; - zip.Encryption = encryption; - zip.CompressionLevel = compression; - zip.SaveProgress += saveProgress; - zip.UseZip64WhenSaving = z64option; - // save space when saving the file: - zip.EmitTimesInWindowsFormatWhenSaving = false; - zip.EmitTimesInUnixFormatWhenSaving = false; - - // add files: - for (int m=0; m(numTotalEntries-dirCount, - TestUtilities.CountEntries(zipFileToCreate)); - _txrx.Send("pb 0 step"); - } - - - - [Timeout(3 * 60*60*1000), TestMethod] // 60*60*1000 = 1 hr - public void Zip64_UpdateEntryComment_wi9214_WZ() - { - // Should take 2.5 hrs when creating the huge files, about 1 hr when the - // files already exist. - string[] zipFilesToUpdate = GetHugeZipFiles(); - Assert.IsTrue(File.Exists(zipFilesToUpdate[0]), - "The required ZIP file does not exist ({0})", - zipFilesToUpdate[0]); - Z64UpdateHugeZipWithComment(zipFilesToUpdate[0], "WinZip"); - } - - [Timeout(3 * 60*60*1000), TestMethod] // 60*60*1000 = 1 hr - public void Zip64_UpdateEntryComment_wi9214_DNZ() - { - // Should take 2.5 hrs when creating the huge files, about 1 hr when the - // files already exist. - string[] zipFilesToUpdate = GetHugeZipFiles(); - Assert.IsTrue(File.Exists(zipFilesToUpdate[1]), - "The required ZIP file does not exist ({0})", - zipFilesToUpdate[1]); - Z64UpdateHugeZipWithComment(zipFilesToUpdate[1], "DNZ"); - } - - - void Z64UpdateHugeZipWithComment(string zipFileToUpdate, string marker) - { - // Test whether opening a huge zip64 file and then re-saving, allows the - // file to remain valid. Must use a huge zip64 file over 4gb in order - // to verify this, and at least one entry must be > 4gb uncompressed. - // Want to check that UseZip64WhenSaving is automatically selected as - // appropriate. - string zipFileToCreate = "update-huge-zip.zip"; - - string newComment = "This is an updated comment on the first entry"+ - "in the zip that is larger than 4gb. (" + - DateTime.Now.ToString("u") +")"; - - // start the progress monitor - _txrx = TestUtilities.StartProgressMonitor("Zip64-update", - "Zip64 update", - "Checking file..."); - - // make sure the zip is larger than the 4.2gb size - FileInfo fi = new FileInfo(zipFileToUpdate); - Assert.IsTrue(fi.Length > (long)System.UInt32.MaxValue, - "The zip file ({0}) is not large enough.", - zipFileToUpdate); - TestContext.WriteLine("Verifying the zip file..." + - DateTime.Now.ToString("G")); - System.Threading.Thread.Sleep(220); - _txrx.Send("status Verifying the zip"); - System.Threading.Thread.Sleep(220); - _txrx.Send("title Zip64 Update Entry Comment wi9214"); - - // According to workitem 9214, the comment must be modified - // on an entry that is larger than 4gb (uncompressed). - // Check that here. - using (ZipFile zip = ZipFile.Read(zipFileToUpdate)) - { - ZipEntry bigEntry = null; - foreach (var e2 in zip) - { - if (e2.UncompressedSize > (long)System.UInt32.MaxValue) - { - bigEntry = e2; - break; - } - } - Assert.IsTrue(bigEntry != null && - bigEntry.UncompressedSize > (long)System.UInt32.MaxValue, - "Minimum size constraint not met."); - } - - // Verify the zip is correct, can be extracted. - // This will take some time for a large zip. - // (+1 to _numFilesToExtract for the directory) - _numFilesToExtract = TestUtilities.CountEntries(zipFileToUpdate) + 1; - _numExtracted= 1; - verb = "extract"; - _pb1Set = false; - - // _testTitle is used in Zip64{Save,Extract}Progress - _testTitle = "Zip64 Update Entry Comment - " + marker; - - var extract1 = BasicVerifyZip(zipFileToUpdate, null, false, Zip64ExtractProgress); - - _txrx.Send("status removing the extract directory..."); - Directory.Delete(extract1, true); - - TestContext.WriteLine("Updating the zip file..." - + DateTime.Now.ToString("G")); - _txrx.Send("status Updating the zip file..."); - - // update the zip with one small change: a new comment on - // the biggest entry. - var sw = new StringWriter(); - using (ZipFile zip = ZipFile.Read(zipFileToUpdate)) - { - // required: the option must be set automatically and intelligently - Assert.IsTrue(zip.UseZip64WhenSaving == Zip64Option.Always, - "The UseZip64WhenSaving option is set incorrectly ({0})", - zip.UseZip64WhenSaving); - - // according to workitem 9214, the comment must be modified - // on an entry that is larger than 4gb (uncompressed) - ZipEntry bigEntry = null; - foreach (var e2 in zip) - { - if (e2.UncompressedSize > (long)System.UInt32.MaxValue) - { - bigEntry = e2; - break; - } - } - // redundant with the check above, but so what? - Assert.IsTrue(bigEntry != null && - bigEntry.UncompressedSize > (long)System.UInt32.MaxValue, - "Minimum size constraint not met."); - - bigEntry.Comment = newComment; - zip.SaveProgress += Zip64SaveProgress; - zip.StatusMessageTextWriter = sw; - zip.Save(zipFileToCreate); - } - string status = sw.ToString(); - if (status != null && status != "") - { - var lines = status.Split('\n'); - TestContext.WriteLine("status: (" - + DateTime.Now.ToString("G") + ")"); - foreach (string line in lines) - TestContext.WriteLine(line); - } - - TestContext.WriteLine("Verifying the updated zip... " - + DateTime.Now.ToString("G")); - _txrx.Send("status Verifying the updated zip"); - Zip64VerifyZip(zipFileToCreate); // can take an hour or more - - // finally, verify that the modified comment is correct. - _txrx.Send("status checking the updated comment"); - using (ZipFile zip = ZipFile.Read(zipFileToCreate)) - { - // check that the z64 option is set automatically and intelligently - Assert.IsTrue(zip.UseZip64WhenSaving == Zip64Option.Always, - "The UseZip64WhenSaving option is set incorrectly ({0})", - zip.UseZip64WhenSaving); - - ZipEntry e = null; - foreach (var e2 in zip) - { - if (e2.UncompressedSize > (long)System.UInt32.MaxValue) - { - e = e2; - break; - } - } - Assert.IsTrue(e != null && e.UncompressedSize > (long)System.UInt32.MaxValue, - "No entry in the zip file is large enough."); - Assert.AreEqual(newComment, e.Comment, "The comment on the entry is unexpected."); - TestContext.WriteLine("The comment on the entry is {0}", e.Comment); - } - TestContext.WriteLine("All done... " - + DateTime.Now.ToString("G")); - } - - - - } - -} +// Zip64Tests.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009-2011 Dino Chiesa +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-July-10 20:31:24> +// +// ------------------------------------------------------------------ +// +// This module defines the tests for the ZIP64 capability within DotNetZip. These +// tests can take a long time to run, as the files can be quite large - 10g or +// more. Merely generating the content for these tests can take an hour. Most tests +// in the DotNetZip test suite are self-standing - they generate the content they +// need, and then remove it after completion, either success or failure. With ZIP64, +// because content creation is expensive, for update operations this module uses a +// cache of large zip files. See _CreateHugeZipfiles(). The method looks for +// large files in a well-known location on the filesystem, in fodderDir. +// +// ------------------------------------------------------------------ + + +using System; +using System.Linq; +using System.IO; +using System.Collections.Generic; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using Ionic.Zip; +using Ionic.Zip.Tests.Utilities; + + +namespace Ionic.Zip.Tests.Zip64 +{ + [TestClass] + public class Zip64Tests : IonicTestClass + { + string fodderDir = "c:\\users\\dino\\Downloads"; + string homeDir = System.Environment.GetEnvironmentVariable("TEMP"); + + public Zip64Tests() : base() { } + + private static string[] _HugeZipFiles; + private string[] GetHugeZipFiles() + { + if (_HugeZipFiles == null) + { + _HugeZipFiles = _CreateHugeZipfiles(); + } + return _HugeZipFiles; + } + + + + [ClassCleanup()] + public static void MyClassCleanup() + { + if (_HugeZipFiles != null) + { + // Keep this huge zip file around, because it takes so much + // time to create it. But Delete the directory if one of the files no + // longer exists. + if (!File.Exists(_HugeZipFiles[0]) || + !File.Exists(_HugeZipFiles[1])) + { + //File.Delete(_HugeZipFile); + string d= Path.GetDirectoryName(_HugeZipFiles[0]); + if (Directory.Exists(d)) + Directory.Delete(d, true); + } + } + } + + EncryptionAlgorithm[] crypto = + { + EncryptionAlgorithm.None, + EncryptionAlgorithm.PkzipWeak, + EncryptionAlgorithm.WinZipAes128, + EncryptionAlgorithm.WinZipAes256, + }; + + Ionic.Zlib.CompressionLevel[] compLevels = + { + Ionic.Zlib.CompressionLevel.None, + Ionic.Zlib.CompressionLevel.BestSpeed, + Ionic.Zlib.CompressionLevel.Default, + Ionic.Zlib.CompressionLevel.BestCompression, + }; + + Zip64Option[] z64 = + { + Zip64Option.Never, + Zip64Option.AsNecessary, + Zip64Option.Always, + }; + + + private Object LOCK = new Object(); + + + /// + /// Create 2 large zip64 zip files - one from DNZ, one from WinZip. Each + /// test that updates a zip file should use both. There are slight + /// differences between a zip from DNZ and one from WinZip, specifically + /// regarding metadata. These differences should be inconsequential for + /// updates of zips, and that is what some of the zip64 tests seek to + /// verify. + /// + private string[] _CreateHugeZipfiles() + { + string[] zipsToCreate = { "Zip64Test-createdBy-WZ.zip", + "Zip64Test-createdBy-DNZ.zip" }; + + // lock in case more than one test calls this at a time. + lock (LOCK) + { + TestContext.WriteLine("CreateHugeZipFiles"); + TestContext.WriteLine("Start - " + DateTime.Now.ToString("G")); + // STEP 1: + // look for existing directories, and re-use the large zip files + // there, if it exists, and if it is large enough. + string testDir = null; + var filesToAdd = new List(); + var oldDirs = Directory.GetDirectories(homeDir, "*.Zip64Tests"); + string zipFileToCreate = null; + List found = null; + + // first pass to check if any dirs, have both files, + // second pass to check if any dirs have one file plus fodder files. + for (int pass=0; pass < 2; pass++) + { + foreach (var dir in oldDirs) + { + found = new List(); + for (int m=0; m < zipsToCreate.Length; m++) + { + zipFileToCreate = Path.Combine(dir, zipsToCreate[m]); + if (File.Exists(zipFileToCreate)) + { + TestContext.WriteLine("File exists: {0}", zipFileToCreate); + FileInfo fi = new FileInfo(zipFileToCreate); + if (fi.Length < (long)System.UInt32.MaxValue) + { + TestContext.WriteLine("deleting file (too small): {0}", zipFileToCreate); + File.Delete(zipFileToCreate); + } + else found.Add(m); + } + } + + int fc = found.Count(); + switch (fc) + { + case 0: + case 1: + // check for fodder files + testDir = dir; + string fdir = Path.Combine(dir,"dir"); + if (Directory.Exists(fdir)) + { + var fodderFiles = Directory.GetFiles(fdir, "*.txt"); + if (fodderFiles == null || fodderFiles.Length <= 6) + try { Directory.Delete(dir, true); } catch { } + } + else try { Directory.Delete(dir, true); } catch { } + break; + case 2: + // found both large zips, so use them. + zipsToCreate[0] = Path.Combine(dir, zipsToCreate[0]); + zipsToCreate[1] = Path.Combine(dir, zipsToCreate[1]); + TestContext.WriteLine("Using the existing zips in: {0}", dir); + return zipsToCreate; + } + + if (pass == 1 && Directory.Exists(dir) && fc==1) + { + // on pass 2, take 1st dir with at least one zip + break; + } + } + } + + // remember the current directory so we can restore later + string originalDir = Directory.GetCurrentDirectory(); + // CurrentDir is the dir that holds the test temp directory (or directorIES) + Directory.SetCurrentDirectory(CurrentDir); + + if (!Directory.Exists(testDir)) + { + // create the dir if it does not exist + string pname = Path.GetFileName(TestUtilities.GenerateUniquePathname("Zip64Tests")); + testDir = Path.Combine(homeDir, pname); + Directory.CreateDirectory(testDir); + Directory.SetCurrentDirectory(testDir); + } + else + { + Directory.SetCurrentDirectory(testDir); + string fdir = Path.Combine(testDir,"dir"); + filesToAdd.AddRange(Directory.GetFiles(fdir, "*.txt")); + } + + TestContext.WriteLine("Creating new zip files..."); + + // create a huge ZIP64 archive with a true 64-bit offset. + _txrx = TestUtilities.StartProgressMonitor("Zip64_Setup", + "Zip64 Test Setup", + "Creating files"); + + //Directory.SetCurrentDirectory(testDir); + + // create a directory with some files in it, to zip + string dirToZip = "dir"; + Directory.CreateDirectory(dirToZip); + _txrx.Send("pb 0 step"); + System.Threading.Thread.Sleep(120); + _txrx.Send("bars 3"); + System.Threading.Thread.Sleep(220); + _txrx.Send("pb 0 max 4"); + System.Threading.Thread.Sleep(220); + int numFilesToAdd = _rnd.Next(4) + 7; + _txrx.Send("pb 1 max " + numFilesToAdd); + + // These params define the size range for the large, random text + // files that are created below. Creating files this size takes + // about 1 minute per file + _sizeBase = 0x16000000; + _sizeRandom = 0x20000000; + //_sizeBase = 0x160000; + //_sizeRandom = 0x200000; + if (filesToAdd.Count() == 0) + { + int n; + var buf = new byte[2048]; + for (int i = 0; i < numFilesToAdd; i++) + { + System.Threading.Thread.Sleep(220); + _txrx.Send("title Zip64 Create Huge Zip files"); // in case it was missed + System.Threading.Thread.Sleep(220); + int fnameLength = _rnd.Next(25) + 6; + string filename = TestUtilities.GenerateRandomName(fnameLength) + + ".txt"; + _txrx.Send(String.Format("status create {0} ({1}/{2})", filename, i+1, numFilesToAdd)); + int totalSize = _sizeBase + _rnd.Next(_sizeRandom); + System.Threading.Thread.Sleep(220); + _txrx.Send(String.Format("pb 2 max {0}", totalSize)); + System.Threading.Thread.Sleep(220); + _txrx.Send("pb 2 value 0"); + int writtenSoFar = 0; + int cycles = 0; + using (var input = new Ionic.Zip.Tests.Utilities.RandomTextInputStream(totalSize)) + { + using (var output = File.Create(Path.Combine(dirToZip,filename))) + { + while ((n = input.Read(buf,0,buf.Length)) > 0) + { + output.Write(buf,0,n); + writtenSoFar+=n; + cycles++; + if (cycles % 640 == 0) + { + _txrx.Send(String.Format("pb 2 value {0}", writtenSoFar)); + } + } + } + } + filesToAdd.Add(filename); + _txrx.Send("pb 1 step"); + } + } + + _txrx.Send("pb 0 step"); + System.Threading.Thread.Sleep(220); + _txrx.Send("pb 1 value 0"); + + // Add links to a few very large files into the same directory. We + // do this because creating such large files from nothing would take + // a very very long time. + if (CreateLinksToLargeFiles(dirToZip)) + return null; + + Directory.SetCurrentDirectory(testDir); // again + + if (found == null || !found.Contains(0)) + { + // create a zip file, using WinZip + // This will take 50 minutes or so, no progress updates possible. + System.Threading.Thread.Sleep(220); + _txrx.Send("title Zip64 Create Huge Zip files"); // in case it was missed + System.Threading.Thread.Sleep(220); + _txrx.Send("pb 2 value 0"); + zipFileToCreate = zipsToCreate[0]; + zipsToCreate[0] = Path.Combine(testDir, zipsToCreate[0]); + + // wzzip.exe will create a zip64 file automatically, as necessary. + // There is no explicit switch required. + // switches: + // -a add + // -r recurse + // -p store folder names + // -yx store extended timestamps + var sb1 = new System.Text.StringBuilder(); + sb1.Append("-a -p -r -yx \"") + .Append(zipFileToCreate) + .Append("\" \"") + .Append(dirToZip) + .Append("\" "); + + string args = sb1.ToString(); + System.Threading.Thread.Sleep(220); + _txrx.Send("status wzzip.exe " + args); + TestContext.WriteLine("Exec: wzzip {0}", args); + string wzzipOut = this.Exec(wzzip, args); + TestContext.WriteLine("Done with wzzip.exe"); + _txrx.Send("status wzzip.exe: Done"); + } + + if (found == null || !found.Contains(1)) + { + // Create a zip file using DotNetZip + // This will take 50 minutes or so. + // pb1 and pb2 will be set in the {Add,Save}Progress handlers + _txrx.Send("pb 0 step"); + System.Threading.Thread.Sleep(120); + _txrx.Send("status Saving the zip..."); + System.Threading.Thread.Sleep(120); + _txrx.Send(String.Format("pb 1 max {0}", numFilesToAdd + Directory.GetFiles(dirToZip).Length)); + _testTitle = "Zip64 Create Huge Zip files"; // used in Zip64_SaveProgress + _pb1Set = false; + zipFileToCreate = Path.Combine(testDir, zipsToCreate[1]); + zipsToCreate[1] = zipFileToCreate; + using (ZipFile zip = new ZipFile()) + { + zip.SaveProgress += Zip64SaveProgress; + zip.AddProgress += Zip64AddProgress; + zip.UpdateDirectory(dirToZip, ""); + foreach (var e in zip) + { + if (e.FileName.EndsWith(".pst") || + e.FileName.EndsWith(".ost") || + e.FileName.EndsWith(".zip")) + e.CompressionMethod = CompressionMethod.None; + } + + zip.UseZip64WhenSaving = Zip64Option.Always; + // use large buffer to speed up save for large files: + zip.BufferSize = 1024 * 756; + zip.CodecBufferSize = 1024 * 128; + zip.Save(zipFileToCreate); + } + } + + _txrx.Send("pb 0 step"); + System.Threading.Thread.Sleep(120); + + // Delete the fodder dir only if we have both zips. + // This is helpful when modifying or editing this method. + // With repeated runs you don't have to re-create all the data + // each time. + if (File.Exists(zipsToCreate[0]) && File.Exists(zipsToCreate[1])) + Directory.Delete(dirToZip, true); + + _txrx.Send("pb 0 step"); + System.Threading.Thread.Sleep(120); + + _txrx.Send("stop"); + + // restore the cwd: + Directory.SetCurrentDirectory(originalDir); + + TestContext.WriteLine("All done - " + + DateTime.Now.ToString("G")); + + return zipsToCreate; + } + } + + + + private bool CreateLinksToLargeFiles(string dirForLinks) + { + var candidates = from fi in (from fn in Directory.GetFiles(fodderDir) + select new FileInfo(fn)) + where fi.Length > 0x10000000 + orderby fi.Length descending + select fi; + + if (candidates.Count() < 3) + { + TestContext.WriteLine("Found {0} files, not enough to proceed.", + candidates.Count()); + return true; + } + TestContext.WriteLine("Found {0} large files, which seems enough to proceed.", + candidates.Count()); + + string current = Directory.GetCurrentDirectory(); + _txrx.Send("status Creating links"); + string subdir = Path.Combine(dirForLinks, "00-largelinks"); + if (Directory.Exists(subdir)) + Directory.Delete(subdir, true); + Directory.CreateDirectory(subdir); + Directory.SetCurrentDirectory(subdir); + var w = System.Environment.GetEnvironmentVariable("Windir"); + Assert.IsTrue(Directory.Exists(w), "%windir% does not exist ({0})", w); + var fsutil = Path.Combine(Path.Combine(w, "system32"), "fsutil.exe"); + Assert.IsTrue(File.Exists(fsutil), "fsutil.exe does not exist ({0})", fsutil); + string ignored; + Int64 totalLength = 0; + int cycle = 0; + const Int64 threshold = (long)(11L * 1024 * 1024 * 1024); + while (totalLength < threshold) + { + cycle++; + foreach (var fi in candidates) + { + string cmd = String.Format("hardlink create \"{0}-Copy{1}{2}\" \"{3}\"", + Path.GetFileNameWithoutExtension(fi.Name), + cycle, + Path.GetExtension(fi.Name), + Path.Combine(fodderDir,fi.Name)); + TestContext.WriteLine("Command: fsutil {0}", cmd); + _txrx.Send("status " + cmd); + TestUtilities.Exec_NoContext(fsutil, cmd, out ignored); + totalLength += fi.Length; + if (totalLength > threshold) + break; // enough + } + } + Directory.SetCurrentDirectory(current); + return false; + } + + + + + [TestMethod] + public void Zip64_Create() + { + Zip64Option[] Options = { Zip64Option.Always, + Zip64Option.Never, + Zip64Option.AsNecessary }; + for (int k = 0; k < Options.Length; k++) + { + string filename = null; + Directory.SetCurrentDirectory(TopLevelDir); + TestContext.WriteLine("\n\n==================Trial {0}...", k); + string zipFileToCreate = String.Format("Zip64_Create-{0}.zip", k); + + TestContext.WriteLine("Creating file {0}", zipFileToCreate); + TestContext.WriteLine(" ZIP64 option: {0}", Options[k].ToString()); + int entries = _rnd.Next(5) + 13; + var checksums = new Dictionary(); + using (ZipFile zip1 = new ZipFile()) + { + for (int i = 0; i < entries; i++) + { + if (_rnd.Next(2) == 1) + { + filename = Path.Combine(TopLevelDir, String.Format("Data{0}.bin", i)); + int filesize = _rnd.Next(44000) + 5000; + TestUtilities.CreateAndFillFileBinary(filename, filesize); + } + else + { + filename = Path.Combine(TopLevelDir, String.Format("Data{0}.txt", i)); + int filesize = _rnd.Next(44000) + 5000; + TestUtilities.CreateAndFillFileText(filename, filesize); + } + zip1.AddFile(filename, ""); + + var chk = TestUtilities.ComputeChecksum(filename); + checksums.Add(Path.GetFileName(filename), TestUtilities.CheckSumToString(chk)); + } + + zip1.UseZip64WhenSaving = Options[k]; + zip1.Comment = String.Format("This archive uses zip64 option: {0}", Options[k].ToString()); + zip1.Save(zipFileToCreate); + + if (Options[k] == Zip64Option.Always) + Assert.IsTrue(zip1.OutputUsedZip64.Value); + else if (Options[k] == Zip64Option.Never) + Assert.IsFalse(zip1.OutputUsedZip64.Value); + } + + BasicVerifyZip(zipFileToCreate); + + TestContext.WriteLine("---------------Reading {0}...", zipFileToCreate); + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + string extractDir = String.Format("extract{0}", k); + foreach (var e in zip2) + { + TestContext.WriteLine(" Entry: {0} c({1}) unc({2})", e.FileName, e.CompressedSize, e.UncompressedSize); + + e.Extract(extractDir); + filename = Path.Combine(extractDir, e.FileName); + string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(filename)); + Assert.IsTrue(checksums.ContainsKey(e.FileName), "Checksum is missing"); + Assert.AreEqual(checksums[e.FileName], actualCheckString, "Checksums for ({0}) do not match.", e.FileName); + TestContext.WriteLine(" Checksums match ({0}).\n", actualCheckString); + } + } + } + } + + + + [TestMethod] + public void Zip64_Convert() + { + string trialDescription = "Trial {0}/{1}: create archive as 'zip64={2}', then open it and re-save with 'zip64={3}'"; + Zip64Option[] z64a = { + Zip64Option.Never, + Zip64Option.Always, + Zip64Option.AsNecessary}; + + // ?? + for (int u = 0; u < 2; u++) + { + for (int m = 0; m < z64a.Length; m++) + { + for (int n = 0; n < z64a.Length; n++) + { + int k = m * z64a.Length + n; + + string filename = null; + Directory.SetCurrentDirectory(TopLevelDir); + TestContext.WriteLine("\n\n==================Trial {0}...", k); + + TestContext.WriteLine(trialDescription, k, (z64a.Length * z64a.Length) - 1, z64a[m], z64a[n]); + + string zipFileToCreate = Path.Combine(TopLevelDir, String.Format("Zip64_Convert-{0}.A.zip", k)); + + int entries = _rnd.Next(8) + 6; + //int entries = 2; + TestContext.WriteLine("Creating file {0}, zip64={1}, {2} entries", + Path.GetFileName(zipFileToCreate), z64a[m].ToString(), entries); + + var checksums = new Dictionary(); + using (ZipFile zip1 = new ZipFile()) + { + for (int i = 0; i < entries; i++) + { + if (_rnd.Next(2) == 1) + { + filename = Path.Combine(TopLevelDir, String.Format("Data{0}.bin", i)); + TestUtilities.CreateAndFillFileBinary(filename, _rnd.Next(44000) + 5000); + } + else + { + filename = Path.Combine(TopLevelDir, String.Format("Data{0}.txt", i)); + TestUtilities.CreateAndFillFileText(filename, _rnd.Next(44000) + 5000); + } + zip1.AddFile(filename, ""); + + var chk = TestUtilities.ComputeChecksum(filename); + checksums.Add(Path.GetFileName(filename), TestUtilities.CheckSumToString(chk)); + } + + TestContext.WriteLine("---------------Saving to {0} with Zip64={1}...", + Path.GetFileName(zipFileToCreate), z64a[m].ToString()); + zip1.UseZip64WhenSaving = z64a[m]; + zip1.Comment = String.Format("This archive uses Zip64Option={0}", z64a[m].ToString()); + zip1.Save(zipFileToCreate); + } + + + Assert.AreEqual(TestUtilities.CountEntries(zipFileToCreate), entries, + "The Zip file has the wrong number of entries."); + + + string newFile = zipFileToCreate.Replace(".A.", ".B."); + using (ZipFile zip2 = ZipFile.Read(zipFileToCreate)) + { + TestContext.WriteLine("---------------Extracting {0} ...", + Path.GetFileName(zipFileToCreate)); + string extractDir = String.Format("extract-{0}-{1}.A", k, u); + foreach (var e in zip2) + { + TestContext.WriteLine(" {0} crc({1:X8}) c({2:X8}) unc({3:X8})", e.FileName, e.Crc, e.CompressedSize, e.UncompressedSize); + + e.Extract(extractDir); + filename = Path.Combine(extractDir, e.FileName); + string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(filename)); + Assert.IsTrue(checksums.ContainsKey(e.FileName), "Checksum is missing"); + Assert.AreEqual(checksums[e.FileName], actualCheckString, "Checksums for ({0}) do not match.", e.FileName); + } + + if (u==1) + { + TestContext.WriteLine("---------------Updating: Renaming an entry..."); + zip2[4].FileName += ".renamed"; + + string entriesToRemove = (_rnd.Next(2) == 0) ? "*.txt" : "*.bin"; + TestContext.WriteLine("---------------Updating: Removing {0} entries...", entriesToRemove); + zip2.RemoveSelectedEntries(entriesToRemove); + } + + TestContext.WriteLine("---------------Saving to {0} with Zip64={1}...", + Path.GetFileName(newFile), z64a[n].ToString()); + + zip2.UseZip64WhenSaving = z64a[n]; + zip2.Comment = String.Format("This archive uses Zip64Option={0}", z64a[n].ToString()); + zip2.Save(newFile); + } + + + + using (ZipFile zip3 = ZipFile.Read(newFile)) + { + TestContext.WriteLine("---------------Extracting {0} ...", + Path.GetFileName(newFile)); + string extractDir = String.Format("extract-{0}-{1}.B", k, u); + foreach (var e in zip3) + { + TestContext.WriteLine(" {0} crc({1:X8}) c({2:X8}) unc({3:X8})", e.FileName, e.Crc, e.CompressedSize, e.UncompressedSize); + + e.Extract(extractDir); + filename = Path.Combine(extractDir, e.FileName); + string actualCheckString = TestUtilities.CheckSumToString(TestUtilities.ComputeChecksum(filename)); + if (!e.FileName.EndsWith(".renamed")) + { + Assert.IsTrue(checksums.ContainsKey(e.FileName), "Checksum is missing"); + Assert.AreEqual(checksums[e.FileName], actualCheckString, "Checksums for ({0}) do not match.", e.FileName); + } + } + } + } + } + } + } + + + bool _pb2Set; + bool _pb1Set; + string _testTitle; + int _sizeBase; + int _sizeRandom; + int _numSaving; + int _totalToSave; + int _spCycles; + private void Zip64SaveProgress(object sender, SaveProgressEventArgs e) + { + string msg; + switch (e.EventType) + { + case ZipProgressEventType.Saving_Started: + _txrx.Send("status saving started..."); + _pb1Set = false; + _numSaving= 1; + break; + + case ZipProgressEventType.Saving_BeforeWriteEntry: + _txrx.Send(String.Format("status Compressing {0}", e.CurrentEntry.FileName)); + _spCycles = 0; + if (!_pb1Set) + { + _txrx.Send(String.Format("pb 1 max {0}", e.EntriesTotal)); + _pb1Set = true; + } + _totalToSave = e.EntriesTotal; + _pb2Set = false; + break; + + case ZipProgressEventType.Saving_EntryBytesRead: + _spCycles++; + if ((_spCycles % 128) == 0) + { + if (!_pb2Set) + { + _txrx.Send(String.Format("pb 2 max {0}", e.TotalBytesToTransfer)); + _pb2Set = true; + } + _txrx.Send(String.Format("status Saving entry {0}/{1} :: {2} :: {3}/{4}mb {5:N0}%", + _numSaving, _totalToSave, + e.CurrentEntry.FileName, + e.BytesTransferred/(1024*1024), e.TotalBytesToTransfer/(1024*1024), + ((double)e.BytesTransferred) / (0.01 * e.TotalBytesToTransfer))); + msg = String.Format("pb 2 value {0}", e.BytesTransferred); + _txrx.Send(msg); + } + break; + + case ZipProgressEventType.Saving_AfterWriteEntry: + _txrx.Send("test " + _testTitle); // just in case it was missed + _txrx.Send("pb 1 step"); + _numSaving++; + break; + + case ZipProgressEventType.Saving_Completed: + _txrx.Send("status Save completed"); + _pb1Set = false; + _pb2Set = false; + _txrx.Send("pb 1 max 1"); + _txrx.Send("pb 1 value 1"); + break; + } + } + + + + void Zip64AddProgress(object sender, AddProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Adding_Started: + _txrx.Send("status Adding files to the zip..."); + break; + case ZipProgressEventType.Adding_AfterAddEntry: + _txrx.Send(String.Format("status Adding file {0}", + e.CurrentEntry.FileName)); + break; + case ZipProgressEventType.Adding_Completed: + _txrx.Send("status Added all files"); + break; + } + } + + + + private int _numExtracted; + private int _epCycles; + private int _numFilesToExtract; + void Zip64ExtractProgress(object sender, ExtractProgressEventArgs e) + { + switch (e.EventType) + { + case ZipProgressEventType.Extracting_BeforeExtractEntry: + if (!_pb1Set) + { + _txrx.Send(String.Format("pb 1 max {0}", _numFilesToExtract)); + _pb1Set = true; + } + _pb2Set = false; + _epCycles = 0; + break; + + case ZipProgressEventType.Extracting_EntryBytesWritten: + _epCycles++; + if ((_epCycles % 512) == 0) + { + if (!_pb2Set) + { + _txrx.Send(String.Format("pb 2 max {0}", e.TotalBytesToTransfer)); + _pb2Set = true; + } + _txrx.Send(String.Format("status {0} entry {1}/{2} :: {3} :: {4}/{5}mb :: {6:N0}%", + verb, + _numExtracted, _numFilesToExtract, + e.CurrentEntry.FileName, + e.BytesTransferred/(1024*1024), + e.TotalBytesToTransfer/(1024*1024), + ((double)e.BytesTransferred) / (0.01 * e.TotalBytesToTransfer) + )); + string msg = String.Format("pb 2 value {0}", e.BytesTransferred); + _txrx.Send(msg); + } + break; + + case ZipProgressEventType.Extracting_AfterExtractEntry: + _numExtracted++; + if (_numFilesToExtract < 1024 || (_numExtracted % 128) == 0) + { + _txrx.Send("test " + _testTitle); // just in case it was missed + while (_numExtracted > _numFilesToExtract) _numExtracted--; + _txrx.Send("pb 1 value " + _numExtracted); + if (_numExtracted == _numFilesToExtract) + { + _txrx.Send("status All done " + verb); + } + else + { + _txrx.Send(String.Format("status {0} entry {1}/{2} {3:N0}%", + verb, + _numExtracted, _numFilesToExtract, + _numExtracted / (0.01 *_numFilesToExtract))); + } + } + break; + } + } + + + + string verb; + + private void Zip64VerifyZip(string zipfile) + { + _pb1Set = false; + Stream bitBucket = Stream.Null; + TestContext.WriteLine(""); + TestContext.WriteLine("Checking file {0}", zipfile); + verb = "Verifying"; + using (ZipFile zip = ZipFile.Read(zipfile)) + { + // large buffer better for large files + zip.BufferSize = 65536*4; // 65536 * 8 = 512k + _numFilesToExtract = zip.Entries.Count; + _numExtracted= 1; + zip.ExtractProgress += Zip64ExtractProgress; + foreach (var s in zip.EntryFileNames) + { + TestContext.WriteLine(" Entry: {0}", s); + zip[s].Extract(bitBucket); + } + } + System.Threading.Thread.Sleep(0x500); + } + + + + [Timeout(3 * 60*60*1000), TestMethod] // 60*60*1000 = 1hr + public void Zip64_Update_WZ() + { + // this should take about an hour + string[] zipFilesToUpdate = GetHugeZipFiles(); + Assert.IsFalse(zipFilesToUpdate == null, "No files were created."); + // this should take a little less than an hour + Zip64UpdateAddFiles(zipFilesToUpdate[0], "WinZip"); + } + + + [Timeout(3 * 60*60*1000), TestMethod] // 60*60*1000 = 1hr + public void Zip64_Update_DNZ() + { + // this should take about an hour + string[] zipFilesToUpdate = GetHugeZipFiles(); + Assert.IsFalse(zipFilesToUpdate == null, "No files were created."); + // this should take a little less than an hour + Zip64UpdateAddFiles(zipFilesToUpdate[1], "DNZ"); + } + + + private void Zip64UpdateAddFiles(string zipFileToUpdate, string marker) + { + _txrx = TestUtilities.StartProgressMonitor("Zip64-Update", + "Zip64 Update - " + marker, + "Starting up..."); + + int numUpdates = 2; + int baseSize = _rnd.Next(0x1000ff) + 80000; + System.Threading.Thread.Sleep(120); + // pb 0: numUpdates + before+after verify steps + _txrx.Send( String.Format("pb 0 max {0}", numUpdates + 2)); + string workingZipFile = "Z64Update." + marker + ".zip"; + _testTitle = "Zip64 Update - " + marker + " - initial verify"; + _txrx.Send("pb 0 value 0"); + Assert.IsTrue(File.Exists(zipFileToUpdate), + "The required ZIP file does not exist ({0})", + zipFileToUpdate); + + // make sure the zip is larger than the 4.2gb size + FileInfo fi = new FileInfo(zipFileToUpdate); + Assert.IsTrue(fi.Length > (long)System.UInt32.MaxValue, + "The zip file ({0}) is not large enough.", + zipFileToUpdate); + + // this usually takes 10-12 minutes + TestContext.WriteLine("Verifying the zip - " + + DateTime.Now.ToString("G")); + _txrx.Send("status Verifying the zip"); + Zip64VerifyZip(zipFileToUpdate); + + _txrx.Send("pb 0 value 1"); + + var sw = new StringWriter(); + for (int j=0; j < numUpdates; j++) + { + _testTitle = String.Format("Zip64 Update - {0} - ({1}/{2})", + marker, j+1, numUpdates); + _pb1Set = false; + System.Threading.Thread.Sleep(220); + _txrx.Send("test " + _testTitle); + // create another folder with a single file in it + string subdir = String.Format("newfolder-{0}", j); + Directory.CreateDirectory(subdir); + string fileName = Path.Combine(subdir, + System.Guid.NewGuid().ToString() + ".txt"); + long size = baseSize + _rnd.Next(28000); + TestUtilities.CreateAndFillFileText(fileName, size); + + TestContext.WriteLine(""); + TestContext.WriteLine("Updating the zip file, cycle {0}...{1}", + j, DateTime.Now.ToString("G")); + _txrx.Send("status Updating the zip file..."); + // update the zip with that new folder+file + // will take a long time for large files + using (ZipFile zip = ZipFile.Read(zipFileToUpdate)) + { + zip.SaveProgress += Zip64SaveProgress; + zip.StatusMessageTextWriter = sw; + zip.UpdateDirectory(subdir, subdir); + zip.UseZip64WhenSaving = Zip64Option.Always; + zip.BufferSize = 65536*8; // 65536 * 8 = 512k + zip.Save(workingZipFile); + } + + TestContext.WriteLine("Save complete " + + DateTime.Now.ToString("G")); + zipFileToUpdate = workingZipFile; // for subsequent updates + // emit status into the log if available + string status = sw.ToString(); + if (status != null && status != "") + { + var lines = status.Split('\n'); + TestContext.WriteLine("status: (" + + DateTime.Now.ToString("G") + ")"); + foreach (string line in lines) + TestContext.WriteLine(line); + } + + _txrx.Send("pb 0 value " + (j+2)); + } + + System.Threading.Thread.Sleep(120); + + // make sure the zip is larger than the 4.2gb size + fi = new FileInfo(workingZipFile); + Assert.IsTrue(fi.Length > (long)System.UInt32.MaxValue, + "The zip file ({0}) is not large enough.", + workingZipFile); + + TestContext.WriteLine(""); + TestContext.WriteLine("Verifying the zip again... " + + DateTime.Now.ToString("G")); + _txrx.Send("status Verifying the zip again..."); + _testTitle = String.Format("Zip64 Update - {0} - final verify", + marker); + _pb1Set = false; + System.Threading.Thread.Sleep(220); + _txrx.Send("test " + _testTitle); + Zip64VerifyZip(workingZipFile); + + _txrx.Send( String.Format("pb 0 value {0}", numUpdates + 1)); + } + + + + [TestMethod] + public void Zip64_Winzip_Unzip_OneFile() + { + string testBin = TestUtilities.GetTestBinDir(CurrentDir); + string fileToZip = Path.Combine(testBin, "DotNetZip.dll"); + + Directory.SetCurrentDirectory(TopLevelDir); + + for (int p=0; p < compLevels.Length; p++) + { + for (int n=0; n < crypto.Length; n++) + { + for (int m=0; m < z64.Length; m++) + { + string zipFile = String.Format("WZ-Unzip.OneFile.{0}.{1}.{2}.zip", + compLevels[p].ToString(), + crypto[n].ToString(), + z64[m].ToString()); + string password = Path.GetRandomFileName(); + + TestContext.WriteLine("================================="); + TestContext.WriteLine("Creating {0}...", Path.GetFileName(zipFile)); + TestContext.WriteLine("Encryption:{0} Zip64:{1} pw={2} compLevel={3}", + crypto[n].ToString(), z64[m].ToString(), password, compLevels[p].ToString()); + + using (var zip = new ZipFile()) + { + zip.Comment = String.Format("Encryption={0} Zip64={1} pw={2}", + crypto[n].ToString(), z64[m].ToString(), password); + zip.Encryption = crypto[n]; + zip.Password = password; + zip.CompressionLevel = compLevels[p]; + zip.UseZip64WhenSaving = z64[m]; + zip.AddFile(fileToZip, "file"); + zip.Save(zipFile); + } + + TestContext.WriteLine("Unzipping with WinZip..."); + + string extractDir = String.Format("extract.{0}.{1}.{2}",p,n,m); + Directory.CreateDirectory(extractDir); + + // this will throw if the command has a non-zero exit code. + this.Exec(wzunzip, + String.Format("-s{0} -d {1} {2}\\", password, zipFile, extractDir)); + } + } + } + } + + + + [Timeout((int)(1 * 60*60*1000)), TestMethod] // in milliseconds. + public void Zip64_Winzip_Unzip_Huge() + { + string[] zipFilesToExtract = GetHugeZipFiles(); // may take a long time + int baseSize = _rnd.Next(0x1000ff) + 80000; + + _txrx = TestUtilities.StartProgressMonitor("Zip64-WinZip-Unzip", + "Zip64 WinZip unzip Huge", + "Setting up..."); + + string extractDir = "extract"; + Directory.SetCurrentDirectory(TopLevelDir); + Directory.CreateDirectory(extractDir); + + _txrx.Send("pb 0 max " + zipFilesToExtract.Length); + + for (int k=0; k < zipFilesToExtract.Length; k++) + { + string zipFileToExtract = zipFilesToExtract[k]; + Assert.IsTrue(File.Exists(zipFileToExtract), + "required ZIP file does not exist ({0})", + zipFileToExtract); + + System.Threading.Thread.Sleep(120); + _txrx.Send("pb 1 max 3"); + System.Threading.Thread.Sleep(120); + _txrx.Send("pb 1 value 0"); + + // make sure the zip is larger than the 4.2gb size + FileInfo fi = new FileInfo(zipFileToExtract); + Assert.IsTrue(fi.Length > (long)System.UInt32.MaxValue, + "The zip file ({0}) is not large enough.", + zipFileToExtract); + + _txrx.Send("pb 1 step"); + _txrx.Send("status Counting entries in the zip file..."); + + int numEntries = TestUtilities.CountEntries(zipFileToExtract); + + _txrx.Send("status Using WinZip to list the entries..."); + + // Examine and unpack the zip archive via WinZip + // first, examine the zip entry metadata: + string wzzipOut = this.Exec(wzzip, "-vt " + zipFileToExtract); + TestContext.WriteLine(wzzipOut); + + int x = 0; + int y = 0; + int wzzipEntryCount=0; + string textToLookFor= "Filename: "; + TestContext.WriteLine("================"); + TestContext.WriteLine("Files listed by WinZip:"); + while (true) + { + x = wzzipOut.IndexOf(textToLookFor, y); + if (x < 0) break; + y = wzzipOut.IndexOf("\n", x); + string name = wzzipOut.Substring(x + textToLookFor.Length, y-x-1).Trim(); + TestContext.WriteLine(" {0}", name); + if (!name.EndsWith("\\")) + { + wzzipEntryCount++; + if (wzzipEntryCount > numEntries * 3) throw new Exception("too many entries!"); + } + } + + TestContext.WriteLine("================"); + Assert.AreEqual(numEntries, wzzipEntryCount, + "Unexpected number of entries found by WinZip."); + + _txrx.Send("pb 1 step"); + System.Threading.Thread.Sleep(120); + + _txrx.Send(String.Format("pb 1 max {0}", numEntries*2)); + x=0; y = 0; + _txrx.Send("status Extracting the entries..."); + int nCycles = 0; + while (true) + { + _txrx.Send("test Zip64 WinZip unzip - " + + Path.GetFileName(zipFileToExtract)); + x = wzzipOut.IndexOf(textToLookFor, y); + if (x < 0) break; + if (nCycles > numEntries * 4) throw new Exception("too many entries?"); + y = wzzipOut.IndexOf("\n", x); + string name = wzzipOut.Substring(x + textToLookFor.Length, y-x-1).Trim(); + if (!name.EndsWith("\\")) + { + nCycles++; + _txrx.Send(String.Format("status Extracting {1}/{2} :: {0}", name, nCycles, wzzipEntryCount)); + this.Exec(wzunzip, + String.Format("-d {0} {1}\\ \"{2}\"", + Path.GetFileName(zipFileToExtract), + extractDir, name)); + string path = Path.Combine(extractDir, name); + _txrx.Send("pb 1 step"); + Assert.IsTrue(File.Exists(path), "extracted file ({0}) does not exist", path); + File.Delete(path); + System.Threading.Thread.Sleep(120); + _txrx.Send("pb 1 step"); + } + } + + _txrx.Send("pb 0 step"); + System.Threading.Thread.Sleep(120); + } + } + + + + + private void CreateLargeFiles(int numFilesToAdd, int baseSize, string dir) + { + bool firstFileDone = false; + string fileName = ""; + long fileSize = 0; + + _txrx.Send(String.Format("pb 1 max {0}", numFilesToAdd)); + + Action progressUpdate = (x) => + { + _txrx.Send(String.Format("pb 2 value {0}", x)); + _txrx.Send(String.Format("status Creating {0}, [{1}/{2}] ({3:N0}%)", + fileName, x, fileSize, ((double)x)/ (0.01 * fileSize) )); + }; + + // It takes some time to create a large file. And we need + // a bunch of them. + for (int i = 0; i < numFilesToAdd; i++) + { + // randomly select binary or text + int n = _rnd.Next(2); + fileName = string.Format("Pippo{0}.{1}", i, (n==0) ? "bin" : "txt" ); + if (i != 0) + { + int x = _rnd.Next(6); + if (x != 0) + { + string folderName = string.Format("folder{0}", x); + fileName = Path.Combine(folderName, fileName); + if (!Directory.Exists(Path.Combine(dir, folderName))) + Directory.CreateDirectory(Path.Combine(dir, folderName)); + } + } + fileName = Path.Combine(dir, fileName); + // first file is 2x larger + fileSize = (firstFileDone) ? (baseSize + _rnd.Next(0x880000)) : (2*baseSize); + _txrx.Send(String.Format("pb 2 max {0}", fileSize)); + if (n==0) + TestUtilities.CreateAndFillFileBinary(fileName, fileSize, progressUpdate); + else + TestUtilities.CreateAndFillFileText(fileName, fileSize, progressUpdate); + firstFileDone = true; + _txrx.Send("pb 1 step"); + } + } + + + + [Timeout((int)(4 * 60*60*1000)), TestMethod] // 60*60*1000 == 1 hr + public void Zip64_Winzip_Zip_Huge() + { + // This TestMethod tests if DNZ can read a huge (>4.2gb) zip64 file + // created by winzip. + int baseSize = _rnd.Next(80000) + 0x1000ff; + _txrx = TestUtilities.StartProgressMonitor("Zip64-WinZip-Zip-Huge", + "Zip64_Winzip_Zip_Huge()", + "Creating links"); + string contentDir = "fodder"; + //Directory.SetCurrentDirectory(TopLevelDir); + Directory.CreateDirectory(contentDir); + + _txrx.Send("pb 0 max 5"); + + if (CreateLinksToLargeFiles(contentDir)) + return; + + TestContext.WriteLine("Creating large files..." + + DateTime.Now.ToString("G")); + + CreateLargeFiles(_rnd.Next(4) + 4, baseSize, contentDir); + _txrx.Send("pb 0 step"); + + TestContext.WriteLine("Creating a new Zip with winzip - " + + DateTime.Now.ToString("G")); + + var fileList = Directory.GetFiles(contentDir, "*.*", SearchOption.AllDirectories); + + // create a zip archive via WinZip + string wzzipOut= null; + string zipFileToCreate = "Zip64-WinZip-Zip-Huge.zip"; + int nCycles= 0; + _txrx.Send(String.Format("pb 1 max {0}", fileList.Length)); + System.Threading.Thread.Sleep(120); + _txrx.Send("pb 2 value 0"); + + // Add one file at a time, invoking wzzip.exe for each. After it + // completes, delete the just-added file. This allows coarse-grained + // status updates in the progress window. Not sure about the exact + // impact on disk space, or execution time; my observation is that the + // time-cost to add one entry increases, as the zip file gets + // larger. Each successive cycle takes a little longer. It's tolerable + // I guess. A tradeoff to get visual progress feedback. + foreach (var filename in fileList) + { + nCycles++; + _txrx.Send(String.Format("status wzzip.exe adding {0}...({1}/{2})", filename, nCycles, fileList.Length+1)); + wzzipOut = this.Exec(wzzip, String.Format("-a -p -r -yx \"{0}\" \"{1}\"", + zipFileToCreate, + filename)); + TestContext.WriteLine(wzzipOut); + _txrx.Send("pb 1 step"); + System.Threading.Thread.Sleep(420); + File.Delete(filename); + } + + // Create one additional small text file and add it to the zip. For + // this test, it must be added last, at the end of the ZIP file. + TestContext.WriteLine("Inserting one additional file with wzzip.exe - " + + DateTime.Now.ToString("G")); + nCycles++; + var newfile = Path.Combine(contentDir, "zzz-" + Path.GetRandomFileName() + ".txt"); + _txrx.Send(String.Format("status adding {0}...({1}/{2})", newfile, nCycles, fileList.Length+1)); + int filesize = _rnd.Next(50000) + 440000; + TestUtilities.CreateAndFillFileText(newfile, filesize); + wzzipOut = this.Exec(wzzip, String.Format("-a -p -r -yx \"{0}\" \"{1}\"", zipFileToCreate, newfile)); + TestContext.WriteLine(wzzipOut); + _txrx.Send("pb 1 step"); + System.Threading.Thread.Sleep(120); + File.Delete(newfile); + + _txrx.Send("pb 0 step"); + System.Threading.Thread.Sleep(120); + + // make sure the zip is larger than the 4.2gb size + FileInfo fi = new FileInfo(zipFileToCreate); + Assert.IsTrue(fi.Length > (long)System.UInt32.MaxValue, + "The zip file ({0}) is not large enough.", + zipFileToCreate); + + // Now use DotNetZip to extract the large zip file to the bit bucket. + TestContext.WriteLine("Verifying the new Zip with DotNetZip - " + + DateTime.Now.ToString("G")); + _txrx.Send("status Verifying the zip"); + verb = "verifying"; + _testTitle = "Zip64 Winzip Zip Huge - final verify"; + Zip64VerifyZip(zipFileToCreate); + + _txrx.Send("pb 0 step"); + System.Threading.Thread.Sleep(120); + } + + [TestMethod] + public void Zip64_ExtractZip64Archives() + { + File.Delete(@"C:\tmp\test.zip"); + File.WriteAllText(@"C:\tmp\content.txt", "someContent"); + + using (ZipFile zipFile = new ZipFile(@"C:\tmp\test.zip")) + { + zipFile.AddFile(@"C:\tmp\content.txt"); + + zipFile.UseZip64WhenSaving = Zip64Option.Always; + zipFile.MaxOutputSegmentSize = 700 * 984540; + zipFile.Save(); + } + + var extractedZipFile = ZipFile.Read(@"C:\tmp\test.zip"); + extractedZipFile.ExtractAll(@"C:\tmp\extracted", ExtractExistingFileAction.OverwriteSilently); + } + + [TestMethod, Timeout((int)(2 * 60*60*1000))] // 60*60*1000 = 1 hr + public void Zip64_Winzip_Setup() + { + // Not really a test. This thing just sets up the big zip file. + TestContext.WriteLine("This test merely checks for existence of two large zip"); + TestContext.WriteLine("files, in a well-known place, and creates them as"); + TestContext.WriteLine("necessary. The zips are then used by other tests."); + TestContext.WriteLine(" "); + GetHugeZipFiles(); // usually takes about an hour + } + + + private void EmitStatus(String s) + { + TestContext.WriteLine("status:"); + foreach (string line in s.Split('\n')) + TestContext.WriteLine(line); + } + + + [TestMethod, Timeout(1 * 60*60*1000)] + public void Zip64_Over_4gb() + { + Int64 desiredSize= System.UInt32.MaxValue; + desiredSize+= System.Int32.MaxValue/4; + desiredSize+= _rnd.Next(0x1000000); + _testTitle = "Zip64 Create/Zip/Extract a file > 4.2gb"; + + _txrx = TestUtilities.StartProgressMonitor("Zip64-Over-4gb", + _testTitle, + "starting up..."); + + string zipFileToCreate = Path.Combine(TopLevelDir, "Zip64_Over_4gb.zip"); + Directory.SetCurrentDirectory(TopLevelDir); + string nameOfFodderFile="VeryVeryLargeFile.txt"; + string nameOfExtractedFile = nameOfFodderFile + ".extracted"; + + // Steps in this test: 4 + _txrx.Send("pb 0 max 4"); + + TestContext.WriteLine(""); + TestContext.WriteLine("Creating a large file..." + + DateTime.Now.ToString("G")); + + // create a very large file + Action progressUpdate = (x) => + { + _txrx.Send(String.Format("pb 1 value {0}", x)); + _txrx.Send(String.Format("status Creating {0}, [{1}/{2}mb] ({3:N0}%)", + nameOfFodderFile, + x/(1024*1024), + desiredSize/(1024*1024), + ((double)x)/ (0.01 * desiredSize))); + }; + + // This takes a few minutes... + _txrx.Send(String.Format("pb 1 max {0}", desiredSize)); + TestUtilities.CreateAndFillFileText(nameOfFodderFile, + desiredSize, + progressUpdate); + + // make sure it is larger than 4.2gb + FileInfo fi = new FileInfo(nameOfFodderFile); + Assert.IsTrue(fi.Length > (long)System.UInt32.MaxValue, + "The fodder file ({0}) is not large enough.", + nameOfFodderFile); + + TestContext.WriteLine(""); + TestContext.WriteLine("computing checksum..." + + DateTime.Now.ToString("G")); + _txrx.Send("status computing checksum..."); + var chk1 = TestUtilities.ComputeChecksum(nameOfFodderFile); + + _txrx.Send("pb 0 step"); + + var sw = new StringWriter(); + using (var zip = new ZipFile()) + { + zip.StatusMessageTextWriter = sw; + zip.UseZip64WhenSaving = Zip64Option.Always; + zip.BufferSize = 65536*8; // 65536 * 8 = 512k + zip.SaveProgress += Zip64SaveProgress; + var e = zip.AddFile(nameOfFodderFile, ""); + _txrx.Send("status Saving......"); + TestContext.WriteLine("zipping one file......" + + DateTime.Now.ToString("G")); + zip.Save(zipFileToCreate); + } + + EmitStatus(sw.ToString()); + + File.Delete(nameOfFodderFile); + TestContext.WriteLine(""); + TestContext.WriteLine("Extracting the zip..." + + DateTime.Now.ToString("G")); + _txrx.Send("status Extracting the file..."); + _txrx.Send("pb 0 step"); + + var options = new ReadOptions { StatusMessageWriter= new StringWriter() }; + verb = "Extracting"; + _pb1Set = false; + using (var zip = ZipFile.Read(zipFileToCreate, options)) + { + Assert.AreEqual(1, zip.Entries.Count, + "Incorrect number of entries in the zip file"); + zip.ExtractProgress += Zip64ExtractProgress; + _numFilesToExtract = zip.Entries.Count; + _numExtracted= 1; + ZipEntry e = zip[0]; + e.FileName = nameOfExtractedFile; + _txrx.Send("status extracting......"); + e.Extract(); + } + + EmitStatus(options.StatusMessageWriter.ToString()); + _txrx.Send("pb 0 step"); + System.Threading.Thread.Sleep(120); + + TestContext.WriteLine(""); + TestContext.WriteLine("computing checksum..." + + DateTime.Now.ToString("G")); + _txrx.Send("status computing checksum..."); + var chk2 = TestUtilities.ComputeChecksum(nameOfExtractedFile); + Assert.AreEqual(TestUtilities.CheckSumToString(chk1), + TestUtilities.CheckSumToString(chk2), + "Checksum mismatch"); + _txrx.Send("pb 0 step"); + } + + + [TestMethod, Timeout(1 * 60*60*1000)] + public void Z64_ManyEntries_NoEncryption_DefaultCompression_AsNecessary() + { + _Zip64_Over65534Entries(Zip64Option.AsNecessary, EncryptionAlgorithm.None, Ionic.Zlib.CompressionLevel.Default); + } + + [TestMethod, Timeout(1 * 60*60*1000)] + public void Z64_ManyEntries_PkZipEncryption_DefaultCompression_AsNecessary() + { + _Zip64_Over65534Entries(Zip64Option.AsNecessary, EncryptionAlgorithm.PkzipWeak, Ionic.Zlib.CompressionLevel.Default); + } + + [TestMethod, Timeout(2 * 60*60*1000)] + public void Z64_ManyEntries_WinZipEncryption_DefaultCompression_AsNecessary() + { + _Zip64_Over65534Entries(Zip64Option.AsNecessary, EncryptionAlgorithm.WinZipAes256, Ionic.Zlib.CompressionLevel.Default); + } + + + [TestMethod, Timeout(1 * 60*60*1000)] + public void Z64_ManyEntries_NoEncryption_DefaultCompression_Always() + { + _Zip64_Over65534Entries(Zip64Option.Always, EncryptionAlgorithm.None, Ionic.Zlib.CompressionLevel.Default); + } + + [TestMethod, Timeout(1 * 60*60*1000)] + public void Z64_ManyEntries_PkZipEncryption_DefaultCompression_Always() + { + _Zip64_Over65534Entries(Zip64Option.Always, EncryptionAlgorithm.PkzipWeak, Ionic.Zlib.CompressionLevel.Default); + } + + [TestMethod, Timeout(2 * 60*60*1000)] + public void Z64_ManyEntries_WinZipEncryption_DefaultCompression_Always() + { + _Zip64_Over65534Entries(Zip64Option.Always, EncryptionAlgorithm.WinZipAes256, Ionic.Zlib.CompressionLevel.Default); + } + + + + + [TestMethod, Timeout(30 * 60*1000)] + [ExpectedException(typeof(Ionic.Zip.ZipException))] + public void Z64_ManyEntries_NOZIP64() + { + _Zip64_Over65534Entries(Zip64Option.Never, EncryptionAlgorithm.None, Ionic.Zlib.CompressionLevel.Default); + } + + + void _Zip64_Over65534Entries(Zip64Option z64option, + EncryptionAlgorithm encryption, + Ionic.Zlib.CompressionLevel compression) + { + // Emitting a zip file with > 65534 entries requires the use of ZIP64 in + // the central directory. + int numTotalEntries = _rnd.Next(4616)+65534; + //int numTotalEntries = _rnd.Next(461)+6534; + //int numTotalEntries = _rnd.Next(46)+653; + string enc = encryption.ToString(); + if (enc.StartsWith("WinZip")) enc = enc.Substring(6); + else if (enc.StartsWith("Pkzip")) enc = enc.Substring(0,5); + string zipFileToCreate = String.Format("Zip64.ZF_Over65534.{0}.{1}.{2}.zip", + z64option.ToString(), + enc, + compression.ToString()); + + _testTitle = String.Format("ZipFile #{0} 64({1}) E({2}), C({3})", + numTotalEntries, + z64option.ToString(), + enc, + compression.ToString()); + _txrx = TestUtilities.StartProgressMonitor(zipFileToCreate, + _testTitle, + "starting up..."); + + _txrx.Send("pb 0 max 4"); // 3 stages: AddEntry, Save, Verify + _txrx.Send("pb 0 value 0"); + + string password = Path.GetRandomFileName(); + + string statusString = String.Format("status Encrypt:{0} Compress:{1}...", + enc, + compression.ToString()); + + int numSaved = 0; + var saveProgress = new EventHandler( (sender, e) => { + switch (e.EventType) + { + case ZipProgressEventType.Saving_Started: + _txrx.Send("status saving..."); + _txrx.Send("pb 1 max " + numTotalEntries); + numSaved= 0; + break; + + case ZipProgressEventType.Saving_AfterWriteEntry: + numSaved++; + if ((numSaved % 128) == 0) + { + _txrx.Send("pb 1 value " + numSaved); + _txrx.Send(String.Format("status Saving entry {0}/{1} ({2:N0}%)", + numSaved, numTotalEntries, + numSaved / (0.01 * numTotalEntries) + )); + } + break; + + case ZipProgressEventType.Saving_Completed: + _txrx.Send("status Save completed"); + _txrx.Send("pb 1 max 1"); + _txrx.Send("pb 1 value 1"); + break; + } + }); + + string contentFormatString = + "This is the content for entry #{0}.\r\n\r\n" + + "AAAAAAA BBBBBB AAAAA BBBBB AAAAA BBBBB AAAAA\r\n"+ + "AAAAAAA BBBBBB AAAAA BBBBB AAAAA BBBBB AAAAA\r\n"; + _txrx.Send(statusString); + int dirCount= 0; + using (var zip = new ZipFile()) + { + _txrx.Send(String.Format("pb 1 max {0}", numTotalEntries)); + _txrx.Send("pb 1 value 0"); + + zip.Password = password; + zip.Encryption = encryption; + zip.CompressionLevel = compression; + zip.SaveProgress += saveProgress; + zip.UseZip64WhenSaving = z64option; + // save space when saving the file: + zip.EmitTimesInWindowsFormatWhenSaving = false; + zip.EmitTimesInUnixFormatWhenSaving = false; + + // add files: + for (int m=0; m(numTotalEntries-dirCount, + TestUtilities.CountEntries(zipFileToCreate)); + _txrx.Send("pb 0 step"); + } + + + + [Timeout(3 * 60*60*1000), TestMethod] // 60*60*1000 = 1 hr + public void Zip64_UpdateEntryComment_wi9214_WZ() + { + // Should take 2.5 hrs when creating the huge files, about 1 hr when the + // files already exist. + string[] zipFilesToUpdate = GetHugeZipFiles(); + Assert.IsTrue(File.Exists(zipFilesToUpdate[0]), + "The required ZIP file does not exist ({0})", + zipFilesToUpdate[0]); + Z64UpdateHugeZipWithComment(zipFilesToUpdate[0], "WinZip"); + } + + [Timeout(3 * 60*60*1000), TestMethod] // 60*60*1000 = 1 hr + public void Zip64_UpdateEntryComment_wi9214_DNZ() + { + // Should take 2.5 hrs when creating the huge files, about 1 hr when the + // files already exist. + string[] zipFilesToUpdate = GetHugeZipFiles(); + Assert.IsTrue(File.Exists(zipFilesToUpdate[1]), + "The required ZIP file does not exist ({0})", + zipFilesToUpdate[1]); + Z64UpdateHugeZipWithComment(zipFilesToUpdate[1], "DNZ"); + } + + + void Z64UpdateHugeZipWithComment(string zipFileToUpdate, string marker) + { + // Test whether opening a huge zip64 file and then re-saving, allows the + // file to remain valid. Must use a huge zip64 file over 4gb in order + // to verify this, and at least one entry must be > 4gb uncompressed. + // Want to check that UseZip64WhenSaving is automatically selected as + // appropriate. + string zipFileToCreate = "update-huge-zip.zip"; + + string newComment = "This is an updated comment on the first entry"+ + "in the zip that is larger than 4gb. (" + + DateTime.Now.ToString("u") +")"; + + // start the progress monitor + _txrx = TestUtilities.StartProgressMonitor("Zip64-update", + "Zip64 update", + "Checking file..."); + + // make sure the zip is larger than the 4.2gb size + FileInfo fi = new FileInfo(zipFileToUpdate); + Assert.IsTrue(fi.Length > (long)System.UInt32.MaxValue, + "The zip file ({0}) is not large enough.", + zipFileToUpdate); + TestContext.WriteLine("Verifying the zip file..." + + DateTime.Now.ToString("G")); + System.Threading.Thread.Sleep(220); + _txrx.Send("status Verifying the zip"); + System.Threading.Thread.Sleep(220); + _txrx.Send("title Zip64 Update Entry Comment wi9214"); + + // According to workitem 9214, the comment must be modified + // on an entry that is larger than 4gb (uncompressed). + // Check that here. + using (ZipFile zip = ZipFile.Read(zipFileToUpdate)) + { + ZipEntry bigEntry = null; + foreach (var e2 in zip) + { + if (e2.UncompressedSize > (long)System.UInt32.MaxValue) + { + bigEntry = e2; + break; + } + } + Assert.IsTrue(bigEntry != null && + bigEntry.UncompressedSize > (long)System.UInt32.MaxValue, + "Minimum size constraint not met."); + } + + // Verify the zip is correct, can be extracted. + // This will take some time for a large zip. + // (+1 to _numFilesToExtract for the directory) + _numFilesToExtract = TestUtilities.CountEntries(zipFileToUpdate) + 1; + _numExtracted= 1; + verb = "extract"; + _pb1Set = false; + + // _testTitle is used in Zip64{Save,Extract}Progress + _testTitle = "Zip64 Update Entry Comment - " + marker; + + var extract1 = BasicVerifyZip(zipFileToUpdate, null, false, Zip64ExtractProgress); + + _txrx.Send("status removing the extract directory..."); + Directory.Delete(extract1, true); + + TestContext.WriteLine("Updating the zip file..." + + DateTime.Now.ToString("G")); + _txrx.Send("status Updating the zip file..."); + + // update the zip with one small change: a new comment on + // the biggest entry. + var sw = new StringWriter(); + using (ZipFile zip = ZipFile.Read(zipFileToUpdate)) + { + // required: the option must be set automatically and intelligently + Assert.IsTrue(zip.UseZip64WhenSaving == Zip64Option.Always, + "The UseZip64WhenSaving option is set incorrectly ({0})", + zip.UseZip64WhenSaving); + + // according to workitem 9214, the comment must be modified + // on an entry that is larger than 4gb (uncompressed) + ZipEntry bigEntry = null; + foreach (var e2 in zip) + { + if (e2.UncompressedSize > (long)System.UInt32.MaxValue) + { + bigEntry = e2; + break; + } + } + // redundant with the check above, but so what? + Assert.IsTrue(bigEntry != null && + bigEntry.UncompressedSize > (long)System.UInt32.MaxValue, + "Minimum size constraint not met."); + + bigEntry.Comment = newComment; + zip.SaveProgress += Zip64SaveProgress; + zip.StatusMessageTextWriter = sw; + zip.Save(zipFileToCreate); + } + string status = sw.ToString(); + if (status != null && status != "") + { + var lines = status.Split('\n'); + TestContext.WriteLine("status: (" + + DateTime.Now.ToString("G") + ")"); + foreach (string line in lines) + TestContext.WriteLine(line); + } + + TestContext.WriteLine("Verifying the updated zip... " + + DateTime.Now.ToString("G")); + _txrx.Send("status Verifying the updated zip"); + Zip64VerifyZip(zipFileToCreate); // can take an hour or more + + // finally, verify that the modified comment is correct. + _txrx.Send("status checking the updated comment"); + using (ZipFile zip = ZipFile.Read(zipFileToCreate)) + { + // check that the z64 option is set automatically and intelligently + Assert.IsTrue(zip.UseZip64WhenSaving == Zip64Option.Always, + "The UseZip64WhenSaving option is set incorrectly ({0})", + zip.UseZip64WhenSaving); + + ZipEntry e = null; + foreach (var e2 in zip) + { + if (e2.UncompressedSize > (long)System.UInt32.MaxValue) + { + e = e2; + break; + } + } + Assert.IsTrue(e != null && e.UncompressedSize > (long)System.UInt32.MaxValue, + "No entry in the zip file is large enough."); + Assert.AreEqual(newComment, e.Comment, "The comment on the entry is unexpected."); + TestContext.WriteLine("The comment on the entry is {0}", e.Comment); + } + TestContext.WriteLine("All done... " + + DateTime.Now.ToString("G")); + } + + + + } + +} diff --git a/src/Zip Tests/packages.config b/old/src/Zip Tests/packages.config similarity index 100% rename from src/Zip Tests/packages.config rename to old/src/Zip Tests/packages.config diff --git a/src/Zip Tests/zips/Book1.xlsx b/old/src/Zip Tests/zips/Book1.xlsx similarity index 100% rename from src/Zip Tests/zips/Book1.xlsx rename to old/src/Zip Tests/zips/Book1.xlsx diff --git a/src/Zip Tests/zips/Calendar.apk b/old/src/Zip Tests/zips/Calendar.apk similarity index 100% rename from src/Zip Tests/zips/Calendar.apk rename to old/src/Zip Tests/zips/Calendar.apk diff --git a/src/Zip Tests/zips/Vanishing Oatmeal Cookies.docx b/old/src/Zip Tests/zips/Vanishing Oatmeal Cookies.docx similarity index 100% rename from src/Zip Tests/zips/Vanishing Oatmeal Cookies.docx rename to old/src/Zip Tests/zips/Vanishing Oatmeal Cookies.docx diff --git a/src/Zip Tests/zips/appnote-iz-latest.zip b/old/src/Zip Tests/zips/appnote-iz-latest.zip similarity index 100% rename from src/Zip Tests/zips/appnote-iz-latest.zip rename to old/src/Zip Tests/zips/appnote-iz-latest.zip diff --git a/src/Zip Tests/zips/fireone.zip b/old/src/Zip Tests/zips/fireone.zip similarity index 100% rename from src/Zip Tests/zips/fireone.zip rename to old/src/Zip Tests/zips/fireone.zip diff --git a/src/Zip Tests/zips/plot.dwf b/old/src/Zip Tests/zips/plot.dwf similarity index 100% rename from src/Zip Tests/zips/plot.dwf rename to old/src/Zip Tests/zips/plot.dwf diff --git a/src/Zip Tests/zips/relative-paths-in-subdir-outside.zip b/old/src/Zip Tests/zips/relative-paths-in-subdir-outside.zip similarity index 100% rename from src/Zip Tests/zips/relative-paths-in-subdir-outside.zip rename to old/src/Zip Tests/zips/relative-paths-in-subdir-outside.zip diff --git a/src/Zip Tests/zips/relative-paths-in-subdir.zip b/old/src/Zip Tests/zips/relative-paths-in-subdir.zip similarity index 100% rename from src/Zip Tests/zips/relative-paths-in-subdir.zip rename to old/src/Zip Tests/zips/relative-paths-in-subdir.zip diff --git a/src/Zip Tests/zips/relative-paths-outside.zip b/old/src/Zip Tests/zips/relative-paths-outside.zip similarity index 100% rename from src/Zip Tests/zips/relative-paths-outside.zip rename to old/src/Zip Tests/zips/relative-paths-outside.zip diff --git a/src/Zip Tests/zips/wi10330-badzip.zip b/old/src/Zip Tests/zips/wi10330-badzip.zip similarity index 100% rename from src/Zip Tests/zips/wi10330-badzip.zip rename to old/src/Zip Tests/zips/wi10330-badzip.zip diff --git a/src/Zip Tests/zips/wi11056.dwf b/old/src/Zip Tests/zips/wi11056.dwf similarity index 100% rename from src/Zip Tests/zips/wi11056.dwf rename to old/src/Zip Tests/zips/wi11056.dwf diff --git a/src/Zip Tests/zips/wi13668-bad-pwd-472713.zip b/old/src/Zip Tests/zips/wi13668-bad-pwd-472713.zip similarity index 100% rename from src/Zip Tests/zips/wi13668-bad-pwd-472713.zip rename to old/src/Zip Tests/zips/wi13668-bad-pwd-472713.zip diff --git a/src/Zip Tests/zips/wi13892.zip b/old/src/Zip Tests/zips/wi13892.zip similarity index 100% rename from src/Zip Tests/zips/wi13892.zip rename to old/src/Zip Tests/zips/wi13892.zip diff --git a/src/Zip Tests/zips/winzip-sfx.exe b/old/src/Zip Tests/zips/winzip-sfx.exe similarity index 100% rename from src/Zip Tests/zips/winzip-sfx.exe rename to old/src/Zip Tests/zips/winzip-sfx.exe diff --git a/src/Zip Tests/zips/wizzquiz.zip b/old/src/Zip Tests/zips/wizzquiz.zip similarity index 100% rename from src/Zip Tests/zips/wizzquiz.zip rename to old/src/Zip Tests/zips/wizzquiz.zip diff --git a/src/Zip.Android/Properties/AssemblyInfo.cs b/old/src/Zip.Android/Properties/AssemblyInfo.cs similarity index 100% rename from src/Zip.Android/Properties/AssemblyInfo.cs rename to old/src/Zip.Android/Properties/AssemblyInfo.cs diff --git a/src/Zip.Android/Resources/AboutResources.txt b/old/src/Zip.Android/Resources/AboutResources.txt similarity index 100% rename from src/Zip.Android/Resources/AboutResources.txt rename to old/src/Zip.Android/Resources/AboutResources.txt diff --git a/src/Zip.Android/Resources/Resource.Designer.cs b/old/src/Zip.Android/Resources/Resource.Designer.cs similarity index 100% rename from src/Zip.Android/Resources/Resource.Designer.cs rename to old/src/Zip.Android/Resources/Resource.Designer.cs diff --git a/src/Zip.Android/Resources/Values/Strings.xml b/old/src/Zip.Android/Resources/Values/Strings.xml similarity index 100% rename from src/Zip.Android/Resources/Values/Strings.xml rename to old/src/Zip.Android/Resources/Values/Strings.xml diff --git a/src/Zip.Android/Zip.Android.csproj b/old/src/Zip.Android/Zip.Android.csproj similarity index 100% rename from src/Zip.Android/Zip.Android.csproj rename to old/src/Zip.Android/Zip.Android.csproj diff --git a/src/Zip.Android/Zip.Android.csproj.bak b/old/src/Zip.Android/Zip.Android.csproj.bak similarity index 100% rename from src/Zip.Android/Zip.Android.csproj.bak rename to old/src/Zip.Android/Zip.Android.csproj.bak diff --git a/src/Zip.iOS/Properties/AssemblyInfo.cs b/old/src/Zip.iOS/Properties/AssemblyInfo.cs similarity index 100% rename from src/Zip.iOS/Properties/AssemblyInfo.cs rename to old/src/Zip.iOS/Properties/AssemblyInfo.cs diff --git a/src/Zip.iOS/Zip.iOS.csproj b/old/src/Zip.iOS/Zip.iOS.csproj similarity index 100% rename from src/Zip.iOS/Zip.iOS.csproj rename to old/src/Zip.iOS/Zip.iOS.csproj diff --git a/src/Zip/Migrated rules for Zip DLL.ruleset b/old/src/Zip/Migrated rules for Zip DLL.ruleset similarity index 98% rename from src/Zip/Migrated rules for Zip DLL.ruleset rename to old/src/Zip/Migrated rules for Zip DLL.ruleset index aae80da..e84dcd6 100644 --- a/src/Zip/Migrated rules for Zip DLL.ruleset +++ b/old/src/Zip/Migrated rules for Zip DLL.ruleset @@ -1,13 +1,13 @@ - - - - - - - - - - - - + + + + + + + + + + + + \ No newline at end of file diff --git a/src/Zip/PackResources.vbs b/old/src/Zip/PackResources.vbs similarity index 97% rename from src/Zip/PackResources.vbs rename to old/src/Zip/PackResources.vbs index 90c57a2..f0365a3 100644 --- a/src/Zip/PackResources.vbs +++ b/old/src/Zip/PackResources.vbs @@ -1,238 +1,238 @@ -' PackResources.vbs -' ------------------------------------------------------------------ -' -' Copyright (c) 2010 Dino Chiesa -' All rights reserved. -' -' This code module is part of DotNetZip, a zipfile class library. -' -' ------------------------------------------------------------------ -' -' This code is licensed under the Microsoft Public License. -' See the file License.txt for the license details. -' More info on: http://dotnetzip.codeplex.com -' -' ------------------------------------------------------------------ -' -' last saved (in emacs): -' Time-stamp: <2011-July-23 20:02:17> -' -' ------------------------------------------------------------------ -' -' This is a script file that packs the resources files into a zip, -' for inclusion into the zip dll. -' -' This script assumes it will be run by Visual Studio, as a prebuild -' script, starting with the current directory of -' {DotNetZip}\Zip Partial DLL\bin\{Debug,Release} -' -' Wed, 10 Feb 2010 12:24 -' -' ------------------------------------------------------------------ - - -Sub NewZip(pathToZipFile) - - ' WScript.Echo "Creating a new zip file (" & pathToZipFile & ") " - - Dim fso - Set fso = CreateObject("Scripting.FileSystemObject") - Dim file - Set file = fso.CreateTextFile(pathToZipFile) - - '' this is the content for an empty zip file - file.Write Chr(80) & Chr(75) & Chr(5) & Chr(6) & String(18, 0) - - file.Close - Set fso = Nothing - Set file = Nothing - - WScript.Sleep 500 - -End Sub - - - -Function DatesAreSubstantiallyDifferent(d1, d2) - - Dim result - Dim s - - ''' WScript.Echo "d1= " & d1 - ''' WScript.Echo "d2= " & d2 - - '' http://www.w3schools.com/vbscript/func_datediff.asp - s = DateDiff("s",d1,d2) - ''' WScript.Echo "s= " & s - - '' 2 seconds or less in either direction is ok. - If (s < 3 AND s > -3) Then - result = False - Else - result = True - End If - - DatesAreSubstantiallyDifferent = result - -End Function - - - - - -Sub CreateZip(pathToZipFile, dirToZip) - - Dim fso - Set fso= Wscript.CreateObject("Scripting.FileSystemObject") - - Dim fullPathToZipFile - fullPathToZipFile = fso.GetAbsolutePathName(pathToZipFile) - - Dim fullDirToZip - fullDirToZip = fso.GetAbsolutePathName(dirToZip) - - If Not fso.FolderExists(fullDirToZip) Then - ' WScript.Echo "The directory to zip does not exist." - Exit Sub - End If - - ' WScript.Echo "Checking zip " & fullPathToZipFile - ' WScript.Echo " against directory " & fullDirToZip - - dim sa - set sa = CreateObject("Shell.Application") - - - ' http://msdn.microsoft.com/en-us/library/bb787866(VS.85).aspx - ' =============================================================== - ' 4 = do not display a progress box - ' 16 = Respond with "Yes to All" for any dialog box that is displayed. - ' 128 = Perform the operation on files only if a wildcard file name (*.*) is specified. - ' 256 = Display a progress dialog box but do not show the file names. - ' 2048 = Version 4.71. Do not copy the security attributes of the file. - ' 4096 = Only operate in the local directory. Don't operate recursively into subdirectories. - - Dim fcount - fcount = 0 - - Dim needRepack - needRepack = -1 - Dim zip - Dim folder, file, builtpath, pass, d1, d2, folderItem - Set folder = fso.GetFolder(fullDirToZip) - - '' do this in 2 passes. First pass checks if any file in the zip has been updated. - '' 2nd pass is performed only if necessary, and actually copies all the files into the new zip. - - pass = 0 - Do Until pass > 1 - - For Each file in folder.Files - '' check or zip any file that is not .zip, not .resx and not ending in ~ (emacs backup file) - If (Right(file.name,4) <> ".zip" AND Right(file.name,5) <> ".resx" AND Right(file.name,1) <> "~") Then - builtpath = fso.BuildPath(fullDirToZip, file.Name) - If (pass = 0) Then - If (needRepack = -1) Then - '' first file only - If Not fso.FileExists(fullPathToZipFile) Then - ' WScript.Echo "The zip file does not exist." - '' no zip means, always need to repack - needRepack = 1 - Else - Set zip = sa.NameSpace(fullPathToZipFile) - needRepack = 0 - End If - End If - - '' only check if we need to repack this file, if - '' necessary; in other words, if none of the prior - '' files need to be repacked. - If (needRepack = 0) Then - '' check if the file has been updated - d1 = file.DateLastModified - Set folderItem = zip.ParseName(file.Name) - If (Not folderItem Is Nothing) Then - d2 = folderItem.ModifyDate - Set folderItem = Nothing - Else - '' dummy - d2 = "01/01/2001 6:05:00 PM" - End If - - If DatesAreSubstantiallyDifferent(d1,d2) Then - needRepack = 1 - End If - End If - - Else - '' pass = 1 - If (fcount = 0) Then - Wscript.Sleep(400) - End If - ' WScript.Echo builtpath - zip.CopyHere builtpath, 0 - fcount = fcount + 1 - '' Delay between each item. With no, the zip fails with - '' "file not found" or "No Read Permission" or some other - '' spurious error. - Wscript.Sleep(450) - End If - - End If - Next - - If (pass = 0) Then - If (needRepack <> 0) Then - '' reaching pass 1 means we delete and re-create the zip file - ' WScript.Echo "The resources zip needs to be re-packed. " - Set zip = Nothing - If fso.FileExists(fullPathToZipFile) Then - ' WScript.Echo "That zip file already exists - deleting it." - fso.DeleteFile fullPathToZipFile - '' give it time to be really deleted - Wscript.Sleep(2400) - End If - NewZip fullPathToZipFile - Set zip = sa.NameSpace(fullPathToZipFile) - Else - ' WScript.Echo "The resources zip does not need to be updated." - '' insure we skip the 2nd pass. - pass = pass + 1 - End If - - Else - '' the zip process is asynchronous. wait for completion, - '' but don't wait forever. - Dim sLoop - sLoop = 0 - ' WScript.Echo "Verifying the count..." - Do Until fcount <= zip.Items.Count - Wscript.Sleep(400) - sLoop = sLoop + 1 - If ((sLoop Mod 6) = 0) Then - ' WScript.Echo " have " & zip.items.Count & " items so far, need " & fcount - ElseIf sLoop > 80 Then - ' WScript.Echo "Giving up..." - Set zip = Nothing - Wscript.Sleep(1200) - If fso.FileExists(fullPathToZipFile) Then - fso.DeleteFile fullPathToZipFile - End If - Err.Raise 1460, "PackResources.vbs/CreateZip", "Timeout waiting for ZIP completion" - End If - Loop - End If - pass = pass + 1 - - Loop - - Set fso = Nothing - Set sa = Nothing - Set zip = Nothing - Set folder = Nothing - -End Sub - - - -CreateZip "..\..\Resources\zippedResources.zip", "..\..\Resources" +' PackResources.vbs +' ------------------------------------------------------------------ +' +' Copyright (c) 2010 Dino Chiesa +' All rights reserved. +' +' This code module is part of DotNetZip, a zipfile class library. +' +' ------------------------------------------------------------------ +' +' This code is licensed under the Microsoft Public License. +' See the file License.txt for the license details. +' More info on: http://dotnetzip.codeplex.com +' +' ------------------------------------------------------------------ +' +' last saved (in emacs): +' Time-stamp: <2011-July-23 20:02:17> +' +' ------------------------------------------------------------------ +' +' This is a script file that packs the resources files into a zip, +' for inclusion into the zip dll. +' +' This script assumes it will be run by Visual Studio, as a prebuild +' script, starting with the current directory of +' {DotNetZip}\Zip Partial DLL\bin\{Debug,Release} +' +' Wed, 10 Feb 2010 12:24 +' +' ------------------------------------------------------------------ + + +Sub NewZip(pathToZipFile) + + ' WScript.Echo "Creating a new zip file (" & pathToZipFile & ") " + + Dim fso + Set fso = CreateObject("Scripting.FileSystemObject") + Dim file + Set file = fso.CreateTextFile(pathToZipFile) + + '' this is the content for an empty zip file + file.Write Chr(80) & Chr(75) & Chr(5) & Chr(6) & String(18, 0) + + file.Close + Set fso = Nothing + Set file = Nothing + + WScript.Sleep 500 + +End Sub + + + +Function DatesAreSubstantiallyDifferent(d1, d2) + + Dim result + Dim s + + ''' WScript.Echo "d1= " & d1 + ''' WScript.Echo "d2= " & d2 + + '' http://www.w3schools.com/vbscript/func_datediff.asp + s = DateDiff("s",d1,d2) + ''' WScript.Echo "s= " & s + + '' 2 seconds or less in either direction is ok. + If (s < 3 AND s > -3) Then + result = False + Else + result = True + End If + + DatesAreSubstantiallyDifferent = result + +End Function + + + + + +Sub CreateZip(pathToZipFile, dirToZip) + + Dim fso + Set fso= Wscript.CreateObject("Scripting.FileSystemObject") + + Dim fullPathToZipFile + fullPathToZipFile = fso.GetAbsolutePathName(pathToZipFile) + + Dim fullDirToZip + fullDirToZip = fso.GetAbsolutePathName(dirToZip) + + If Not fso.FolderExists(fullDirToZip) Then + ' WScript.Echo "The directory to zip does not exist." + Exit Sub + End If + + ' WScript.Echo "Checking zip " & fullPathToZipFile + ' WScript.Echo " against directory " & fullDirToZip + + dim sa + set sa = CreateObject("Shell.Application") + + + ' http://msdn.microsoft.com/en-us/library/bb787866(VS.85).aspx + ' =============================================================== + ' 4 = do not display a progress box + ' 16 = Respond with "Yes to All" for any dialog box that is displayed. + ' 128 = Perform the operation on files only if a wildcard file name (*.*) is specified. + ' 256 = Display a progress dialog box but do not show the file names. + ' 2048 = Version 4.71. Do not copy the security attributes of the file. + ' 4096 = Only operate in the local directory. Don't operate recursively into subdirectories. + + Dim fcount + fcount = 0 + + Dim needRepack + needRepack = -1 + Dim zip + Dim folder, file, builtpath, pass, d1, d2, folderItem + Set folder = fso.GetFolder(fullDirToZip) + + '' do this in 2 passes. First pass checks if any file in the zip has been updated. + '' 2nd pass is performed only if necessary, and actually copies all the files into the new zip. + + pass = 0 + Do Until pass > 1 + + For Each file in folder.Files + '' check or zip any file that is not .zip, not .resx and not ending in ~ (emacs backup file) + If (Right(file.name,4) <> ".zip" AND Right(file.name,5) <> ".resx" AND Right(file.name,1) <> "~") Then + builtpath = fso.BuildPath(fullDirToZip, file.Name) + If (pass = 0) Then + If (needRepack = -1) Then + '' first file only + If Not fso.FileExists(fullPathToZipFile) Then + ' WScript.Echo "The zip file does not exist." + '' no zip means, always need to repack + needRepack = 1 + Else + Set zip = sa.NameSpace(fullPathToZipFile) + needRepack = 0 + End If + End If + + '' only check if we need to repack this file, if + '' necessary; in other words, if none of the prior + '' files need to be repacked. + If (needRepack = 0) Then + '' check if the file has been updated + d1 = file.DateLastModified + Set folderItem = zip.ParseName(file.Name) + If (Not folderItem Is Nothing) Then + d2 = folderItem.ModifyDate + Set folderItem = Nothing + Else + '' dummy + d2 = "01/01/2001 6:05:00 PM" + End If + + If DatesAreSubstantiallyDifferent(d1,d2) Then + needRepack = 1 + End If + End If + + Else + '' pass = 1 + If (fcount = 0) Then + Wscript.Sleep(400) + End If + ' WScript.Echo builtpath + zip.CopyHere builtpath, 0 + fcount = fcount + 1 + '' Delay between each item. With no, the zip fails with + '' "file not found" or "No Read Permission" or some other + '' spurious error. + Wscript.Sleep(450) + End If + + End If + Next + + If (pass = 0) Then + If (needRepack <> 0) Then + '' reaching pass 1 means we delete and re-create the zip file + ' WScript.Echo "The resources zip needs to be re-packed. " + Set zip = Nothing + If fso.FileExists(fullPathToZipFile) Then + ' WScript.Echo "That zip file already exists - deleting it." + fso.DeleteFile fullPathToZipFile + '' give it time to be really deleted + Wscript.Sleep(2400) + End If + NewZip fullPathToZipFile + Set zip = sa.NameSpace(fullPathToZipFile) + Else + ' WScript.Echo "The resources zip does not need to be updated." + '' insure we skip the 2nd pass. + pass = pass + 1 + End If + + Else + '' the zip process is asynchronous. wait for completion, + '' but don't wait forever. + Dim sLoop + sLoop = 0 + ' WScript.Echo "Verifying the count..." + Do Until fcount <= zip.Items.Count + Wscript.Sleep(400) + sLoop = sLoop + 1 + If ((sLoop Mod 6) = 0) Then + ' WScript.Echo " have " & zip.items.Count & " items so far, need " & fcount + ElseIf sLoop > 80 Then + ' WScript.Echo "Giving up..." + Set zip = Nothing + Wscript.Sleep(1200) + If fso.FileExists(fullPathToZipFile) Then + fso.DeleteFile fullPathToZipFile + End If + Err.Raise 1460, "PackResources.vbs/CreateZip", "Timeout waiting for ZIP completion" + End If + Loop + End If + pass = pass + 1 + + Loop + + Set fso = Nothing + Set sa = Nothing + Set zip = Nothing + Set folder = Nothing + +End Sub + + + +CreateZip "..\..\Resources\zippedResources.zip", "..\..\Resources" diff --git a/src/Zip/Properties/AssemblyInfo.cs b/old/src/Zip/Properties/AssemblyInfo.cs similarity index 100% rename from src/Zip/Properties/AssemblyInfo.cs rename to old/src/Zip/Properties/AssemblyInfo.cs diff --git a/src/Zip/Resources/CommandLineSelfExtractorStub.cs b/old/src/Zip/Resources/CommandLineSelfExtractorStub.cs similarity index 97% rename from src/Zip/Resources/CommandLineSelfExtractorStub.cs rename to old/src/Zip/Resources/CommandLineSelfExtractorStub.cs index 216b9eb..d776f3e 100644 --- a/src/Zip/Resources/CommandLineSelfExtractorStub.cs +++ b/old/src/Zip/Resources/CommandLineSelfExtractorStub.cs @@ -1,627 +1,627 @@ -// CommandLineSelfExtractorStub.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2008-2011 Dino Chiesa. -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-June-18 20:58:45> -// -// ------------------------------------------------------------------ -// -// This is a the source module that implements the stub of a -// command-line self-extracting Zip archive - the code included in all -// command-line SFX files. This code is included as a resource into the -// DotNetZip DLL, and then is compiled at runtime when a SFX is saved. -// -// ------------------------------------------------------------------ - - -namespace Ionic.Zip -{ - // include the using statements inside the namespace declaration, - // because source code will be concatenated together before - // compilation. - using System; - using System.Reflection; - using System.Resources; - using System.IO; - using System.Collections.Generic; - using System.Diagnostics; - using Ionic.Zip; - - public class CommandLineSelfExtractor - { - const string DllResourceName = "Ionic.Zip.dll"; - - string TargetDirectory = "@@EXTRACTLOCATION"; - string PostUnpackCmdLine = "@@POST_UNPACK_CMD_LINE"; - bool ReplacedEnvVarsForTargetDirectory; - bool ReplacedEnvVarsForCmdLine; - bool ListOnly; - bool Verbose; - bool ReallyVerbose; - bool RemoveFilesAfterExe; - bool SkipPostUnpackCommand; - string Password = null; - - // cannot include the following line, because of our use of - // the AssemblyResolver event. - - //Ionic.Zip.ExtractExistingFileAction Overwrite; - int Overwrite; - - // Attention: it isn't possible, with the design of this class as it is - // now, to have a member variable of a type from the Ionic.Zip assembly. - // The class design registers an assembly resolver, but apparently NOT in - // time to allow the assembly to be used in private instance variables. - - private bool PostUnpackCmdLineIsSet() - { - // What is going on here? - // The PostUnpackCmdLine is initialized to a particular value, then - // we test to see if it begins with the first two chars of that value, - // and ends with the last part of the value. Why? - - // Here's the thing. In order to insure the code is right, this module has - // to compile as it is, as a standalone module. But then, inside - // DotNetZip, when generating an SFX, we do a text.Replace on the source - // code, potentially replacing @@POST_UNPACK_CMD_LINE with an actual value. - // The test here checks to see if it has been set. - - bool result = !(PostUnpackCmdLine.StartsWith("@@") && - PostUnpackCmdLine.EndsWith("POST_UNPACK_CMD_LINE")); - - if (result && ReplacedEnvVarsForCmdLine == false) - { - PostUnpackCmdLine= ReplaceEnvVars(PostUnpackCmdLine); - ReplacedEnvVarsForCmdLine = true; - } - - return result; - } - - - private bool TargetDirectoryIsSet() - { - bool result = !(TargetDirectory.StartsWith("@@") && - TargetDirectory.EndsWith("EXTRACTLOCATION")); - - if (result && ReplacedEnvVarsForTargetDirectory == false) - { - TargetDirectory= ReplaceEnvVars(TargetDirectory); - ReplacedEnvVarsForTargetDirectory = true; - } - return result; - } - - - - private string ReplaceEnvVars(string s) - { - System.Collections.IDictionary envVars = Environment.GetEnvironmentVariables(); - foreach (System.Collections.DictionaryEntry de in envVars) - { - string t = "%" + de.Key + "%"; - s= s.Replace(t, de.Value as String); - } - - return s; - } - - - private bool SetRemoveFilesFlag() - { - bool result = false; - Boolean.TryParse("@@REMOVE_AFTER_EXECUTE", out result); - RemoveFilesAfterExe = result; - return result; - } - - - private bool SetVerboseFlag() - { - bool result = false; - Boolean.TryParse("@@QUIET", out result); - Verbose = !result; - return Verbose; - } - - private int SetOverwriteBehavior() - { - Int32 result = 0; - Int32.TryParse("@@EXTRACT_EXISTING_FILE", out result); - Overwrite = (int) result; - return result; - } - - - // ctor - private CommandLineSelfExtractor() - { - SetRemoveFilesFlag(); - SetVerboseFlag(); - SetOverwriteBehavior(); - PostUnpackCmdLineIsSet(); - TargetDirectoryIsSet(); - } - - - // ctor - public CommandLineSelfExtractor(string[] args) : this() - { - string specifiedDirectory = null; - for (int i = 0; i < args.Length; i++) - { - switch (args[i]) - { - case "-d": - i++; - if (args.Length <= i) - { - Console.WriteLine("please supply a directory.\n"); - GiveUsageAndExit(); - } - if (specifiedDirectory != null) - { - Console.WriteLine("You already provided a directory.\n"); - GiveUsageAndExit(); - } - specifiedDirectory = args[i]; - break; - case "-p": - i++; - if (args.Length <= i) - { - Console.WriteLine("please supply a password.\n"); - GiveUsageAndExit(); - } - if (Password != null) - { - Console.WriteLine("You already provided a password.\n"); - GiveUsageAndExit(); - } - Password = args[i]; - break; - case "-o": - Overwrite = 1; - //WantOverwrite = ExtractExistingFileAction.OverwriteSilently; - break; - case "-n": - Overwrite= 2; - //WantOverwrite = ExtractExistingFileAction.DoNotOverwrite; - break; - case "-l": - ListOnly = true; - break; - case "-r+": - RemoveFilesAfterExe = true; - break; - case "-r-": - RemoveFilesAfterExe = false; - break; - case "-x": - SkipPostUnpackCommand = true; - break; - case "-?": - GiveUsageAndExit(); - break; - case "-v-": - Verbose = false; - break; - case "-v+": - if (Verbose) - ReallyVerbose = true; - else - Verbose = true; - break; - default: - Console.WriteLine("unrecognized argument: '{0}'\n", args[i]); - GiveUsageAndExit(); - break; - } - } - - - if (!ListOnly) - { - if (specifiedDirectory!=null) - TargetDirectory = specifiedDirectory; - else if (!TargetDirectoryIsSet()) - TargetDirectory = "."; // cwd - } - - if (ListOnly && ((Overwrite!= 0) || (specifiedDirectory != null))) - { - Console.WriteLine("Inconsistent options.\n"); - GiveUsageAndExit(); - } - } - - - // workitem 8988 - private string[] SplitCommandLine(string cmdline) - { - // if the first char is NOT a double-quote, then just split the line - if (cmdline[0]!='"') - return cmdline.Split( new char[] {' '}, 2); - - // the first char is double-quote. Need to verify that there's another one. - int ix = cmdline.IndexOf('"', 1); - if (ix == -1) return null; // no double-quote - FAIL - - // if the double-quote is the last char, then just return an array of ONE string - if (ix+1 == cmdline.Length) return new string[] { cmdline.Substring(1,ix-1) }; - - if (cmdline[ix+1]!= ' ') return null; // no space following the double-quote - FAIL - - // there's definitely another double quote, followed by a space - string[] args = new string[2]; - args[0] = cmdline.Substring(1,ix-1); - while (cmdline[ix+1]==' ') ix++; // go to next non-space char - args[1] = cmdline.Substring(ix+1); - return args; - } - - - static CommandLineSelfExtractor() - { - AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(Resolver); - } - - - static System.Reflection.Assembly Resolver(object sender, ResolveEventArgs args) - { - // super defensive - Assembly a1 = Assembly.GetExecutingAssembly(); - if (a1==null) - throw new Exception("GetExecutingAssembly returns null."); - - string[] tokens = args.Name.Split(','); - String[] names = a1.GetManifestResourceNames(); - - if (names==null) - throw new Exception("GetManifestResourceNames returns null."); - - // workitem 7978 - Stream s = null; - foreach (string n in names) - { - string root = n.Substring(0,n.Length-4); - string ext = n.Substring(n.Length-3); - if (root.Equals(tokens[0]) && ext.ToLower().Equals("dll")) - { - s= a1.GetManifestResourceStream(n); - if (s!=null) break; - } - } - - if (s==null) - throw new Exception(String.Format("GetManifestResourceStream returns null. Available resources: [{0}]", - String.Join("|", names))); - - byte[] block = new byte[s.Length]; - - if (block==null) - throw new Exception(String.Format("Cannot allocated buffer of length({0}).", s.Length)); - - s.Read(block, 0, block.Length); - Assembly a2 = Assembly.Load(block); - if (a2==null) - throw new Exception("Assembly.Load(block) returns null"); - - return a2; - } - - - - public int Run() - { - //System.Diagnostics.Debugger.Break(); - - List itemsExtracted= new List(); - - global::Ionic.Zip.ExtractExistingFileAction WantOverwrite = - (Ionic.Zip.ExtractExistingFileAction) Overwrite; - - // There way this works: the EXE is a ZIP file. So - // read from the location of the assembly, in other words the path to the exe. - Assembly a = Assembly.GetExecutingAssembly(); - - int rc = 0; - try - { - // workitem 7067 - using (global::Ionic.Zip.ZipFile zip = global::Ionic.Zip.ZipFile.Read(a.Location)) - { - if (Verbose) - Console.WriteLine("Command-Line Self Extractor generated by DotNetZip."); - - if (!ListOnly) - { - if (Verbose) - { - Console.Write("Extracting to {0}", TargetDirectory); - System.Console.WriteLine(" (Existing file action: {0})", WantOverwrite.ToString()); - } - } - - bool header = true; - foreach (global::Ionic.Zip.ZipEntry entry in zip) - { - if (ListOnly || ReallyVerbose) - { - if (header) - { - System.Console.WriteLine("Extracting Zip file: {0}", zip.Name); - if ((zip.Comment != null) && (zip.Comment != "")) - System.Console.WriteLine("Comment: {0}", zip.Comment); - - System.Console.WriteLine("\n{1,-22} {2,9} {3,5} {4,9} {5,3} {6,8} {0}", - "Filename", "Modified", "Size", "Ratio", "Packed", "pw?", "CRC"); - System.Console.WriteLine(new System.String('-', 80)); - header = false; - } - - System.Console.WriteLine("{1,-22} {2,9} {3,5:F0}% {4,9} {5,3} {6:X8} {0}", - entry.FileName, - entry.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), - entry.UncompressedSize, - entry.CompressionRatio, - entry.CompressedSize, - (entry.UsesEncryption) ? "Y" : "N", - entry.Crc); - - } - - if (!ListOnly) - { - if (Verbose && !ReallyVerbose) - System.Console.WriteLine(" {0}", entry.FileName); - - if (entry.Encryption == global::Ionic.Zip.EncryptionAlgorithm.None) - { - try - { - entry.Extract(TargetDirectory, WantOverwrite); - itemsExtracted.Add(entry.FileName); - } - catch (Exception ex1) - { - Console.WriteLine(" Error -- {0}", ex1.Message); - rc++; - } - } - else - { - if (Password == null) - { - Console.WriteLine("Cannot extract entry {0} without a password.", entry.FileName); - rc++; - } - else - { - try - { - entry.ExtractWithPassword(TargetDirectory, WantOverwrite, Password); - itemsExtracted.Add(entry.FileName); - } - catch (Exception ex2) - { - Console.WriteLine(" Error -- {0}", ex2.Message); - rc++; - } - } - } - } - } - } - } - catch (Exception) - { - Console.WriteLine("The self-extracting zip file is corrupted."); - return 4; - } - - if (rc != 0) return rc; - - - // potentially execute the embedded command - if (PostUnpackCmdLineIsSet() && !SkipPostUnpackCommand) - { - if (ListOnly) - { - Console.WriteLine("\nExecute on unpack: {0}", PostUnpackCmdLine); - } - else - { - try - { - string[] args = SplitCommandLine(PostUnpackCmdLine); - - if (args!= null && args.Length > 0) - { - if (Verbose) - System.Console.WriteLine("Running command: {0}", PostUnpackCmdLine); - - ProcessStartInfo startInfo = new ProcessStartInfo(args[0]); - startInfo.WorkingDirectory = TargetDirectory; - startInfo.CreateNoWindow = true; - if (args.Length > 1) startInfo.Arguments = args[1]; - - using (Process p = Process.Start(startInfo)) - { - if (p!=null) - { - p.WaitForExit(); - rc = p.ExitCode; - // workitem 8925 - if (p.ExitCode == 0) - { - if (RemoveFilesAfterExe) - { - foreach (string s in itemsExtracted) - { - string fullPath = Path.Combine(TargetDirectory,s); - try - { - if (File.Exists(fullPath)) - File.Delete(fullPath); - else if (Directory.Exists(fullPath)) - Directory.Delete(fullPath, true); - } - catch - { - } - } - } - } - } - } - - - } - } - catch (Exception exc1) - { - System.Console.WriteLine("{0}", exc1); - rc = 5; - } - - } - } - - return rc; - } - - - - private void GiveUsageAndExit() - { - Assembly a = Assembly.GetExecutingAssembly(); - string s = Path.GetFileName(a.Location); - Console.WriteLine("DotNetZip Command-Line Self Extractor, see http://DotNetZip.codeplex.com/"); - Console.WriteLine("Copyright (c) 2008-2011 Dino Chiesa."); - - Console.WriteLine("usage:\n {0} [-p ] [-d ]", s); - - string more = " Extracts entries from the archive. If any files to be extracted already\n" + - " exist, the program will stop.\n\n Additional Options:\n" + - "{0}" + - "{1}" + - "{2}" + - "{3}"; - - string overwriteString = - String.Format(" -o overwrite any existing files upon extraction{0}.\n" + - " -n do not overwrite any existing files upon extraction{1}.\n", - (Overwrite == 1) ? " (default)" : "", - (Overwrite == 2) ? " (default)" : ""); - - string removeString = PostUnpackCmdLineIsSet() - ? String.Format(" -r+ remove files after the optional post-unpack exe completes{0}.\n" + - " -r- don't remove files after the optional post-unpack exe completes{1}.\n", - RemoveFilesAfterExe ? " (default)" : "", - RemoveFilesAfterExe ? "" : " (default)") - : ""; - - string verbString = String.Format(" -v- turn OFF verbose messages{0}.\n"+ - " -v+ turn ON verbose messages{1}.\n", - Verbose ? "" : " (default)", - Verbose ? " (default)" : ""); - - string cmdString = PostUnpackCmdLineIsSet() - ? String.Format(" -x don't run the post-unpack exe.\n [cmd is: {0}]\n", - PostUnpackCmdLine) - : "" ; - - Console.WriteLine(more, overwriteString, removeString, cmdString, verbString); - - - if (TargetDirectoryIsSet()) - Console.WriteLine(" default extract dir: [{0}]\n", TargetDirectory); - - - Console.WriteLine(" {0} -l", s); - Console.WriteLine(" Lists entries in the archive."); - FreeConsole(); - Environment.Exit(1); - } - - - [STAThread] - public static int Main(string[] args) - { - int left = 0; - int top = 0; - try - { - left = Console.CursorLeft; - top = Console.CursorTop; - } - catch { } // suppress - - bool wantPause = (left==0 && top==0); - int rc = 0; - try - { - CommandLineSelfExtractor me = new CommandLineSelfExtractor(args); - - // Hide my own console window if there is no parent console - // (which means, it was launched rom explorer). - if (!me.Verbose) - { - IntPtr myHandle = Process.GetCurrentProcess().MainWindowHandle; - ShowWindow(myHandle, SW_HIDE); - } - - rc = me.Run(); - - // If there was an error, and this is a new console, and - // we're still displaying the console, then do a - // ReadLine. This gives the user a chance to read the - // window error messages before dismissing. - if (rc != 0 && wantPause && me.Verbose) - { - //Console.WriteLine("rc({0}) wantPause({1}) verbose({2})", rc, wantPause, me.Verbose); - Console.Write(" to continue..."); - Console.ReadLine(); - } - - } - catch (System.Exception exc1) - { - Console.WriteLine("Exception while extracting: {0}", exc1.ToString()); - rc = 255; - } - - FreeConsole(); - return rc; - } - - private static readonly int SW_HIDE= 0; - - [System.Runtime.InteropServices.DllImport("user32.dll")] - private static extern Boolean ShowWindow(IntPtr hWnd, Int32 nCmdShow); - - [System.Runtime.InteropServices.DllImport("kernel32.dll")] - private static extern bool AttachConsole(int pid); - - [System.Runtime.InteropServices.DllImport("kernel32.dll")] - private static extern bool AllocConsole(); - - [System.Runtime.InteropServices.DllImport("kernel32.dll")] - private static extern bool FreeConsole(); - - } -} +// CommandLineSelfExtractorStub.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2008-2011 Dino Chiesa. +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-June-18 20:58:45> +// +// ------------------------------------------------------------------ +// +// This is a the source module that implements the stub of a +// command-line self-extracting Zip archive - the code included in all +// command-line SFX files. This code is included as a resource into the +// DotNetZip DLL, and then is compiled at runtime when a SFX is saved. +// +// ------------------------------------------------------------------ + + +namespace Ionic.Zip +{ + // include the using statements inside the namespace declaration, + // because source code will be concatenated together before + // compilation. + using System; + using System.Reflection; + using System.Resources; + using System.IO; + using System.Collections.Generic; + using System.Diagnostics; + using Ionic.Zip; + + public class CommandLineSelfExtractor + { + const string DllResourceName = "Ionic.Zip.dll"; + + string TargetDirectory = "@@EXTRACTLOCATION"; + string PostUnpackCmdLine = "@@POST_UNPACK_CMD_LINE"; + bool ReplacedEnvVarsForTargetDirectory; + bool ReplacedEnvVarsForCmdLine; + bool ListOnly; + bool Verbose; + bool ReallyVerbose; + bool RemoveFilesAfterExe; + bool SkipPostUnpackCommand; + string Password = null; + + // cannot include the following line, because of our use of + // the AssemblyResolver event. + + //Ionic.Zip.ExtractExistingFileAction Overwrite; + int Overwrite; + + // Attention: it isn't possible, with the design of this class as it is + // now, to have a member variable of a type from the Ionic.Zip assembly. + // The class design registers an assembly resolver, but apparently NOT in + // time to allow the assembly to be used in private instance variables. + + private bool PostUnpackCmdLineIsSet() + { + // What is going on here? + // The PostUnpackCmdLine is initialized to a particular value, then + // we test to see if it begins with the first two chars of that value, + // and ends with the last part of the value. Why? + + // Here's the thing. In order to insure the code is right, this module has + // to compile as it is, as a standalone module. But then, inside + // DotNetZip, when generating an SFX, we do a text.Replace on the source + // code, potentially replacing @@POST_UNPACK_CMD_LINE with an actual value. + // The test here checks to see if it has been set. + + bool result = !(PostUnpackCmdLine.StartsWith("@@") && + PostUnpackCmdLine.EndsWith("POST_UNPACK_CMD_LINE")); + + if (result && ReplacedEnvVarsForCmdLine == false) + { + PostUnpackCmdLine= ReplaceEnvVars(PostUnpackCmdLine); + ReplacedEnvVarsForCmdLine = true; + } + + return result; + } + + + private bool TargetDirectoryIsSet() + { + bool result = !(TargetDirectory.StartsWith("@@") && + TargetDirectory.EndsWith("EXTRACTLOCATION")); + + if (result && ReplacedEnvVarsForTargetDirectory == false) + { + TargetDirectory= ReplaceEnvVars(TargetDirectory); + ReplacedEnvVarsForTargetDirectory = true; + } + return result; + } + + + + private string ReplaceEnvVars(string s) + { + System.Collections.IDictionary envVars = Environment.GetEnvironmentVariables(); + foreach (System.Collections.DictionaryEntry de in envVars) + { + string t = "%" + de.Key + "%"; + s= s.Replace(t, de.Value as String); + } + + return s; + } + + + private bool SetRemoveFilesFlag() + { + bool result = false; + Boolean.TryParse("@@REMOVE_AFTER_EXECUTE", out result); + RemoveFilesAfterExe = result; + return result; + } + + + private bool SetVerboseFlag() + { + bool result = false; + Boolean.TryParse("@@QUIET", out result); + Verbose = !result; + return Verbose; + } + + private int SetOverwriteBehavior() + { + Int32 result = 0; + Int32.TryParse("@@EXTRACT_EXISTING_FILE", out result); + Overwrite = (int) result; + return result; + } + + + // ctor + private CommandLineSelfExtractor() + { + SetRemoveFilesFlag(); + SetVerboseFlag(); + SetOverwriteBehavior(); + PostUnpackCmdLineIsSet(); + TargetDirectoryIsSet(); + } + + + // ctor + public CommandLineSelfExtractor(string[] args) : this() + { + string specifiedDirectory = null; + for (int i = 0; i < args.Length; i++) + { + switch (args[i]) + { + case "-d": + i++; + if (args.Length <= i) + { + Console.WriteLine("please supply a directory.\n"); + GiveUsageAndExit(); + } + if (specifiedDirectory != null) + { + Console.WriteLine("You already provided a directory.\n"); + GiveUsageAndExit(); + } + specifiedDirectory = args[i]; + break; + case "-p": + i++; + if (args.Length <= i) + { + Console.WriteLine("please supply a password.\n"); + GiveUsageAndExit(); + } + if (Password != null) + { + Console.WriteLine("You already provided a password.\n"); + GiveUsageAndExit(); + } + Password = args[i]; + break; + case "-o": + Overwrite = 1; + //WantOverwrite = ExtractExistingFileAction.OverwriteSilently; + break; + case "-n": + Overwrite= 2; + //WantOverwrite = ExtractExistingFileAction.DoNotOverwrite; + break; + case "-l": + ListOnly = true; + break; + case "-r+": + RemoveFilesAfterExe = true; + break; + case "-r-": + RemoveFilesAfterExe = false; + break; + case "-x": + SkipPostUnpackCommand = true; + break; + case "-?": + GiveUsageAndExit(); + break; + case "-v-": + Verbose = false; + break; + case "-v+": + if (Verbose) + ReallyVerbose = true; + else + Verbose = true; + break; + default: + Console.WriteLine("unrecognized argument: '{0}'\n", args[i]); + GiveUsageAndExit(); + break; + } + } + + + if (!ListOnly) + { + if (specifiedDirectory!=null) + TargetDirectory = specifiedDirectory; + else if (!TargetDirectoryIsSet()) + TargetDirectory = "."; // cwd + } + + if (ListOnly && ((Overwrite!= 0) || (specifiedDirectory != null))) + { + Console.WriteLine("Inconsistent options.\n"); + GiveUsageAndExit(); + } + } + + + // workitem 8988 + private string[] SplitCommandLine(string cmdline) + { + // if the first char is NOT a double-quote, then just split the line + if (cmdline[0]!='"') + return cmdline.Split( new char[] {' '}, 2); + + // the first char is double-quote. Need to verify that there's another one. + int ix = cmdline.IndexOf('"', 1); + if (ix == -1) return null; // no double-quote - FAIL + + // if the double-quote is the last char, then just return an array of ONE string + if (ix+1 == cmdline.Length) return new string[] { cmdline.Substring(1,ix-1) }; + + if (cmdline[ix+1]!= ' ') return null; // no space following the double-quote - FAIL + + // there's definitely another double quote, followed by a space + string[] args = new string[2]; + args[0] = cmdline.Substring(1,ix-1); + while (cmdline[ix+1]==' ') ix++; // go to next non-space char + args[1] = cmdline.Substring(ix+1); + return args; + } + + + static CommandLineSelfExtractor() + { + AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(Resolver); + } + + + static System.Reflection.Assembly Resolver(object sender, ResolveEventArgs args) + { + // super defensive + Assembly a1 = Assembly.GetExecutingAssembly(); + if (a1==null) + throw new Exception("GetExecutingAssembly returns null."); + + string[] tokens = args.Name.Split(','); + String[] names = a1.GetManifestResourceNames(); + + if (names==null) + throw new Exception("GetManifestResourceNames returns null."); + + // workitem 7978 + Stream s = null; + foreach (string n in names) + { + string root = n.Substring(0,n.Length-4); + string ext = n.Substring(n.Length-3); + if (root.Equals(tokens[0]) && ext.ToLower().Equals("dll")) + { + s= a1.GetManifestResourceStream(n); + if (s!=null) break; + } + } + + if (s==null) + throw new Exception(String.Format("GetManifestResourceStream returns null. Available resources: [{0}]", + String.Join("|", names))); + + byte[] block = new byte[s.Length]; + + if (block==null) + throw new Exception(String.Format("Cannot allocated buffer of length({0}).", s.Length)); + + s.Read(block, 0, block.Length); + Assembly a2 = Assembly.Load(block); + if (a2==null) + throw new Exception("Assembly.Load(block) returns null"); + + return a2; + } + + + + public int Run() + { + //System.Diagnostics.Debugger.Break(); + + List itemsExtracted= new List(); + + global::Ionic.Zip.ExtractExistingFileAction WantOverwrite = + (Ionic.Zip.ExtractExistingFileAction) Overwrite; + + // There way this works: the EXE is a ZIP file. So + // read from the location of the assembly, in other words the path to the exe. + Assembly a = Assembly.GetExecutingAssembly(); + + int rc = 0; + try + { + // workitem 7067 + using (global::Ionic.Zip.ZipFile zip = global::Ionic.Zip.ZipFile.Read(a.Location)) + { + if (Verbose) + Console.WriteLine("Command-Line Self Extractor generated by DotNetZip."); + + if (!ListOnly) + { + if (Verbose) + { + Console.Write("Extracting to {0}", TargetDirectory); + System.Console.WriteLine(" (Existing file action: {0})", WantOverwrite.ToString()); + } + } + + bool header = true; + foreach (global::Ionic.Zip.ZipEntry entry in zip) + { + if (ListOnly || ReallyVerbose) + { + if (header) + { + System.Console.WriteLine("Extracting Zip file: {0}", zip.Name); + if ((zip.Comment != null) && (zip.Comment != "")) + System.Console.WriteLine("Comment: {0}", zip.Comment); + + System.Console.WriteLine("\n{1,-22} {2,9} {3,5} {4,9} {5,3} {6,8} {0}", + "Filename", "Modified", "Size", "Ratio", "Packed", "pw?", "CRC"); + System.Console.WriteLine(new System.String('-', 80)); + header = false; + } + + System.Console.WriteLine("{1,-22} {2,9} {3,5:F0}% {4,9} {5,3} {6:X8} {0}", + entry.FileName, + entry.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), + entry.UncompressedSize, + entry.CompressionRatio, + entry.CompressedSize, + (entry.UsesEncryption) ? "Y" : "N", + entry.Crc); + + } + + if (!ListOnly) + { + if (Verbose && !ReallyVerbose) + System.Console.WriteLine(" {0}", entry.FileName); + + if (entry.Encryption == global::Ionic.Zip.EncryptionAlgorithm.None) + { + try + { + entry.Extract(TargetDirectory, WantOverwrite); + itemsExtracted.Add(entry.FileName); + } + catch (Exception ex1) + { + Console.WriteLine(" Error -- {0}", ex1.Message); + rc++; + } + } + else + { + if (Password == null) + { + Console.WriteLine("Cannot extract entry {0} without a password.", entry.FileName); + rc++; + } + else + { + try + { + entry.ExtractWithPassword(TargetDirectory, WantOverwrite, Password); + itemsExtracted.Add(entry.FileName); + } + catch (Exception ex2) + { + Console.WriteLine(" Error -- {0}", ex2.Message); + rc++; + } + } + } + } + } + } + } + catch (Exception) + { + Console.WriteLine("The self-extracting zip file is corrupted."); + return 4; + } + + if (rc != 0) return rc; + + + // potentially execute the embedded command + if (PostUnpackCmdLineIsSet() && !SkipPostUnpackCommand) + { + if (ListOnly) + { + Console.WriteLine("\nExecute on unpack: {0}", PostUnpackCmdLine); + } + else + { + try + { + string[] args = SplitCommandLine(PostUnpackCmdLine); + + if (args!= null && args.Length > 0) + { + if (Verbose) + System.Console.WriteLine("Running command: {0}", PostUnpackCmdLine); + + ProcessStartInfo startInfo = new ProcessStartInfo(args[0]); + startInfo.WorkingDirectory = TargetDirectory; + startInfo.CreateNoWindow = true; + if (args.Length > 1) startInfo.Arguments = args[1]; + + using (Process p = Process.Start(startInfo)) + { + if (p!=null) + { + p.WaitForExit(); + rc = p.ExitCode; + // workitem 8925 + if (p.ExitCode == 0) + { + if (RemoveFilesAfterExe) + { + foreach (string s in itemsExtracted) + { + string fullPath = Path.Combine(TargetDirectory,s); + try + { + if (File.Exists(fullPath)) + File.Delete(fullPath); + else if (Directory.Exists(fullPath)) + Directory.Delete(fullPath, true); + } + catch + { + } + } + } + } + } + } + + + } + } + catch (Exception exc1) + { + System.Console.WriteLine("{0}", exc1); + rc = 5; + } + + } + } + + return rc; + } + + + + private void GiveUsageAndExit() + { + Assembly a = Assembly.GetExecutingAssembly(); + string s = Path.GetFileName(a.Location); + Console.WriteLine("DotNetZip Command-Line Self Extractor, see http://DotNetZip.codeplex.com/"); + Console.WriteLine("Copyright (c) 2008-2011 Dino Chiesa."); + + Console.WriteLine("usage:\n {0} [-p ] [-d ]", s); + + string more = " Extracts entries from the archive. If any files to be extracted already\n" + + " exist, the program will stop.\n\n Additional Options:\n" + + "{0}" + + "{1}" + + "{2}" + + "{3}"; + + string overwriteString = + String.Format(" -o overwrite any existing files upon extraction{0}.\n" + + " -n do not overwrite any existing files upon extraction{1}.\n", + (Overwrite == 1) ? " (default)" : "", + (Overwrite == 2) ? " (default)" : ""); + + string removeString = PostUnpackCmdLineIsSet() + ? String.Format(" -r+ remove files after the optional post-unpack exe completes{0}.\n" + + " -r- don't remove files after the optional post-unpack exe completes{1}.\n", + RemoveFilesAfterExe ? " (default)" : "", + RemoveFilesAfterExe ? "" : " (default)") + : ""; + + string verbString = String.Format(" -v- turn OFF verbose messages{0}.\n"+ + " -v+ turn ON verbose messages{1}.\n", + Verbose ? "" : " (default)", + Verbose ? " (default)" : ""); + + string cmdString = PostUnpackCmdLineIsSet() + ? String.Format(" -x don't run the post-unpack exe.\n [cmd is: {0}]\n", + PostUnpackCmdLine) + : "" ; + + Console.WriteLine(more, overwriteString, removeString, cmdString, verbString); + + + if (TargetDirectoryIsSet()) + Console.WriteLine(" default extract dir: [{0}]\n", TargetDirectory); + + + Console.WriteLine(" {0} -l", s); + Console.WriteLine(" Lists entries in the archive."); + FreeConsole(); + Environment.Exit(1); + } + + + [STAThread] + public static int Main(string[] args) + { + int left = 0; + int top = 0; + try + { + left = Console.CursorLeft; + top = Console.CursorTop; + } + catch { } // suppress + + bool wantPause = (left==0 && top==0); + int rc = 0; + try + { + CommandLineSelfExtractor me = new CommandLineSelfExtractor(args); + + // Hide my own console window if there is no parent console + // (which means, it was launched rom explorer). + if (!me.Verbose) + { + IntPtr myHandle = Process.GetCurrentProcess().MainWindowHandle; + ShowWindow(myHandle, SW_HIDE); + } + + rc = me.Run(); + + // If there was an error, and this is a new console, and + // we're still displaying the console, then do a + // ReadLine. This gives the user a chance to read the + // window error messages before dismissing. + if (rc != 0 && wantPause && me.Verbose) + { + //Console.WriteLine("rc({0}) wantPause({1}) verbose({2})", rc, wantPause, me.Verbose); + Console.Write(" to continue..."); + Console.ReadLine(); + } + + } + catch (System.Exception exc1) + { + Console.WriteLine("Exception while extracting: {0}", exc1.ToString()); + rc = 255; + } + + FreeConsole(); + return rc; + } + + private static readonly int SW_HIDE= 0; + + [System.Runtime.InteropServices.DllImport("user32.dll")] + private static extern Boolean ShowWindow(IntPtr hWnd, Int32 nCmdShow); + + [System.Runtime.InteropServices.DllImport("kernel32.dll")] + private static extern bool AttachConsole(int pid); + + [System.Runtime.InteropServices.DllImport("kernel32.dll")] + private static extern bool AllocConsole(); + + [System.Runtime.InteropServices.DllImport("kernel32.dll")] + private static extern bool FreeConsole(); + + } +} diff --git a/src/Zip/Resources/FolderBrowserDialogEx.cs b/old/src/Zip/Resources/FolderBrowserDialogEx.cs similarity index 97% rename from src/Zip/Resources/FolderBrowserDialogEx.cs rename to old/src/Zip/Resources/FolderBrowserDialogEx.cs index b724fab..42421d5 100644 --- a/src/Zip/Resources/FolderBrowserDialogEx.cs +++ b/old/src/Zip/Resources/FolderBrowserDialogEx.cs @@ -1,548 +1,548 @@ -// FolderBrowserDialogEx.cs -// -// A replacement for the builtin System.Windows.Forms.FolderBrowserDialog class. -// This one includes an edit box, and also displays the full path in the edit box. -// -// based on code from http://support.microsoft.com/default.aspx?scid=kb;[LN];306285 -// -// 20 Feb 2009 -// -// ======================================================================================== -// Example usage: -// -// string _folderName = "c:\\dinoch"; -// private void button1_Click(object sender, EventArgs e) -// { -// _folderName = (System.IO.Directory.Exists(_folderName)) ? _folderName : ""; -// var dlg1 = new Ionic.Utils.FolderBrowserDialogEx -// { -// Description = "Select a folder for the extracted files:", -// ShowNewFolderButton = true, -// ShowEditBox = true, -// //NewStyle = false, -// SelectedPath = _folderName, -// ShowFullPathInEditBox= false, -// }; -// dlg1.RootFolder = System.Environment.SpecialFolder.MyComputer; -// -// var result = dlg1.ShowDialog(); -// -// if (result == DialogResult.OK) -// { -// _folderName = dlg1.SelectedPath; -// this.label1.Text = "The folder selected was: "; -// this.label2.Text = _folderName; -// } -// } -// - - -namespace Ionic.Utils -{ -using System; -using System.Windows.Forms; -using System.Runtime.InteropServices; -using System.ComponentModel; -using System.Security.Permissions; -using System.Security; -using System.Threading; - - //[Designer("System.Windows.Forms.Design.FolderBrowserDialogDesigner, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"), DefaultEvent("HelpRequest"), SRDescription("DescriptionFolderBrowserDialog"), DefaultProperty("SelectedPath")] - public class FolderBrowserDialogEx : System.Windows.Forms.CommonDialog - { - private static readonly int MAX_PATH = 260; - - // Fields - private PInvoke.BrowseFolderCallbackProc _callback; - private string _descriptionText; - private Environment.SpecialFolder _rootFolder; - private string _selectedPath; - private bool _selectedPathNeedsCheck; - private bool _showNewFolderButton; - private bool _showEditBox; - private bool _showBothFilesAndFolders; - private bool _newStyle = true; - private bool _showFullPathInEditBox = true; - private bool _dontIncludeNetworkFoldersBelowDomainLevel; - private int _uiFlags; - private IntPtr _hwndEdit; - private IntPtr _rootFolderLocation; - - // Events - //[Browsable(false), EditorBrowsable(EditorBrowsableState.Never)] - public new event EventHandler HelpRequest - { - add - { - base.HelpRequest += value; - } - remove - { - base.HelpRequest -= value; - } - } - - // ctor - public FolderBrowserDialogEx() - { - this.Reset(); - } - - // Factory Methods - public static FolderBrowserDialogEx PrinterBrowser() - { - FolderBrowserDialogEx x = new FolderBrowserDialogEx(); - // avoid MBRO comppiler warning when passing _rootFolderLocation as a ref: - x.BecomePrinterBrowser(); - return x; - } - - public static FolderBrowserDialogEx ComputerBrowser() - { - FolderBrowserDialogEx x = new FolderBrowserDialogEx(); - // avoid MBRO comppiler warning when passing _rootFolderLocation as a ref: - x.BecomeComputerBrowser(); - return x; - } - - - // Helpers - private void BecomePrinterBrowser() - { - _uiFlags += BrowseFlags.BIF_BROWSEFORPRINTER; - Description = "Select a printer:"; - PInvoke.Shell32.SHGetSpecialFolderLocation(IntPtr.Zero, CSIDL.PRINTERS, ref this._rootFolderLocation); - ShowNewFolderButton = false; - ShowEditBox = false; - } - - private void BecomeComputerBrowser() - { - _uiFlags += BrowseFlags.BIF_BROWSEFORCOMPUTER; - Description = "Select a computer:"; - PInvoke.Shell32.SHGetSpecialFolderLocation(IntPtr.Zero, CSIDL.NETWORK, ref this._rootFolderLocation); - ShowNewFolderButton = false; - ShowEditBox = false; - } - - - private class CSIDL - { - public const int PRINTERS = 4; - public const int NETWORK = 0x12; - } - - private class BrowseFlags - { - public const int BIF_DEFAULT = 0x0000; - public const int BIF_BROWSEFORCOMPUTER = 0x1000; - public const int BIF_BROWSEFORPRINTER = 0x2000; - public const int BIF_BROWSEINCLUDEFILES = 0x4000; - public const int BIF_BROWSEINCLUDEURLS = 0x0080; - public const int BIF_DONTGOBELOWDOMAIN = 0x0002; - public const int BIF_EDITBOX = 0x0010; - public const int BIF_NEWDIALOGSTYLE = 0x0040; - public const int BIF_NONEWFOLDERBUTTON = 0x0200; - public const int BIF_RETURNFSANCESTORS = 0x0008; - public const int BIF_RETURNONLYFSDIRS = 0x0001; - public const int BIF_SHAREABLE = 0x8000; - public const int BIF_STATUSTEXT = 0x0004; - public const int BIF_UAHINT = 0x0100; - public const int BIF_VALIDATE = 0x0020; - public const int BIF_NOTRANSLATETARGETS = 0x0400; - } - - private static class BrowseForFolderMessages - { - // messages FROM the folder browser - public const int BFFM_INITIALIZED = 1; - public const int BFFM_SELCHANGED = 2; - public const int BFFM_VALIDATEFAILEDA = 3; - public const int BFFM_VALIDATEFAILEDW = 4; - public const int BFFM_IUNKNOWN = 5; - - // messages TO the folder browser - public const int BFFM_SETSTATUSTEXT = 0x464; - public const int BFFM_ENABLEOK = 0x465; - public const int BFFM_SETSELECTIONA = 0x466; - public const int BFFM_SETSELECTIONW = 0x467; - } - - private int FolderBrowserCallback(IntPtr hwnd, int msg, IntPtr lParam, IntPtr lpData) - { - switch (msg) - { - case BrowseForFolderMessages.BFFM_INITIALIZED: - if (this._selectedPath.Length != 0) - { - PInvoke.User32.SendMessage(new HandleRef(null, hwnd), BrowseForFolderMessages.BFFM_SETSELECTIONW, 1, this._selectedPath); - if (this._showEditBox && this._showFullPathInEditBox) - { - // get handle to the Edit box inside the Folder Browser Dialog - _hwndEdit = PInvoke.User32.FindWindowEx(new HandleRef(null, hwnd), IntPtr.Zero, "Edit", null); - PInvoke.User32.SetWindowText(_hwndEdit, this._selectedPath); - } - } - break; - - case BrowseForFolderMessages.BFFM_SELCHANGED: - IntPtr pidl = lParam; - if (pidl != IntPtr.Zero) - { - if (((_uiFlags & BrowseFlags.BIF_BROWSEFORPRINTER) == BrowseFlags.BIF_BROWSEFORPRINTER) || - ((_uiFlags & BrowseFlags.BIF_BROWSEFORCOMPUTER) == BrowseFlags.BIF_BROWSEFORCOMPUTER)) - { - // we're browsing for a printer or computer, enable the OK button unconditionally. - PInvoke.User32.SendMessage(new HandleRef(null, hwnd), BrowseForFolderMessages.BFFM_ENABLEOK, 0, 1); - } - else - { - IntPtr pszPath = Marshal.AllocHGlobal(MAX_PATH * Marshal.SystemDefaultCharSize); - bool haveValidPath = PInvoke.Shell32.SHGetPathFromIDList(pidl, pszPath); - String displayedPath = Marshal.PtrToStringAuto(pszPath); - Marshal.FreeHGlobal(pszPath); - // whether to enable the OK button or not. (if file is valid) - PInvoke.User32.SendMessage(new HandleRef(null, hwnd), BrowseForFolderMessages.BFFM_ENABLEOK, 0, haveValidPath ? 1 : 0); - - // Maybe set the Edit Box text to the Full Folder path - if (haveValidPath && !String.IsNullOrEmpty(displayedPath)) - { - if (_showEditBox && _showFullPathInEditBox) - { - if (_hwndEdit != IntPtr.Zero) - PInvoke.User32.SetWindowText(_hwndEdit, displayedPath); - } - - if ((_uiFlags & BrowseFlags.BIF_STATUSTEXT) == BrowseFlags.BIF_STATUSTEXT) - PInvoke.User32.SendMessage(new HandleRef(null, hwnd), BrowseForFolderMessages.BFFM_SETSTATUSTEXT, 0, displayedPath); - } - } - } - break; - } - return 0; - } - - private static PInvoke.IMalloc GetSHMalloc() - { - PInvoke.IMalloc[] ppMalloc = new PInvoke.IMalloc[1]; - PInvoke.Shell32.SHGetMalloc(ppMalloc); - return ppMalloc[0]; - } - - public override void Reset() - { - this._rootFolder = (Environment.SpecialFolder)0; - this._descriptionText = string.Empty; - this._selectedPath = string.Empty; - this._selectedPathNeedsCheck = false; - this._showNewFolderButton = true; - this._showEditBox = true; - this._newStyle = true; - this._dontIncludeNetworkFoldersBelowDomainLevel = false; - this._hwndEdit = IntPtr.Zero; - this._rootFolderLocation = IntPtr.Zero; - } - - protected override bool RunDialog(IntPtr hWndOwner) - { - bool result = false; - if (_rootFolderLocation == IntPtr.Zero) - { - PInvoke.Shell32.SHGetSpecialFolderLocation(hWndOwner, (int)this._rootFolder, ref _rootFolderLocation); - if (_rootFolderLocation == IntPtr.Zero) - { - PInvoke.Shell32.SHGetSpecialFolderLocation(hWndOwner, 0, ref _rootFolderLocation); - if (_rootFolderLocation == IntPtr.Zero) - { - throw new InvalidOperationException("FolderBrowserDialogNoRootFolder"); - } - } - } - _hwndEdit = IntPtr.Zero; - //_uiFlags = 0; - if (_dontIncludeNetworkFoldersBelowDomainLevel) - _uiFlags += BrowseFlags.BIF_DONTGOBELOWDOMAIN; - if (this._newStyle) - _uiFlags += BrowseFlags.BIF_NEWDIALOGSTYLE; - if (!this._showNewFolderButton) - _uiFlags += BrowseFlags.BIF_NONEWFOLDERBUTTON; - if (this._showEditBox) - _uiFlags += BrowseFlags.BIF_EDITBOX; - if (this._showBothFilesAndFolders) - _uiFlags += BrowseFlags.BIF_BROWSEINCLUDEFILES; - - - if (Control.CheckForIllegalCrossThreadCalls && (Application.OleRequired() != ApartmentState.STA)) - { - throw new ThreadStateException("DebuggingException: ThreadMustBeSTA"); - } - IntPtr pidl = IntPtr.Zero; - IntPtr hglobal = IntPtr.Zero; - IntPtr pszPath = IntPtr.Zero; - try - { - PInvoke.BROWSEINFO browseInfo = new PInvoke.BROWSEINFO(); - hglobal = Marshal.AllocHGlobal(MAX_PATH * Marshal.SystemDefaultCharSize); - pszPath = Marshal.AllocHGlobal(MAX_PATH * Marshal.SystemDefaultCharSize); - this._callback = new PInvoke.BrowseFolderCallbackProc(this.FolderBrowserCallback); - browseInfo.pidlRoot = _rootFolderLocation; - browseInfo.Owner = hWndOwner; - browseInfo.pszDisplayName = hglobal; - browseInfo.Title = this._descriptionText; - browseInfo.Flags = _uiFlags; - browseInfo.callback = this._callback; - browseInfo.lParam = IntPtr.Zero; - browseInfo.iImage = 0; - pidl = PInvoke.Shell32.SHBrowseForFolder(browseInfo); - if (((_uiFlags & BrowseFlags.BIF_BROWSEFORPRINTER) == BrowseFlags.BIF_BROWSEFORPRINTER) || - ((_uiFlags & BrowseFlags.BIF_BROWSEFORCOMPUTER) == BrowseFlags.BIF_BROWSEFORCOMPUTER)) - { - this._selectedPath = Marshal.PtrToStringAuto(browseInfo.pszDisplayName); - result = true; - } - else - { - if (pidl != IntPtr.Zero) - { - PInvoke.Shell32.SHGetPathFromIDList(pidl, pszPath); - this._selectedPathNeedsCheck = true; - this._selectedPath = Marshal.PtrToStringAuto(pszPath); - result = true; - } - } - } - finally - { - PInvoke.IMalloc sHMalloc = GetSHMalloc(); - sHMalloc.Free(_rootFolderLocation); - _rootFolderLocation = IntPtr.Zero; - if (pidl != IntPtr.Zero) - { - sHMalloc.Free(pidl); - } - if (pszPath != IntPtr.Zero) - { - Marshal.FreeHGlobal(pszPath); - } - if (hglobal != IntPtr.Zero) - { - Marshal.FreeHGlobal(hglobal); - } - this._callback = null; - } - return result; - } - - // Properties - //[SRDescription("FolderBrowserDialogDescription"), SRCategory("CatFolderBrowsing"), Browsable(true), DefaultValue(""), Localizable(true)] - - /// - /// This description appears near the top of the dialog box, providing direction to the user. - /// - public string Description - { - get - { - return this._descriptionText; - } - set - { - this._descriptionText = (value == null) ? string.Empty : value; - } - } - - //[Localizable(false), SRCategory("CatFolderBrowsing"), SRDescription("FolderBrowserDialogRootFolder"), TypeConverter(typeof(SpecialFolderEnumConverter)), Browsable(true), DefaultValue(0)] - public Environment.SpecialFolder RootFolder - { - get - { - return this._rootFolder; - } - set - { - if (!Enum.IsDefined(typeof(Environment.SpecialFolder), value)) - { - throw new InvalidEnumArgumentException("value", (int)value, typeof(Environment.SpecialFolder)); - } - this._rootFolder = value; - } - } - - //[Browsable(true), SRDescription("FolderBrowserDialogSelectedPath"), SRCategory("CatFolderBrowsing"), DefaultValue(""), Editor("System.Windows.Forms.Design.SelectedPathEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(UITypeEditor)), Localizable(true)] - - /// - /// Set or get the selected path. - /// - public string SelectedPath - { - get - { - if (((this._selectedPath != null) && (this._selectedPath.Length != 0)) && this._selectedPathNeedsCheck) - { - new FileIOPermission(FileIOPermissionAccess.PathDiscovery, this._selectedPath).Demand(); - this._selectedPathNeedsCheck = false; - } - return this._selectedPath; - } - set - { - this._selectedPath = (value == null) ? string.Empty : value; - this._selectedPathNeedsCheck = true; - } - } - - //[SRDescription("FolderBrowserDialogShowNewFolderButton"), Localizable(false), Browsable(true), DefaultValue(true), SRCategory("CatFolderBrowsing")] - - /// - /// Enable or disable the "New Folder" button in the browser dialog. - /// - public bool ShowNewFolderButton - { - get - { - return this._showNewFolderButton; - } - set - { - this._showNewFolderButton = value; - } - } - - /// - /// Show an "edit box" in the folder browser. - /// - /// - /// The "edit box" normally shows the name of the selected folder. - /// The user may also type a pathname directly into the edit box. - /// - /// - public bool ShowEditBox - { - get - { - return this._showEditBox; - } - set - { - this._showEditBox = value; - } - } - - /// - /// Set whether to use the New Folder Browser dialog style. - /// - /// - /// The new style is resizable and includes a "New Folder" button. - /// - public bool NewStyle - { - get - { - return this._newStyle; - } - set - { - this._newStyle = value; - } - } - - - public bool DontIncludeNetworkFoldersBelowDomainLevel - { - get { return _dontIncludeNetworkFoldersBelowDomainLevel; } - set { _dontIncludeNetworkFoldersBelowDomainLevel = value; } - } - - /// - /// Show the full path in the edit box as the user selects it. - /// - /// - /// This works only if ShowEditBox is also set to true. - /// - public bool ShowFullPathInEditBox - { - get { return _showFullPathInEditBox; } - set { _showFullPathInEditBox = value; } - } - - public bool ShowBothFilesAndFolders - { - get { return _showBothFilesAndFolders; } - set { _showBothFilesAndFolders = value; } - } - } - - - - internal static class PInvoke - { - static PInvoke() { } - - public delegate int BrowseFolderCallbackProc(IntPtr hwnd, int msg, IntPtr lParam, IntPtr lpData); - - internal static class User32 - { - [DllImport("user32.dll", CharSet = CharSet.Auto)] - public static extern IntPtr SendMessage(HandleRef hWnd, int msg, int wParam, string lParam); - - [DllImport("user32.dll", CharSet = CharSet.Auto)] - public static extern IntPtr SendMessage(HandleRef hWnd, int msg, int wParam, int lParam); - - [DllImport("user32.dll", SetLastError = true)] - //public static extern IntPtr FindWindowEx(IntPtr hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow); - //public static extern IntPtr FindWindowEx(HandleRef hwndParent, HandleRef hwndChildAfter, string lpszClass, string lpszWindow); - public static extern IntPtr FindWindowEx(HandleRef hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow); - - [DllImport("user32.dll", SetLastError = true)] - public static extern Boolean SetWindowText(IntPtr hWnd, String text); - } - - [ComImport, Guid("00000002-0000-0000-c000-000000000046"), SuppressUnmanagedCodeSecurity, InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] - public interface IMalloc - { - [PreserveSig] - IntPtr Alloc(int cb); - [PreserveSig] - IntPtr Realloc(IntPtr pv, int cb); - [PreserveSig] - void Free(IntPtr pv); - [PreserveSig] - int GetSize(IntPtr pv); - [PreserveSig] - int DidAlloc(IntPtr pv); - [PreserveSig] - void HeapMinimize(); - } - - [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)] - public class BROWSEINFO - { - public IntPtr Owner; - public IntPtr pidlRoot; - public IntPtr pszDisplayName; - public string Title; - public int Flags; - public BrowseFolderCallbackProc callback; - public IntPtr lParam; - public int iImage; - } - - - - [SuppressUnmanagedCodeSecurity] - internal static class Shell32 - { - // Methods - [DllImport("shell32.dll", CharSet = CharSet.Auto)] - public static extern IntPtr SHBrowseForFolder([In] PInvoke.BROWSEINFO lpbi); - [DllImport("shell32.dll")] - public static extern int SHGetMalloc([Out, MarshalAs(UnmanagedType.LPArray)] PInvoke.IMalloc[] ppMalloc); - [DllImport("shell32.dll", CharSet = CharSet.Auto)] - public static extern bool SHGetPathFromIDList(IntPtr pidl, IntPtr pszPath); - [DllImport("shell32.dll")] - public static extern int SHGetSpecialFolderLocation(IntPtr hwnd, int csidl, ref IntPtr ppidl); - } - - } -} +// FolderBrowserDialogEx.cs +// +// A replacement for the builtin System.Windows.Forms.FolderBrowserDialog class. +// This one includes an edit box, and also displays the full path in the edit box. +// +// based on code from http://support.microsoft.com/default.aspx?scid=kb;[LN];306285 +// +// 20 Feb 2009 +// +// ======================================================================================== +// Example usage: +// +// string _folderName = "c:\\dinoch"; +// private void button1_Click(object sender, EventArgs e) +// { +// _folderName = (System.IO.Directory.Exists(_folderName)) ? _folderName : ""; +// var dlg1 = new Ionic.Utils.FolderBrowserDialogEx +// { +// Description = "Select a folder for the extracted files:", +// ShowNewFolderButton = true, +// ShowEditBox = true, +// //NewStyle = false, +// SelectedPath = _folderName, +// ShowFullPathInEditBox= false, +// }; +// dlg1.RootFolder = System.Environment.SpecialFolder.MyComputer; +// +// var result = dlg1.ShowDialog(); +// +// if (result == DialogResult.OK) +// { +// _folderName = dlg1.SelectedPath; +// this.label1.Text = "The folder selected was: "; +// this.label2.Text = _folderName; +// } +// } +// + + +namespace Ionic.Utils +{ +using System; +using System.Windows.Forms; +using System.Runtime.InteropServices; +using System.ComponentModel; +using System.Security.Permissions; +using System.Security; +using System.Threading; + + //[Designer("System.Windows.Forms.Design.FolderBrowserDialogDesigner, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"), DefaultEvent("HelpRequest"), SRDescription("DescriptionFolderBrowserDialog"), DefaultProperty("SelectedPath")] + public class FolderBrowserDialogEx : System.Windows.Forms.CommonDialog + { + private static readonly int MAX_PATH = 260; + + // Fields + private PInvoke.BrowseFolderCallbackProc _callback; + private string _descriptionText; + private Environment.SpecialFolder _rootFolder; + private string _selectedPath; + private bool _selectedPathNeedsCheck; + private bool _showNewFolderButton; + private bool _showEditBox; + private bool _showBothFilesAndFolders; + private bool _newStyle = true; + private bool _showFullPathInEditBox = true; + private bool _dontIncludeNetworkFoldersBelowDomainLevel; + private int _uiFlags; + private IntPtr _hwndEdit; + private IntPtr _rootFolderLocation; + + // Events + //[Browsable(false), EditorBrowsable(EditorBrowsableState.Never)] + public new event EventHandler HelpRequest + { + add + { + base.HelpRequest += value; + } + remove + { + base.HelpRequest -= value; + } + } + + // ctor + public FolderBrowserDialogEx() + { + this.Reset(); + } + + // Factory Methods + public static FolderBrowserDialogEx PrinterBrowser() + { + FolderBrowserDialogEx x = new FolderBrowserDialogEx(); + // avoid MBRO comppiler warning when passing _rootFolderLocation as a ref: + x.BecomePrinterBrowser(); + return x; + } + + public static FolderBrowserDialogEx ComputerBrowser() + { + FolderBrowserDialogEx x = new FolderBrowserDialogEx(); + // avoid MBRO comppiler warning when passing _rootFolderLocation as a ref: + x.BecomeComputerBrowser(); + return x; + } + + + // Helpers + private void BecomePrinterBrowser() + { + _uiFlags += BrowseFlags.BIF_BROWSEFORPRINTER; + Description = "Select a printer:"; + PInvoke.Shell32.SHGetSpecialFolderLocation(IntPtr.Zero, CSIDL.PRINTERS, ref this._rootFolderLocation); + ShowNewFolderButton = false; + ShowEditBox = false; + } + + private void BecomeComputerBrowser() + { + _uiFlags += BrowseFlags.BIF_BROWSEFORCOMPUTER; + Description = "Select a computer:"; + PInvoke.Shell32.SHGetSpecialFolderLocation(IntPtr.Zero, CSIDL.NETWORK, ref this._rootFolderLocation); + ShowNewFolderButton = false; + ShowEditBox = false; + } + + + private class CSIDL + { + public const int PRINTERS = 4; + public const int NETWORK = 0x12; + } + + private class BrowseFlags + { + public const int BIF_DEFAULT = 0x0000; + public const int BIF_BROWSEFORCOMPUTER = 0x1000; + public const int BIF_BROWSEFORPRINTER = 0x2000; + public const int BIF_BROWSEINCLUDEFILES = 0x4000; + public const int BIF_BROWSEINCLUDEURLS = 0x0080; + public const int BIF_DONTGOBELOWDOMAIN = 0x0002; + public const int BIF_EDITBOX = 0x0010; + public const int BIF_NEWDIALOGSTYLE = 0x0040; + public const int BIF_NONEWFOLDERBUTTON = 0x0200; + public const int BIF_RETURNFSANCESTORS = 0x0008; + public const int BIF_RETURNONLYFSDIRS = 0x0001; + public const int BIF_SHAREABLE = 0x8000; + public const int BIF_STATUSTEXT = 0x0004; + public const int BIF_UAHINT = 0x0100; + public const int BIF_VALIDATE = 0x0020; + public const int BIF_NOTRANSLATETARGETS = 0x0400; + } + + private static class BrowseForFolderMessages + { + // messages FROM the folder browser + public const int BFFM_INITIALIZED = 1; + public const int BFFM_SELCHANGED = 2; + public const int BFFM_VALIDATEFAILEDA = 3; + public const int BFFM_VALIDATEFAILEDW = 4; + public const int BFFM_IUNKNOWN = 5; + + // messages TO the folder browser + public const int BFFM_SETSTATUSTEXT = 0x464; + public const int BFFM_ENABLEOK = 0x465; + public const int BFFM_SETSELECTIONA = 0x466; + public const int BFFM_SETSELECTIONW = 0x467; + } + + private int FolderBrowserCallback(IntPtr hwnd, int msg, IntPtr lParam, IntPtr lpData) + { + switch (msg) + { + case BrowseForFolderMessages.BFFM_INITIALIZED: + if (this._selectedPath.Length != 0) + { + PInvoke.User32.SendMessage(new HandleRef(null, hwnd), BrowseForFolderMessages.BFFM_SETSELECTIONW, 1, this._selectedPath); + if (this._showEditBox && this._showFullPathInEditBox) + { + // get handle to the Edit box inside the Folder Browser Dialog + _hwndEdit = PInvoke.User32.FindWindowEx(new HandleRef(null, hwnd), IntPtr.Zero, "Edit", null); + PInvoke.User32.SetWindowText(_hwndEdit, this._selectedPath); + } + } + break; + + case BrowseForFolderMessages.BFFM_SELCHANGED: + IntPtr pidl = lParam; + if (pidl != IntPtr.Zero) + { + if (((_uiFlags & BrowseFlags.BIF_BROWSEFORPRINTER) == BrowseFlags.BIF_BROWSEFORPRINTER) || + ((_uiFlags & BrowseFlags.BIF_BROWSEFORCOMPUTER) == BrowseFlags.BIF_BROWSEFORCOMPUTER)) + { + // we're browsing for a printer or computer, enable the OK button unconditionally. + PInvoke.User32.SendMessage(new HandleRef(null, hwnd), BrowseForFolderMessages.BFFM_ENABLEOK, 0, 1); + } + else + { + IntPtr pszPath = Marshal.AllocHGlobal(MAX_PATH * Marshal.SystemDefaultCharSize); + bool haveValidPath = PInvoke.Shell32.SHGetPathFromIDList(pidl, pszPath); + String displayedPath = Marshal.PtrToStringAuto(pszPath); + Marshal.FreeHGlobal(pszPath); + // whether to enable the OK button or not. (if file is valid) + PInvoke.User32.SendMessage(new HandleRef(null, hwnd), BrowseForFolderMessages.BFFM_ENABLEOK, 0, haveValidPath ? 1 : 0); + + // Maybe set the Edit Box text to the Full Folder path + if (haveValidPath && !String.IsNullOrEmpty(displayedPath)) + { + if (_showEditBox && _showFullPathInEditBox) + { + if (_hwndEdit != IntPtr.Zero) + PInvoke.User32.SetWindowText(_hwndEdit, displayedPath); + } + + if ((_uiFlags & BrowseFlags.BIF_STATUSTEXT) == BrowseFlags.BIF_STATUSTEXT) + PInvoke.User32.SendMessage(new HandleRef(null, hwnd), BrowseForFolderMessages.BFFM_SETSTATUSTEXT, 0, displayedPath); + } + } + } + break; + } + return 0; + } + + private static PInvoke.IMalloc GetSHMalloc() + { + PInvoke.IMalloc[] ppMalloc = new PInvoke.IMalloc[1]; + PInvoke.Shell32.SHGetMalloc(ppMalloc); + return ppMalloc[0]; + } + + public override void Reset() + { + this._rootFolder = (Environment.SpecialFolder)0; + this._descriptionText = string.Empty; + this._selectedPath = string.Empty; + this._selectedPathNeedsCheck = false; + this._showNewFolderButton = true; + this._showEditBox = true; + this._newStyle = true; + this._dontIncludeNetworkFoldersBelowDomainLevel = false; + this._hwndEdit = IntPtr.Zero; + this._rootFolderLocation = IntPtr.Zero; + } + + protected override bool RunDialog(IntPtr hWndOwner) + { + bool result = false; + if (_rootFolderLocation == IntPtr.Zero) + { + PInvoke.Shell32.SHGetSpecialFolderLocation(hWndOwner, (int)this._rootFolder, ref _rootFolderLocation); + if (_rootFolderLocation == IntPtr.Zero) + { + PInvoke.Shell32.SHGetSpecialFolderLocation(hWndOwner, 0, ref _rootFolderLocation); + if (_rootFolderLocation == IntPtr.Zero) + { + throw new InvalidOperationException("FolderBrowserDialogNoRootFolder"); + } + } + } + _hwndEdit = IntPtr.Zero; + //_uiFlags = 0; + if (_dontIncludeNetworkFoldersBelowDomainLevel) + _uiFlags += BrowseFlags.BIF_DONTGOBELOWDOMAIN; + if (this._newStyle) + _uiFlags += BrowseFlags.BIF_NEWDIALOGSTYLE; + if (!this._showNewFolderButton) + _uiFlags += BrowseFlags.BIF_NONEWFOLDERBUTTON; + if (this._showEditBox) + _uiFlags += BrowseFlags.BIF_EDITBOX; + if (this._showBothFilesAndFolders) + _uiFlags += BrowseFlags.BIF_BROWSEINCLUDEFILES; + + + if (Control.CheckForIllegalCrossThreadCalls && (Application.OleRequired() != ApartmentState.STA)) + { + throw new ThreadStateException("DebuggingException: ThreadMustBeSTA"); + } + IntPtr pidl = IntPtr.Zero; + IntPtr hglobal = IntPtr.Zero; + IntPtr pszPath = IntPtr.Zero; + try + { + PInvoke.BROWSEINFO browseInfo = new PInvoke.BROWSEINFO(); + hglobal = Marshal.AllocHGlobal(MAX_PATH * Marshal.SystemDefaultCharSize); + pszPath = Marshal.AllocHGlobal(MAX_PATH * Marshal.SystemDefaultCharSize); + this._callback = new PInvoke.BrowseFolderCallbackProc(this.FolderBrowserCallback); + browseInfo.pidlRoot = _rootFolderLocation; + browseInfo.Owner = hWndOwner; + browseInfo.pszDisplayName = hglobal; + browseInfo.Title = this._descriptionText; + browseInfo.Flags = _uiFlags; + browseInfo.callback = this._callback; + browseInfo.lParam = IntPtr.Zero; + browseInfo.iImage = 0; + pidl = PInvoke.Shell32.SHBrowseForFolder(browseInfo); + if (((_uiFlags & BrowseFlags.BIF_BROWSEFORPRINTER) == BrowseFlags.BIF_BROWSEFORPRINTER) || + ((_uiFlags & BrowseFlags.BIF_BROWSEFORCOMPUTER) == BrowseFlags.BIF_BROWSEFORCOMPUTER)) + { + this._selectedPath = Marshal.PtrToStringAuto(browseInfo.pszDisplayName); + result = true; + } + else + { + if (pidl != IntPtr.Zero) + { + PInvoke.Shell32.SHGetPathFromIDList(pidl, pszPath); + this._selectedPathNeedsCheck = true; + this._selectedPath = Marshal.PtrToStringAuto(pszPath); + result = true; + } + } + } + finally + { + PInvoke.IMalloc sHMalloc = GetSHMalloc(); + sHMalloc.Free(_rootFolderLocation); + _rootFolderLocation = IntPtr.Zero; + if (pidl != IntPtr.Zero) + { + sHMalloc.Free(pidl); + } + if (pszPath != IntPtr.Zero) + { + Marshal.FreeHGlobal(pszPath); + } + if (hglobal != IntPtr.Zero) + { + Marshal.FreeHGlobal(hglobal); + } + this._callback = null; + } + return result; + } + + // Properties + //[SRDescription("FolderBrowserDialogDescription"), SRCategory("CatFolderBrowsing"), Browsable(true), DefaultValue(""), Localizable(true)] + + /// + /// This description appears near the top of the dialog box, providing direction to the user. + /// + public string Description + { + get + { + return this._descriptionText; + } + set + { + this._descriptionText = (value == null) ? string.Empty : value; + } + } + + //[Localizable(false), SRCategory("CatFolderBrowsing"), SRDescription("FolderBrowserDialogRootFolder"), TypeConverter(typeof(SpecialFolderEnumConverter)), Browsable(true), DefaultValue(0)] + public Environment.SpecialFolder RootFolder + { + get + { + return this._rootFolder; + } + set + { + if (!Enum.IsDefined(typeof(Environment.SpecialFolder), value)) + { + throw new InvalidEnumArgumentException("value", (int)value, typeof(Environment.SpecialFolder)); + } + this._rootFolder = value; + } + } + + //[Browsable(true), SRDescription("FolderBrowserDialogSelectedPath"), SRCategory("CatFolderBrowsing"), DefaultValue(""), Editor("System.Windows.Forms.Design.SelectedPathEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(UITypeEditor)), Localizable(true)] + + /// + /// Set or get the selected path. + /// + public string SelectedPath + { + get + { + if (((this._selectedPath != null) && (this._selectedPath.Length != 0)) && this._selectedPathNeedsCheck) + { + new FileIOPermission(FileIOPermissionAccess.PathDiscovery, this._selectedPath).Demand(); + this._selectedPathNeedsCheck = false; + } + return this._selectedPath; + } + set + { + this._selectedPath = (value == null) ? string.Empty : value; + this._selectedPathNeedsCheck = true; + } + } + + //[SRDescription("FolderBrowserDialogShowNewFolderButton"), Localizable(false), Browsable(true), DefaultValue(true), SRCategory("CatFolderBrowsing")] + + /// + /// Enable or disable the "New Folder" button in the browser dialog. + /// + public bool ShowNewFolderButton + { + get + { + return this._showNewFolderButton; + } + set + { + this._showNewFolderButton = value; + } + } + + /// + /// Show an "edit box" in the folder browser. + /// + /// + /// The "edit box" normally shows the name of the selected folder. + /// The user may also type a pathname directly into the edit box. + /// + /// + public bool ShowEditBox + { + get + { + return this._showEditBox; + } + set + { + this._showEditBox = value; + } + } + + /// + /// Set whether to use the New Folder Browser dialog style. + /// + /// + /// The new style is resizable and includes a "New Folder" button. + /// + public bool NewStyle + { + get + { + return this._newStyle; + } + set + { + this._newStyle = value; + } + } + + + public bool DontIncludeNetworkFoldersBelowDomainLevel + { + get { return _dontIncludeNetworkFoldersBelowDomainLevel; } + set { _dontIncludeNetworkFoldersBelowDomainLevel = value; } + } + + /// + /// Show the full path in the edit box as the user selects it. + /// + /// + /// This works only if ShowEditBox is also set to true. + /// + public bool ShowFullPathInEditBox + { + get { return _showFullPathInEditBox; } + set { _showFullPathInEditBox = value; } + } + + public bool ShowBothFilesAndFolders + { + get { return _showBothFilesAndFolders; } + set { _showBothFilesAndFolders = value; } + } + } + + + + internal static class PInvoke + { + static PInvoke() { } + + public delegate int BrowseFolderCallbackProc(IntPtr hwnd, int msg, IntPtr lParam, IntPtr lpData); + + internal static class User32 + { + [DllImport("user32.dll", CharSet = CharSet.Auto)] + public static extern IntPtr SendMessage(HandleRef hWnd, int msg, int wParam, string lParam); + + [DllImport("user32.dll", CharSet = CharSet.Auto)] + public static extern IntPtr SendMessage(HandleRef hWnd, int msg, int wParam, int lParam); + + [DllImport("user32.dll", SetLastError = true)] + //public static extern IntPtr FindWindowEx(IntPtr hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow); + //public static extern IntPtr FindWindowEx(HandleRef hwndParent, HandleRef hwndChildAfter, string lpszClass, string lpszWindow); + public static extern IntPtr FindWindowEx(HandleRef hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow); + + [DllImport("user32.dll", SetLastError = true)] + public static extern Boolean SetWindowText(IntPtr hWnd, String text); + } + + [ComImport, Guid("00000002-0000-0000-c000-000000000046"), SuppressUnmanagedCodeSecurity, InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] + public interface IMalloc + { + [PreserveSig] + IntPtr Alloc(int cb); + [PreserveSig] + IntPtr Realloc(IntPtr pv, int cb); + [PreserveSig] + void Free(IntPtr pv); + [PreserveSig] + int GetSize(IntPtr pv); + [PreserveSig] + int DidAlloc(IntPtr pv); + [PreserveSig] + void HeapMinimize(); + } + + [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)] + public class BROWSEINFO + { + public IntPtr Owner; + public IntPtr pidlRoot; + public IntPtr pszDisplayName; + public string Title; + public int Flags; + public BrowseFolderCallbackProc callback; + public IntPtr lParam; + public int iImage; + } + + + + [SuppressUnmanagedCodeSecurity] + internal static class Shell32 + { + // Methods + [DllImport("shell32.dll", CharSet = CharSet.Auto)] + public static extern IntPtr SHBrowseForFolder([In] PInvoke.BROWSEINFO lpbi); + [DllImport("shell32.dll")] + public static extern int SHGetMalloc([Out, MarshalAs(UnmanagedType.LPArray)] PInvoke.IMalloc[] ppMalloc); + [DllImport("shell32.dll", CharSet = CharSet.Auto)] + public static extern bool SHGetPathFromIDList(IntPtr pidl, IntPtr pszPath); + [DllImport("shell32.dll")] + public static extern int SHGetSpecialFolderLocation(IntPtr hwnd, int csidl, ref IntPtr ppidl); + } + + } +} diff --git a/src/Zip/Resources/PasswordDialog.Designer.cs b/old/src/Zip/Resources/PasswordDialog.Designer.cs similarity index 97% rename from src/Zip/Resources/PasswordDialog.Designer.cs rename to old/src/Zip/Resources/PasswordDialog.Designer.cs index 0ee2767..dc3bfc6 100644 --- a/src/Zip/Resources/PasswordDialog.Designer.cs +++ b/old/src/Zip/Resources/PasswordDialog.Designer.cs @@ -1,126 +1,126 @@ -namespace Ionic.Zip.Forms -{ - partial class PasswordDialog - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PasswordDialog)); - this.button1 = new System.Windows.Forms.Button(); - this.textBox1 = new System.Windows.Forms.TextBox(); - this.prompt = new System.Windows.Forms.Label(); - this.btnCancel = new System.Windows.Forms.Button(); - this.button2 = new System.Windows.Forms.Button(); - this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); - this.SuspendLayout(); - // - // button1 - // - this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.button1.Location = new System.Drawing.Point(218, 35); - this.button1.Name = "button1"; - this.button1.Size = new System.Drawing.Size(38, 23); - this.button1.TabIndex = 10; - this.button1.Text = "OK"; - this.toolTip1.SetToolTip(this.button1, "Use the specirfied password for extraction of this entry and subsequent entries."); - this.button1.UseVisualStyleBackColor = true; - this.button1.Click += new System.EventHandler(this.btnOk_Click); - // - // textBox1 - // - this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.textBox1.Location = new System.Drawing.Point(12, 37); - this.textBox1.Name = "textBox1"; - this.textBox1.PasswordChar = '*'; - this.textBox1.Size = new System.Drawing.Size(200, 20); - this.textBox1.TabIndex = 0; - // - // prompt - // - this.prompt.AutoSize = true; - this.prompt.Location = new System.Drawing.Point(12, 15); - this.prompt.Name = "prompt"; - this.prompt.Size = new System.Drawing.Size(138, 13); - this.prompt.TabIndex = 20; - this.prompt.Text = "Enter the password for Xxxx"; - // - // btnCancel - // - this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnCancel.Location = new System.Drawing.Point(311, 35); - this.btnCancel.Name = "btnCancel"; - this.btnCancel.Size = new System.Drawing.Size(58, 23); - this.btnCancel.TabIndex = 30; - this.btnCancel.Text = "Cancel"; - this.toolTip1.SetToolTip(this.btnCancel, "Cancel extraction of this and all subsequent entries"); - this.btnCancel.UseVisualStyleBackColor = true; - this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); - // - // button2 - // - this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.button2.Location = new System.Drawing.Point(261, 35); - this.button2.Name = "button2"; - this.button2.Size = new System.Drawing.Size(45, 23); - this.button2.TabIndex = 20; - this.button2.Text = "Skip"; - this.toolTip1.SetToolTip(this.button2, "Skip extraction of this entry"); - this.button2.UseVisualStyleBackColor = true; - this.button2.Click += new System.EventHandler(this.button2_Click); - // - // PasswordDialog - // - this.AcceptButton = this.button1; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(381, 69); - this.Controls.Add(this.btnCancel); - this.Controls.Add(this.button2); - this.Controls.Add(this.button1); - this.Controls.Add(this.textBox1); - this.Controls.Add(this.prompt); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "PasswordDialog"; - this.Text = "Password for zip extraction?"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Button button1; - private System.Windows.Forms.TextBox textBox1; - private System.Windows.Forms.Label prompt; - private System.Windows.Forms.Button btnCancel; - private System.Windows.Forms.Button button2; - private System.Windows.Forms.ToolTip toolTip1; - } +namespace Ionic.Zip.Forms +{ + partial class PasswordDialog + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PasswordDialog)); + this.button1 = new System.Windows.Forms.Button(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.prompt = new System.Windows.Forms.Label(); + this.btnCancel = new System.Windows.Forms.Button(); + this.button2 = new System.Windows.Forms.Button(); + this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); + this.SuspendLayout(); + // + // button1 + // + this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.button1.Location = new System.Drawing.Point(218, 35); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(38, 23); + this.button1.TabIndex = 10; + this.button1.Text = "OK"; + this.toolTip1.SetToolTip(this.button1, "Use the specirfied password for extraction of this entry and subsequent entries."); + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.btnOk_Click); + // + // textBox1 + // + this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.textBox1.Location = new System.Drawing.Point(12, 37); + this.textBox1.Name = "textBox1"; + this.textBox1.PasswordChar = '*'; + this.textBox1.Size = new System.Drawing.Size(200, 20); + this.textBox1.TabIndex = 0; + // + // prompt + // + this.prompt.AutoSize = true; + this.prompt.Location = new System.Drawing.Point(12, 15); + this.prompt.Name = "prompt"; + this.prompt.Size = new System.Drawing.Size(138, 13); + this.prompt.TabIndex = 20; + this.prompt.Text = "Enter the password for Xxxx"; + // + // btnCancel + // + this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnCancel.Location = new System.Drawing.Point(311, 35); + this.btnCancel.Name = "btnCancel"; + this.btnCancel.Size = new System.Drawing.Size(58, 23); + this.btnCancel.TabIndex = 30; + this.btnCancel.Text = "Cancel"; + this.toolTip1.SetToolTip(this.btnCancel, "Cancel extraction of this and all subsequent entries"); + this.btnCancel.UseVisualStyleBackColor = true; + this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); + // + // button2 + // + this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.button2.Location = new System.Drawing.Point(261, 35); + this.button2.Name = "button2"; + this.button2.Size = new System.Drawing.Size(45, 23); + this.button2.TabIndex = 20; + this.button2.Text = "Skip"; + this.toolTip1.SetToolTip(this.button2, "Skip extraction of this entry"); + this.button2.UseVisualStyleBackColor = true; + this.button2.Click += new System.EventHandler(this.button2_Click); + // + // PasswordDialog + // + this.AcceptButton = this.button1; + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(381, 69); + this.Controls.Add(this.btnCancel); + this.Controls.Add(this.button2); + this.Controls.Add(this.button1); + this.Controls.Add(this.textBox1); + this.Controls.Add(this.prompt); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "PasswordDialog"; + this.Text = "Password for zip extraction?"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button button1; + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.Label prompt; + private System.Windows.Forms.Button btnCancel; + private System.Windows.Forms.Button button2; + private System.Windows.Forms.ToolTip toolTip1; + } } \ No newline at end of file diff --git a/src/Zip/Resources/PasswordDialog.cs b/old/src/Zip/Resources/PasswordDialog.cs similarity index 95% rename from src/Zip/Resources/PasswordDialog.cs rename to old/src/Zip/Resources/PasswordDialog.cs index 44535cc..53cb5c7 100644 --- a/src/Zip/Resources/PasswordDialog.cs +++ b/old/src/Zip/Resources/PasswordDialog.cs @@ -1,79 +1,79 @@ -// PasswordDialog.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009 Dino Chiesa -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// - -namespace Ionic.Zip.Forms -{ - using System; - using System.Collections.Generic; - using System.Windows.Forms; - - public partial class PasswordDialog : Form - { - public enum PasswordDialogResult { OK, Skip, Cancel }; - - public PasswordDialog() - { - InitializeComponent(); - this.textBox1.Focus(); - } - - public PasswordDialogResult Result - { - get - { - return _result; - } - } - - public string EntryName - { - set - { - prompt.Text = "Enter the password for " + value; - } - } - public string Password - { - get - { - return textBox1.Text; - } - } - - private void btnOk_Click(object sender, EventArgs e) - { - _result = PasswordDialogResult.OK; - this.Close(); - } - - private void btnCancel_Click(object sender, EventArgs e) - { - _result = PasswordDialogResult.Cancel; - this.Close(); - } - private void button2_Click(object sender, EventArgs e) - { - _result = PasswordDialogResult.Skip; - this.Close(); - } - - - private PasswordDialogResult _result; - - - } -} +// PasswordDialog.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009 Dino Chiesa +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// + +namespace Ionic.Zip.Forms +{ + using System; + using System.Collections.Generic; + using System.Windows.Forms; + + public partial class PasswordDialog : Form + { + public enum PasswordDialogResult { OK, Skip, Cancel }; + + public PasswordDialog() + { + InitializeComponent(); + this.textBox1.Focus(); + } + + public PasswordDialogResult Result + { + get + { + return _result; + } + } + + public string EntryName + { + set + { + prompt.Text = "Enter the password for " + value; + } + } + public string Password + { + get + { + return textBox1.Text; + } + } + + private void btnOk_Click(object sender, EventArgs e) + { + _result = PasswordDialogResult.OK; + this.Close(); + } + + private void btnCancel_Click(object sender, EventArgs e) + { + _result = PasswordDialogResult.Cancel; + this.Close(); + } + private void button2_Click(object sender, EventArgs e) + { + _result = PasswordDialogResult.Skip; + this.Close(); + } + + + private PasswordDialogResult _result; + + + } +} diff --git a/src/Zip/Resources/PasswordDialog.resx b/old/src/Zip/Resources/PasswordDialog.resx similarity index 98% rename from src/Zip/Resources/PasswordDialog.resx rename to old/src/Zip/Resources/PasswordDialog.resx index 5db9898..1f4b4fb 100644 --- a/src/Zip/Resources/PasswordDialog.resx +++ b/old/src/Zip/Resources/PasswordDialog.resx @@ -1,1398 +1,1398 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 17, 17 - - - - - AAABAAoAMDAQAAEABABoBgAApgAAACAgEAABAAQA6AIAAA4HAAAQEBAAAQAEACgBAAD2CQAAMDAAAAEA - CACoDgAAHgsAACAgAAABAAgAqAgAAMYZAAAQEAAAAQAIAGgFAABuIgAAAAAAAAEAIAD1xgAA1icAADAw - AAABACAAqCUAAMvuAAAgIAAAAQAgAKgQAABzFAEAEBAAAAEAIABoBAAAGyUBACgAAAAwAAAAYAAAAAEA - BAAAAAAAgAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDA - wAAAAP8AAP8AAAD//wD/AAAA/wD/AP//AAD///8AAAAAAAAAAAAAAAg3EzAAAAAAAAAAAAAAAAAAAAAA - AIczEzEzM3FwAAAAAAAAAAAAAAAAAABzEzMTMzczFzczAAAAAAAAAAAAAAAAAHM4NzNzd3t4uLc3NwAA - AAAAAAAAAAAIMTe4t4uLi3e3mIuDMwAAAAAAAAAAAAcxe4uIi3mDebeTO3t7eQAAAAAAAAAABzN7eLiI - tbc5NzEzc3l4OAAAAAAAAAAAA4t4uIt4MzMzMzNzOLM5twAAAAAAAAAAB7i4i3e4lzd7d7e3i3gzMwAA - AAAAAAAACIt7mLh4uLe3e3mLmLeDeQAAAAAAAAAACLd4t4uPg4mJtTM3N5O3twAAAAAAAAAAC3e4i4iI - uTMzMzcTODN5cwAAAAAAAAAAB7h7iLi4M3Nzc5e3mLczNwAAAAAAAAAACIuJg4mIt7i3uLd7i4lzMwAA - AAAAAAAAC3mLi4uPe3mLd3tze3uDeQAAAAAAAAAACLi4uIiPt3t5OTE5NzOYtwAAAAAAAAAAB7h4iIuI - OTM3MzNze3MzewAAAAAAAAAACLi4uLi4tzebd7i4uIlzMQAAAAAAAAAACLiLeLiIi4uHuJg4mLezcwAA - AAAAAAAACHt4uIiIt5i3N7OXtzc3lwAAAAAAAAAAC4mLiIiIg3M5MxczOJM7ewAAAAAAAAAACLiIiLi4 - M7l4uIv/iItTNwAAAAAAAAAACIuLi4uPj4+4i3czOz+DOQAAAAAAAAAAC4i4iI+LczczkzkxMTG4gwAA - AAAAAAAACLiIi3M3t7mLd7c/NxNxuAAAAAAAAAAACIi3MxOYN3t3uDc/MTcwAAAAAAAAAAAACxMTPzcz - OXM5M5M4czAAAAAAAAAAAAAAAAB7GDsTc7e3gAA4MTAAAAAAAAAAAAAAAAAAP3cwAAAAAAA4NzAAAAAA - AAAAAAAAAAAAODgwAAAAAAA4OTAAAAAAAAAAAAAAAAAAOLcwAAAAAAA4M3AAAAAAAAAAAAAAAAAAOJgw - AAAAAAA4MzAAAAAAAAAAAAAAAAAAOLgwAAAAAAA4kzAAAAAAAAAAAAAAAAAAODgwAAAAAAA7c3AAAAAA - AAAAAAAAAAAAOLiQAAAAAAA3kzAAAAAAAAAAAAAAAAAAOJgwAAAAAAA4ODAAAAAAAAAAAAAAAAAAM7gw - AAAAAAAzmxAAAAAAAAAAAAAAAAAANTgwAAAAAAA3ODAAAAAAAAAAAAAAAAAAMziwAAAAAAc5ODAAAAAA - AAAAAAAAAAAAcxtzAAAAAAMzczAAAAAAAAAAAAAAAAAAgxOJgAAAADMTg4AAAAAAAAAAAAAAAAAAAzE4 - MwAAA3EXOQAAAAAAAAAAAAAAAAAACDcTtzMzOTA4OAAAAAAAAAAAAAAAAAAAADODE3lzczGDcAAAAAAA - AAAAAAAAAAAAAAM4t7e3txc3AAAAAAAAAAAAAAAAAAAAAABze4j3EzOAAAAAAAAAAAAAAAAAAAAAAAAA - NTMTM4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA///4H///AAD//AAH//8AAP/A - AAP//wAA/wAAAP//AAD4AAAA//8AAOAAAAD//wAAgAAAAP//AACAAAAA//8AAIAAAAD//wAAgAAAAP// - AACAAAAA//8AAIAAAAD//wAAgAAAAP//AACAAAAA//8AAIAAAAD//wAAgAAAAP//AACAAAAA//8AAIAA - AAD//wAAgAAAAP//AACAAAAA//8AAIAAAAD//wAAgAAAAP//AACAAAAA//8AAIAAAAD//wAAgAAAAP// - AACAAAAH//8AAIAAAB///wAA8AAcH///AAD8H/wf//8AAPwf/B///wAA/B/8H///AAD8H/wf//8AAPwf - /B///wAA/B/8H///AAD8H/wf//8AAPwf/B///wAA/B/8H///AAD8H/wf//8AAPwf+B///wAA/A/4H/// - AAD8B/Af//8AAP4D4D///wAA/gAAP///AAD/AAB///8AAP+AAP///wAA/8AB////AAD/8Af///8AAP// - /////wAAKAAAACAAAABAAAAAAQAEAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAIAAAACA - gACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8AAAD/AP8A//8AAP///wAAAAAACHMxISEA - AAAAAAAAAAAAAzM3c3ODNwAAAAAAAAAAcxg3uYt7g3MwAAAAAAAAcze/e3ezk4t5cAAAAAAAAzi4iLWz - U3N5t7AAAAAAAAOLd7gzc7c7iDcwAAAAAAADiYt4i3eYN7i3MAAAAAAAA3uIiDl7M5OJN4AAAAAAAAOL - e7i3Nzg4uDMwAAAAAAAHt3iIi4t7c4t7cAAAAAAAA4uLiDk3k5OJN7AAAAAAAAOHuHi3N7d7iDNwAAAA - AAAHt4uIi4t7e4t5MAAAAAAAA4uIiLU5c5N5N4AAAAAAAAOIuL97i4uIuLMwAAAAAAAHuIiIt4e3MTF4 - sAAAAAAAC4uTM3uYN5PzMzAAAAAAAAeXPxN3t7cz8QAAAAAAAAAACDg4AAAAA4MAAAAAAAAAAAA4MAAA - AAODAAAAAAAAAAAAOzAAAAABgwAAAAAAAAAAADeQAAAAAzMAAAAAAAAAAAA3MAAAAANzAAAAAAAAAAAA - M3AAAAADlwAAAAAAAAAAADl4AAAAg3MAAAAAAAAAAAAzswAAADMzAAAAAAAAAAAAc3OAAAgTcwAAAAAA - AAAAAAMXNwBzM5AAAAAAAAAAAAAHM5MzMTdwAAAAAAAAAAAAAHOLiDM3AAAAAAAAAAAAAAAIN5MTgAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP+AP//+AA//8AAH/8AAB/+AAAf/gAAH/4AAB/+AAAf/gAAH/4AA - B/+AAAf/gAAH/4AAB/+AAAf/gAAH/4AAB/+AAAf/gAA//+D+P//x/j//8f4///H+P//x/j//8f4///D8 - P//w/D//8Hg///gwf//4AH///AD///4B////////KAAAABAAAAAgAAAAAQAEAAAAAACAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAIAAAIAAAACAgACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8A - AAD/AP8A//8AAP///wADMzMzMzMzAAuLe4t7m4kAB7mzmzMzMwALe4uIt7mzAAe3k7k5NzMAC4uLi4s7 - gwADm3m3M5OTAAi4uLi3t7MAAzc3OTc3MwAAB7cAB7cAAAAHgwADlwAAAAODAAe3AAAAB7cAB7cAAAAH - iHd7lwAAAAA7i4NwAAAAAAd3mAAAAIADAACAAwAAgAMAAIADAACAAwAAgAMAAIADAACAAwAAgAMAAOOP - AADjjwAA448AAOOPAADgDwAA8B8AAPg/AAAoAAAAMAAAAGAAAAABAAgAAAAAAAAJAAAAAAAAAAAAAAAB - AAAAAQAAAAAAAAQTGwAGHCgACzVIAAw6TwANPlQADkBWAA5FXQASR18AFUZcACRLXQAPSGEAEEpjABBL - ZQAUTWUAEE5oABVOaQAaT2kAEFBrABFSbQAfUWoAElVyABJXdQASWHUAElp4ABNcegATXXwAFF9/ACxg - eQAwZX4AOGV6AEhrfQAUYYEAFGSFABVniAAYZ4kAFWiJABZqjAAWbY8AGGmKABhqjAAXbpAAGW6RABtx - kwAccpQAHnWWACNzlQAhd5gAIniZACR6mwAjepwAJHqcACZ8nQApepwAKH2eACh/oAAufqAAQHWOACmA - oQAsgaIALYOkAC+EpQA3g6QAMIWmAD2GpAAxhqgAM4ipADSJqgAziawANYusADeMrQA/iKgAO4uuADiN - rgA6j7AAO5CxADyRsgA9krQAP5S1AECCnwBQgpsAU4WeAFiIoABAlbYAQpe4AEOYuQBEmboARpu8AEec - vQBJmbsASJ2+AFOUsABWmrcAW5mzAFubtgBdmbUAZpOqAGeVqwB4lKIAZZ66AEqfwABLoMEATKHCAE6j - xABPpMUAUKXGAFKnyABTqMkAVKnKAFarzABWrM0AWa7OAFuw0ABcsdEAX7TUAGmsyQBhttYAZrraAGm+ - 3QBrwN8AbcLhAG/E4wBxxuUAc8jnAHTJ6AB5y+oAfMzqAImtvwCBscYAh7TIAI+5zACAzusAhtDsAInR - 7ACQ0+0Ak9XuAJfX7wCa2O8AndrwAKTc8QCu3/IAsuHzALTi8wC45PQAvub1AMHm9QDF6PYAyOn2AMzr - 9wDS7fgA2e/5ANzw+QDl9fsA6Pb7AO/4/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - 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 - AACAAAAA//8AAIAAAAD//wAAgAAAAP//AACAAAAA//8AAIAAAAD//wAAgAAAAP//AACAAAAA//8AAIAA - AAD//wAAgAAAAP//AACAAAAA//8AAIAAAAD//wAAgAAAAP//AACAAAAA//8AAIAAAAD//wAAgAAAB/// - AACAAAAf//8AAPAAHB///wAA/B/8H///AAD8H/wf//8AAPwf/B///wAA/B/8H///AAD8H/wf//8AAPwf - /B///wAA/B/8H///AAD8H/wf//8AAPwf/B///wAA/B/8H///AAD8H/gf//8AAPwP+B///wAA/AfwH/// - AAD+A+A///8AAP4AAD///wAA/wAAf///AAD/gAD///8AAP/AAf///wAA//AH////AAD///////8AACgA - AAAgAAAAQAAAAAEACAAAAAAAAAQAAAAAAAAAAAAAAAEAAAABAAAAAAAACjFDAAszRQANPlQADUBXAA5D - WwAUQ1gAEEtlABtPZQAQTmgAEVJtABVRbAAfUWkAElVyABRWcwASV3UAElh1AB5ZdwASWngAE1x6ABRd - ewATXXwALGB5ABRhggAVZYYAG2aFABVniQAVaYoAFmqMABZtjwAbbI0AH2yNABlvkQAacJIAHHKUAB51 - lgAzcYoAL3OSACF2mAAieJkAJHqbACR7nAAmfJ0AKH6fADJ5mQA4f54AKX+gAFd0ggBCepQAKoChACyB - ogAug6QAL4SlADCFpgAxhqgAM4ipADSJqgA2i6wAN4ytADiNrgA6j7AAO5CxADyRsgA+k7QAP5S1AEeG - owBIiqcATY6pAFCPqgBUjagAQJW2AEKXuABDmLkARJm6AEabvABHnL0ASJ2+AHGcsQB6o7cAdaK4AEqf - wABLoMEATKHCAE+kxQBQpcYAUqfIAFOoyQBUqcoAVqvMAFeszQBZrs4AW7DQAFyx0QBftNQAf67DAGC1 - 1QBmutoAab7dAGvA3wBtwuEAccblAHPI5wB1yukAecvqAIGrvQCDrL8AjK/AAIa4zgCVu8sAlcHVAIDO - 6wCQzuYAhtDsAInR7ACQ0+0Ak9XuAJrY7wCd2vAApNzxAK7f8gCy4fMAuOT0AL7m9QDF6PYAyOn2AMzr - 9wDS7fgA3PD5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - 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 - 2gA0sdwAO7DcADS04QA/tOAATrDSAG2xyQBDuOQARbrlAEe85wBJvukAa8LeAEvA6wBMwewAUcXwAFbL - 9QBe0/0AbcfjAGTI5gBkyOgAc8vkAGDV/wBk1f8AaNb/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAgICAgICAgICAgICAgAAADAwLiws - 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 - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACVjg8wSR1/+FWeJ/0qfwP9N - osP/U6jJ/1yx0f9yx+b/suHz/2K31/9Vqsv/Wq/P/1muz/9Vqsv/TqPE/0yhwv9Kn8D/Qpe4/zeMrf8w - hab/LIGi/x92l/85jq//WK3O/1muz/9httb/V6zN/0idvv8xhqf/ChwkVwAAAEsAAABEAAAANwAAACsA - AAAfAAAAFAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApaom0E1x6/zuQsf9M - ocL/T6TF/1arzP9mutr/bMHg/2/E4/98zOr/vub1/2K31/9Kn8D/PpO0/zKHqP8sgaL/JXuc/xZtj/8U - YoL/E118/xJaeP8SVnP/ElVy/xJaeP85jq//P5S1/yh+n/9DmLn/VarL/0Wau/8+k7T/ChwlVgAAAEoA - AABIAAAAQQAAADoAAAAxAAAAKAAAAB0AAAAFAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAT - W3n/XLHR/1Gmx/9csdH/ar/e/27D4v95y+r/fMzq/3TJ6P9rwN//htDs/ziNrv8WbY//Fm2P/xVlhv8V - aYr/FWWG/xVniP8VZYb/FWmK/x92l/8le5z/KoCh/zSJqv9nu9v/UabH/yR6m/8bcZP/KoCh/0qfwP87 - kLH/ChwlVQAAAEkAAABHAAAAQQAAADoAAAA1AAAALwAAACkAAAAUAAAACwAAAAUAAAACAAAAAQAAAAAA - AAAAAAAAAAAAAABit9f/YbbW/2m+3f9vxOP/csfm/3PI5/9pvt3/YrfX/2C11f9ftNT/htDs/0CVtv8u - g6T/NImq/zSJqv84ja7/PpO0/0SZuv9Inb7/SJ2+/0idvv9MocL/UKXG/1Clxv9vxOP/YbbW/0mev/81 - iqv/FWWG/xZtj/8VZYb/Ch0mVAAAAEgAAABFAAAAQAAAADoAAAA0AAAALgAAACkAAAAgAAAAGAAAAA8A - AAAJAAAABQAAAAIAAAAAAAAAAAAAAACk3PH/htDs/2vA3/9nu9v/XLHR/1eszf9Wq8z/XbLS/2e72/9v - xOP/web1/1muz/9LoMH/VarL/1Spyv9PpMX/TKHC/0+kxf9Sp8j/TKHC/0qfwP9MocL/VKnK/1Wqy/9q - v97/YLXV/1Gmx/9Rpsf/PpO0/zCFpv8VZ4n/Ch0mUwAAAEgAAABDAAAAPAAAADYAAAAwAAAAKQAAACMA - AAAlAAAAHwAAABcAAAARAAAACwAAAAUAAAAAAAAAAAAAAACG0Oz/W7DQ/1KnyP9TqMn/VqvM/2C11f9n - u9v/ccbl/4DO6/+u3/L/zOv3/2a62v9Oo8T/UqfI/1Gmx/9Qpcb/RZq7/ziNrv8vhKX/KH6f/x92l/8b - cZP/Fm2P/xVlhv82i6z/Nous/zmOr/9Rpsf/R5y9/0GWt/88kbL/CyAqSwAAAD0AAAA3AAAAMAAAACcA - AAAgAAAAGQAAABQAAAAgAAAAHAAAABkAAAAUAAAADgAAAAcAAAAAAAAAAAAAAABbsND/UabH/1eszf9c - sdH/a8Df/3PI5/+Azuv/l9fv/67f8v+u3/L/rt/y/0ecvf8sgaL/LIGi/yV7nP8WbY//FWeI/xRig/8T - XHv/E1x7/xNcev8TXHv/FGKD/xZtj/9Vqsv/Moeo/xNdfP8ccpT/PJGy/0KXuP88krP/ECk1MQAAACEA - AAAdAAAAFgAAAA8AAAAMAAAABwAAAAUAAAATAAAAFAAAABQAAAASAAAADgAAAAoAAAAAAAAAAAAAAABR - psf/YrfX/2e72/9xxuX/dMno/3nL6v9zyOf/b8Tj/27D4v9mutr/fMzq/zmOr/8edJb/IXeY/yZ8nf8q - gKH/J32e/yl/oP8ug6T/MYan/zeMrf8/lLX/SZ6//1Clxv90yej/Wq/P/y2Co/8VZ4j/E1x7/yqAof8p - gKL/FjVDDAAAAAYAAAAGAAAAAgAAAAEAAAABAAAAAAAAAAAAAAAGAAAACAAAAAsAAAANAAAADAAAAAgA - AAAAAAAAAAAAAABit9f/bsPi/27D4v9sweD/Z7vb/2G21v9es9P/YLXV/2W52f9sweD/suHz/1Spyv9E - mbr/TKHC/0yhwv9MocL/T6TF/1itzv9XrM3/UabH/1Wqy/9Wq8z/XLHR/16z0/91yun/Z7vb/0yhwv9B - lrf/HHKU/xNeff8SVXL/Ey46EwAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAMA - AAAEAAAABgAAAAYAAAAAAAAAAAAAAABuw+L/YLXV/12y0v9Wq8z/Wq/P/1yx0f9mutr/bMHg/3zM6v+X - 1+//0u34/2K31/9Qpcb/WK3O/2C11f9es9P/V6zN/1itzv9XrM3/S6DB/0GWt/89krP/QZa3/zyRsv9S - p8j/UqfI/0yhwv9MocL/QZa3/z+Utf8tg6T/DycyNQAAACEAAAAXAAAADQAAAAYAAAADAAAAAQAAAAEA - AAAAAAAAAAAAAAAAAAABAAAAAQAAAAMAAAAAAAAAAAAAAABgtdX/V6zN/1qvz/9ludn/Z7vb/3LH5v95 - y+r/pNzx/7Lh8/++5vX/zuv3/1yx0f9Inb7/SJ2+/0OYuf89krP/MYan/x92l/8VZ4j/FGSE/xRig/8V - ZYb/FWeI/xVlhv88kbL/Moeo/xxylP85jq//Qpe4/0CVtv89krP/DyYyOwAAADAAAAAsAAAAIgAAABcA - AAARAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAABXrM3/YrfX/2q/3v9v - xOP/fMzq/5rY7/+k3PH/pNzx/5fX7/98zOr/k9Xu/z6TtP8ieJn/JXuc/xxylP8WbY//GW+R/xZtj/8V - aYr/FWeI/xlvkf8le5z/LoOk/zWKq/9mutr/Qpe4/xRkhP8TXn3/KH6f/0CVtv87kbP/EzA8HAAAACIA - AAApAAAAJwAAACMAAAAeAAAAGAAAABMAAAAFAAAABAAAAAIAAAADAAAAAwAAAAIAAAAAAAAAAAAAAABi - t9f/bsPi/3nL6v+T1e7/idHs/4bQ7P90yej/ar/e/2m+3f9qv97/ndrw/0SZuv8tgqP/Moeo/zKHqP82 - i6z/O5Cx/0GWt/9Embr/Sp/A/06jxP9Oo8T/Wa7P/2C11f98zOr/XbLS/ziNrv8Zb5H/Elh1/xVpiv8h - d5n/AAAAAAAAAAgAAAARAAAAFgAAABcAAAAYAAAAFgAAABQAAAAPAAAADAAAAAoAAAAIAAAABgAAAAQA - AAAAAAAAAAAAAABuw+L/ccbl/3HG5f9xxuX/ZbnZ/2a62v9nu9v/bMHg/3PI5/98zOr/0u34/1qvz/9M - ocL/W7DQ/1yx0f9Zrs//Wq/P/1eszf9Yrc7/Wa7P/1qvz/9bsND/X7TU/1yx0f90yej/YbbW/0abvP9A - lbb/LYKj/yJ4mf8WZof/AAAAAAAAAAAAAAACAAAABQAAAAYAAAAIAAAACAAAAAkAAAASAAAADwAAAAwA - AAAJAAAABwAAAAQAAAAAAAAAAAAAAABxxuX/YrfX/2K31/9nu9v/a8Df/27D4v90yej/l9fv/6Tc8f++ - 5vX/3PD5/2zB4P9Wq8z/W7DQ/1uw0P9bsND/VarL/0idvv89krP/MYan/y6DpP8yh6j/M4ip/yqAof9D - mLn/Qpe4/ziNrv9DmLn/QJW2/z+Utf81i6z/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEA - AAAIAAAACAAAAAYAAAAFAAAABAAAAAMAAAAAAAAAAAAAAABit9f/Zrra/2a62v9sweD/ecvq/5DT7f+k - 3PH/vub1/8Hm9f/B5vX/xej2/02iw/80iar/M4ip/yqAof8ccpT/GW+R/xZtj/8UZIT/E1x7/xNeff8V - Z4j/GW+R/y6DpP9Qpcb/LoOk/xNdfP8ccpT/PZKz/0CVtv89krP/AAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAABmutr/b8Tj/3XK6f+J - 0ez/suHz/6Tc8f+d2vD/gM7r/3TJ6P9xxuX/idHs/ziNrv8bcZP/KoCh/zCFpv8/lLX/RZq7/1arzP9d - stL/dMno/4nR7P/F6Pb/zOv3/5rY7/++5vX/k9Xu/zKHqP8SVnP/Fm2P/zaLrP83ja//AAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABv - xOP/htDs/4nR7P+J0ez/ccbl/3HG5f9qv97/a8Df/3XK6f+04vP/5fX7/8Hm9f/M6/f/xej2/7jk9P+T - 1e7/fMzq/3HG5f9httb/Wq/P/1arzP85jq//Fm2P/zWKq/8xhqf/RZq7/8jp9v+d2vD/Moeo/xBPaf8U - YYH/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAACG0Oz/a8Df/2q/3v9mutr/ab7d/4nR7P/B5vX/5fX7/9Lt+P9zyOf/YLXV/0+kxf8t - gqP/L4Sl/ziNrv82i6z/Moeo/y6DpP8nfZ7/JXuc/yV7nP8PR1//EE5o/xNcev8RUm7/EE5o/xVlhv9B - lrf/mtjv/5DT7f8edJb/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABrwN//Zrra/4nR7P/F6Pb/6Pb7/87r9/9zyOf/PpO0/yV7nP8i - eJn/SJ2+/3nL6v83jK3/Moeo/zWKq/84ja7/O5Cx/z2Ss/88kbL/O5Cx/zWKq/8NPlT/6Pb7/xVniP8R - Um7/EFBr/xJYdf8WbY//EEtl/0idv/9WrM3/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5y+r/7/j8/6Tc8f9es9P/PZKz/yJ4mf8V - ZYb/E1x7/xVpiv8sgaL/QZa3/0OYuf9Jnr//Sp/A/0idvv9Inb7/TKHC/1KnyP9uw+L/SZ6//yqAof8S - VXL/2e/5/yd9nv8RUm7/E1t5/yp+ofkxf6HUL2+MDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTqMn/FmiJ/xZtj/8V - ZYb/G3GT/xFSbv+45PT/IniZ/yqAof8SVnP/J32e/yd9nv8vhKX/LYKj/y+Epf8tgqP/KoCh/yV7nP8i - eJn/MIWm/xVnif8TXHr/yOn2/y2Co/8SVXL/FGKD/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAC9xjz0ncpPhM4ms/hNcev+04vP/MIWm/zyRsv8QTmj/Elh1/xVniP8ccpT/KH+h/zCGqP87 - kbT9QZW49Eucv9RHj696AAAAAEqKpxUUYoL/uOT0/y2Co/8SWHX/FWWG/wAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABVpiv+k3PH/Nous/1itzv8XbpD/SoqnFQAAAAAA - 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 - Z4n+FmiJ/xlvkf8bcZP/DkVd/wQTG/8TXHv/Z7vb/xRkhP89hqeTAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALX2g6CqAof9Gm7z/Elh1/xVlhv8o - fp//KH6f/yd9nv8ofp//JHqb/xtxk/8VaYr/D0hh/w0+VP9Vqsv/Fm2P/zN/osoAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACV4m/ck - epv/X7TU/2C11f9Embr/SZ6//0idvv9LoMH/UqfI/2a62v83jK3/EVFs/zqPsP8VaIn/MoChzAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAA1hKXOFmqM/zCFpv9ftNT/kNPt/77m9f/B5vX/SZ6//xJYdf8SV3X/Fm2P/xhqjP87 - haejAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACl7nu4jepz/GW+R/xRggP8SV3X/EVNv/xNdfP8a - bpH+NoGlwwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAP//8A///wAA//gAAP//AAD/wAAAH/8AAP4AAAAH/wAA+AAAAAD/AADgAAAAAP8AAIAAAAAA - HwAAgAAAAAAHAACAAAAAAAMAAIAAAAAAAwAAgAAAAAADAACAAAAAAAMAAIAAAAADAwAAgAAAAB8DAACA - AAAAAOMAAIAAAAAA8wAAgAAAAAADAACAAAAAgAMAAIAAAADAAwAAgAAAAPgDAACAAAAA/xMAAIAAAAD/ - /wAAgAAAAP//AACAAAAA//8AAIAAAAD//wAAgAAAA///AACAAAAf//8AAOAACB///wAA/A/4H///AAD8 - D/gf//8AAPwP+B///wAA/A/4H///AAD8D/gf//8AAPwP+B///wAA/A/4H///AAD8D/gf//8AAPwP+B// - /wAA/A/4H///AAD8D/gf//8AAPwP+B///wAA/AfwH///AAD+AYA///8AAP4AAD///wAA/wAAf///AAD/ - gAD///8AAP/AAf///wAA//AH////AAD///////8AACgAAAAgAAAAQAAAAAEAIAAAAAAAgBAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtbo2LKmuKqhxUb+wX - S2T2EkFX/AszRf8NQFf/CjFD/w5FXfEXPU91AAAACgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC9xkEIVT2v8Elp4/yR6m/8q - gKH/PZKz/z2Ss/89krP/N4yt/x50lv9Wq8z/JHqb/xJVcv8SO060BQ8UPAAAAA8AAAAFAAAAAQAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACttjJ8ZVnT5EE5o/3PI5/9A - lbb/Nous/zuQsf87kLH/PZKz/z2Ss/89krP/O5Cx/3LH5v9Qpcb/KH6f/xVpiv8VXHneEiQtUgAAACYA - AAAUAAAACAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMHKQJiNlg9sUVnP+Fm2P/0+kxf9n - u9v/uOT0/1itzv9Qpcb/UqfI/1Clxv9Gm7z/P5S1/zaLrP8sgaL/X7TU/1Spyv9Wq8z/QJW2/yZ8nf8a - OEZ0AAAARQAAADgAAAAlAAAAFgAAAAkAAAAEAAAAAQAAAAAAAAAAAAAAAAAAAAAUUm3+OY6v/1uw0P9g - tdX/ab7d/2vA3/+45PT/RJm6/zmOr/8yh6j/Jnyd/xlvkf8VaYr/FWmK/xVpiv9csdH/TaLD/zKHqP9G - m7z/UKXG/xk2RHQAAABIAAAAQgAAADgAAAAsAAAAHQAAABEAAAAHAAAAAwAAAAEAAAAAAAAAABNcev9s - weD/ZbnZ/2W52f9gtdX/W7DQ/6Tc8f86j7D/LoOk/zOIqf82i6z/O5Cx/z2Ss/9Albb/R5y9/4bQ7P9q - v97/QJW2/yd9nv8mfJ3/GjhGcQAAAEcAAABBAAAAOQAAADAAAAAnAAAAHgAAABQAAAALAAAAAwAAAAEA - AAAAQJW2/1Wqy/9Qpcb/T6TF/1itzv9pvt3/xej2/1qvz/9Sp8j/UabH/0yhwv9HnL3/QZa3/zqPsP84 - ja7/ab7d/1KnyP9LoMH/Sp/A/y2Co/8cPEtsAAAAQAAAADgAAAAtAAAAIwAAABsAAAAZAAAAFgAAAA8A - AAAGAAAAAQAAAAAfdpf/R5y9/1eszf9pvt3/ecvq/5rY7//F6Pb/Qpe4/zeMrf8sgaL/JXuc/xxylP8Z - b5H/FmuN/xlvkf9gtdX/SJ2+/yF3mP82i6z/bsPi/zJcb0QAAAAhAAAAGgAAABIAAAALAAAACAAAAAoA - AAANAAAADAAAAAcAAAADAAAAACV7nP9httb/ab7d/2e72/9httb/X7TU/67f8v8+k7T/Moeo/zmOr/86 - j7D/PpO0/0GWt/9Gm7z/TaLD/4nR7P9rwN//OY6v/xlvkf8Zb5H/bpqvGwAAAAUAAAADAAAAAQAAAAAA - AAAAAAAAAQAAAAMAAAAEAAAABQAAAAQAAAAAQpe4/1Wqy/9Uqcr/VarL/2G21v9yx+b/yOn2/1uw0P9T - qMn/V6zN/1KnyP9PpMX/SJ2+/0CVtv8+k7T/bsPi/1arzP9Jnr//RJm6/yyBov84Y3Y7AAAAGwAAAA8A - AAAHAAAABAAAAAEAAAABAAAAAAAAAAEAAAACAAAAAgAAAAAdc5X/VKnK/2a62v95y+r/ndrw/67f8v/I - 6fb/Qpe4/zeMrf8yh6j/KoCh/yJ4mf8Zb5H/GW+R/yJ4mf9it9f/SZ6//x50lv8ug6T/bsPi/y1VaEwA - AAApAAAAJgAAABwAAAAUAAAADQAAAAgAAAAGAAAABAAAAAQAAAABAAAAACh+n/9sweD/dcrp/3XK6f9u - w+L/Z7vb/7Lh8/9Albb/NYqr/ziNrv87kLH/PZKz/0CVtv9HnL3/UKXG/5PV7v9mutr/Moeo/xVpiv8b - cZP/TnqOKQAAAA0AAAAWAAAAFgAAABUAAAASAAAADgAAAAoAAAAHAAAABAAAAAEAAAAARZq7/2C11f9h - ttb/YbbW/27D4v+J0ez/0u34/16z0/9XrM3/Wa7P/1Wqy/9Sp8j/Sp/A/0mev/9LoMH/c8jn/1muz/9E - mbr/PJGy/zKHqP+jzuITAAAAAAAAAAEAAAADAAAABAAAAAUAAAAFAAAABAAAAAIAAAABAAAAAAAAAAAj - eZr/XbLS/3HG5f+J0ez/uOT0/8Xo9v/M6/f/Qpe4/zeMrf8yh6j/KX+g/yJ4mf8bcZP/HHKU/y2Co/9T - qMn/Q5i5/xlvkf8pf6D/bsPi/6PO4hMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAcbHOByqAof91yun/idHs/4DO6/91yun/htDs/77m9f9httb/TaLD/1itzv9dstL/ar/e/27D4v9x - xuX/YLXV/12y0v9rwN//UKXG/xZtj/8ccpT/o87iEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAABxsc4HRJm6/27D4v+Azuv/suHz/77m9f+J0ez/gM7r/27D4v9gtdX/Z7vb/2a62v9a - r8//VKnK/yqAof8QTmj/EE5o/xJWc/84ja7/Zrra/2e72/+lz+IOAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAHCwzQdZrs//htDs/2a62v8qgKH/FWmK/xFRbP86j7D/SZ6//0abvP9I - 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 - jwAA448AAOOPAADgDwAA4A8AAPAfAAA= - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + + + AAABAAoAMDAQAAEABABoBgAApgAAACAgEAABAAQA6AIAAA4HAAAQEBAAAQAEACgBAAD2CQAAMDAAAAEA + CACoDgAAHgsAACAgAAABAAgAqAgAAMYZAAAQEAAAAQAIAGgFAABuIgAAAAAAAAEAIAD1xgAA1icAADAw + AAABACAAqCUAAMvuAAAgIAAAAQAgAKgQAABzFAEAEBAAAAEAIABoBAAAGyUBACgAAAAwAAAAYAAAAAEA + BAAAAAAAgAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDA + wAAAAP8AAP8AAAD//wD/AAAA/wD/AP//AAD///8AAAAAAAAAAAAAAAg3EzAAAAAAAAAAAAAAAAAAAAAA + AIczEzEzM3FwAAAAAAAAAAAAAAAAAABzEzMTMzczFzczAAAAAAAAAAAAAAAAAHM4NzNzd3t4uLc3NwAA + AAAAAAAAAAAIMTe4t4uLi3e3mIuDMwAAAAAAAAAAAAcxe4uIi3mDebeTO3t7eQAAAAAAAAAABzN7eLiI + tbc5NzEzc3l4OAAAAAAAAAAAA4t4uIt4MzMzMzNzOLM5twAAAAAAAAAAB7i4i3e4lzd7d7e3i3gzMwAA + AAAAAAAACIt7mLh4uLe3e3mLmLeDeQAAAAAAAAAACLd4t4uPg4mJtTM3N5O3twAAAAAAAAAAC3e4i4iI + uTMzMzcTODN5cwAAAAAAAAAAB7h7iLi4M3Nzc5e3mLczNwAAAAAAAAAACIuJg4mIt7i3uLd7i4lzMwAA + AAAAAAAAC3mLi4uPe3mLd3tze3uDeQAAAAAAAAAACLi4uIiPt3t5OTE5NzOYtwAAAAAAAAAAB7h4iIuI + OTM3MzNze3MzewAAAAAAAAAACLi4uLi4tzebd7i4uIlzMQAAAAAAAAAACLiLeLiIi4uHuJg4mLezcwAA + AAAAAAAACHt4uIiIt5i3N7OXtzc3lwAAAAAAAAAAC4mLiIiIg3M5MxczOJM7ewAAAAAAAAAACLiIiLi4 + M7l4uIv/iItTNwAAAAAAAAAACIuLi4uPj4+4i3czOz+DOQAAAAAAAAAAC4i4iI+LczczkzkxMTG4gwAA + AAAAAAAACLiIi3M3t7mLd7c/NxNxuAAAAAAAAAAACIi3MxOYN3t3uDc/MTcwAAAAAAAAAAAACxMTPzcz + OXM5M5M4czAAAAAAAAAAAAAAAAB7GDsTc7e3gAA4MTAAAAAAAAAAAAAAAAAAP3cwAAAAAAA4NzAAAAAA + AAAAAAAAAAAAODgwAAAAAAA4OTAAAAAAAAAAAAAAAAAAOLcwAAAAAAA4M3AAAAAAAAAAAAAAAAAAOJgw + AAAAAAA4MzAAAAAAAAAAAAAAAAAAOLgwAAAAAAA4kzAAAAAAAAAAAAAAAAAAODgwAAAAAAA7c3AAAAAA + AAAAAAAAAAAAOLiQAAAAAAA3kzAAAAAAAAAAAAAAAAAAOJgwAAAAAAA4ODAAAAAAAAAAAAAAAAAAM7gw + AAAAAAAzmxAAAAAAAAAAAAAAAAAANTgwAAAAAAA3ODAAAAAAAAAAAAAAAAAAMziwAAAAAAc5ODAAAAAA + AAAAAAAAAAAAcxtzAAAAAAMzczAAAAAAAAAAAAAAAAAAgxOJgAAAADMTg4AAAAAAAAAAAAAAAAAAAzE4 + MwAAA3EXOQAAAAAAAAAAAAAAAAAACDcTtzMzOTA4OAAAAAAAAAAAAAAAAAAAADODE3lzczGDcAAAAAAA + AAAAAAAAAAAAAAM4t7e3txc3AAAAAAAAAAAAAAAAAAAAAABze4j3EzOAAAAAAAAAAAAAAAAAAAAAAAAA + NTMTM4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA///4H///AAD//AAH//8AAP/A + AAP//wAA/wAAAP//AAD4AAAA//8AAOAAAAD//wAAgAAAAP//AACAAAAA//8AAIAAAAD//wAAgAAAAP// + AACAAAAA//8AAIAAAAD//wAAgAAAAP//AACAAAAA//8AAIAAAAD//wAAgAAAAP//AACAAAAA//8AAIAA + AAD//wAAgAAAAP//AACAAAAA//8AAIAAAAD//wAAgAAAAP//AACAAAAA//8AAIAAAAD//wAAgAAAAP// + AACAAAAH//8AAIAAAB///wAA8AAcH///AAD8H/wf//8AAPwf/B///wAA/B/8H///AAD8H/wf//8AAPwf + /B///wAA/B/8H///AAD8H/wf//8AAPwf/B///wAA/B/8H///AAD8H/wf//8AAPwf+B///wAA/A/4H/// + AAD8B/Af//8AAP4D4D///wAA/gAAP///AAD/AAB///8AAP+AAP///wAA/8AB////AAD/8Af///8AAP// + /////wAAKAAAACAAAABAAAAAAQAEAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAIAAAACA + gACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8AAAD/AP8A//8AAP///wAAAAAACHMxISEA + AAAAAAAAAAAAAzM3c3ODNwAAAAAAAAAAcxg3uYt7g3MwAAAAAAAAcze/e3ezk4t5cAAAAAAAAzi4iLWz + U3N5t7AAAAAAAAOLd7gzc7c7iDcwAAAAAAADiYt4i3eYN7i3MAAAAAAAA3uIiDl7M5OJN4AAAAAAAAOL + e7i3Nzg4uDMwAAAAAAAHt3iIi4t7c4t7cAAAAAAAA4uLiDk3k5OJN7AAAAAAAAOHuHi3N7d7iDNwAAAA + AAAHt4uIi4t7e4t5MAAAAAAAA4uIiLU5c5N5N4AAAAAAAAOIuL97i4uIuLMwAAAAAAAHuIiIt4e3MTF4 + sAAAAAAAC4uTM3uYN5PzMzAAAAAAAAeXPxN3t7cz8QAAAAAAAAAACDg4AAAAA4MAAAAAAAAAAAA4MAAA + AAODAAAAAAAAAAAAOzAAAAABgwAAAAAAAAAAADeQAAAAAzMAAAAAAAAAAAA3MAAAAANzAAAAAAAAAAAA + M3AAAAADlwAAAAAAAAAAADl4AAAAg3MAAAAAAAAAAAAzswAAADMzAAAAAAAAAAAAc3OAAAgTcwAAAAAA + AAAAAAMXNwBzM5AAAAAAAAAAAAAHM5MzMTdwAAAAAAAAAAAAAHOLiDM3AAAAAAAAAAAAAAAIN5MTgAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAP+AP//+AA//8AAH/8AAB/+AAAf/gAAH/4AAB/+AAAf/gAAH/4AA + B/+AAAf/gAAH/4AAB/+AAAf/gAAH/4AAB/+AAAf/gAA//+D+P//x/j//8f4///H+P//x/j//8f4///D8 + P//w/D//8Hg///gwf//4AH///AD///4B////////KAAAABAAAAAgAAAAAQAEAAAAAACAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAIAAAIAAAACAgACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8A + AAD/AP8A//8AAP///wADMzMzMzMzAAuLe4t7m4kAB7mzmzMzMwALe4uIt7mzAAe3k7k5NzMAC4uLi4s7 + gwADm3m3M5OTAAi4uLi3t7MAAzc3OTc3MwAAB7cAB7cAAAAHgwADlwAAAAODAAe3AAAAB7cAB7cAAAAH + iHd7lwAAAAA7i4NwAAAAAAd3mAAAAIADAACAAwAAgAMAAIADAACAAwAAgAMAAIADAACAAwAAgAMAAOOP + AADjjwAA448AAOOPAADgDwAA8B8AAPg/AAAoAAAAMAAAAGAAAAABAAgAAAAAAAAJAAAAAAAAAAAAAAAB + AAAAAQAAAAAAAAQTGwAGHCgACzVIAAw6TwANPlQADkBWAA5FXQASR18AFUZcACRLXQAPSGEAEEpjABBL + ZQAUTWUAEE5oABVOaQAaT2kAEFBrABFSbQAfUWoAElVyABJXdQASWHUAElp4ABNcegATXXwAFF9/ACxg + eQAwZX4AOGV6AEhrfQAUYYEAFGSFABVniAAYZ4kAFWiJABZqjAAWbY8AGGmKABhqjAAXbpAAGW6RABtx + kwAccpQAHnWWACNzlQAhd5gAIniZACR6mwAjepwAJHqcACZ8nQApepwAKH2eACh/oAAufqAAQHWOACmA + oQAsgaIALYOkAC+EpQA3g6QAMIWmAD2GpAAxhqgAM4ipADSJqgAziawANYusADeMrQA/iKgAO4uuADiN + rgA6j7AAO5CxADyRsgA9krQAP5S1AECCnwBQgpsAU4WeAFiIoABAlbYAQpe4AEOYuQBEmboARpu8AEec + vQBJmbsASJ2+AFOUsABWmrcAW5mzAFubtgBdmbUAZpOqAGeVqwB4lKIAZZ66AEqfwABLoMEATKHCAE6j + xABPpMUAUKXGAFKnyABTqMkAVKnKAFarzABWrM0AWa7OAFuw0ABcsdEAX7TUAGmsyQBhttYAZrraAGm+ + 3QBrwN8AbcLhAG/E4wBxxuUAc8jnAHTJ6AB5y+oAfMzqAImtvwCBscYAh7TIAI+5zACAzusAhtDsAInR + 7ACQ0+0Ak9XuAJfX7wCa2O8AndrwAKTc8QCu3/IAsuHzALTi8wC45PQAvub1AMHm9QDF6PYAyOn2AMzr + 9wDS7fgA2e/5ANzw+QDl9fsA6Pb7AO/4/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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 + AACAAAAA//8AAIAAAAD//wAAgAAAAP//AACAAAAA//8AAIAAAAD//wAAgAAAAP//AACAAAAA//8AAIAA + AAD//wAAgAAAAP//AACAAAAA//8AAIAAAAD//wAAgAAAAP//AACAAAAA//8AAIAAAAD//wAAgAAAB/// + AACAAAAf//8AAPAAHB///wAA/B/8H///AAD8H/wf//8AAPwf/B///wAA/B/8H///AAD8H/wf//8AAPwf + /B///wAA/B/8H///AAD8H/wf//8AAPwf/B///wAA/B/8H///AAD8H/gf//8AAPwP+B///wAA/AfwH/// + AAD+A+A///8AAP4AAD///wAA/wAAf///AAD/gAD///8AAP/AAf///wAA//AH////AAD///////8AACgA + AAAgAAAAQAAAAAEACAAAAAAAAAQAAAAAAAAAAAAAAAEAAAABAAAAAAAACjFDAAszRQANPlQADUBXAA5D + WwAUQ1gAEEtlABtPZQAQTmgAEVJtABVRbAAfUWkAElVyABRWcwASV3UAElh1AB5ZdwASWngAE1x6ABRd + ewATXXwALGB5ABRhggAVZYYAG2aFABVniQAVaYoAFmqMABZtjwAbbI0AH2yNABlvkQAacJIAHHKUAB51 + lgAzcYoAL3OSACF2mAAieJkAJHqbACR7nAAmfJ0AKH6fADJ5mQA4f54AKX+gAFd0ggBCepQAKoChACyB + ogAug6QAL4SlADCFpgAxhqgAM4ipADSJqgA2i6wAN4ytADiNrgA6j7AAO5CxADyRsgA+k7QAP5S1AEeG + owBIiqcATY6pAFCPqgBUjagAQJW2AEKXuABDmLkARJm6AEabvABHnL0ASJ2+AHGcsQB6o7cAdaK4AEqf + wABLoMEATKHCAE+kxQBQpcYAUqfIAFOoyQBUqcoAVqvMAFeszQBZrs4AW7DQAFyx0QBftNQAf67DAGC1 + 1QBmutoAab7dAGvA3wBtwuEAccblAHPI5wB1yukAecvqAIGrvQCDrL8AjK/AAIa4zgCVu8sAlcHVAIDO + 6wCQzuYAhtDsAInR7ACQ0+0Ak9XuAJrY7wCd2vAApNzxAK7f8gCy4fMAuOT0AL7m9QDF6PYAyOn2AMzr + 9wDS7fgA3PD5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 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 + 2gA0sdwAO7DcADS04QA/tOAATrDSAG2xyQBDuOQARbrlAEe85wBJvukAa8LeAEvA6wBMwewAUcXwAFbL + 9QBe0/0AbcfjAGTI5gBkyOgAc8vkAGDV/wBk1f8AaNb/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAAAgICAgICAgICAgICAgAAADAwLiws + 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 + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACVjg8wSR1/+FWeJ/0qfwP9N + osP/U6jJ/1yx0f9yx+b/suHz/2K31/9Vqsv/Wq/P/1muz/9Vqsv/TqPE/0yhwv9Kn8D/Qpe4/zeMrf8w + hab/LIGi/x92l/85jq//WK3O/1muz/9httb/V6zN/0idvv8xhqf/ChwkVwAAAEsAAABEAAAANwAAACsA + AAAfAAAAFAAAAAsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAApaom0E1x6/zuQsf9M + ocL/T6TF/1arzP9mutr/bMHg/2/E4/98zOr/vub1/2K31/9Kn8D/PpO0/zKHqP8sgaL/JXuc/xZtj/8U + YoL/E118/xJaeP8SVnP/ElVy/xJaeP85jq//P5S1/yh+n/9DmLn/VarL/0Wau/8+k7T/ChwlVgAAAEoA + AABIAAAAQQAAADoAAAAxAAAAKAAAAB0AAAAFAAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAT + W3n/XLHR/1Gmx/9csdH/ar/e/27D4v95y+r/fMzq/3TJ6P9rwN//htDs/ziNrv8WbY//Fm2P/xVlhv8V + aYr/FWWG/xVniP8VZYb/FWmK/x92l/8le5z/KoCh/zSJqv9nu9v/UabH/yR6m/8bcZP/KoCh/0qfwP87 + kLH/ChwlVQAAAEkAAABHAAAAQQAAADoAAAA1AAAALwAAACkAAAAUAAAACwAAAAUAAAACAAAAAQAAAAAA + AAAAAAAAAAAAAABit9f/YbbW/2m+3f9vxOP/csfm/3PI5/9pvt3/YrfX/2C11f9ftNT/htDs/0CVtv8u + g6T/NImq/zSJqv84ja7/PpO0/0SZuv9Inb7/SJ2+/0idvv9MocL/UKXG/1Clxv9vxOP/YbbW/0mev/81 + iqv/FWWG/xZtj/8VZYb/Ch0mVAAAAEgAAABFAAAAQAAAADoAAAA0AAAALgAAACkAAAAgAAAAGAAAAA8A + AAAJAAAABQAAAAIAAAAAAAAAAAAAAACk3PH/htDs/2vA3/9nu9v/XLHR/1eszf9Wq8z/XbLS/2e72/9v + xOP/web1/1muz/9LoMH/VarL/1Spyv9PpMX/TKHC/0+kxf9Sp8j/TKHC/0qfwP9MocL/VKnK/1Wqy/9q + v97/YLXV/1Gmx/9Rpsf/PpO0/zCFpv8VZ4n/Ch0mUwAAAEgAAABDAAAAPAAAADYAAAAwAAAAKQAAACMA + AAAlAAAAHwAAABcAAAARAAAACwAAAAUAAAAAAAAAAAAAAACG0Oz/W7DQ/1KnyP9TqMn/VqvM/2C11f9n + u9v/ccbl/4DO6/+u3/L/zOv3/2a62v9Oo8T/UqfI/1Gmx/9Qpcb/RZq7/ziNrv8vhKX/KH6f/x92l/8b + cZP/Fm2P/xVlhv82i6z/Nous/zmOr/9Rpsf/R5y9/0GWt/88kbL/CyAqSwAAAD0AAAA3AAAAMAAAACcA + AAAgAAAAGQAAABQAAAAgAAAAHAAAABkAAAAUAAAADgAAAAcAAAAAAAAAAAAAAABbsND/UabH/1eszf9c + sdH/a8Df/3PI5/+Azuv/l9fv/67f8v+u3/L/rt/y/0ecvf8sgaL/LIGi/yV7nP8WbY//FWeI/xRig/8T + XHv/E1x7/xNcev8TXHv/FGKD/xZtj/9Vqsv/Moeo/xNdfP8ccpT/PJGy/0KXuP88krP/ECk1MQAAACEA + AAAdAAAAFgAAAA8AAAAMAAAABwAAAAUAAAATAAAAFAAAABQAAAASAAAADgAAAAoAAAAAAAAAAAAAAABR + psf/YrfX/2e72/9xxuX/dMno/3nL6v9zyOf/b8Tj/27D4v9mutr/fMzq/zmOr/8edJb/IXeY/yZ8nf8q + gKH/J32e/yl/oP8ug6T/MYan/zeMrf8/lLX/SZ6//1Clxv90yej/Wq/P/y2Co/8VZ4j/E1x7/yqAof8p + gKL/FjVDDAAAAAYAAAAGAAAAAgAAAAEAAAABAAAAAAAAAAAAAAAGAAAACAAAAAsAAAANAAAADAAAAAgA + AAAAAAAAAAAAAABit9f/bsPi/27D4v9sweD/Z7vb/2G21v9es9P/YLXV/2W52f9sweD/suHz/1Spyv9E + mbr/TKHC/0yhwv9MocL/T6TF/1itzv9XrM3/UabH/1Wqy/9Wq8z/XLHR/16z0/91yun/Z7vb/0yhwv9B + lrf/HHKU/xNeff8SVXL/Ey46EwAAAAgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAMA + AAAEAAAABgAAAAYAAAAAAAAAAAAAAABuw+L/YLXV/12y0v9Wq8z/Wq/P/1yx0f9mutr/bMHg/3zM6v+X + 1+//0u34/2K31/9Qpcb/WK3O/2C11f9es9P/V6zN/1itzv9XrM3/S6DB/0GWt/89krP/QZa3/zyRsv9S + p8j/UqfI/0yhwv9MocL/QZa3/z+Utf8tg6T/DycyNQAAACEAAAAXAAAADQAAAAYAAAADAAAAAQAAAAEA + AAAAAAAAAAAAAAAAAAABAAAAAQAAAAMAAAAAAAAAAAAAAABgtdX/V6zN/1qvz/9ludn/Z7vb/3LH5v95 + y+r/pNzx/7Lh8/++5vX/zuv3/1yx0f9Inb7/SJ2+/0OYuf89krP/MYan/x92l/8VZ4j/FGSE/xRig/8V + ZYb/FWeI/xVlhv88kbL/Moeo/xxylP85jq//Qpe4/0CVtv89krP/DyYyOwAAADAAAAAsAAAAIgAAABcA + AAARAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAABXrM3/YrfX/2q/3v9v + xOP/fMzq/5rY7/+k3PH/pNzx/5fX7/98zOr/k9Xu/z6TtP8ieJn/JXuc/xxylP8WbY//GW+R/xZtj/8V + aYr/FWeI/xlvkf8le5z/LoOk/zWKq/9mutr/Qpe4/xRkhP8TXn3/KH6f/0CVtv87kbP/EzA8HAAAACIA + AAApAAAAJwAAACMAAAAeAAAAGAAAABMAAAAFAAAABAAAAAIAAAADAAAAAwAAAAIAAAAAAAAAAAAAAABi + t9f/bsPi/3nL6v+T1e7/idHs/4bQ7P90yej/ar/e/2m+3f9qv97/ndrw/0SZuv8tgqP/Moeo/zKHqP82 + i6z/O5Cx/0GWt/9Embr/Sp/A/06jxP9Oo8T/Wa7P/2C11f98zOr/XbLS/ziNrv8Zb5H/Elh1/xVpiv8h + d5n/AAAAAAAAAAgAAAARAAAAFgAAABcAAAAYAAAAFgAAABQAAAAPAAAADAAAAAoAAAAIAAAABgAAAAQA + AAAAAAAAAAAAAABuw+L/ccbl/3HG5f9xxuX/ZbnZ/2a62v9nu9v/bMHg/3PI5/98zOr/0u34/1qvz/9M + ocL/W7DQ/1yx0f9Zrs//Wq/P/1eszf9Yrc7/Wa7P/1qvz/9bsND/X7TU/1yx0f90yej/YbbW/0abvP9A + lbb/LYKj/yJ4mf8WZof/AAAAAAAAAAAAAAACAAAABQAAAAYAAAAIAAAACAAAAAkAAAASAAAADwAAAAwA + AAAJAAAABwAAAAQAAAAAAAAAAAAAAABxxuX/YrfX/2K31/9nu9v/a8Df/27D4v90yej/l9fv/6Tc8f++ + 5vX/3PD5/2zB4P9Wq8z/W7DQ/1uw0P9bsND/VarL/0idvv89krP/MYan/y6DpP8yh6j/M4ip/yqAof9D + mLn/Qpe4/ziNrv9DmLn/QJW2/z+Utf81i6z/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEA + AAAIAAAACAAAAAYAAAAFAAAABAAAAAMAAAAAAAAAAAAAAABit9f/Zrra/2a62v9sweD/ecvq/5DT7f+k + 3PH/vub1/8Hm9f/B5vX/xej2/02iw/80iar/M4ip/yqAof8ccpT/GW+R/xZtj/8UZIT/E1x7/xNeff8V + Z4j/GW+R/y6DpP9Qpcb/LoOk/xNdfP8ccpT/PZKz/0CVtv89krP/AAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAABmutr/b8Tj/3XK6f+J + 0ez/suHz/6Tc8f+d2vD/gM7r/3TJ6P9xxuX/idHs/ziNrv8bcZP/KoCh/zCFpv8/lLX/RZq7/1arzP9d + stL/dMno/4nR7P/F6Pb/zOv3/5rY7/++5vX/k9Xu/zKHqP8SVnP/Fm2P/zaLrP83ja//AAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABv + xOP/htDs/4nR7P+J0ez/ccbl/3HG5f9qv97/a8Df/3XK6f+04vP/5fX7/8Hm9f/M6/f/xej2/7jk9P+T + 1e7/fMzq/3HG5f9httb/Wq/P/1arzP85jq//Fm2P/zWKq/8xhqf/RZq7/8jp9v+d2vD/Moeo/xBPaf8U + YYH/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAACG0Oz/a8Df/2q/3v9mutr/ab7d/4nR7P/B5vX/5fX7/9Lt+P9zyOf/YLXV/0+kxf8t + gqP/L4Sl/ziNrv82i6z/Moeo/y6DpP8nfZ7/JXuc/yV7nP8PR1//EE5o/xNcev8RUm7/EE5o/xVlhv9B + lrf/mtjv/5DT7f8edJb/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAABrwN//Zrra/4nR7P/F6Pb/6Pb7/87r9/9zyOf/PpO0/yV7nP8i + eJn/SJ2+/3nL6v83jK3/Moeo/zWKq/84ja7/O5Cx/z2Ss/88kbL/O5Cx/zWKq/8NPlT/6Pb7/xVniP8R + Um7/EFBr/xJYdf8WbY//EEtl/0idv/9WrM3/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5y+r/7/j8/6Tc8f9es9P/PZKz/yJ4mf8V + ZYb/E1x7/xVpiv8sgaL/QZa3/0OYuf9Jnr//Sp/A/0idvv9Inb7/TKHC/1KnyP9uw+L/SZ6//yqAof8S + VXL/2e/5/yd9nv8RUm7/E1t5/yp+ofkxf6HUL2+MDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTqMn/FmiJ/xZtj/8V + ZYb/G3GT/xFSbv+45PT/IniZ/yqAof8SVnP/J32e/yd9nv8vhKX/LYKj/y+Epf8tgqP/KoCh/yV7nP8i + eJn/MIWm/xVnif8TXHr/yOn2/y2Co/8SVXL/FGKD/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAC9xjz0ncpPhM4ms/hNcev+04vP/MIWm/zyRsv8QTmj/Elh1/xVniP8ccpT/KH+h/zCGqP87 + kbT9QZW49Eucv9RHj696AAAAAEqKpxUUYoL/uOT0/y2Co/8SWHX/FWWG/wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABVpiv+k3PH/Nous/1itzv8XbpD/SoqnFQAAAAAA + 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 + Z4n+FmiJ/xlvkf8bcZP/DkVd/wQTG/8TXHv/Z7vb/xRkhP89hqeTAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALX2g6CqAof9Gm7z/Elh1/xVlhv8o + fp//KH6f/yd9nv8ofp//JHqb/xtxk/8VaYr/D0hh/w0+VP9Vqsv/Fm2P/zN/osoAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACV4m/ck + epv/X7TU/2C11f9Embr/SZ6//0idvv9LoMH/UqfI/2a62v83jK3/EVFs/zqPsP8VaIn/MoChzAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAA1hKXOFmqM/zCFpv9ftNT/kNPt/77m9f/B5vX/SZ6//xJYdf8SV3X/Fm2P/xhqjP87 + haejAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACl7nu4jepz/GW+R/xRggP8SV3X/EVNv/xNdfP8a + bpH+NoGlwwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAP//8A///wAA//gAAP//AAD/wAAAH/8AAP4AAAAH/wAA+AAAAAD/AADgAAAAAP8AAIAAAAAA + HwAAgAAAAAAHAACAAAAAAAMAAIAAAAAAAwAAgAAAAAADAACAAAAAAAMAAIAAAAADAwAAgAAAAB8DAACA + AAAAAOMAAIAAAAAA8wAAgAAAAAADAACAAAAAgAMAAIAAAADAAwAAgAAAAPgDAACAAAAA/xMAAIAAAAD/ + /wAAgAAAAP//AACAAAAA//8AAIAAAAD//wAAgAAAA///AACAAAAf//8AAOAACB///wAA/A/4H///AAD8 + D/gf//8AAPwP+B///wAA/A/4H///AAD8D/gf//8AAPwP+B///wAA/A/4H///AAD8D/gf//8AAPwP+B// + /wAA/A/4H///AAD8D/gf//8AAPwP+B///wAA/AfwH///AAD+AYA///8AAP4AAD///wAA/wAAf///AAD/ + gAD///8AAP/AAf///wAA//AH////AAD///////8AACgAAAAgAAAAQAAAAAEAIAAAAAAAgBAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtbo2LKmuKqhxUb+wX + S2T2EkFX/AszRf8NQFf/CjFD/w5FXfEXPU91AAAACgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC9xkEIVT2v8Elp4/yR6m/8q + gKH/PZKz/z2Ss/89krP/N4yt/x50lv9Wq8z/JHqb/xJVcv8SO060BQ8UPAAAAA8AAAAFAAAAAQAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACttjJ8ZVnT5EE5o/3PI5/9A + lbb/Nous/zuQsf87kLH/PZKz/z2Ss/89krP/O5Cx/3LH5v9Qpcb/KH6f/xVpiv8VXHneEiQtUgAAACYA + AAAUAAAACAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMHKQJiNlg9sUVnP+Fm2P/0+kxf9n + u9v/uOT0/1itzv9Qpcb/UqfI/1Clxv9Gm7z/P5S1/zaLrP8sgaL/X7TU/1Spyv9Wq8z/QJW2/yZ8nf8a + OEZ0AAAARQAAADgAAAAlAAAAFgAAAAkAAAAEAAAAAQAAAAAAAAAAAAAAAAAAAAAUUm3+OY6v/1uw0P9g + tdX/ab7d/2vA3/+45PT/RJm6/zmOr/8yh6j/Jnyd/xlvkf8VaYr/FWmK/xVpiv9csdH/TaLD/zKHqP9G + m7z/UKXG/xk2RHQAAABIAAAAQgAAADgAAAAsAAAAHQAAABEAAAAHAAAAAwAAAAEAAAAAAAAAABNcev9s + weD/ZbnZ/2W52f9gtdX/W7DQ/6Tc8f86j7D/LoOk/zOIqf82i6z/O5Cx/z2Ss/9Albb/R5y9/4bQ7P9q + v97/QJW2/yd9nv8mfJ3/GjhGcQAAAEcAAABBAAAAOQAAADAAAAAnAAAAHgAAABQAAAALAAAAAwAAAAEA + AAAAQJW2/1Wqy/9Qpcb/T6TF/1itzv9pvt3/xej2/1qvz/9Sp8j/UabH/0yhwv9HnL3/QZa3/zqPsP84 + ja7/ab7d/1KnyP9LoMH/Sp/A/y2Co/8cPEtsAAAAQAAAADgAAAAtAAAAIwAAABsAAAAZAAAAFgAAAA8A + AAAGAAAAAQAAAAAfdpf/R5y9/1eszf9pvt3/ecvq/5rY7//F6Pb/Qpe4/zeMrf8sgaL/JXuc/xxylP8Z + b5H/FmuN/xlvkf9gtdX/SJ2+/yF3mP82i6z/bsPi/zJcb0QAAAAhAAAAGgAAABIAAAALAAAACAAAAAoA + AAANAAAADAAAAAcAAAADAAAAACV7nP9httb/ab7d/2e72/9httb/X7TU/67f8v8+k7T/Moeo/zmOr/86 + j7D/PpO0/0GWt/9Gm7z/TaLD/4nR7P9rwN//OY6v/xlvkf8Zb5H/bpqvGwAAAAUAAAADAAAAAQAAAAAA + AAAAAAAAAQAAAAMAAAAEAAAABQAAAAQAAAAAQpe4/1Wqy/9Uqcr/VarL/2G21v9yx+b/yOn2/1uw0P9T + qMn/V6zN/1KnyP9PpMX/SJ2+/0CVtv8+k7T/bsPi/1arzP9Jnr//RJm6/yyBov84Y3Y7AAAAGwAAAA8A + AAAHAAAABAAAAAEAAAABAAAAAAAAAAEAAAACAAAAAgAAAAAdc5X/VKnK/2a62v95y+r/ndrw/67f8v/I + 6fb/Qpe4/zeMrf8yh6j/KoCh/yJ4mf8Zb5H/GW+R/yJ4mf9it9f/SZ6//x50lv8ug6T/bsPi/y1VaEwA + AAApAAAAJgAAABwAAAAUAAAADQAAAAgAAAAGAAAABAAAAAQAAAABAAAAACh+n/9sweD/dcrp/3XK6f9u + w+L/Z7vb/7Lh8/9Albb/NYqr/ziNrv87kLH/PZKz/0CVtv9HnL3/UKXG/5PV7v9mutr/Moeo/xVpiv8b + cZP/TnqOKQAAAA0AAAAWAAAAFgAAABUAAAASAAAADgAAAAoAAAAHAAAABAAAAAEAAAAARZq7/2C11f9h + ttb/YbbW/27D4v+J0ez/0u34/16z0/9XrM3/Wa7P/1Wqy/9Sp8j/Sp/A/0mev/9LoMH/c8jn/1muz/9E + mbr/PJGy/zKHqP+jzuITAAAAAAAAAAEAAAADAAAABAAAAAUAAAAFAAAABAAAAAIAAAABAAAAAAAAAAAj + eZr/XbLS/3HG5f+J0ez/uOT0/8Xo9v/M6/f/Qpe4/zeMrf8yh6j/KX+g/yJ4mf8bcZP/HHKU/y2Co/9T + qMn/Q5i5/xlvkf8pf6D/bsPi/6PO4hMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAcbHOByqAof91yun/idHs/4DO6/91yun/htDs/77m9f9httb/TaLD/1itzv9dstL/ar/e/27D4v9x + xuX/YLXV/12y0v9rwN//UKXG/xZtj/8ccpT/o87iEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAABxsc4HRJm6/27D4v+Azuv/suHz/77m9f+J0ez/gM7r/27D4v9gtdX/Z7vb/2a62v9a + r8//VKnK/yqAof8QTmj/EE5o/xJWc/84ja7/Zrra/2e72/+lz+IOAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAHCwzQdZrs//htDs/2a62v8qgKH/FWmK/xFRbP86j7D/SZ6//0abvP9I + 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 + jwAA448AAOOPAADgDwAA4A8AAPAfAAA= + + \ No newline at end of file diff --git a/src/Zip/Resources/WinFormsSelfExtractorStub.Designer.cs b/old/src/Zip/Resources/WinFormsSelfExtractorStub.Designer.cs similarity index 98% rename from src/Zip/Resources/WinFormsSelfExtractorStub.Designer.cs rename to old/src/Zip/Resources/WinFormsSelfExtractorStub.Designer.cs index 0e06785..98e6de7 100644 --- a/src/Zip/Resources/WinFormsSelfExtractorStub.Designer.cs +++ b/old/src/Zip/Resources/WinFormsSelfExtractorStub.Designer.cs @@ -1,287 +1,287 @@ -namespace Ionic.Zip -{ - partial class WinFormsSelfExtractorStub - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WinFormsSelfExtractorStub)); - this.btnExtract = new System.Windows.Forms.Button(); - this.btnCancel = new System.Windows.Forms.Button(); - this.txtExtractDirectory = new System.Windows.Forms.TextBox(); - this.lblExtractDir = new System.Windows.Forms.Label(); - this.btnDirBrowse = new System.Windows.Forms.Button(); - this.chk_OpenExplorer = new System.Windows.Forms.CheckBox(); - this.chk_ExeAfterUnpack = new System.Windows.Forms.CheckBox(); - this.txtPostUnpackCmdLine = new System.Windows.Forms.TextBox(); - this.chk_Remove = new System.Windows.Forms.CheckBox(); - this.lblComment = new System.Windows.Forms.Label(); - this.txtComment = new System.Windows.Forms.TextBox(); - this.btnContents = new System.Windows.Forms.Button(); - this.progressBar1 = new System.Windows.Forms.ProgressBar(); - this.progressBar2 = new System.Windows.Forms.ProgressBar(); - this.lblStatus = new System.Windows.Forms.Label(); - this.comboExistingFileAction = new System.Windows.Forms.ComboBox(); - this.label1 = new System.Windows.Forms.Label(); - this.SuspendLayout(); - // - // btnExtract - // - this.btnExtract.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnExtract.Location = new System.Drawing.Point(331, 268); - this.btnExtract.Name = "btnExtract"; - this.btnExtract.Size = new System.Drawing.Size(60, 23); - this.btnExtract.TabIndex = 0; - this.btnExtract.Text = "Extract"; - this.btnExtract.UseVisualStyleBackColor = true; - this.btnExtract.Click += new System.EventHandler(this.btnExtract_Click); - // - // btnCancel - // - this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnCancel.Location = new System.Drawing.Point(397, 268); - this.btnCancel.Name = "btnCancel"; - this.btnCancel.Size = new System.Drawing.Size(60, 23); - this.btnCancel.TabIndex = 1; - this.btnCancel.Text = "Cancel"; - this.btnCancel.UseVisualStyleBackColor = true; - this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); - // - // txtExtractDirectory - // - this.txtExtractDirectory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.txtExtractDirectory.Location = new System.Drawing.Point(8, 125); - this.txtExtractDirectory.Name = "txtExtractDirectory"; - this.txtExtractDirectory.Size = new System.Drawing.Size(417, 20); - this.txtExtractDirectory.TabIndex = 2; - // - // lblExtractDir - // - this.lblExtractDir.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.lblExtractDir.AutoSize = true; - this.lblExtractDir.Location = new System.Drawing.Point(5, 109); - this.lblExtractDir.Name = "lblExtractDir"; - this.lblExtractDir.Size = new System.Drawing.Size(100, 13); - this.lblExtractDir.TabIndex = 3; - this.lblExtractDir.Text = "Extract to Directory:"; - // - // btnDirBrowse - // - this.btnDirBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnDirBrowse.Location = new System.Drawing.Point(431, 122); - this.btnDirBrowse.Name = "btnDirBrowse"; - this.btnDirBrowse.Size = new System.Drawing.Size(25, 23); - this.btnDirBrowse.TabIndex = 4; - this.btnDirBrowse.Text = "..."; - this.btnDirBrowse.UseVisualStyleBackColor = true; - this.btnDirBrowse.Click += new System.EventHandler(this.btnDirBrowse_Click); - // - // chk_OpenExplorer - // - this.chk_OpenExplorer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chk_OpenExplorer.AutoSize = true; - this.chk_OpenExplorer.Checked = true; - this.chk_OpenExplorer.CheckState = System.Windows.Forms.CheckState.Checked; - this.chk_OpenExplorer.Location = new System.Drawing.Point(8, 151); - this.chk_OpenExplorer.Name = "chk_OpenExplorer"; - this.chk_OpenExplorer.Size = new System.Drawing.Size(152, 17); - this.chk_OpenExplorer.TabIndex = 13; - this.chk_OpenExplorer.Text = "Open Explorer after extract"; - this.chk_OpenExplorer.UseVisualStyleBackColor = true; - // - // chk_ExeAfterUnpack - // - this.chk_ExeAfterUnpack.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chk_ExeAfterUnpack.AutoSize = true; - this.chk_ExeAfterUnpack.Checked = true; - this.chk_ExeAfterUnpack.CheckState = System.Windows.Forms.CheckState.Checked; - this.chk_ExeAfterUnpack.Location = new System.Drawing.Point(8, 192); - this.chk_ExeAfterUnpack.Name = "chk_ExeAfterUnpack"; - this.chk_ExeAfterUnpack.Size = new System.Drawing.Size(131, 17); - this.chk_ExeAfterUnpack.TabIndex = 15; - this.chk_ExeAfterUnpack.Text = "Execute after unpack:"; - this.chk_ExeAfterUnpack.UseVisualStyleBackColor = true; - this.chk_ExeAfterUnpack.CheckedChanged += new System.EventHandler(this.chk_ExeAfterUnpack_CheckedChanged); - // - // txtPostUnpackCmdLine - // - this.txtPostUnpackCmdLine.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.txtPostUnpackCmdLine.Location = new System.Drawing.Point(145, 190); - this.txtPostUnpackCmdLine.Name = "txtPostUnpackCmdLine"; - this.txtPostUnpackCmdLine.ReadOnly = true; - this.txtPostUnpackCmdLine.Size = new System.Drawing.Size(312, 20); - this.txtPostUnpackCmdLine.TabIndex = 16; - // - // chk_Remove - // - this.chk_Remove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.chk_Remove.AutoSize = true; - this.chk_Remove.Location = new System.Drawing.Point(8, 212); - this.chk_Remove.Name = "chk_Remove"; - this.chk_Remove.Size = new System.Drawing.Size(271, 17); - this.chk_Remove.TabIndex = 17; - this.chk_Remove.Text = "Remove files after executing post-unpack command"; - this.chk_Remove.UseVisualStyleBackColor = true; - // - // lblComment - // - this.lblComment.AutoSize = true; - this.lblComment.Location = new System.Drawing.Point(5, 6); - this.lblComment.Name = "lblComment"; - this.lblComment.Size = new System.Drawing.Size(75, 13); - this.lblComment.TabIndex = 8; - this.lblComment.Text = "Zip Comment: "; - // - // txtComment - // - this.txtComment.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.txtComment.Location = new System.Drawing.Point(8, 22); - this.txtComment.Multiline = true; - this.txtComment.Name = "txtComment"; - this.txtComment.ReadOnly = true; - this.txtComment.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; - this.txtComment.Size = new System.Drawing.Size(448, 82); - this.txtComment.TabIndex = 9; - // - // btnContents - // - this.btnContents.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnContents.Location = new System.Drawing.Point(235, 268); - this.btnContents.Name = "btnContents"; - this.btnContents.Size = new System.Drawing.Size(90, 23); - this.btnContents.TabIndex = 20; - this.btnContents.Text = "Show Contents"; - this.btnContents.UseVisualStyleBackColor = true; - this.btnContents.Click += new System.EventHandler(this.btnContents_Click); - // - // progressBar1 - // - this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.progressBar1.Location = new System.Drawing.Point(8, 237); - this.progressBar1.Name = "progressBar1"; - this.progressBar1.Size = new System.Drawing.Size(449, 10); - this.progressBar1.TabIndex = 11; - this.progressBar1.TabStop = false; - // - // progressBar2 - // - this.progressBar2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.progressBar2.Location = new System.Drawing.Point(8, 252); - this.progressBar2.Name = "progressBar2"; - this.progressBar2.Size = new System.Drawing.Size(449, 11); - this.progressBar2.TabIndex = 12; - this.progressBar2.TabStop = false; - // - // lblStatus - // - this.lblStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.lblStatus.AutoSize = true; - this.lblStatus.Location = new System.Drawing.Point(9, 273); - this.lblStatus.Name = "lblStatus"; - this.lblStatus.Size = new System.Drawing.Size(0, 13); - this.lblStatus.TabIndex = 13; - // - // comboExistingFileAction - // - this.comboExistingFileAction.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.comboExistingFileAction.FormattingEnabled = true; - this.comboExistingFileAction.Location = new System.Drawing.Point(116, 167); - this.comboExistingFileAction.Name = "comboExistingFileAction"; - this.comboExistingFileAction.Size = new System.Drawing.Size(104, 21); - this.comboExistingFileAction.TabIndex = 21; - // - // label1 - // - this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(6, 172); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(98, 13); - this.label1.TabIndex = 22; - this.label1.Text = "Existing File Action:"; - // - // WinFormsSelfExtractorStub - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(468, 300); - this.Controls.Add(this.label1); - this.Controls.Add(this.comboExistingFileAction); - this.Controls.Add(this.chk_Remove); - this.Controls.Add(this.chk_ExeAfterUnpack); - this.Controls.Add(this.txtPostUnpackCmdLine); - this.Controls.Add(this.lblStatus); - this.Controls.Add(this.progressBar2); - this.Controls.Add(this.progressBar1); - this.Controls.Add(this.btnContents); - this.Controls.Add(this.txtComment); - this.Controls.Add(this.lblComment); - this.Controls.Add(this.chk_OpenExplorer); - this.Controls.Add(this.btnDirBrowse); - this.Controls.Add(this.lblExtractDir); - this.Controls.Add(this.txtExtractDirectory); - this.Controls.Add(this.btnCancel); - this.Controls.Add(this.btnExtract); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.MaximizeBox = false; - this.MaximumSize = new System.Drawing.Size(1024, 400); - this.MinimizeBox = false; - this.MinimumSize = new System.Drawing.Size(484, 336); - this.Name = "WinFormsSelfExtractorStub"; - this.Text = "This text will be replaced at runtime"; - this.Shown += new System.EventHandler(this.Form_Shown); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Button btnExtract; - private System.Windows.Forms.Button btnCancel; - private System.Windows.Forms.Button btnDirBrowse; - private System.Windows.Forms.Button btnContents; - private System.Windows.Forms.TextBox txtExtractDirectory; - private System.Windows.Forms.Label lblExtractDir; - private System.Windows.Forms.CheckBox chk_OpenExplorer; - private System.Windows.Forms.Label lblComment; - private System.Windows.Forms.TextBox txtComment; - private System.Windows.Forms.ProgressBar progressBar1; - private System.Windows.Forms.ProgressBar progressBar2; - private System.Windows.Forms.Label lblStatus; - private System.Windows.Forms.TextBox txtPostUnpackCmdLine; - private System.Windows.Forms.CheckBox chk_ExeAfterUnpack; - private System.Windows.Forms.CheckBox chk_Remove; - private System.Windows.Forms.ComboBox comboExistingFileAction; - private System.Windows.Forms.Label label1; - } +namespace Ionic.Zip +{ + partial class WinFormsSelfExtractorStub + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WinFormsSelfExtractorStub)); + this.btnExtract = new System.Windows.Forms.Button(); + this.btnCancel = new System.Windows.Forms.Button(); + this.txtExtractDirectory = new System.Windows.Forms.TextBox(); + this.lblExtractDir = new System.Windows.Forms.Label(); + this.btnDirBrowse = new System.Windows.Forms.Button(); + this.chk_OpenExplorer = new System.Windows.Forms.CheckBox(); + this.chk_ExeAfterUnpack = new System.Windows.Forms.CheckBox(); + this.txtPostUnpackCmdLine = new System.Windows.Forms.TextBox(); + this.chk_Remove = new System.Windows.Forms.CheckBox(); + this.lblComment = new System.Windows.Forms.Label(); + this.txtComment = new System.Windows.Forms.TextBox(); + this.btnContents = new System.Windows.Forms.Button(); + this.progressBar1 = new System.Windows.Forms.ProgressBar(); + this.progressBar2 = new System.Windows.Forms.ProgressBar(); + this.lblStatus = new System.Windows.Forms.Label(); + this.comboExistingFileAction = new System.Windows.Forms.ComboBox(); + this.label1 = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // btnExtract + // + this.btnExtract.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnExtract.Location = new System.Drawing.Point(331, 268); + this.btnExtract.Name = "btnExtract"; + this.btnExtract.Size = new System.Drawing.Size(60, 23); + this.btnExtract.TabIndex = 0; + this.btnExtract.Text = "Extract"; + this.btnExtract.UseVisualStyleBackColor = true; + this.btnExtract.Click += new System.EventHandler(this.btnExtract_Click); + // + // btnCancel + // + this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnCancel.Location = new System.Drawing.Point(397, 268); + this.btnCancel.Name = "btnCancel"; + this.btnCancel.Size = new System.Drawing.Size(60, 23); + this.btnCancel.TabIndex = 1; + this.btnCancel.Text = "Cancel"; + this.btnCancel.UseVisualStyleBackColor = true; + this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); + // + // txtExtractDirectory + // + this.txtExtractDirectory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.txtExtractDirectory.Location = new System.Drawing.Point(8, 125); + this.txtExtractDirectory.Name = "txtExtractDirectory"; + this.txtExtractDirectory.Size = new System.Drawing.Size(417, 20); + this.txtExtractDirectory.TabIndex = 2; + // + // lblExtractDir + // + this.lblExtractDir.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.lblExtractDir.AutoSize = true; + this.lblExtractDir.Location = new System.Drawing.Point(5, 109); + this.lblExtractDir.Name = "lblExtractDir"; + this.lblExtractDir.Size = new System.Drawing.Size(100, 13); + this.lblExtractDir.TabIndex = 3; + this.lblExtractDir.Text = "Extract to Directory:"; + // + // btnDirBrowse + // + this.btnDirBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnDirBrowse.Location = new System.Drawing.Point(431, 122); + this.btnDirBrowse.Name = "btnDirBrowse"; + this.btnDirBrowse.Size = new System.Drawing.Size(25, 23); + this.btnDirBrowse.TabIndex = 4; + this.btnDirBrowse.Text = "..."; + this.btnDirBrowse.UseVisualStyleBackColor = true; + this.btnDirBrowse.Click += new System.EventHandler(this.btnDirBrowse_Click); + // + // chk_OpenExplorer + // + this.chk_OpenExplorer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chk_OpenExplorer.AutoSize = true; + this.chk_OpenExplorer.Checked = true; + this.chk_OpenExplorer.CheckState = System.Windows.Forms.CheckState.Checked; + this.chk_OpenExplorer.Location = new System.Drawing.Point(8, 151); + this.chk_OpenExplorer.Name = "chk_OpenExplorer"; + this.chk_OpenExplorer.Size = new System.Drawing.Size(152, 17); + this.chk_OpenExplorer.TabIndex = 13; + this.chk_OpenExplorer.Text = "Open Explorer after extract"; + this.chk_OpenExplorer.UseVisualStyleBackColor = true; + // + // chk_ExeAfterUnpack + // + this.chk_ExeAfterUnpack.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chk_ExeAfterUnpack.AutoSize = true; + this.chk_ExeAfterUnpack.Checked = true; + this.chk_ExeAfterUnpack.CheckState = System.Windows.Forms.CheckState.Checked; + this.chk_ExeAfterUnpack.Location = new System.Drawing.Point(8, 192); + this.chk_ExeAfterUnpack.Name = "chk_ExeAfterUnpack"; + this.chk_ExeAfterUnpack.Size = new System.Drawing.Size(131, 17); + this.chk_ExeAfterUnpack.TabIndex = 15; + this.chk_ExeAfterUnpack.Text = "Execute after unpack:"; + this.chk_ExeAfterUnpack.UseVisualStyleBackColor = true; + this.chk_ExeAfterUnpack.CheckedChanged += new System.EventHandler(this.chk_ExeAfterUnpack_CheckedChanged); + // + // txtPostUnpackCmdLine + // + this.txtPostUnpackCmdLine.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.txtPostUnpackCmdLine.Location = new System.Drawing.Point(145, 190); + this.txtPostUnpackCmdLine.Name = "txtPostUnpackCmdLine"; + this.txtPostUnpackCmdLine.ReadOnly = true; + this.txtPostUnpackCmdLine.Size = new System.Drawing.Size(312, 20); + this.txtPostUnpackCmdLine.TabIndex = 16; + // + // chk_Remove + // + this.chk_Remove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.chk_Remove.AutoSize = true; + this.chk_Remove.Location = new System.Drawing.Point(8, 212); + this.chk_Remove.Name = "chk_Remove"; + this.chk_Remove.Size = new System.Drawing.Size(271, 17); + this.chk_Remove.TabIndex = 17; + this.chk_Remove.Text = "Remove files after executing post-unpack command"; + this.chk_Remove.UseVisualStyleBackColor = true; + // + // lblComment + // + this.lblComment.AutoSize = true; + this.lblComment.Location = new System.Drawing.Point(5, 6); + this.lblComment.Name = "lblComment"; + this.lblComment.Size = new System.Drawing.Size(75, 13); + this.lblComment.TabIndex = 8; + this.lblComment.Text = "Zip Comment: "; + // + // txtComment + // + this.txtComment.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.txtComment.Location = new System.Drawing.Point(8, 22); + this.txtComment.Multiline = true; + this.txtComment.Name = "txtComment"; + this.txtComment.ReadOnly = true; + this.txtComment.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; + this.txtComment.Size = new System.Drawing.Size(448, 82); + this.txtComment.TabIndex = 9; + // + // btnContents + // + this.btnContents.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnContents.Location = new System.Drawing.Point(235, 268); + this.btnContents.Name = "btnContents"; + this.btnContents.Size = new System.Drawing.Size(90, 23); + this.btnContents.TabIndex = 20; + this.btnContents.Text = "Show Contents"; + this.btnContents.UseVisualStyleBackColor = true; + this.btnContents.Click += new System.EventHandler(this.btnContents_Click); + // + // progressBar1 + // + this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.progressBar1.Location = new System.Drawing.Point(8, 237); + this.progressBar1.Name = "progressBar1"; + this.progressBar1.Size = new System.Drawing.Size(449, 10); + this.progressBar1.TabIndex = 11; + this.progressBar1.TabStop = false; + // + // progressBar2 + // + this.progressBar2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.progressBar2.Location = new System.Drawing.Point(8, 252); + this.progressBar2.Name = "progressBar2"; + this.progressBar2.Size = new System.Drawing.Size(449, 11); + this.progressBar2.TabIndex = 12; + this.progressBar2.TabStop = false; + // + // lblStatus + // + this.lblStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.lblStatus.AutoSize = true; + this.lblStatus.Location = new System.Drawing.Point(9, 273); + this.lblStatus.Name = "lblStatus"; + this.lblStatus.Size = new System.Drawing.Size(0, 13); + this.lblStatus.TabIndex = 13; + // + // comboExistingFileAction + // + this.comboExistingFileAction.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.comboExistingFileAction.FormattingEnabled = true; + this.comboExistingFileAction.Location = new System.Drawing.Point(116, 167); + this.comboExistingFileAction.Name = "comboExistingFileAction"; + this.comboExistingFileAction.Size = new System.Drawing.Size(104, 21); + this.comboExistingFileAction.TabIndex = 21; + // + // label1 + // + this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(6, 172); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(98, 13); + this.label1.TabIndex = 22; + this.label1.Text = "Existing File Action:"; + // + // WinFormsSelfExtractorStub + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(468, 300); + this.Controls.Add(this.label1); + this.Controls.Add(this.comboExistingFileAction); + this.Controls.Add(this.chk_Remove); + this.Controls.Add(this.chk_ExeAfterUnpack); + this.Controls.Add(this.txtPostUnpackCmdLine); + this.Controls.Add(this.lblStatus); + this.Controls.Add(this.progressBar2); + this.Controls.Add(this.progressBar1); + this.Controls.Add(this.btnContents); + this.Controls.Add(this.txtComment); + this.Controls.Add(this.lblComment); + this.Controls.Add(this.chk_OpenExplorer); + this.Controls.Add(this.btnDirBrowse); + this.Controls.Add(this.lblExtractDir); + this.Controls.Add(this.txtExtractDirectory); + this.Controls.Add(this.btnCancel); + this.Controls.Add(this.btnExtract); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.MaximizeBox = false; + this.MaximumSize = new System.Drawing.Size(1024, 400); + this.MinimizeBox = false; + this.MinimumSize = new System.Drawing.Size(484, 336); + this.Name = "WinFormsSelfExtractorStub"; + this.Text = "This text will be replaced at runtime"; + this.Shown += new System.EventHandler(this.Form_Shown); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button btnExtract; + private System.Windows.Forms.Button btnCancel; + private System.Windows.Forms.Button btnDirBrowse; + private System.Windows.Forms.Button btnContents; + private System.Windows.Forms.TextBox txtExtractDirectory; + private System.Windows.Forms.Label lblExtractDir; + private System.Windows.Forms.CheckBox chk_OpenExplorer; + private System.Windows.Forms.Label lblComment; + private System.Windows.Forms.TextBox txtComment; + private System.Windows.Forms.ProgressBar progressBar1; + private System.Windows.Forms.ProgressBar progressBar2; + private System.Windows.Forms.Label lblStatus; + private System.Windows.Forms.TextBox txtPostUnpackCmdLine; + private System.Windows.Forms.CheckBox chk_ExeAfterUnpack; + private System.Windows.Forms.CheckBox chk_Remove; + private System.Windows.Forms.ComboBox comboExistingFileAction; + private System.Windows.Forms.Label label1; + } } \ No newline at end of file diff --git a/src/Zip/Resources/WinFormsSelfExtractorStub.cs b/old/src/Zip/Resources/WinFormsSelfExtractorStub.cs similarity index 97% rename from src/Zip/Resources/WinFormsSelfExtractorStub.cs rename to old/src/Zip/Resources/WinFormsSelfExtractorStub.cs index f1b6334..e67363a 100644 --- a/src/Zip/Resources/WinFormsSelfExtractorStub.cs +++ b/old/src/Zip/Resources/WinFormsSelfExtractorStub.cs @@ -1,1087 +1,1087 @@ -// WinFormsSelfExtractorStub.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2008, 2009 Dino Chiesa. -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-July-30 15:48:47> -// -// ------------------------------------------------------------------ -// -// Implements the "stub" of a WinForms self-extracting Zip archive. This -// code is included in all GUI SFX files. It is included as a resource -// into the DotNetZip DLL, and then is compiled at runtime when a SFX is -// saved. This code runs when the SFX is run. -// -// ------------------------------------------------------------------ - -namespace Ionic.Zip -{ - // The using statements must be inside the namespace scope, because when the SFX is being - // generated, this module gets concatenated with other source code and then compiled. - - using System; - using System.Reflection; - using System.IO; - using System.Collections.Generic; - using System.Windows.Forms; - using System.Diagnostics; - using System.Threading; // ThreadPool, WaitCallback - using Ionic.Zip; - using Ionic.Zip.Forms; - - public partial class WinFormsSelfExtractorStub : Form - { - private const string DllResourceName = "Ionic.Zip.dll"; - private int entryCount; - private int Overwrite; - private bool Interactive; - private ManualResetEvent postUpackExeDone; - - delegate void ExtractEntryProgress(ExtractProgressEventArgs e); - - void _SetDefaultExtractLocation() - { - // Design Note: - - // What follows may look odd. The textbox is set to a particular value. - // Then the value is tested, and if the value begins with the first part - // of the string and ends with the last part, and if it does, then we - // change the value. When would that not get replaced? - // - - // Well, here's the thing. This module has to compile as it is, as a - // standalone sample. But then, inside DotNetZip, when generating an SFX, - // we do a text.Replace on @@EXTRACTLOCATION and insert a different value. - - // So the effect is, with a straight compile, the value gets - // SpecialFolder.Personal. If you replace @@EXTRACTLOCATION with - // something else, it stays and does not get replaced. - - this.txtExtractDirectory.Text = "@@EXTRACTLOCATION"; - - this.txtExtractDirectory.Text = ReplaceEnvVars(this.txtExtractDirectory.Text); - - - if (this.txtExtractDirectory.Text.StartsWith("@@") && - this.txtExtractDirectory.Text.EndsWith("EXTRACTLOCATION")) - { - this.txtExtractDirectory.Text = - Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), - ZipName); - } - } - - - // workitem 8893 - private string ReplaceEnvVars(string v) - { - string s= v; - System.Collections.IDictionary envVars = Environment.GetEnvironmentVariables(); - foreach (System.Collections.DictionaryEntry de in envVars) - { - string t = "%" + de.Key + "%"; - s= s.Replace(t, de.Value as String); - } - - return s; - } - - - private bool SetInteractiveFlag() - { - bool result = false; - Boolean.TryParse("@@QUIET", out result); - Interactive = !result; - return Interactive; - } - - private int SetOverwriteBehavior() - { - Int32 result = 0; - Int32.TryParse("@@EXTRACT_EXISTING_FILE", out result); - Overwrite = result; - return result; - } - - - private bool PostUnpackCmdLineIsSet() - { - string s = txtPostUnpackCmdLine.Text; - bool result = !(s.StartsWith("@@") && s.EndsWith("POST_UNPACK_CMD_LINE")); - return result; - } - - - - void _SetPostUnpackCmdLine() - { - // See the design note in _SetDefaultExtractLocation() for - // an explanation of what is going on here. - - this.txtPostUnpackCmdLine.Text = "@@POST_UNPACK_CMD_LINE"; - - this.txtPostUnpackCmdLine.Text = ReplaceEnvVars(this.txtPostUnpackCmdLine.Text); - - if (this.txtPostUnpackCmdLine.Text.StartsWith("@@") && - this.txtPostUnpackCmdLine.Text.EndsWith("POST_UNPACK_CMD_LINE")) - { - // If there is nothing set for the CMD to execute after unpack, then - // disable all the UI associated to that bit. - txtPostUnpackCmdLine.Enabled = txtPostUnpackCmdLine.Visible = false; - chk_ExeAfterUnpack.Enabled = chk_ExeAfterUnpack.Visible = false; - // workitem 8925 - this.chk_Remove.Enabled = this.chk_Remove.Visible = false; - - // adjust the position of all the remaining UI - int delta = this.progressBar1.Location.Y - this.chk_ExeAfterUnpack.Location.Y ; - - this.MinimumSize = new System.Drawing.Size(this.MinimumSize.Width, this.MinimumSize.Height - (delta -4)); - - //MoveDown(this.chk_Overwrite, delta); - MoveDown(this.comboExistingFileAction, delta); - MoveDown(this.label1, delta); - MoveDown(this.chk_OpenExplorer, delta); - MoveDown(this.btnDirBrowse, delta); - MoveDown(this.txtExtractDirectory, delta); - MoveDown(this.lblExtractDir, delta); - - // finally, adjust the size of the form - this.Size = new System.Drawing.Size(this.Width, this.Height - (delta-4)); - - // Add the size to the txtComment, because it is anchored to the bottom. - // When we shrink the size of the form, the txtComment shrinks also. - // No need for that. - this.txtComment.Size = new System.Drawing.Size(this.txtComment.Width, - this.txtComment.Height + delta); - } - else - { - // workitem 8925 - // there is a comment line. Do we also want to remove files after executing it? - bool result = false; - Boolean.TryParse("@@REMOVE_AFTER_EXECUTE", out result); - this.chk_Remove.Checked = result; - } - - } - - - private void MoveDown (System.Windows.Forms.Control c, int delta) - { - c.Location = new System.Drawing.Point(c.Location.X, c.Location.Y + delta); - } - - private void FixTitle() - { - string foo = "@@SFX_EXE_WINDOW_TITLE"; - if (foo.StartsWith("@@") && foo.EndsWith("SFX_EXE_WINDOW_TITLE")) - { - this.Text = String.Format("DotNetZip v{0} Self-extractor (www.codeplex.com/DotNetZip)", - Ionic.Zip.ZipFile.LibraryVersion.ToString()); - } - else this.Text = foo; - } - - - private void HideComment() - { - int smallerHeight = this.MinimumSize.Height - (this.txtComment.Height+this.lblComment.Height+5); - - lblComment.Visible = false; - txtComment.Visible = false; - - this.MinimumSize = new System.Drawing.Size(this.MinimumSize.Width, smallerHeight); - this.MaximumSize = new System.Drawing.Size(this.MaximumSize.Width, this.MinimumSize.Height); - - this.Size = new System.Drawing.Size(this.Width, this.MinimumSize.Height); - } - - - private void InitExtractExistingFileList() - { - List _ExtractActionNames = new List(Enum.GetNames(typeof(Ionic.Zip.ExtractExistingFileAction))); - foreach (String name in _ExtractActionNames) - { - if (!name.StartsWith("Invoke")) - { - if (name.StartsWith("Throw")) - comboExistingFileAction.Items.Add("Stop"); - else - comboExistingFileAction.Items.Add(name); - } - } - - comboExistingFileAction.SelectedIndex = Overwrite; - } - - - public WinFormsSelfExtractorStub() - { - InitializeComponent(); - FixTitle(); - _setCancel = true; - entryCount= 0; - _SetDefaultExtractLocation(); - _SetPostUnpackCmdLine(); - SetInteractiveFlag(); - SetOverwriteBehavior(); - InitExtractExistingFileList(); - - try - { - if (!String.IsNullOrEmpty(zip.Comment)) - { - txtComment.Text = zip.Comment; - } - else - { - HideComment(); - } - } - catch (Exception e1) - { - // why would this ever fail? Not sure. - this.lblStatus.Text = "exception while resetting size: " + e1.ToString(); - - HideComment(); - } - } - - - - - static WinFormsSelfExtractorStub() - { - // This is important to resolve the Ionic.Zip.dll inside the extractor. - AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(Resolver); - } - - - static System.Reflection.Assembly Resolver(object sender, ResolveEventArgs args) - { - // super defensive - Assembly a1 = Assembly.GetExecutingAssembly(); - if (a1==null) - throw new Exception("GetExecutingAssembly returns null."); - - string[] tokens = args.Name.Split(','); - - String[] names = a1.GetManifestResourceNames(); - - if (names==null) - throw new Exception("GetManifestResourceNames returns null."); - - // workitem 7978 - Stream s = null; - foreach (string n in names) - { - string root = n.Substring(0,n.Length-4); - string ext = n.Substring(n.Length-3); - if (root.Equals(tokens[0]) && ext.ToLower().Equals("dll")) - { - s= a1.GetManifestResourceStream(n); - if (s!=null) break; - } - } - - if (s==null) - throw new Exception(String.Format("GetManifestResourceStream returns null. Available resources: [{0}]", - String.Join("|", names))); - - byte[] block = new byte[s.Length]; - - if (block==null) - throw new Exception(String.Format("Cannot allocated buffer of length({0}).", s.Length)); - - s.Read(block, 0, block.Length); - Assembly a2 = Assembly.Load(block); - if (a2==null) - throw new Exception("Assembly.Load(block) returns null"); - - return a2; - } - - - - - private void Form_Shown(object sender, EventArgs e) - { - if (!Interactive) - { - RemoveInteractiveComponents(); - KickoffExtract(); - } - } - - - private void RemoveInteractiveComponents() - { - if (this.btnContents.Visible) - { - txtPostUnpackCmdLine.Enabled = txtPostUnpackCmdLine.Visible = false; - chk_ExeAfterUnpack.Enabled = chk_ExeAfterUnpack.Visible = false; - chk_Remove.Enabled = chk_Remove.Visible = false; - comboExistingFileAction.Enabled = comboExistingFileAction.Visible = false; - label1.Enabled = label1.Visible = false; - chk_OpenExplorer.Checked = false; - chk_OpenExplorer.Enabled = chk_OpenExplorer.Visible = false; - btnDirBrowse.Enabled = btnDirBrowse.Visible = false; - btnContents.Enabled = btnContents.Visible = false; - btnExtract.Enabled = btnExtract.Visible = false; - - // adjust the position of all the remaining UI - int delta = this.progressBar1.Location.Y - this.chk_OpenExplorer.Location.Y ; - - this.MinimumSize = new System.Drawing.Size(this.MinimumSize.Width, this.MinimumSize.Height - (delta -4)); - MoveDown(this.txtExtractDirectory, delta); - MoveDown(this.lblExtractDir, delta); - - // finally, adjust the size of the form - this.Size = new System.Drawing.Size(this.Width, this.Height - (delta-4)); - - if (txtComment.Visible) - this.txtComment.Size = new System.Drawing.Size(this.txtComment.Width, - this.txtComment.Height + delta); - } - } - - - // workitem 8925 - private void chk_ExeAfterUnpack_CheckedChanged(object sender, EventArgs e) - { - this.chk_Remove.Enabled = (this.chk_ExeAfterUnpack.Checked); - } - - - private void btnDirBrowse_Click(object sender, EventArgs e) - { - Ionic.Utils.FolderBrowserDialogEx dlg1 = new Ionic.Utils.FolderBrowserDialogEx(); - dlg1.Description = "Select a folder for the extracted files:"; - dlg1.ShowNewFolderButton = true; - dlg1.ShowEditBox = true; - //dlg1.NewStyle = false; - if (Directory.Exists(txtExtractDirectory.Text)) - dlg1.SelectedPath = txtExtractDirectory.Text; - else - { - string d = txtExtractDirectory.Text; - while (d.Length > 2 && !Directory.Exists(d)) - { - d = Path.GetDirectoryName(d); - } - if (d.Length < 2) - dlg1.SelectedPath = Environment.GetFolderPath(Environment.SpecialFolder.Personal); - else - dlg1.SelectedPath = d; - } - - dlg1.ShowFullPathInEditBox = true; - - //dlg1.RootFolder = System.Environment.SpecialFolder.MyComputer; - - // Show the FolderBrowserDialog. - DialogResult result = dlg1.ShowDialog(); - if (result == DialogResult.OK) - { - txtExtractDirectory.Text = dlg1.SelectedPath; - } - } - - - private void btnExtract_Click(object sender, EventArgs e) - { - KickoffExtract(); - } - - - private void KickoffExtract() - { - // disable most of the UI: - this.btnContents.Enabled = false; - this.btnExtract.Enabled = false; - this.chk_OpenExplorer.Enabled = false; - this.comboExistingFileAction.Enabled = false; - this.label1.Enabled = false; - this.chk_ExeAfterUnpack.Enabled = false; - this.chk_Remove.Enabled = false; // workitem 8925 - this.txtExtractDirectory.Enabled = false; - this.txtPostUnpackCmdLine.Enabled = false; - this.btnDirBrowse.Enabled = false; - this.btnExtract.Text = "Extracting..."; - - ThreadPool.QueueUserWorkItem(new WaitCallback(DoExtract), null); - - //System.Threading.Thread _workerThread = new System.Threading.Thread(this.DoExtract); - //_workerThread.Name = "Zip Extractor thread"; - //_workerThread.Start(null); - - this.Cursor = Cursors.WaitCursor; - } - - - - - private void DoExtract(Object obj) - { - List itemsExtracted = new List(); - string targetDirectory = txtExtractDirectory.Text; - global::Ionic.Zip.ExtractExistingFileAction WantOverwrite = (Ionic.Zip.ExtractExistingFileAction) Overwrite; - bool extractCancelled = false; - System.Collections.Generic.List didNotOverwrite = - new System.Collections.Generic.List(); - _setCancel = false; - string currentPassword = ""; - SetProgressBars(); - - try - { - // zip has already been set, when opening the exe. - - zip.ExtractProgress += ExtractProgress; - foreach (global::Ionic.Zip.ZipEntry entry in zip) - { - if (_setCancel) { extractCancelled = true; break; } - if (entry.Encryption == global::Ionic.Zip.EncryptionAlgorithm.None) - { - try - { - entry.Extract(targetDirectory, WantOverwrite); - entryCount++; - itemsExtracted.Add(entry.FileName); - } - catch (Exception ex1) - { - if (WantOverwrite != global::Ionic.Zip.ExtractExistingFileAction.OverwriteSilently - && ex1.Message.Contains("already exists.")) - { - // The file exists, but the user did not ask for overwrite. - didNotOverwrite.Add(" " + entry.FileName); - } - else if (WantOverwrite == global::Ionic.Zip.ExtractExistingFileAction.OverwriteSilently || - ex1.Message.Contains("already exists.")) - { - DialogResult result = MessageBox.Show(String.Format("Failed to extract entry {0} -- {1}", entry.FileName, ex1.Message), - String.Format("Error Extracting {0}", entry.FileName), MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); - - if (result == DialogResult.Cancel) - { - _setCancel = true; - break; - } - } - } - } - else - { - bool done = false; - while (!done) - { - if (currentPassword == "") - { - string t = PromptForPassword(entry.FileName); - if (t == "") - { - done = true; // escape ExtractWithPassword loop - continue; - } - currentPassword = t; - } - - if (currentPassword == null) // cancel all - { - _setCancel = true; - currentPassword = ""; - break; - } - - try - { - entry.ExtractWithPassword(targetDirectory, WantOverwrite, currentPassword); - entryCount++; - itemsExtracted.Add(entry.FileName); - done= true; - } - catch (Exception ex2) - { - // Retry here in the case of bad password. - if (ex2 as Ionic.Zip.BadPasswordException != null) - { - currentPassword = ""; - continue; // loop around, ask for password again - } - else if (WantOverwrite != global::Ionic.Zip.ExtractExistingFileAction.OverwriteSilently - && ex2.Message.Contains("already exists.")) - { - // The file exists, but the user did not ask for overwrite. - didNotOverwrite.Add(" " + entry.FileName); - done = true; - } - else if (WantOverwrite == global::Ionic.Zip.ExtractExistingFileAction.OverwriteSilently - && !ex2.Message.Contains("already exists.")) - { - DialogResult result = MessageBox.Show(String.Format("Failed to extract the password-encrypted entry {0} -- {1}", entry.FileName, ex2.Message.ToString()), - String.Format("Error Extracting {0}", entry.FileName), MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); - - done= true; - if (result == DialogResult.Cancel) - { - _setCancel = true; - break; - } - } - } // catch - } // while - } // else (encryption) - } // foreach - - } - catch (Exception) - { - MessageBox.Show("The self-extracting zip file is corrupted.", - "Error Extracting", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); - Application.Exit(); - } - - - // optionally provide a status report - if (didNotOverwrite.Count > 0) - { - UnzipStatusReport f = new UnzipStatusReport(); - if (didNotOverwrite.Count == 1) - f.Header = "This file was not extracted because the target file already exists:"; - else - f.Header = String.Format("These {0} files were not extracted because the target files already exist:", - didNotOverwrite.Count); - f.Message = String.Join("\r\n", didNotOverwrite.ToArray()); - f.ShowDialog(); - } - - SetUiDone(); - - if (extractCancelled) return; - - - // optionally open explorer - if (chk_OpenExplorer.Checked) - { - string w = System.Environment.GetEnvironmentVariable("WINDIR"); - if (w == null) w = "c:\\windows"; - try - { - Process.Start(Path.Combine(w, "explorer.exe"), targetDirectory); - } - catch { } - } - - - // optionally execute a command - postUpackExeDone = new ManualResetEvent(false); - if (this.chk_ExeAfterUnpack.Checked && PostUnpackCmdLineIsSet()) - { - try - { - string[] cmd = SplitCommandLine(txtPostUnpackCmdLine.Text); - if (cmd != null && cmd.Length > 0) - { - object[] args = { cmd, - this.chk_Remove.Checked, - itemsExtracted, - targetDirectory - }; - ThreadPool.QueueUserWorkItem(new WaitCallback(StartPostUnpackProc), args); - } - else postUpackExeDone.Set(); - - // else, nothing. - } - catch { postUpackExeDone.Set(); } - } - else postUpackExeDone.Set(); - - // quit if this is non-interactive - if (!Interactive) - { - postUpackExeDone.WaitOne(); - Application.Exit(); - } - } - - - - - // workitem 8925 - private delegate void StatusProvider(string h, string m); - - private void ProvideStatus(string header, string message) - { - if (this.InvokeRequired) - { - this.Invoke(new StatusProvider(this.ProvideStatus), new object[] { header, message }); - } - else - { - UnzipStatusReport f = new UnzipStatusReport(); - f.Header= header; - f.Message= message; - f.ShowDialog(); - } - } - - - - // workitem 8925 - private void StartPostUnpackProc(object arg) - { - Object[] args = (object[]) arg; - String[] cmd = (String[]) args[0]; - bool removeAfter = (bool) args[1]; - - List itemsToRemove = (List) args[2]; - String basePath = (String) args[3] ; - - ProcessStartInfo startInfo = new ProcessStartInfo(cmd[0]); - startInfo.WorkingDirectory = basePath; - startInfo.CreateNoWindow = true; - if (cmd.Length > 1) - { - startInfo.Arguments = cmd[1]; - } - - try - { - // Process is IDisposable - using (Process p = Process.Start(startInfo)) - { - if (p!=null) - { - p.WaitForExit(); - if (p.ExitCode == 0) - { - if (removeAfter) - { - List failedToRemove = new List(); - foreach (string s in itemsToRemove) - { - string fullPath = Path.Combine(basePath,s); - try - { - if (File.Exists(fullPath)) - File.Delete(fullPath); - else if (Directory.Exists(fullPath)) - Directory.Delete(fullPath, true); - } - catch - { - failedToRemove.Add(s); - } - - if (failedToRemove.Count > 0) - { - string header = (failedToRemove.Count == 1) - ? "This file was not removed:" - : String.Format("These {0} files were not removed:", - failedToRemove.Count); - - string message = String.Join("\r\n", failedToRemove.ToArray()); - ProvideStatus(header, message); - } - } - } - } - else - { - ProvideStatus("Error Running Post-Unpack command", - String.Format("Post-extract command failed, exit code {0}", p.ExitCode)); - } - } - } - } - catch (Exception exc1) - { - ProvideStatus("Error Running Post-Unpack command", - String.Format("The post-extract command failed: {0}", exc1.Message)); - } - - postUpackExeDone.Set(); - } - - - - - private void SetUiDone() - { - if (this.btnExtract.InvokeRequired) - { - this.btnExtract.Invoke(new MethodInvoker(this.SetUiDone)); - } - else - { - this.lblStatus.Text = String.Format("Finished extracting {0} entries.", entryCount); - btnExtract.Text = "Extracted."; - btnExtract.Enabled = false; - btnCancel.Text = "Quit"; - _setCancel = true; - this.Cursor = Cursors.Default; - } - } - - - - private void ExtractProgress(object sender, ExtractProgressEventArgs e) - { - if (e.EventType == ZipProgressEventType.Extracting_EntryBytesWritten) - { - StepEntryProgress(e); - } - - else if (e.EventType == ZipProgressEventType.Extracting_AfterExtractEntry) - { - StepArchiveProgress(e); - } - if (_setCancel) - e.Cancel = true; - } - - - private void StepArchiveProgress(ExtractProgressEventArgs e) - { - if (this.progressBar1.InvokeRequired) - { - this.progressBar2.Invoke(new ExtractEntryProgress(this.StepArchiveProgress), new object[] { e }); - } - else - { - this.progressBar1.PerformStep(); - - // reset the progress bar for the entry: - this.progressBar2.Value = this.progressBar2.Maximum = 1; - this.lblStatus.Text = ""; - this.Update(); - } - } - - private void StepEntryProgress(ExtractProgressEventArgs e) - { - if (this.progressBar2.InvokeRequired) - { - this.progressBar2.Invoke(new ExtractEntryProgress(this.StepEntryProgress), new object[] { e }); - } - else - { - if (this.progressBar2.Maximum == 1) - { - // reset - Int64 max = e.TotalBytesToTransfer; - _progress2MaxFactor = 0; - while (max > System.Int32.MaxValue) - { - max /= 2; - _progress2MaxFactor++; - } - this.progressBar2.Maximum = (int)max; - this.lblStatus.Text = String.Format("Extracting {0}/{1}: {2} ...", - this.progressBar1.Value, zip.Entries.Count, e.CurrentEntry.FileName); - } - - int xferred = (int)(e.BytesTransferred >> _progress2MaxFactor); - - this.progressBar2.Value = (xferred >= this.progressBar2.Maximum) - ? this.progressBar2.Maximum - : xferred; - - this.Update(); - } - } - - private void SetProgressBars() - { - if (this.progressBar1.InvokeRequired) - { - this.progressBar1.Invoke(new MethodInvoker(this.SetProgressBars)); - } - else - { - this.progressBar1.Value = 0; - this.progressBar1.Maximum = zip.Entries.Count; - this.progressBar1.Minimum = 0; - this.progressBar1.Step = 1; - this.progressBar2.Value = 0; - this.progressBar2.Minimum = 0; - this.progressBar2.Maximum = 1; // will be set later, for each entry. - this.progressBar2.Step = 1; - } - } - - private String ZipName - { - get - { - return Path.GetFileNameWithoutExtension(System.Reflection.Assembly.GetExecutingAssembly().Location); - } - } - - private Stream ZipStream - { - get - { - if (_s != null) return _s; - Assembly a = Assembly.GetExecutingAssembly(); - - // workitem 7067 - _s= File.OpenRead(a.Location); - - return _s; - } - } - - private ZipFile zip - { - get - { - if (_zip == null) - _zip = global::Ionic.Zip.ZipFile.Read(ZipStream); - return _zip; - } - } - - private string PromptForPassword(string entryName) - { - PasswordDialog dlg1 = new PasswordDialog(); - dlg1.EntryName = entryName; - - // ask for password in a loop until user enters a proper one, - // or clicks skip or cancel. - bool done= false; - do { - dlg1.ShowDialog(); - done = (dlg1.Result != PasswordDialog.PasswordDialogResult.OK || - dlg1.Password != ""); - } while (!done); - - if (dlg1.Result == PasswordDialog.PasswordDialogResult.OK) - return dlg1.Password; - - else if (dlg1.Result == PasswordDialog.PasswordDialogResult.Skip) - return ""; - - // cancel - return null; - } - - private void btnCancel_Click(object sender, EventArgs e) - { - if (_setCancel == false) - _setCancel = true; - else - Application.Exit(); - } - - // workitem 6413 - private void btnContents_Click(object sender, EventArgs e) - { - ZipContentsDialog dlg1 = new ZipContentsDialog(); - dlg1.ZipFile = zip; - dlg1.ShowDialog(); - return; - } - - // workitem 8988 - private string[] SplitCommandLine(string cmdline) - { - // if the first char is NOT a double-quote, then just split the line - if (cmdline[0]!='"') - return cmdline.Split( new char[] {' '}, 2); - - // the first char is double-quote. Need to verify that there's another one. - int ix = cmdline.IndexOf('"', 1); - if (ix == -1) return null; // no double-quote - FAIL - - // if the double-quote is the last char, then just return an array of ONE string - if (ix+1 == cmdline.Length) return new string[] { cmdline.Substring(1,ix-1) }; - - if (cmdline[ix+1]!= ' ') return null; // no space following the double-quote - FAIL - - // there's definitely another double quote, followed by a space - string[] args = new string[2]; - args[0] = cmdline.Substring(1,ix-1); - while (cmdline[ix+1]==' ') ix++; // go to next non-space char - args[1] = cmdline.Substring(ix+1); - return args; - } - - - private int _progress2MaxFactor; - private bool _setCancel; - Stream _s; - global::Ionic.Zip.ZipFile _zip; - - } - - - - public class UnzipStatusReport : Form - { - private System.Windows.Forms.Label label1; - private System.Windows.Forms.TextBox tbMessage; - private System.Windows.Forms.Button btnOK; - - public UnzipStatusReport() - { - InitializeComponent(); - } - - - private void UnzipStatusReport_Load(object sender, EventArgs e) - { - this.Text = "DotNetZip: Unzip status report..."; - } - - - private void btnOK_Click(object sender, EventArgs e) - { - DialogResult = DialogResult.OK; - this.Close(); - } - - public string Message - { - set - { - this.tbMessage.Text = value; - this.tbMessage.Select(0,0); - } - get - { - return this.tbMessage.Text; - } - } - - public string Header - { - set - { - this.label1.Text = value; - } - get - { - return this.label1.Text; - } - } - - - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - - private void InitializeComponent() - { - this.components = new System.ComponentModel.Container(); - this.label1 = new System.Windows.Forms.Label(); - this.tbMessage = new System.Windows.Forms.TextBox(); - this.btnOK = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(12, 12); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(50, 13); - this.label1.TabIndex = 2; - this.label1.Text = "Status"; - // - // tbMessage - // - this.tbMessage.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right) - | System.Windows.Forms.AnchorStyles.Bottom))); - this.tbMessage.Location = new System.Drawing.Point(20, 31); - this.tbMessage.Name = "tbMessage"; - this.tbMessage.Multiline = true; - this.tbMessage.ScrollBars = ScrollBars.Vertical; - this.tbMessage.ReadOnly = true; - this.tbMessage.Size = new System.Drawing.Size(340, 110); - this.tbMessage.TabIndex = 10; - // - // btnOK - // - this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.btnOK.Location = new System.Drawing.Point(290, 156); - this.btnOK.Name = "btnOK"; - this.btnOK.Size = new System.Drawing.Size(82, 24); - this.btnOK.TabIndex = 20; - this.btnOK.Text = "OK"; - this.btnOK.UseVisualStyleBackColor = true; - this.btnOK.Click += new System.EventHandler(this.btnOK_Click); - // - // UnzipStatusReport - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(380, 190); - this.Controls.Add(this.label1); - this.Controls.Add(this.tbMessage); - this.Controls.Add(this.btnOK); - this.Name = "UnzipStatusReport"; - this.Text = "Not Unzipped"; - this.Load += new System.EventHandler(this.UnzipStatusReport_Load); - this.ResumeLayout(false); - this.PerformLayout(); - } - } - - - class WinFormsSelfExtractorStubProgram - { - /// - /// The main entry point for the application. - /// - [STAThread] - static void Main() - { - // For Debugging -// if ( !AttachConsole(-1) ) // Attach to a parent process console -// AllocConsole(); // Alloc a new console - - - Application.EnableVisualStyles(); - Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new WinFormsSelfExtractorStub()); - } - - [System.Runtime.InteropServices.DllImport("kernel32.dll")] - private static extern bool AllocConsole(); - - [System.Runtime.InteropServices.DllImport("kernel32.dll")] - private static extern bool AttachConsole(int pid); - - - } -} +// WinFormsSelfExtractorStub.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2008, 2009 Dino Chiesa. +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-July-30 15:48:47> +// +// ------------------------------------------------------------------ +// +// Implements the "stub" of a WinForms self-extracting Zip archive. This +// code is included in all GUI SFX files. It is included as a resource +// into the DotNetZip DLL, and then is compiled at runtime when a SFX is +// saved. This code runs when the SFX is run. +// +// ------------------------------------------------------------------ + +namespace Ionic.Zip +{ + // The using statements must be inside the namespace scope, because when the SFX is being + // generated, this module gets concatenated with other source code and then compiled. + + using System; + using System.Reflection; + using System.IO; + using System.Collections.Generic; + using System.Windows.Forms; + using System.Diagnostics; + using System.Threading; // ThreadPool, WaitCallback + using Ionic.Zip; + using Ionic.Zip.Forms; + + public partial class WinFormsSelfExtractorStub : Form + { + private const string DllResourceName = "Ionic.Zip.dll"; + private int entryCount; + private int Overwrite; + private bool Interactive; + private ManualResetEvent postUpackExeDone; + + delegate void ExtractEntryProgress(ExtractProgressEventArgs e); + + void _SetDefaultExtractLocation() + { + // Design Note: + + // What follows may look odd. The textbox is set to a particular value. + // Then the value is tested, and if the value begins with the first part + // of the string and ends with the last part, and if it does, then we + // change the value. When would that not get replaced? + // + + // Well, here's the thing. This module has to compile as it is, as a + // standalone sample. But then, inside DotNetZip, when generating an SFX, + // we do a text.Replace on @@EXTRACTLOCATION and insert a different value. + + // So the effect is, with a straight compile, the value gets + // SpecialFolder.Personal. If you replace @@EXTRACTLOCATION with + // something else, it stays and does not get replaced. + + this.txtExtractDirectory.Text = "@@EXTRACTLOCATION"; + + this.txtExtractDirectory.Text = ReplaceEnvVars(this.txtExtractDirectory.Text); + + + if (this.txtExtractDirectory.Text.StartsWith("@@") && + this.txtExtractDirectory.Text.EndsWith("EXTRACTLOCATION")) + { + this.txtExtractDirectory.Text = + Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), + ZipName); + } + } + + + // workitem 8893 + private string ReplaceEnvVars(string v) + { + string s= v; + System.Collections.IDictionary envVars = Environment.GetEnvironmentVariables(); + foreach (System.Collections.DictionaryEntry de in envVars) + { + string t = "%" + de.Key + "%"; + s= s.Replace(t, de.Value as String); + } + + return s; + } + + + private bool SetInteractiveFlag() + { + bool result = false; + Boolean.TryParse("@@QUIET", out result); + Interactive = !result; + return Interactive; + } + + private int SetOverwriteBehavior() + { + Int32 result = 0; + Int32.TryParse("@@EXTRACT_EXISTING_FILE", out result); + Overwrite = result; + return result; + } + + + private bool PostUnpackCmdLineIsSet() + { + string s = txtPostUnpackCmdLine.Text; + bool result = !(s.StartsWith("@@") && s.EndsWith("POST_UNPACK_CMD_LINE")); + return result; + } + + + + void _SetPostUnpackCmdLine() + { + // See the design note in _SetDefaultExtractLocation() for + // an explanation of what is going on here. + + this.txtPostUnpackCmdLine.Text = "@@POST_UNPACK_CMD_LINE"; + + this.txtPostUnpackCmdLine.Text = ReplaceEnvVars(this.txtPostUnpackCmdLine.Text); + + if (this.txtPostUnpackCmdLine.Text.StartsWith("@@") && + this.txtPostUnpackCmdLine.Text.EndsWith("POST_UNPACK_CMD_LINE")) + { + // If there is nothing set for the CMD to execute after unpack, then + // disable all the UI associated to that bit. + txtPostUnpackCmdLine.Enabled = txtPostUnpackCmdLine.Visible = false; + chk_ExeAfterUnpack.Enabled = chk_ExeAfterUnpack.Visible = false; + // workitem 8925 + this.chk_Remove.Enabled = this.chk_Remove.Visible = false; + + // adjust the position of all the remaining UI + int delta = this.progressBar1.Location.Y - this.chk_ExeAfterUnpack.Location.Y ; + + this.MinimumSize = new System.Drawing.Size(this.MinimumSize.Width, this.MinimumSize.Height - (delta -4)); + + //MoveDown(this.chk_Overwrite, delta); + MoveDown(this.comboExistingFileAction, delta); + MoveDown(this.label1, delta); + MoveDown(this.chk_OpenExplorer, delta); + MoveDown(this.btnDirBrowse, delta); + MoveDown(this.txtExtractDirectory, delta); + MoveDown(this.lblExtractDir, delta); + + // finally, adjust the size of the form + this.Size = new System.Drawing.Size(this.Width, this.Height - (delta-4)); + + // Add the size to the txtComment, because it is anchored to the bottom. + // When we shrink the size of the form, the txtComment shrinks also. + // No need for that. + this.txtComment.Size = new System.Drawing.Size(this.txtComment.Width, + this.txtComment.Height + delta); + } + else + { + // workitem 8925 + // there is a comment line. Do we also want to remove files after executing it? + bool result = false; + Boolean.TryParse("@@REMOVE_AFTER_EXECUTE", out result); + this.chk_Remove.Checked = result; + } + + } + + + private void MoveDown (System.Windows.Forms.Control c, int delta) + { + c.Location = new System.Drawing.Point(c.Location.X, c.Location.Y + delta); + } + + private void FixTitle() + { + string foo = "@@SFX_EXE_WINDOW_TITLE"; + if (foo.StartsWith("@@") && foo.EndsWith("SFX_EXE_WINDOW_TITLE")) + { + this.Text = String.Format("DotNetZip v{0} Self-extractor (www.codeplex.com/DotNetZip)", + Ionic.Zip.ZipFile.LibraryVersion.ToString()); + } + else this.Text = foo; + } + + + private void HideComment() + { + int smallerHeight = this.MinimumSize.Height - (this.txtComment.Height+this.lblComment.Height+5); + + lblComment.Visible = false; + txtComment.Visible = false; + + this.MinimumSize = new System.Drawing.Size(this.MinimumSize.Width, smallerHeight); + this.MaximumSize = new System.Drawing.Size(this.MaximumSize.Width, this.MinimumSize.Height); + + this.Size = new System.Drawing.Size(this.Width, this.MinimumSize.Height); + } + + + private void InitExtractExistingFileList() + { + List _ExtractActionNames = new List(Enum.GetNames(typeof(Ionic.Zip.ExtractExistingFileAction))); + foreach (String name in _ExtractActionNames) + { + if (!name.StartsWith("Invoke")) + { + if (name.StartsWith("Throw")) + comboExistingFileAction.Items.Add("Stop"); + else + comboExistingFileAction.Items.Add(name); + } + } + + comboExistingFileAction.SelectedIndex = Overwrite; + } + + + public WinFormsSelfExtractorStub() + { + InitializeComponent(); + FixTitle(); + _setCancel = true; + entryCount= 0; + _SetDefaultExtractLocation(); + _SetPostUnpackCmdLine(); + SetInteractiveFlag(); + SetOverwriteBehavior(); + InitExtractExistingFileList(); + + try + { + if (!String.IsNullOrEmpty(zip.Comment)) + { + txtComment.Text = zip.Comment; + } + else + { + HideComment(); + } + } + catch (Exception e1) + { + // why would this ever fail? Not sure. + this.lblStatus.Text = "exception while resetting size: " + e1.ToString(); + + HideComment(); + } + } + + + + + static WinFormsSelfExtractorStub() + { + // This is important to resolve the Ionic.Zip.dll inside the extractor. + AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(Resolver); + } + + + static System.Reflection.Assembly Resolver(object sender, ResolveEventArgs args) + { + // super defensive + Assembly a1 = Assembly.GetExecutingAssembly(); + if (a1==null) + throw new Exception("GetExecutingAssembly returns null."); + + string[] tokens = args.Name.Split(','); + + String[] names = a1.GetManifestResourceNames(); + + if (names==null) + throw new Exception("GetManifestResourceNames returns null."); + + // workitem 7978 + Stream s = null; + foreach (string n in names) + { + string root = n.Substring(0,n.Length-4); + string ext = n.Substring(n.Length-3); + if (root.Equals(tokens[0]) && ext.ToLower().Equals("dll")) + { + s= a1.GetManifestResourceStream(n); + if (s!=null) break; + } + } + + if (s==null) + throw new Exception(String.Format("GetManifestResourceStream returns null. Available resources: [{0}]", + String.Join("|", names))); + + byte[] block = new byte[s.Length]; + + if (block==null) + throw new Exception(String.Format("Cannot allocated buffer of length({0}).", s.Length)); + + s.Read(block, 0, block.Length); + Assembly a2 = Assembly.Load(block); + if (a2==null) + throw new Exception("Assembly.Load(block) returns null"); + + return a2; + } + + + + + private void Form_Shown(object sender, EventArgs e) + { + if (!Interactive) + { + RemoveInteractiveComponents(); + KickoffExtract(); + } + } + + + private void RemoveInteractiveComponents() + { + if (this.btnContents.Visible) + { + txtPostUnpackCmdLine.Enabled = txtPostUnpackCmdLine.Visible = false; + chk_ExeAfterUnpack.Enabled = chk_ExeAfterUnpack.Visible = false; + chk_Remove.Enabled = chk_Remove.Visible = false; + comboExistingFileAction.Enabled = comboExistingFileAction.Visible = false; + label1.Enabled = label1.Visible = false; + chk_OpenExplorer.Checked = false; + chk_OpenExplorer.Enabled = chk_OpenExplorer.Visible = false; + btnDirBrowse.Enabled = btnDirBrowse.Visible = false; + btnContents.Enabled = btnContents.Visible = false; + btnExtract.Enabled = btnExtract.Visible = false; + + // adjust the position of all the remaining UI + int delta = this.progressBar1.Location.Y - this.chk_OpenExplorer.Location.Y ; + + this.MinimumSize = new System.Drawing.Size(this.MinimumSize.Width, this.MinimumSize.Height - (delta -4)); + MoveDown(this.txtExtractDirectory, delta); + MoveDown(this.lblExtractDir, delta); + + // finally, adjust the size of the form + this.Size = new System.Drawing.Size(this.Width, this.Height - (delta-4)); + + if (txtComment.Visible) + this.txtComment.Size = new System.Drawing.Size(this.txtComment.Width, + this.txtComment.Height + delta); + } + } + + + // workitem 8925 + private void chk_ExeAfterUnpack_CheckedChanged(object sender, EventArgs e) + { + this.chk_Remove.Enabled = (this.chk_ExeAfterUnpack.Checked); + } + + + private void btnDirBrowse_Click(object sender, EventArgs e) + { + Ionic.Utils.FolderBrowserDialogEx dlg1 = new Ionic.Utils.FolderBrowserDialogEx(); + dlg1.Description = "Select a folder for the extracted files:"; + dlg1.ShowNewFolderButton = true; + dlg1.ShowEditBox = true; + //dlg1.NewStyle = false; + if (Directory.Exists(txtExtractDirectory.Text)) + dlg1.SelectedPath = txtExtractDirectory.Text; + else + { + string d = txtExtractDirectory.Text; + while (d.Length > 2 && !Directory.Exists(d)) + { + d = Path.GetDirectoryName(d); + } + if (d.Length < 2) + dlg1.SelectedPath = Environment.GetFolderPath(Environment.SpecialFolder.Personal); + else + dlg1.SelectedPath = d; + } + + dlg1.ShowFullPathInEditBox = true; + + //dlg1.RootFolder = System.Environment.SpecialFolder.MyComputer; + + // Show the FolderBrowserDialog. + DialogResult result = dlg1.ShowDialog(); + if (result == DialogResult.OK) + { + txtExtractDirectory.Text = dlg1.SelectedPath; + } + } + + + private void btnExtract_Click(object sender, EventArgs e) + { + KickoffExtract(); + } + + + private void KickoffExtract() + { + // disable most of the UI: + this.btnContents.Enabled = false; + this.btnExtract.Enabled = false; + this.chk_OpenExplorer.Enabled = false; + this.comboExistingFileAction.Enabled = false; + this.label1.Enabled = false; + this.chk_ExeAfterUnpack.Enabled = false; + this.chk_Remove.Enabled = false; // workitem 8925 + this.txtExtractDirectory.Enabled = false; + this.txtPostUnpackCmdLine.Enabled = false; + this.btnDirBrowse.Enabled = false; + this.btnExtract.Text = "Extracting..."; + + ThreadPool.QueueUserWorkItem(new WaitCallback(DoExtract), null); + + //System.Threading.Thread _workerThread = new System.Threading.Thread(this.DoExtract); + //_workerThread.Name = "Zip Extractor thread"; + //_workerThread.Start(null); + + this.Cursor = Cursors.WaitCursor; + } + + + + + private void DoExtract(Object obj) + { + List itemsExtracted = new List(); + string targetDirectory = txtExtractDirectory.Text; + global::Ionic.Zip.ExtractExistingFileAction WantOverwrite = (Ionic.Zip.ExtractExistingFileAction) Overwrite; + bool extractCancelled = false; + System.Collections.Generic.List didNotOverwrite = + new System.Collections.Generic.List(); + _setCancel = false; + string currentPassword = ""; + SetProgressBars(); + + try + { + // zip has already been set, when opening the exe. + + zip.ExtractProgress += ExtractProgress; + foreach (global::Ionic.Zip.ZipEntry entry in zip) + { + if (_setCancel) { extractCancelled = true; break; } + if (entry.Encryption == global::Ionic.Zip.EncryptionAlgorithm.None) + { + try + { + entry.Extract(targetDirectory, WantOverwrite); + entryCount++; + itemsExtracted.Add(entry.FileName); + } + catch (Exception ex1) + { + if (WantOverwrite != global::Ionic.Zip.ExtractExistingFileAction.OverwriteSilently + && ex1.Message.Contains("already exists.")) + { + // The file exists, but the user did not ask for overwrite. + didNotOverwrite.Add(" " + entry.FileName); + } + else if (WantOverwrite == global::Ionic.Zip.ExtractExistingFileAction.OverwriteSilently || + ex1.Message.Contains("already exists.")) + { + DialogResult result = MessageBox.Show(String.Format("Failed to extract entry {0} -- {1}", entry.FileName, ex1.Message), + String.Format("Error Extracting {0}", entry.FileName), MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); + + if (result == DialogResult.Cancel) + { + _setCancel = true; + break; + } + } + } + } + else + { + bool done = false; + while (!done) + { + if (currentPassword == "") + { + string t = PromptForPassword(entry.FileName); + if (t == "") + { + done = true; // escape ExtractWithPassword loop + continue; + } + currentPassword = t; + } + + if (currentPassword == null) // cancel all + { + _setCancel = true; + currentPassword = ""; + break; + } + + try + { + entry.ExtractWithPassword(targetDirectory, WantOverwrite, currentPassword); + entryCount++; + itemsExtracted.Add(entry.FileName); + done= true; + } + catch (Exception ex2) + { + // Retry here in the case of bad password. + if (ex2 as Ionic.Zip.BadPasswordException != null) + { + currentPassword = ""; + continue; // loop around, ask for password again + } + else if (WantOverwrite != global::Ionic.Zip.ExtractExistingFileAction.OverwriteSilently + && ex2.Message.Contains("already exists.")) + { + // The file exists, but the user did not ask for overwrite. + didNotOverwrite.Add(" " + entry.FileName); + done = true; + } + else if (WantOverwrite == global::Ionic.Zip.ExtractExistingFileAction.OverwriteSilently + && !ex2.Message.Contains("already exists.")) + { + DialogResult result = MessageBox.Show(String.Format("Failed to extract the password-encrypted entry {0} -- {1}", entry.FileName, ex2.Message.ToString()), + String.Format("Error Extracting {0}", entry.FileName), MessageBoxButtons.OKCancel, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); + + done= true; + if (result == DialogResult.Cancel) + { + _setCancel = true; + break; + } + } + } // catch + } // while + } // else (encryption) + } // foreach + + } + catch (Exception) + { + MessageBox.Show("The self-extracting zip file is corrupted.", + "Error Extracting", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); + Application.Exit(); + } + + + // optionally provide a status report + if (didNotOverwrite.Count > 0) + { + UnzipStatusReport f = new UnzipStatusReport(); + if (didNotOverwrite.Count == 1) + f.Header = "This file was not extracted because the target file already exists:"; + else + f.Header = String.Format("These {0} files were not extracted because the target files already exist:", + didNotOverwrite.Count); + f.Message = String.Join("\r\n", didNotOverwrite.ToArray()); + f.ShowDialog(); + } + + SetUiDone(); + + if (extractCancelled) return; + + + // optionally open explorer + if (chk_OpenExplorer.Checked) + { + string w = System.Environment.GetEnvironmentVariable("WINDIR"); + if (w == null) w = "c:\\windows"; + try + { + Process.Start(Path.Combine(w, "explorer.exe"), targetDirectory); + } + catch { } + } + + + // optionally execute a command + postUpackExeDone = new ManualResetEvent(false); + if (this.chk_ExeAfterUnpack.Checked && PostUnpackCmdLineIsSet()) + { + try + { + string[] cmd = SplitCommandLine(txtPostUnpackCmdLine.Text); + if (cmd != null && cmd.Length > 0) + { + object[] args = { cmd, + this.chk_Remove.Checked, + itemsExtracted, + targetDirectory + }; + ThreadPool.QueueUserWorkItem(new WaitCallback(StartPostUnpackProc), args); + } + else postUpackExeDone.Set(); + + // else, nothing. + } + catch { postUpackExeDone.Set(); } + } + else postUpackExeDone.Set(); + + // quit if this is non-interactive + if (!Interactive) + { + postUpackExeDone.WaitOne(); + Application.Exit(); + } + } + + + + + // workitem 8925 + private delegate void StatusProvider(string h, string m); + + private void ProvideStatus(string header, string message) + { + if (this.InvokeRequired) + { + this.Invoke(new StatusProvider(this.ProvideStatus), new object[] { header, message }); + } + else + { + UnzipStatusReport f = new UnzipStatusReport(); + f.Header= header; + f.Message= message; + f.ShowDialog(); + } + } + + + + // workitem 8925 + private void StartPostUnpackProc(object arg) + { + Object[] args = (object[]) arg; + String[] cmd = (String[]) args[0]; + bool removeAfter = (bool) args[1]; + + List itemsToRemove = (List) args[2]; + String basePath = (String) args[3] ; + + ProcessStartInfo startInfo = new ProcessStartInfo(cmd[0]); + startInfo.WorkingDirectory = basePath; + startInfo.CreateNoWindow = true; + if (cmd.Length > 1) + { + startInfo.Arguments = cmd[1]; + } + + try + { + // Process is IDisposable + using (Process p = Process.Start(startInfo)) + { + if (p!=null) + { + p.WaitForExit(); + if (p.ExitCode == 0) + { + if (removeAfter) + { + List failedToRemove = new List(); + foreach (string s in itemsToRemove) + { + string fullPath = Path.Combine(basePath,s); + try + { + if (File.Exists(fullPath)) + File.Delete(fullPath); + else if (Directory.Exists(fullPath)) + Directory.Delete(fullPath, true); + } + catch + { + failedToRemove.Add(s); + } + + if (failedToRemove.Count > 0) + { + string header = (failedToRemove.Count == 1) + ? "This file was not removed:" + : String.Format("These {0} files were not removed:", + failedToRemove.Count); + + string message = String.Join("\r\n", failedToRemove.ToArray()); + ProvideStatus(header, message); + } + } + } + } + else + { + ProvideStatus("Error Running Post-Unpack command", + String.Format("Post-extract command failed, exit code {0}", p.ExitCode)); + } + } + } + } + catch (Exception exc1) + { + ProvideStatus("Error Running Post-Unpack command", + String.Format("The post-extract command failed: {0}", exc1.Message)); + } + + postUpackExeDone.Set(); + } + + + + + private void SetUiDone() + { + if (this.btnExtract.InvokeRequired) + { + this.btnExtract.Invoke(new MethodInvoker(this.SetUiDone)); + } + else + { + this.lblStatus.Text = String.Format("Finished extracting {0} entries.", entryCount); + btnExtract.Text = "Extracted."; + btnExtract.Enabled = false; + btnCancel.Text = "Quit"; + _setCancel = true; + this.Cursor = Cursors.Default; + } + } + + + + private void ExtractProgress(object sender, ExtractProgressEventArgs e) + { + if (e.EventType == ZipProgressEventType.Extracting_EntryBytesWritten) + { + StepEntryProgress(e); + } + + else if (e.EventType == ZipProgressEventType.Extracting_AfterExtractEntry) + { + StepArchiveProgress(e); + } + if (_setCancel) + e.Cancel = true; + } + + + private void StepArchiveProgress(ExtractProgressEventArgs e) + { + if (this.progressBar1.InvokeRequired) + { + this.progressBar2.Invoke(new ExtractEntryProgress(this.StepArchiveProgress), new object[] { e }); + } + else + { + this.progressBar1.PerformStep(); + + // reset the progress bar for the entry: + this.progressBar2.Value = this.progressBar2.Maximum = 1; + this.lblStatus.Text = ""; + this.Update(); + } + } + + private void StepEntryProgress(ExtractProgressEventArgs e) + { + if (this.progressBar2.InvokeRequired) + { + this.progressBar2.Invoke(new ExtractEntryProgress(this.StepEntryProgress), new object[] { e }); + } + else + { + if (this.progressBar2.Maximum == 1) + { + // reset + Int64 max = e.TotalBytesToTransfer; + _progress2MaxFactor = 0; + while (max > System.Int32.MaxValue) + { + max /= 2; + _progress2MaxFactor++; + } + this.progressBar2.Maximum = (int)max; + this.lblStatus.Text = String.Format("Extracting {0}/{1}: {2} ...", + this.progressBar1.Value, zip.Entries.Count, e.CurrentEntry.FileName); + } + + int xferred = (int)(e.BytesTransferred >> _progress2MaxFactor); + + this.progressBar2.Value = (xferred >= this.progressBar2.Maximum) + ? this.progressBar2.Maximum + : xferred; + + this.Update(); + } + } + + private void SetProgressBars() + { + if (this.progressBar1.InvokeRequired) + { + this.progressBar1.Invoke(new MethodInvoker(this.SetProgressBars)); + } + else + { + this.progressBar1.Value = 0; + this.progressBar1.Maximum = zip.Entries.Count; + this.progressBar1.Minimum = 0; + this.progressBar1.Step = 1; + this.progressBar2.Value = 0; + this.progressBar2.Minimum = 0; + this.progressBar2.Maximum = 1; // will be set later, for each entry. + this.progressBar2.Step = 1; + } + } + + private String ZipName + { + get + { + return Path.GetFileNameWithoutExtension(System.Reflection.Assembly.GetExecutingAssembly().Location); + } + } + + private Stream ZipStream + { + get + { + if (_s != null) return _s; + Assembly a = Assembly.GetExecutingAssembly(); + + // workitem 7067 + _s= File.OpenRead(a.Location); + + return _s; + } + } + + private ZipFile zip + { + get + { + if (_zip == null) + _zip = global::Ionic.Zip.ZipFile.Read(ZipStream); + return _zip; + } + } + + private string PromptForPassword(string entryName) + { + PasswordDialog dlg1 = new PasswordDialog(); + dlg1.EntryName = entryName; + + // ask for password in a loop until user enters a proper one, + // or clicks skip or cancel. + bool done= false; + do { + dlg1.ShowDialog(); + done = (dlg1.Result != PasswordDialog.PasswordDialogResult.OK || + dlg1.Password != ""); + } while (!done); + + if (dlg1.Result == PasswordDialog.PasswordDialogResult.OK) + return dlg1.Password; + + else if (dlg1.Result == PasswordDialog.PasswordDialogResult.Skip) + return ""; + + // cancel + return null; + } + + private void btnCancel_Click(object sender, EventArgs e) + { + if (_setCancel == false) + _setCancel = true; + else + Application.Exit(); + } + + // workitem 6413 + private void btnContents_Click(object sender, EventArgs e) + { + ZipContentsDialog dlg1 = new ZipContentsDialog(); + dlg1.ZipFile = zip; + dlg1.ShowDialog(); + return; + } + + // workitem 8988 + private string[] SplitCommandLine(string cmdline) + { + // if the first char is NOT a double-quote, then just split the line + if (cmdline[0]!='"') + return cmdline.Split( new char[] {' '}, 2); + + // the first char is double-quote. Need to verify that there's another one. + int ix = cmdline.IndexOf('"', 1); + if (ix == -1) return null; // no double-quote - FAIL + + // if the double-quote is the last char, then just return an array of ONE string + if (ix+1 == cmdline.Length) return new string[] { cmdline.Substring(1,ix-1) }; + + if (cmdline[ix+1]!= ' ') return null; // no space following the double-quote - FAIL + + // there's definitely another double quote, followed by a space + string[] args = new string[2]; + args[0] = cmdline.Substring(1,ix-1); + while (cmdline[ix+1]==' ') ix++; // go to next non-space char + args[1] = cmdline.Substring(ix+1); + return args; + } + + + private int _progress2MaxFactor; + private bool _setCancel; + Stream _s; + global::Ionic.Zip.ZipFile _zip; + + } + + + + public class UnzipStatusReport : Form + { + private System.Windows.Forms.Label label1; + private System.Windows.Forms.TextBox tbMessage; + private System.Windows.Forms.Button btnOK; + + public UnzipStatusReport() + { + InitializeComponent(); + } + + + private void UnzipStatusReport_Load(object sender, EventArgs e) + { + this.Text = "DotNetZip: Unzip status report..."; + } + + + private void btnOK_Click(object sender, EventArgs e) + { + DialogResult = DialogResult.OK; + this.Close(); + } + + public string Message + { + set + { + this.tbMessage.Text = value; + this.tbMessage.Select(0,0); + } + get + { + return this.tbMessage.Text; + } + } + + public string Header + { + set + { + this.label1.Text = value; + } + get + { + return this.label1.Text; + } + } + + + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.label1 = new System.Windows.Forms.Label(); + this.tbMessage = new System.Windows.Forms.TextBox(); + this.btnOK = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(12, 12); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(50, 13); + this.label1.TabIndex = 2; + this.label1.Text = "Status"; + // + // tbMessage + // + this.tbMessage.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right) + | System.Windows.Forms.AnchorStyles.Bottom))); + this.tbMessage.Location = new System.Drawing.Point(20, 31); + this.tbMessage.Name = "tbMessage"; + this.tbMessage.Multiline = true; + this.tbMessage.ScrollBars = ScrollBars.Vertical; + this.tbMessage.ReadOnly = true; + this.tbMessage.Size = new System.Drawing.Size(340, 110); + this.tbMessage.TabIndex = 10; + // + // btnOK + // + this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnOK.Location = new System.Drawing.Point(290, 156); + this.btnOK.Name = "btnOK"; + this.btnOK.Size = new System.Drawing.Size(82, 24); + this.btnOK.TabIndex = 20; + this.btnOK.Text = "OK"; + this.btnOK.UseVisualStyleBackColor = true; + this.btnOK.Click += new System.EventHandler(this.btnOK_Click); + // + // UnzipStatusReport + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(380, 190); + this.Controls.Add(this.label1); + this.Controls.Add(this.tbMessage); + this.Controls.Add(this.btnOK); + this.Name = "UnzipStatusReport"; + this.Text = "Not Unzipped"; + this.Load += new System.EventHandler(this.UnzipStatusReport_Load); + this.ResumeLayout(false); + this.PerformLayout(); + } + } + + + class WinFormsSelfExtractorStubProgram + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // For Debugging +// if ( !AttachConsole(-1) ) // Attach to a parent process console +// AllocConsole(); // Alloc a new console + + + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new WinFormsSelfExtractorStub()); + } + + [System.Runtime.InteropServices.DllImport("kernel32.dll")] + private static extern bool AllocConsole(); + + [System.Runtime.InteropServices.DllImport("kernel32.dll")] + private static extern bool AttachConsole(int pid); + + + } +} diff --git a/src/Zip/Resources/WinFormsSelfExtractorStub.resx b/old/src/Zip/Resources/WinFormsSelfExtractorStub.resx similarity index 98% rename from src/Zip/Resources/WinFormsSelfExtractorStub.resx rename to old/src/Zip/Resources/WinFormsSelfExtractorStub.resx index 7d33e4f..e3fee67 100644 --- a/src/Zip/Resources/WinFormsSelfExtractorStub.resx +++ b/old/src/Zip/Resources/WinFormsSelfExtractorStub.resx @@ -1,1119 +1,1119 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - - AAABAAoAMDAQAAEABABoBgAApgAAACAgEAABAAQA6AIAAA4HAAAQEBAAAQAEACgBAAD2CQAAMDAAAAEA - CACoDgAAHgsAACAgAAABAAgAqAgAAMYZAAAQEAAAAQAIAGgFAABuIgAAAAAAAAEAIABJhgAA1icAADAw - AAABACAAqCUAAB+uAAAgIAAAAQAgAKgQAADH0wAAEBAAAAEAIABoBAAAb+QAACgAAAAwAAAAYAAAAAEA - BAAAAAAAgAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDA - wAAAAP8AAP8AAAD//wD/AAAA/wD/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIuIAAAAAAAAAAAAAAAAAAAAAA - AAAAB4uLiLgAAAAAAAAAAAAAAAAAAAAAAAiLiHeIuIuIgAAAAAAAAAAAAAAAAAAIi4uIiHi4uLiLgAAA - AAAAAAAAAAAACIi4iL+4t4e4i4iIgAAAAAAAAAAAAAiIi4v7i4iLiHeLiLiIsAAAAAAAAAAACIi4v4iL - +Li/eIiLi4iIgAAAAAAAAAAACL+Ii4v4uIi4h3OIuLj4sAAAAAAAAAAACIuL+IuL+4v7iIi4i4j4gAAA - AAAAAAAACIiIuIiIiIiIt3iLiLj7gAAAAAAAAAAACLi/i4uLi4uLiIe4uLj4gAAAAAAAAAAACPiL+IiI - iL+IiHiIi4j7gAAAAAAAAAAACLiIuLi4v4uLh4O4uLj/gAAAAAAAAAAACPuIiIiIi/i/iIeIi4iLgAAA - AAAAAAAACIi/v7+4iL+Lh3i4uLi/gAAAAAAAAAAACL+IiIiLiIuIiIOIiIiL8AAAAAAAAAAAD4v7+4v4 - i/i4uHi4uLiAAAAAAAAAAAAACIiIiIiL+L+IiIeL+/uAAAAAAAAAAAAACIuL+/v4v4uLiIe4iIiwAAAA - AAAAAAAACIiPiIi/i/iIiHuIuLiAAAAAAAAAAAAACIv7+/iIiL+4h4V4iPvwAAAAAAAAAAAACIiIiL+/ - v4iLd397i/iwAAAAAAAAAAAACIv7+IiIiL+3R3hoiPuAAAAAAAAAAAAACIiIi/v7+IiHGHh4v4iAAAAA - AAAAAAAACIv7+PiIv7+4d3hoi/vwAAAAAAAAAAAACIiPi/v4iIiIiIgIv/iAAAAAAAAAAAAAD4v7+I+/ - v7+IiOhYiPuAAAAAAAAAAAAACIiPiL+I+Ii4iIgov/iAAAAAAAAAAAAACIv7+PiL+/iIiIhYiIuAAAAA - AAAAAAAAD4iPv7+Ij7+4+I8oiPiAAAAAAAAAAAAACIv4+Ii/iIj4j/h4v/uAAAAAAAAAAAAACIiL+/j7 - +/v4j/84+PiAAAAAAAAAAAAAD4v/j4v/j4+/j494v/vwAAAAAAAAAAAACIiIv4+L+/iIhnh4j/iwAAAA - AAAAAAAAD4v4+L+Pj7+/h3h4v/iAAAAAAAAAAAAACIiIv/i/v4+IiHeP//vwAAAAAAAAAAAAD4v4+L/4 - +Iv4+HeI+PiwAAAAAAAAAAAACIiL+Pi/v4+IiHh4i4jwAAAAAAAAAAAAD4v/i/j4+L+/iDeL/wAAAAAA - AAAAAAAACIiL/4v4v4+IgAAAAAAAAAAAAAAAAAAACIiPiI+P8AAAAAAAAAAAAAAAAAAAAAAAD4iIAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////AAD///////8AAP// - /////wAA////////AAD///////8AAP///h///wAA///gD///AAD//gAB//8AAP/gAAH//wAA/gAAAf// - AADgAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAA - AAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// - AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAA - AAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// - AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAA///8AAIAAH////wAAgAf/////AACD//////8AAP// - /////wAAKAAAACAAAABAAAAAAQAEAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAIAAAACA - gACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8AAAD/AP8A//8AAP///wAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAh4uIgAAAAAAAAAAAAAAI - i4eLi7gAAAAAAAAAAIiLi4iHeLh4gAAAAAAACIi4v4i4h7iLiIAAAAAACIuL+IuLi4h7iPuAAAAAAAiI - iLi/v4iHiLv4gAAAAAAIuL+IiIuLhziI+4AAAAAACPiLi4uIv3iLuPiAAAAAAAi4iIiIv4uHeIv4gAAA - AAAPi4uLi/uIh4uLiwAAAAAACIiIiIiIuIg4iIgAAAAAAAiL+/uLiIuHi4uAAAAAAAAIiIiIiIv4iHiL - gAAAAAAACIv7+/v4uIeL+LAAAAAAAAiIiIiIv4t4eLiAAAAAAAAIi/v7+Iv3eHv4sAAAAAAACIiIiL+I - h3d4iIAAAAAAAA+L+/iL+/iHeIuAAAAAAAAIiI+/iIiIiHv4sAAAAAAACIv4iL+/v/h4+IAAAAAAAA+I - iL/4iPj/ePuAAAAAAAAIi/j4v4v4iHv4sAAAAAAAD4iL+IiIi4Z4+IAAAAAAAAiL/7+L+I+FePuAAAAA - AAAPiIj4j7+/h4j4gAAAAAAACIv4v7///4eIi/AAAAAAAA+PiPj4iIj3ewAAAAAAAAAIi/iIiIAAAAAA - AAAAAAAAAP+AAAAAAAAAAAAAAAAAAP/////////////////8B///4AP//AAB/+AAAf+AAAH/gAAB/4AA - Af+AAAH/gAAB/4AAA/+AAAP/gAAH/4AAB/+AAAf/gAAH/4AAB/+AAAf/gAAH/4AAB/+AAAf/gAAH/4AA - B/+AAAf/gAAH/4AAB/+AAAf/gAA//4Af///H////KAAAABAAAAAgAAAAAQAEAAAAAACAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAIAAAIAAAACAgACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8A - AAD/AP8A//8AAP///wADMzMzMzMzAAO7u7t4s7swA7u7u4ezvDADu7u7eLO8MAO7u7uHs78wA7u7u3iz - vzADu7u7h7O/MAO7u7t4uzswA7u7u4e7swADu7u7eLswAAO7u7uHuzAAA7u7u3i7MAADu7u7d7swAAO7 - u7t3uzAAAzMzMzMzAAAAAAAAAAAAAIADAACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAMAAIAH - AACABwAAgAcAAIAHAACABwAAgA8AAP//AAAoAAAAMAAAAGAAAAABAAgAAAAAAAAJAAAAAAAAAAAAAAAB - AAAAAQAAAAAAABssNQA5NTgAOzs+AEY+PwBJOzoAQEJGAEFESgBTUE0AXFBJAEJNVQBNTlIAaFdKAGNa - WQBoXlgARlliAExibQBecXkAWXJ/AH9qZAB/cmwAYnR+AHV0dgB8c3AAhGNZAIduYwCAeXMAjn54AH6C - fACGgH4ApIFvAP+hYwD/tX8AUXWGAFl9jwB6hYgAZI6dAFeNpQB8m6cAep+tAHmltwB2p7wAeKe7AF+n - xgBrp8QAaq7MAHKtxQB0rcQAdLDLAHqzzAB2u9UAfrnSAHK72QBtxd4AWs/sAFzQ7ABsxekAcMbhAHTJ - 5QB3z+oAcs/vAGLT7QBs1+8AdNHrAHjS7QBy2e8Acc3xAHXO8QB1zvQAeM7xAHfQ8QB31PAAdNf1AHzS - 8QB12/YAd973AHrd9QB84PcAfuD4AIGJjwCQh4MAkIiGAJ6UjACDj5QAhZKXAIyYngCSkpIAkZqeAKqR - gwCjlo4AsJWLALGcigC7n4gApZqUAKuckACgnpoAs56TALKflgC1npQApqCcAKuinQC2oJYAu6WbAIud - pQCInKgAi6CoAJehpQCZpKkAkqivAJWttwCNsbwAnbC3AKinpAChqq4AqqyrALGurwChr7QAq7e5AMCf - kgDBqpYAxKybAMuxnADStJ8AyK6iAMy2ogDOuKMAyLKqAM27qQDUt6AA1rykANO7qQDAurQAncS/ANrB - qwDHxL4A1MKzAN/ItgDXx7gA3Mq6AODHsgDgy7oAhK/BAIO6zACOu84AkbfGAJi1wQCfu8UAob7GAKG+ - yACbycYAisPaAJ/I1wCVxNgAmMnbAJvK3QCc0tMArcPLAK7IyQCpytUApsvcAKjO3ACxz9oAhcvgAIzO - 5gCEzusAhdfnAInY5ACE0OoAjtHoAJXQ4ACd1eEAldnjAJDV6wCU3O8Ags/wAIHS8gCF0vEAhtTyAIvV - 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 - AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAA - AAH//wAAgAAAAf//AACAAAAB//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// - AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAA - AAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// - AACAAAAH//8AAIAAAAf//wAAgAAAP///AACAAB////8AAIAH/////wAAg///////AAD///////8AACgA - AAAgAAAAQAAAAAEACAAAAAAAAAQAAAAAAAAAAAAAAAEAAAABAAAAAAAAWEpEAHBPQQBxY14AaWpqAHpt - ZQBhaXAAYnB7AJNtWwCFdWwAnYF5AJeIfwC2jnIAa3yIAHF/igBpgY4AZYSWAHeIkQBmlqgAaJaoAGeZ - qwBrmqsAfpmnAHecqwBvoLEAc6S2AHujswB9q7sAarHNAH25zgBayt8AYc3fAE/N6ABnzegAZ87vAHbL - 5QBzz+oAec3tAGPU7ABl1OwAa9btAGzX7gBx1+4AeNDrAHHZ7wB22e8Acc3xAHbO8QB50PIAfdHyAHzV - 8gB81fQAdNj1AHfe9wB62fUAfdv3AHne9wB83/cAf935AH/g9wB+4PkAj4WCAIuPkQCSj5EAjZCSAI+W - mACRkJIAlZaWAJSXmQCUmZkAlpqcAKKJgQC4loYAtZqNAKOenAC9oIkAv6mIAJueoQCIo6sAn6CgAJOl - rgCkq64Ava6iALesqQDKq5UA1babAM2zpgDZu68A5r+yAOLHpADlx7MA68u0AOLNvQCAr8EAiL3PAIS+ - 0gChvMYAhMDVAIPB2ACRxdgAtsPHALjEyQClxtEApMfUAKfL1wCvydMAqc7bAL/L0QCt098AtdDZALLU - 3QCIzeYAhM/rAIfX6wCF1uwAiNbrAIzW6wCI0ewAhtjsAIXd7gCJ2u0AjNvuAI7c7gCW0eYAn9PiAJHU - 7gCf1+4AgdLxAITT8gCH1PMAitXzAI3W8gCF3/AAhtn1AITc9gCQ1/MAk97wAJLY9ACW2fQAk972AJXf - 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 - 9QB32/AAddzxAHjd8QB93vEAeeDyAH7g8gB94vQAg4WGAKKQgQC5lYcAqpyRAKOqpwCsrq4Ap7K1AKmy - tADKuasA78y7AIm1xwCjy98AgMvpAITO6wCE1egAh9DtAJPd8gCi0uYApt33AIDh8wCG4fIAgeL0AILl - 9QCG5PQAiOHzAIjl9ACH6PYAiej3AI3o9gCN6vgAkOf2AJDp9gCU6/cAkuv4AJHt+QCW7vkAmO74AJbw - +gCa8vsAnPH6AJ/0/AC75/cAven9AKDx+gCg9PwApPX8AKj2/ACn+P0Aqvj9AK35/QCx+v4AtPv/ALj8 - /wDu3dgA7uriAOzs7AD/+esA///+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAACAgICAgICAgICAgHEwAAAAhLRT8o - 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 - CCMDcH2jtx6+NYFhCy2joCWOh//63332C8DfAOq3HrnfCIP5B65cqd0HnNQ08cbZmXxkECZMxso6CoXU - 8lGzX+ggpMHaukNlvcqhA+OE5JBGDk3TEVLih4rFq3UunjkFii8MyLvPNTrf/osFuzFscoSXNrLekT6X - +lfeOaeNzd5StAvT9wkhTyLkA5omXzMzk2d8zKJYNEBBveHx/Ol11pcWnpiaObg+NV2eKxWNY7qhbE36 - OA3fOX/ufPPpb30tAN703g9dfWJvb/H6xcgAjLCr+JV3zrUq5Awgb1jFcmnq+ANSM14hhHaLUmHOc+ve - +tKFL6xvGH8FYd3UnOWc1dQnpuZvEVK7eWXxwjRRJd+H3/uhq8+8oDf0EsfIAIywp/iVd84ZRBV2ZaJK - OwlU3vuhq1fe/dAdAsDQXC1vbSg6tfzaez90dTsj+kYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGE - EUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGE - EUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEa4Z/P8GlX/ISWG3BgAAAABJRU5ErkJggigAAAAw - AAAAYAAAAAEAIAAAAAAAgCUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARz87AW+NmgFx - zfEYds3ubXXM7sNzzPD1fcvq8IbE3MFxpblkAAAAHAAAABkAAAASAAAACQAAAAMAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHbO8Q9t - udZtXIqb0HGrw/hsxen/cs/v/3TX9f912/b/dc/x/5De8P+BvdTJAAAAOAAAADYAAAAwAAAAJAAAABQA - AAAHAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfdHyBn/P711+ - z++xe8/w63fQ8f+YtcH/tJ6U/4WSl/9Zcn//bcXe/3fe9/933vf/cc3x/3nc8P93zOb/dsnk/3O71NRe - ipqBAAAAOwAAAC8AAAAdAAAADAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhtHvWITR76uC - 0fDnftHy/33W9P992fX/ft33/37h+P9+udP/lcTY/7mkmf+xrq//dNHr/3je9/943vf/cc3x/2zX7/90 - 2u//idjk/4XX5/+BvdTQAAAAQAAAAD8AAAA2AAAAJgAAABQAAAAGAAAAAQAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACM0+5Ii9Tvp4nT8OWH - 1PL+hdj0/4Tb9f+D3vf/g+P4/4Li+P+B4vj/gOL4/3/h+P92p7z/qpGD/4icqP9qrsz/c9Lt/3rf9/95 - 3/f/cc3x/2LT7f+dxL///6Fj/53Q0P+Mzub/AAAAQAAAAEAAAAA/AAAAOQAAACsAAAAXAAAACAAAAAEA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJLV7j6V1/Glkdbx4pDW8v2O - 2vT/jN32/4rh9/+J5Pn/iOX5/4bk+f+F5Pn/hOP5/4Pj+P+C4/j/geL4/4Dh+P+hvsj/xsLA/66kn/+G - gH7/ccfh/3vf9/963/f/cc3x/13Q7P+bycb//7V//5vU1v+Nz+f/AAAAPwAAAD0AAAA7AAAAOQAAADQA - AAAlAAAADwAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAltfw1Jfc9f+b - 4Pj/kOL4/4/n+v+N5/r/jOf6/4vm+v+K5vn/ieX5/4jl+f+H5fn/huT5/4Xk+f+E4/n/g+P4/4Lh+P9y - rcX/nbC3/6Wgnv+my9z/d9Tw/3zg9/984Pf/cs3x/1vQ7P+V2eP/6u/p/5nk9P+Nz+f/AAAAOwAAADkA - AAA2AAAANAAAADEAAAAsAAAAGQAAAAYAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAnNv0/5jr+/+S4vz/kOj6/5Do+v+P6Pr/juj6/43n+v+M5/r/i+b5/4rm+f+I5fn/h+X5/4bk+f+F - 5Pn/hOP5/4Li+P+PsLr/wJ+S/4yYnv9RdYb/csrl/33g+P994Pf/c83x/1rP7P+Y4vP//v7+/5jk9P+O - 0Oj/AAAANgAAADQAAAAxAAAALgAAACwAAAApAAAAHwAAABEAAAAGAAAAAQAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAndz0/5vs+/+M3vz/kun7/5Lp+v+R6fr/kOj6/47o+v+N5/r/jOf6/4vm+v+K - 5vn/ieX5/4jl+f+H5Pn/huT5/4Tj+P94tM7/sc/a/7Gfl/+pqqr/d8/q/3/h+P9+4fj/c87x/1vQ7P+Z - 4vP//////5jj9P+O0ej/AAAAMQAAAC4AAAArAAAAKQAAACYAAAAiAAAAHwAAABgAAAAPAAAABwAAAAIA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAn931/5zs+/+M3vz/lOn7/5Pq+/+S6fv/ken6/5Do+v+P - 6Pr/juf6/43n+v+M5vr/iub5/4nm+f+I5fn/h+X5/4Xj+P94p7v/kpKS/4udpf9yu9n/edXx/4Di+P9/ - 4fj/dM7x/13Q7f+Z4/P//////5nk9P+P0un/AAAALAAAACkAAAAlAAAAIwAAACAAAAAcAAAAGQAAABYA - AAASAAAADAAAAAYAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAod31/53s+/+N3vz/ler7/5Xq+/+U - 6vv/k+r7/5Lp+v+Q6fr/j+j6/47o+v+N5/r/jOf6/4vm+v+K5vn/ieX5/4fk+P+Rt8b/xcPA/6ihnf91 - dHb/dcrk/4Hi+P+A4vj/dc7x/1/Q7f+b4/T//////5nk9P+P0+r/AAAAJQAAACIAAAAfAAAAHAAAABkA - AAAWAAAAEwAAABAAAAANAAAACwAAAAcAAAAEAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAo971/5/t/P+O - 3vz/l+v7/5fr+/+V6/v/lOr7/5Pq+/+S6fv/ken6/5Do+v+P6Pr/juf6/4zn+v+L5vr/iub5/4jk+P90 - sMv/ob7G/6aclv+ozd3/ftj0/4Pj+P+C4vj/ds/x/2DS7f+c4/T//////5zl9P+Q1Or/AAAAHwAAABwA - AAAZAAAAFQAAABMAAAAQAAAADQAAAAsAAAAIAAAABgAAAAQAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAA - AAAApN71/6Dt/P+O3/z/mOv8/5js+/+X6/v/luv7/5Xq+/+U6vv/k+n7/5Hp+v+Q6fr/j+j6/47o+v+N - 5/r/jOf6/4rl+f+Vrbf/s5+V/5mkqf9XjaX/eNLt/4Tj+f+D4/j/d8/x/2PT7v+e5PT//////57m9P+Q - 1ev/AAAAGQAAABYAAAASAAAAEAAAAA0AAAALAAAACAAAAAYAAAAEAAAAAgAAAAEAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAApt/1/6Lu/P+P3/z/muz8/5rt/P+Z7Pv/l+z7/5br+/+V6/v/lOr7/5Pq+/+S - 6fr/ken6/5Do+v+P6Pr/jef6/4vm+v9/udH/qc/b/7Oek/+Rmp7/d9Dr/4bk+f+F5Pn/ec/y/2bU7v+X - 4vT/0fL6/5Xj9P+R1uz/AAAAEwAAABAAAAANAAAACgAAAAgAAAAGAAAABAAAAAIAAAABAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqN/1/6Pv/P+P3/z/m+38/5vt/P+a7fz/mez8/5js+/+X - 6/v/luv7/5Xq+/+T6vv/kun7/5Hp+v+Q6Pr/j+j6/47n+v+Er8H/qKek/4ugqP+Cz/D/gdv3/4fl+f+G - 5Pn/etDy/3DY7/+A2/L/ieHy/5fl9P+R1+z/AAAADQAAAAoAAAAIAAAABgAAAAQAAAACAAAAAQAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqeD1/6Tv/P+P3/z/ne38/53u/P+c - 7fz/m+38/5rs/P+Y7Pv/l+v7/5br+/+V6/v/lOr7/5Pq+/+S6fr/ken6/4/o+v+fu8X/yLKq/6yjnf9i - dH7/cMXh/4nl+f+L5vn/e9Dy/4bd8v+a5PT/mOL0/5je8P+O0+aaAAAACAAAAAYAAAAEAAAAAgAAAAEA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAq+H2/6Xw/f+P - 3/z/nu78/57u/P+d7vz/nO78/5vt/P+a7fz/mez7/5js+/+X6/v/luv7/5Tq+/+T6vv/kun7/5Hp+v92 - u9X/qcrV/6Cemv+Ou87/fdTy/4rm+f+S6Pn/g9j0/3zQ8v+H2vT/lt3v/4vO4VwAAAAGAAAABAAAAAIA - AAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAArOH2/6fw/f+R3/z/oO/9/6Dv/P+f7/z/nu78/53u/P+c7fz/mu38/5ns/P+Y7Pv/l+v7/5br+/+V - 6vv/lOr7/5Pq+/+fvMX/yK6i/5Kor/9fp8b/fdTw/4zn+v+L5vr/jOb5/4vj+P9/0/L/lNzv/2aYpg0A - AAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAruL2/6jx/f+R4Pz/oe/9/6Hw/f+g7/3/n+/8/57u/P+d7vz/nO38/5vt/P+a - 7fz/mez7/5fr+/+W6/v/lev7/5Pp+/+Kwdn/n8jX/7aelP+BiY//c8jm/43n+v+M5/r/i+b6/5bp+v98 - 0fL/lNzv/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAr+L2/6ry/f+S4Pz/o/D9/6Pw/f+i8P3/oe/9/6Dv/P+f - 7/z/ne78/5zu/P+b7fz/mu38/5ns/P+Y7Pv/l+v7/5Lo+/+Lwtr/rK6t/5ehpf9rp8T/dc70/4/o+v+O - 6Pr/kej6/6Ts+/990fL/lN3w/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAseP2/6vy/f+S4fz/pPD9/6Tx/f+j - 8P3/ovD9/6Hw/f+g7/z/n+/8/57u/P+d7vz/nO38/5vt/P+a7Pz/mOz7/4fi/f+rt7n/tqCW/6OWjv+H - bmP/WX2P/5Dn+v+Q6Pr/k+n6/7Pv/P9/0vL/ld7x/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsuP2/6zz/v+S - 4fz/pfH9/6Xx/f+k8f3/o/H9/6Lw/f+h8P3/oO/9/5/v/P+e7/z/ne78/5zu/P+b7fz/l+r8/4yzvv+O - fnj/f3Js/5CHg//54dH/f2pk/4/k9/+R6fr/len6/8j0/f+A0vL/lt/y/wAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAs+P2/6zz/v+T4f3/p/H+/6fy/f+m8v3/pfH9/6Tx/f+j8P3/ovD9/6Hw/f+g7/z/n+/8/57u/P+b - 7Pz/hNDq/6SBb/9JOzr/TU5S/5CIhv/gx7L/aFdK/4/k9f+T6vv/nOv6/8/1/f+C0/L/luHz/wAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAteT2/670/v+T4f3/qPL+/6jz/v+n8v3/pvL9/6Xx/f+k8f3/o/H9/6Lw/f+h - 8P3/oO/9/5/v/P+b7Pz/hcvg/4RjWf8bLDX/fLLL/6ehm//WvKT/XlBI/5Hl9v+U6vv/ou38/8z0/f+D - 0/L/l+Lz/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtuT2/6/0/v+U4v3/qPL+/6nz/v+o8/7/p/L+/6fy/f+m - 8v3/pfH9/6Tx/f+j8P3/ovD9/6Hv/f+f7vz/ldDg/8Kolv+BenX/eoWI/7Gciv/Ut6D/WlBL/5Tm9/+W - 6/v/o+38/9H2/v+F1PP/l+P0/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAt+X2/7D0/v+U4v3/qfP+/6r0/v+q - 8/7/qfP+/6jz/v+n8v3/pvL9/6Xx/f+k8f3/o/H9/6Lw/f+h8P3/l9zw/824o//eybj/z7ik/7ufiP/K - sJ3/Rj4//5bo+P+X7Pv/pe78/9n4/v+G1PP/mOT1/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuOX3/7H0/v+V - 4v3/qvP+/6z0/v+r9P7/qvP+/6nz/v+o8/7/p/L+/6by/f+l8v3/pfH9/6Tx/f+j8P3/leb7/8ixnP/P - u6n/wq6c/8Gslv/Tu6n/OTU4/5fq+f+Z7Pz/sfH8/9n4/f+I1fP/meX2/wAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAueb3/7L0//+V4v3/qvT+/631/v+s9P7/q/T+/6r0/v+p8/7/qfP+/6jy/v+n8v3/pvL9/6Xx/f+k - 8f3/lOn+/8y2ov/ay73/y7us/868qP/gy7r/Ozs+/5nq+v+b7fz/tfH9/9f4/f+K1fP/meb2/wAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAuub3/7P1//+W4v3/q/T+/671/v+t9f7/rPT+/6v0/v+r9P7/qvP+/6nz/v+o - 8/7/p/L9/6by/f+l8f3/kur+/9TCs//l2Mz/18rB/9fHuP/q1Mf/QEJG/5rs+v+c7vz/tfL9/9b4/f+L - 1vP/muf3/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAu+b3/7P1//+W4v3/rfX//6/1//+u9f7/rfX+/631/v+s - 9P7/q/T+/6r0/v+p8/7/qPP+/6jy/v+n8v3/ne79/8fEvv/t3tT/5NrU/+jcz//y3NL/QURK/5zs+/+e - 7vz/v/T9/+P6/v+N1vP/muj4/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvOb3/7T2//+W4v3/rvX//7D2//+v - 9v//rvX+/671/v+t9f7/rPT+/6v0/v+q9P7/qvP+/6nz/v+o8/7/p/L9/67Iyf/o2Mv/7Ofk//Pr4//6 - 5+D/Qk1V/53t/P+f7/z/zvb9/+j7/v+P1/P/m+n4/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvef3/7X2//+W - 4/3/r/X//7D2//+w9v//r/b//6/1//+u9f7/rfX+/6z0/v+s9P7/q/T+/6rz/v+p8/7/qPP+/53V4f/f - yLb/9/Pw////+f//8er/Rlli/5/u/P+h7/3/z/f9/+j7/v+Q2PP/m+r5/wAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAvuf3/7X2//+X4/3/sPb//7H2//+x9v//sPb//6/2//+v9f//rvX+/631/v+t9f7/rPT+/6v0/v+q - 9P7/qvP+/5nk9f/awav/8+7p//Tz8f/86+b/TGJt/6Du/P+i8P3/z/f+/+n7/v+S2PT/nOv6/wAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+x9///sfb//7D2//+w9v//r/b//671/v+u - 9f7/rfX+/6z0/v+r9P7/q/T+/6Xw/f/StJ//Y1pZ/1NQTf/z3dj/eaW3/6Hw/f+j8f3/1fj+/+b7/v+U - 2fT/nOz6/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+y9///svf//7H2//+x - 9v//sPb//6/2//+v9f//rvX+/631/v+t9f7/rPT+/6v0/v/Pspz/npSM/4B4cv/VycX/g4+U/6Hu+/+l - 8f3/2/n+/+T7/v+W2fT/ne37/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+y - 9///svf//7L3//+x9///sfb//7D2//+w9v//r/b//671/v+t9f7/rfX+/6fv+//Gqpv/wLq0/3xzcP+l - mZP/sJWL/7/s9f/s/P///////+T7/v+X2vT/ne77/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X - 4/3/sPb//7L3//+y9///svf//7L3//+y9///sff//7H2//+w9v//sPb//6/2//+v9f//r/X+/7fz/f/1 - 5dz/0c7L/2heWP+rnJD/vaed/9ru8//d+v//0fj+/7/2/v+Z2vT/nu/8/wAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAvuf3/7X2//+X4/3/sPb//7L3//+y9///svf//7L3//+y9///svf//7L3//+x9v//sfb//7D2//+v - 9v//uff//733/v+79Pz/5dzW/36CfP+hr7T/fJun/57h8v+k5vn/oeH3/57e9f+d4/f/nu/8lgAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sfb//7L3//+y9///svf//7P3//+z9///tPf//7P3//+y - 9///sff//7H1//+x8v3/sPD8/6/s+/+u6fn/oaqu/15xef9kjp3/f7jL9p7f896h5vm5n+j6hp7q+0Ge - 8P0PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7T3//+l7v7/svf//7L3//+y9///svf//7L2//+0 - 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 - AAAAAAAAAAAAAAAAAAAAis3lMIrO54CI0OvKhdDs94LS8P990vL/fNX0/3vY9f962/X/tsPH/5eXl/9z - pLb/d973/3HN8f9ayt//v6mI/4TW7P9torWcAAAAQAAAADgAAAAoAAAAEgAAAAQAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAACN0epejtLszY7T7viN1fH/itbz/4bZ9f+E3Pb/guD3/4Hi+P+A4fj/fuH4/33f9/+k - q67/kpCR/4Cvwf943vf/cc3x/2HN3//ix6T/htfs/3KpvaQAAAA8AAAAOAAAADEAAAAfAAAACwAAAAEA - AAAAAAAAAAAAAAAAAAAAmNnysJrd9f+T3vb/juH4/4zk+P+J5fn/iOX5/4bk+f+F5Pn/g+P4/4Li+P+A - 4vj/f+D3/7jEyf+UlJT/b6Cx/3re9/9wzfH/Y9Ts//X8/v+H2O3/dK3BoQAAADUAAAAxAAAALQAAACQA - AAAWAAAACAAAAAIAAAAAAAAAAAAAAACd3PT/ouv7/5Do+v+O6Pr/jef6/4vm+v+K5vn/iOX5/4fk+f+F - 5Pn/hOP5/4Lj+P+B4ff/m56h/46Sk/99uc7/fN/3/3HO8f9l1Oz/9fz+/4ja7f91scWeAAAALQAAACgA - AAAkAAAAHwAAABgAAAAPAAAABwAAAAIAAAAAAAAAAKDd9f+k7Pz/iuD7/5Hp+v+P6Pr/juf6/4zn+v+L - 5vn/ieX5/4jl+f+G5Pn/heT5/4Pi+P+/y9H/lpeX/2eZq/9+4Pj/c87x/2vW7f/1/P7/itru/3i3y5oA - AAAkAAAAHwAAABsAAAAWAAAAEgAAAA0AAAAIAAAABAAAAAEAAAAAot71/6Xs/P+L4Pz/k+r7/5Lp+v+Q - 6Pr/juj6/43n+v+L5vr/iub5/4jl+f+H5Pn/heP4/5SXmf+OkJL/hL7S/4Dh+P92zvH/cdfu//b8/v+M - 2+7/fL3QlgAAABsAAAAWAAAAEgAAAA4AAAAKAAAABgAAAAMAAAABAAAAAAAAAACl3vX/p+38/4zh/P+V - 6/v/lOr7/5Lp+/+R6fr/j+j6/47n+v+M5/r/i+b5/4nl+f+I5Pn/w9HX/5SZmf9mlqj/guL4/3fP8f92 - 2e//7/v9/47c7v9/w9iRAAAAEQAAAA0AAAAKAAAABgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAKff9f+p - 7vz/jeH8/5js+/+W6/v/ler7/5Pq+/+S6fr/kOj6/47o+v+N5/r/i+b6/4rm+f+RkZP/jZCS/4XA1v+F - 4/n/edDy/2zX7v9x2e//j9zu/4HH3HwAAAAKAAAABgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAqeD1/6ru/P+P4vz/mu38/5ns+/+X6/v/lev7/5Tq+/+S6fv/ken6/4/o+v+O5/r/jOf6/8XU2v+W - mpz/aJao/47m+f991PP/fNfx/5Pe8P+Fz+ObW42bEgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAACr4fb/rO/8/5Di/P+c7vz/m+38/5ns/P+Y7Pv/luv7/5Xq+/+T6vv/kun6/5Do+v+O - 6Pr/ko+R/4uPkf+Dwdj/n+r6/4bh+P9/0/L/jNbr/0xxewYAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAK7h9v+t8P3/keP8/5/v/P+d7vz/nO38/5rt/P+Z7Pv/l+v7/5Xr+/+U - 6vv/kun7/5Hp+v/F2OD/lZmZ/2uaq/+T6Pn/kef5/3zR8v+I1uv/AAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsOL2/6/x/f+R4/z/oe/9/5/v/P+e7vz/nO78/5vt/P+Z - 7Pz/mOz7/5br+/+V6vv/kun7/6G8xv+iiYH/kcXY/4/o+v+d6vv/ftHy/4fX6/8AAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACy4/b/sfL9/5Pk/P+j8P3/ofD9/6Dv/P+f - 7/z/ne78/5zt/P+a7fz/mez7/5fr+/+Ivc//l4h//7Wajf93iJH/huH6/6zt+/+A0vL/h9js/wAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALTk9v+x8v7/lOT8/6Xx/f+k - 8f3/ovD9/6Hv/f+f7/z/nu78/5zu/P+b7fz/mez8/3BPQf9lhJb/va6i/3ptZf9zz+r/uvH8/4LT8v+H - 2ez/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAteT2/7Py/v+V - 5f3/p/L9/6by/f+k8f3/o/D9/6Hw/f+g7/z/n+/8/53u/P+c7fz/k21b/5+goP+9oIn/aWpq/33b9//I - 9P3/hNPy/4ba7f8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC3 - 5fb/tfP+/5bl/f+p8/7/p/L+/6by/f+l8f3/pPH9/6Lw/f+h7/3/n+/8/57u/P/lx7P/1bab/7aOcv9h - aXD/f935/9X3/f+H1PP/htzu/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAALnl9/+39P7/l+X9/6r0/v+p8/7/qPP+/6fy/f+m8v3/pPH9/6Pw/f+h8P3/oO/8/93Ryv/r - y7T/yquV/2Jwe/9/4Pv/5Pr+/4nV8/+G3e7/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAuub3/7f0/v+Y5v3/rPT+/6v0/v+q8/7/qfP+/6fy/v+m8v3/pfH9/6Tx/f+i - 8P3/2OHj///x4//izb3/a3yI/4Hh/f/v/P//i9bz/4Xe7/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC85vf/uPT//5nm/f+u9f7/rfX+/6z0/v+q9P7/qfP+/6jz/v+n - 8v3/pvL9/6Tx/f/G3+b////3//vv5v9pgY7/g+T+//X9//+O1/P/hd/w/wAAAAAAAAAAAAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL3n9/+59P//meb9/6/2//+u9f7/rfX+/6z0/v+r - 9P7/qvP+/6nz/v+n8v7/pvL9/7fe6f/Zu6//t6yp/36Zp/+E6P7/+v7//5DX8/+F4PD/AAAAAAAAAAAA - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7r1//+a5v3/sPb//6/2//+v - 9f//rvX+/631/v+s9P7/qvT+/6nz/v+o8/7/pOX1/7iWhv9xY17/cX+K/4Hn/v/9////ktj0/4Xg8f8A - AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC+5/f/uvX//5rm/f+x - 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 - AwAAgAcAAIAHAACABwAAgAcAAIAHAAD//wAA - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAoAMDAQAAEABABoBgAApgAAACAgEAABAAQA6AIAAA4HAAAQEBAAAQAEACgBAAD2CQAAMDAAAAEA + CACoDgAAHgsAACAgAAABAAgAqAgAAMYZAAAQEAAAAQAIAGgFAABuIgAAAAAAAAEAIABJhgAA1icAADAw + AAABACAAqCUAAB+uAAAgIAAAAQAgAKgQAADH0wAAEBAAAAEAIABoBAAAb+QAACgAAAAwAAAAYAAAAAEA + BAAAAAAAgAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDA + wAAAAP8AAP8AAAD//wD/AAAA/wD/AP//AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIuIAAAAAAAAAAAAAAAAAAAAAA + AAAAB4uLiLgAAAAAAAAAAAAAAAAAAAAAAAiLiHeIuIuIgAAAAAAAAAAAAAAAAAAIi4uIiHi4uLiLgAAA + AAAAAAAAAAAACIi4iL+4t4e4i4iIgAAAAAAAAAAAAAiIi4v7i4iLiHeLiLiIsAAAAAAAAAAACIi4v4iL + +Li/eIiLi4iIgAAAAAAAAAAACL+Ii4v4uIi4h3OIuLj4sAAAAAAAAAAACIuL+IuL+4v7iIi4i4j4gAAA + AAAAAAAACIiIuIiIiIiIt3iLiLj7gAAAAAAAAAAACLi/i4uLi4uLiIe4uLj4gAAAAAAAAAAACPiL+IiI + iL+IiHiIi4j7gAAAAAAAAAAACLiIuLi4v4uLh4O4uLj/gAAAAAAAAAAACPuIiIiIi/i/iIeIi4iLgAAA + AAAAAAAACIi/v7+4iL+Lh3i4uLi/gAAAAAAAAAAACL+IiIiLiIuIiIOIiIiL8AAAAAAAAAAAD4v7+4v4 + i/i4uHi4uLiAAAAAAAAAAAAACIiIiIiL+L+IiIeL+/uAAAAAAAAAAAAACIuL+/v4v4uLiIe4iIiwAAAA + AAAAAAAACIiPiIi/i/iIiHuIuLiAAAAAAAAAAAAACIv7+/iIiL+4h4V4iPvwAAAAAAAAAAAACIiIiL+/ + v4iLd397i/iwAAAAAAAAAAAACIv7+IiIiL+3R3hoiPuAAAAAAAAAAAAACIiIi/v7+IiHGHh4v4iAAAAA + AAAAAAAACIv7+PiIv7+4d3hoi/vwAAAAAAAAAAAACIiPi/v4iIiIiIgIv/iAAAAAAAAAAAAAD4v7+I+/ + v7+IiOhYiPuAAAAAAAAAAAAACIiPiL+I+Ii4iIgov/iAAAAAAAAAAAAACIv7+PiL+/iIiIhYiIuAAAAA + AAAAAAAAD4iPv7+Ij7+4+I8oiPiAAAAAAAAAAAAACIv4+Ii/iIj4j/h4v/uAAAAAAAAAAAAACIiL+/j7 + +/v4j/84+PiAAAAAAAAAAAAAD4v/j4v/j4+/j494v/vwAAAAAAAAAAAACIiIv4+L+/iIhnh4j/iwAAAA + AAAAAAAAD4v4+L+Pj7+/h3h4v/iAAAAAAAAAAAAACIiIv/i/v4+IiHeP//vwAAAAAAAAAAAAD4v4+L/4 + +Iv4+HeI+PiwAAAAAAAAAAAACIiL+Pi/v4+IiHh4i4jwAAAAAAAAAAAAD4v/i/j4+L+/iDeL/wAAAAAA + AAAAAAAACIiL/4v4v4+IgAAAAAAAAAAAAAAAAAAACIiPiI+P8AAAAAAAAAAAAAAAAAAAAAAAD4iIAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////////AAD///////8AAP// + /////wAA////////AAD///////8AAP///h///wAA///gD///AAD//gAB//8AAP/gAAH//wAA/gAAAf// + AADgAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAA + AAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// + AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAA + AAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// + AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAA///8AAIAAH////wAAgAf/////AACD//////8AAP// + /////wAAKAAAACAAAABAAAAAAQAEAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAIAAAACA + gACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8AAAD/AP8A//8AAP///wAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAh4uIgAAAAAAAAAAAAAAI + i4eLi7gAAAAAAAAAAIiLi4iHeLh4gAAAAAAACIi4v4i4h7iLiIAAAAAACIuL+IuLi4h7iPuAAAAAAAiI + iLi/v4iHiLv4gAAAAAAIuL+IiIuLhziI+4AAAAAACPiLi4uIv3iLuPiAAAAAAAi4iIiIv4uHeIv4gAAA + AAAPi4uLi/uIh4uLiwAAAAAACIiIiIiIuIg4iIgAAAAAAAiL+/uLiIuHi4uAAAAAAAAIiIiIiIv4iHiL + gAAAAAAACIv7+/v4uIeL+LAAAAAAAAiIiIiIv4t4eLiAAAAAAAAIi/v7+Iv3eHv4sAAAAAAACIiIiL+I + h3d4iIAAAAAAAA+L+/iL+/iHeIuAAAAAAAAIiI+/iIiIiHv4sAAAAAAACIv4iL+/v/h4+IAAAAAAAA+I + iL/4iPj/ePuAAAAAAAAIi/j4v4v4iHv4sAAAAAAAD4iL+IiIi4Z4+IAAAAAAAAiL/7+L+I+FePuAAAAA + AAAPiIj4j7+/h4j4gAAAAAAACIv4v7///4eIi/AAAAAAAA+PiPj4iIj3ewAAAAAAAAAIi/iIiIAAAAAA + AAAAAAAAAP+AAAAAAAAAAAAAAAAAAP/////////////////8B///4AP//AAB/+AAAf+AAAH/gAAB/4AA + Af+AAAH/gAAB/4AAA/+AAAP/gAAH/4AAB/+AAAf/gAAH/4AAB/+AAAf/gAAH/4AAB/+AAAf/gAAH/4AA + B/+AAAf/gAAH/4AAB/+AAAf/gAA//4Af///H////KAAAABAAAAAgAAAAAQAEAAAAAACAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAIAAAIAAAACAgACAAAAAgACAAICAAACAgIAAwMDAAAAA/wAA/wAAAP//AP8A + AAD/AP8A//8AAP///wADMzMzMzMzAAO7u7t4s7swA7u7u4ezvDADu7u7eLO8MAO7u7uHs78wA7u7u3iz + vzADu7u7h7O/MAO7u7t4uzswA7u7u4e7swADu7u7eLswAAO7u7uHuzAAA7u7u3i7MAADu7u7d7swAAO7 + u7t3uzAAAzMzMzMzAAAAAAAAAAAAAIADAACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAMAAIAH + AACABwAAgAcAAIAHAACABwAAgA8AAP//AAAoAAAAMAAAAGAAAAABAAgAAAAAAAAJAAAAAAAAAAAAAAAB + AAAAAQAAAAAAABssNQA5NTgAOzs+AEY+PwBJOzoAQEJGAEFESgBTUE0AXFBJAEJNVQBNTlIAaFdKAGNa + WQBoXlgARlliAExibQBecXkAWXJ/AH9qZAB/cmwAYnR+AHV0dgB8c3AAhGNZAIduYwCAeXMAjn54AH6C + fACGgH4ApIFvAP+hYwD/tX8AUXWGAFl9jwB6hYgAZI6dAFeNpQB8m6cAep+tAHmltwB2p7wAeKe7AF+n + xgBrp8QAaq7MAHKtxQB0rcQAdLDLAHqzzAB2u9UAfrnSAHK72QBtxd4AWs/sAFzQ7ABsxekAcMbhAHTJ + 5QB3z+oAcs/vAGLT7QBs1+8AdNHrAHjS7QBy2e8Acc3xAHXO8QB1zvQAeM7xAHfQ8QB31PAAdNf1AHzS + 8QB12/YAd973AHrd9QB84PcAfuD4AIGJjwCQh4MAkIiGAJ6UjACDj5QAhZKXAIyYngCSkpIAkZqeAKqR + gwCjlo4AsJWLALGcigC7n4gApZqUAKuckACgnpoAs56TALKflgC1npQApqCcAKuinQC2oJYAu6WbAIud + pQCInKgAi6CoAJehpQCZpKkAkqivAJWttwCNsbwAnbC3AKinpAChqq4AqqyrALGurwChr7QAq7e5AMCf + kgDBqpYAxKybAMuxnADStJ8AyK6iAMy2ogDOuKMAyLKqAM27qQDUt6AA1rykANO7qQDAurQAncS/ANrB + qwDHxL4A1MKzAN/ItgDXx7gA3Mq6AODHsgDgy7oAhK/BAIO6zACOu84AkbfGAJi1wQCfu8UAob7GAKG+ + yACbycYAisPaAJ/I1wCVxNgAmMnbAJvK3QCc0tMArcPLAK7IyQCpytUApsvcAKjO3ACxz9oAhcvgAIzO + 5gCEzusAhdfnAInY5ACE0OoAjtHoAJXQ4ACd1eEAldnjAJDV6wCU3O8Ags/wAIHS8gCF0vEAhtTyAIvV + 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 + AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAAAAH//wAAgAAAAf//AACAAAAB//8AAIAA + AAH//wAAgAAAAf//AACAAAAB//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// + AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAA + AAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB/// + AACAAAAH//8AAIAAAAf//wAAgAAAP///AACAAB////8AAIAH/////wAAg///////AAD///////8AACgA + AAAgAAAAQAAAAAEACAAAAAAAAAQAAAAAAAAAAAAAAAEAAAABAAAAAAAAWEpEAHBPQQBxY14AaWpqAHpt + ZQBhaXAAYnB7AJNtWwCFdWwAnYF5AJeIfwC2jnIAa3yIAHF/igBpgY4AZYSWAHeIkQBmlqgAaJaoAGeZ + qwBrmqsAfpmnAHecqwBvoLEAc6S2AHujswB9q7sAarHNAH25zgBayt8AYc3fAE/N6ABnzegAZ87vAHbL + 5QBzz+oAec3tAGPU7ABl1OwAa9btAGzX7gBx1+4AeNDrAHHZ7wB22e8Acc3xAHbO8QB50PIAfdHyAHzV + 8gB81fQAdNj1AHfe9wB62fUAfdv3AHne9wB83/cAf935AH/g9wB+4PkAj4WCAIuPkQCSj5EAjZCSAI+W + mACRkJIAlZaWAJSXmQCUmZkAlpqcAKKJgQC4loYAtZqNAKOenAC9oIkAv6mIAJueoQCIo6sAn6CgAJOl + rgCkq64Ava6iALesqQDKq5UA1babAM2zpgDZu68A5r+yAOLHpADlx7MA68u0AOLNvQCAr8EAiL3PAIS+ + 0gChvMYAhMDVAIPB2ACRxdgAtsPHALjEyQClxtEApMfUAKfL1wCvydMAqc7bAL/L0QCt098AtdDZALLU + 3QCIzeYAhM/rAIfX6wCF1uwAiNbrAIzW6wCI0ewAhtjsAIXd7gCJ2u0AjNvuAI7c7gCW0eYAn9PiAJHU + 7gCf1+4AgdLxAITT8gCH1PMAitXzAI3W8gCF3/AAhtn1AITc9gCQ1/MAk97wAJLY9ACW2fQAk972AJXf + 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 + 9QB32/AAddzxAHjd8QB93vEAeeDyAH7g8gB94vQAg4WGAKKQgQC5lYcAqpyRAKOqpwCsrq4Ap7K1AKmy + tADKuasA78y7AIm1xwCjy98AgMvpAITO6wCE1egAh9DtAJPd8gCi0uYApt33AIDh8wCG4fIAgeL0AILl + 9QCG5PQAiOHzAIjl9ACH6PYAiej3AI3o9gCN6vgAkOf2AJDp9gCU6/cAkuv4AJHt+QCW7vkAmO74AJbw + +gCa8vsAnPH6AJ/0/AC75/cAven9AKDx+gCg9PwApPX8AKj2/ACn+P0Aqvj9AK35/QCx+v4AtPv/ALj8 + /wDu3dgA7uriAOzs7AD/+esA///+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wAACAgICAgICAgICAgHEwAAAAhLRT8o + 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 + CCMDcH2jtx6+NYFhCy2joCWOh//63332C8DfAOq3HrnfCIP5B65cqd0HnNQ08cbZmXxkECZMxso6CoXU + 8lGzX+ggpMHaukNlvcqhA+OE5JBGDk3TEVLih4rFq3UunjkFii8MyLvPNTrf/osFuzFscoSXNrLekT6X + +lfeOaeNzd5StAvT9wkhTyLkA5omXzMzk2d8zKJYNEBBveHx/Ol11pcWnpiaObg+NV2eKxWNY7qhbE36 + OA3fOX/ufPPpb30tAN703g9dfWJvb/H6xcgAjLCr+JV3zrUq5Awgb1jFcmnq+ANSM14hhHaLUmHOc+ve + +tKFL6xvGH8FYd3UnOWc1dQnpuZvEVK7eWXxwjRRJd+H3/uhq8+8oDf0EsfIAIywp/iVd84ZRBV2ZaJK + OwlU3vuhq1fe/dAdAsDQXC1vbSg6tfzaez90dTsj+kYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGE + EUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGE + EUYYYYQRRhhhhBFGGGGEEUYYYYQRRhhhhBFGGGGEEa4Z/P8GlX/ISWG3BgAAAABJRU5ErkJggigAAAAw + AAAAYAAAAAEAIAAAAAAAgCUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARz87AW+NmgFx + zfEYds3ubXXM7sNzzPD1fcvq8IbE3MFxpblkAAAAHAAAABkAAAASAAAACQAAAAMAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHbO8Q9t + udZtXIqb0HGrw/hsxen/cs/v/3TX9f912/b/dc/x/5De8P+BvdTJAAAAOAAAADYAAAAwAAAAJAAAABQA + AAAHAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfdHyBn/P711+ + z++xe8/w63fQ8f+YtcH/tJ6U/4WSl/9Zcn//bcXe/3fe9/933vf/cc3x/3nc8P93zOb/dsnk/3O71NRe + ipqBAAAAOwAAAC8AAAAdAAAADAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhtHvWITR76uC + 0fDnftHy/33W9P992fX/ft33/37h+P9+udP/lcTY/7mkmf+xrq//dNHr/3je9/943vf/cc3x/2zX7/90 + 2u//idjk/4XX5/+BvdTQAAAAQAAAAD8AAAA2AAAAJgAAABQAAAAGAAAAAQAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACM0+5Ii9Tvp4nT8OWH + 1PL+hdj0/4Tb9f+D3vf/g+P4/4Li+P+B4vj/gOL4/3/h+P92p7z/qpGD/4icqP9qrsz/c9Lt/3rf9/95 + 3/f/cc3x/2LT7f+dxL///6Fj/53Q0P+Mzub/AAAAQAAAAEAAAAA/AAAAOQAAACsAAAAXAAAACAAAAAEA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJLV7j6V1/Glkdbx4pDW8v2O + 2vT/jN32/4rh9/+J5Pn/iOX5/4bk+f+F5Pn/hOP5/4Pj+P+C4/j/geL4/4Dh+P+hvsj/xsLA/66kn/+G + gH7/ccfh/3vf9/963/f/cc3x/13Q7P+bycb//7V//5vU1v+Nz+f/AAAAPwAAAD0AAAA7AAAAOQAAADQA + AAAlAAAADwAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAltfw1Jfc9f+b + 4Pj/kOL4/4/n+v+N5/r/jOf6/4vm+v+K5vn/ieX5/4jl+f+H5fn/huT5/4Xk+f+E4/n/g+P4/4Lh+P9y + rcX/nbC3/6Wgnv+my9z/d9Tw/3zg9/984Pf/cs3x/1vQ7P+V2eP/6u/p/5nk9P+Nz+f/AAAAOwAAADkA + AAA2AAAANAAAADEAAAAsAAAAGQAAAAYAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAnNv0/5jr+/+S4vz/kOj6/5Do+v+P6Pr/juj6/43n+v+M5/r/i+b5/4rm+f+I5fn/h+X5/4bk+f+F + 5Pn/hOP5/4Li+P+PsLr/wJ+S/4yYnv9RdYb/csrl/33g+P994Pf/c83x/1rP7P+Y4vP//v7+/5jk9P+O + 0Oj/AAAANgAAADQAAAAxAAAALgAAACwAAAApAAAAHwAAABEAAAAGAAAAAQAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAndz0/5vs+/+M3vz/kun7/5Lp+v+R6fr/kOj6/47o+v+N5/r/jOf6/4vm+v+K + 5vn/ieX5/4jl+f+H5Pn/huT5/4Tj+P94tM7/sc/a/7Gfl/+pqqr/d8/q/3/h+P9+4fj/c87x/1vQ7P+Z + 4vP//////5jj9P+O0ej/AAAAMQAAAC4AAAArAAAAKQAAACYAAAAiAAAAHwAAABgAAAAPAAAABwAAAAIA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAn931/5zs+/+M3vz/lOn7/5Pq+/+S6fv/ken6/5Do+v+P + 6Pr/juf6/43n+v+M5vr/iub5/4nm+f+I5fn/h+X5/4Xj+P94p7v/kpKS/4udpf9yu9n/edXx/4Di+P9/ + 4fj/dM7x/13Q7f+Z4/P//////5nk9P+P0un/AAAALAAAACkAAAAlAAAAIwAAACAAAAAcAAAAGQAAABYA + AAASAAAADAAAAAYAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAod31/53s+/+N3vz/ler7/5Xq+/+U + 6vv/k+r7/5Lp+v+Q6fr/j+j6/47o+v+N5/r/jOf6/4vm+v+K5vn/ieX5/4fk+P+Rt8b/xcPA/6ihnf91 + dHb/dcrk/4Hi+P+A4vj/dc7x/1/Q7f+b4/T//////5nk9P+P0+r/AAAAJQAAACIAAAAfAAAAHAAAABkA + AAAWAAAAEwAAABAAAAANAAAACwAAAAcAAAAEAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAo971/5/t/P+O + 3vz/l+v7/5fr+/+V6/v/lOr7/5Pq+/+S6fv/ken6/5Do+v+P6Pr/juf6/4zn+v+L5vr/iub5/4jk+P90 + sMv/ob7G/6aclv+ozd3/ftj0/4Pj+P+C4vj/ds/x/2DS7f+c4/T//////5zl9P+Q1Or/AAAAHwAAABwA + AAAZAAAAFQAAABMAAAAQAAAADQAAAAsAAAAIAAAABgAAAAQAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAA + AAAApN71/6Dt/P+O3/z/mOv8/5js+/+X6/v/luv7/5Xq+/+U6vv/k+n7/5Hp+v+Q6fr/j+j6/47o+v+N + 5/r/jOf6/4rl+f+Vrbf/s5+V/5mkqf9XjaX/eNLt/4Tj+f+D4/j/d8/x/2PT7v+e5PT//////57m9P+Q + 1ev/AAAAGQAAABYAAAASAAAAEAAAAA0AAAALAAAACAAAAAYAAAAEAAAAAgAAAAEAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAApt/1/6Lu/P+P3/z/muz8/5rt/P+Z7Pv/l+z7/5br+/+V6/v/lOr7/5Pq+/+S + 6fr/ken6/5Do+v+P6Pr/jef6/4vm+v9/udH/qc/b/7Oek/+Rmp7/d9Dr/4bk+f+F5Pn/ec/y/2bU7v+X + 4vT/0fL6/5Xj9P+R1uz/AAAAEwAAABAAAAANAAAACgAAAAgAAAAGAAAABAAAAAIAAAABAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqN/1/6Pv/P+P3/z/m+38/5vt/P+a7fz/mez8/5js+/+X + 6/v/luv7/5Xq+/+T6vv/kun7/5Hp+v+Q6Pr/j+j6/47n+v+Er8H/qKek/4ugqP+Cz/D/gdv3/4fl+f+G + 5Pn/etDy/3DY7/+A2/L/ieHy/5fl9P+R1+z/AAAADQAAAAoAAAAIAAAABgAAAAQAAAACAAAAAQAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAqeD1/6Tv/P+P3/z/ne38/53u/P+c + 7fz/m+38/5rs/P+Y7Pv/l+v7/5br+/+V6/v/lOr7/5Pq+/+S6fr/ken6/4/o+v+fu8X/yLKq/6yjnf9i + dH7/cMXh/4nl+f+L5vn/e9Dy/4bd8v+a5PT/mOL0/5je8P+O0+aaAAAACAAAAAYAAAAEAAAAAgAAAAEA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAq+H2/6Xw/f+P + 3/z/nu78/57u/P+d7vz/nO78/5vt/P+a7fz/mez7/5js+/+X6/v/luv7/5Tq+/+T6vv/kun7/5Hp+v92 + u9X/qcrV/6Cemv+Ou87/fdTy/4rm+f+S6Pn/g9j0/3zQ8v+H2vT/lt3v/4vO4VwAAAAGAAAABAAAAAIA + AAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAArOH2/6fw/f+R3/z/oO/9/6Dv/P+f7/z/nu78/53u/P+c7fz/mu38/5ns/P+Y7Pv/l+v7/5br+/+V + 6vv/lOr7/5Pq+/+fvMX/yK6i/5Kor/9fp8b/fdTw/4zn+v+L5vr/jOb5/4vj+P9/0/L/lNzv/2aYpg0A + AAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAruL2/6jx/f+R4Pz/oe/9/6Hw/f+g7/3/n+/8/57u/P+d7vz/nO38/5vt/P+a + 7fz/mez7/5fr+/+W6/v/lev7/5Pp+/+Kwdn/n8jX/7aelP+BiY//c8jm/43n+v+M5/r/i+b6/5bp+v98 + 0fL/lNzv/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAr+L2/6ry/f+S4Pz/o/D9/6Pw/f+i8P3/oe/9/6Dv/P+f + 7/z/ne78/5zu/P+b7fz/mu38/5ns/P+Y7Pv/l+v7/5Lo+/+Lwtr/rK6t/5ehpf9rp8T/dc70/4/o+v+O + 6Pr/kej6/6Ts+/990fL/lN3w/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAseP2/6vy/f+S4fz/pPD9/6Tx/f+j + 8P3/ovD9/6Hw/f+g7/z/n+/8/57u/P+d7vz/nO38/5vt/P+a7Pz/mOz7/4fi/f+rt7n/tqCW/6OWjv+H + bmP/WX2P/5Dn+v+Q6Pr/k+n6/7Pv/P9/0vL/ld7x/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsuP2/6zz/v+S + 4fz/pfH9/6Xx/f+k8f3/o/H9/6Lw/f+h8P3/oO/9/5/v/P+e7/z/ne78/5zu/P+b7fz/l+r8/4yzvv+O + fnj/f3Js/5CHg//54dH/f2pk/4/k9/+R6fr/len6/8j0/f+A0vL/lt/y/wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAs+P2/6zz/v+T4f3/p/H+/6fy/f+m8v3/pfH9/6Tx/f+j8P3/ovD9/6Hw/f+g7/z/n+/8/57u/P+b + 7Pz/hNDq/6SBb/9JOzr/TU5S/5CIhv/gx7L/aFdK/4/k9f+T6vv/nOv6/8/1/f+C0/L/luHz/wAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAteT2/670/v+T4f3/qPL+/6jz/v+n8v3/pvL9/6Xx/f+k8f3/o/H9/6Lw/f+h + 8P3/oO/9/5/v/P+b7Pz/hcvg/4RjWf8bLDX/fLLL/6ehm//WvKT/XlBI/5Hl9v+U6vv/ou38/8z0/f+D + 0/L/l+Lz/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtuT2/6/0/v+U4v3/qPL+/6nz/v+o8/7/p/L+/6fy/f+m + 8v3/pfH9/6Tx/f+j8P3/ovD9/6Hv/f+f7vz/ldDg/8Kolv+BenX/eoWI/7Gciv/Ut6D/WlBL/5Tm9/+W + 6/v/o+38/9H2/v+F1PP/l+P0/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAt+X2/7D0/v+U4v3/qfP+/6r0/v+q + 8/7/qfP+/6jz/v+n8v3/pvL9/6Xx/f+k8f3/o/H9/6Lw/f+h8P3/l9zw/824o//eybj/z7ik/7ufiP/K + sJ3/Rj4//5bo+P+X7Pv/pe78/9n4/v+G1PP/mOT1/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuOX3/7H0/v+V + 4v3/qvP+/6z0/v+r9P7/qvP+/6nz/v+o8/7/p/L+/6by/f+l8v3/pfH9/6Tx/f+j8P3/leb7/8ixnP/P + u6n/wq6c/8Gslv/Tu6n/OTU4/5fq+f+Z7Pz/sfH8/9n4/f+I1fP/meX2/wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAueb3/7L0//+V4v3/qvT+/631/v+s9P7/q/T+/6r0/v+p8/7/qfP+/6jy/v+n8v3/pvL9/6Xx/f+k + 8f3/lOn+/8y2ov/ay73/y7us/868qP/gy7r/Ozs+/5nq+v+b7fz/tfH9/9f4/f+K1fP/meb2/wAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAuub3/7P1//+W4v3/q/T+/671/v+t9f7/rPT+/6v0/v+r9P7/qvP+/6nz/v+o + 8/7/p/L9/6by/f+l8f3/kur+/9TCs//l2Mz/18rB/9fHuP/q1Mf/QEJG/5rs+v+c7vz/tfL9/9b4/f+L + 1vP/muf3/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAu+b3/7P1//+W4v3/rfX//6/1//+u9f7/rfX+/631/v+s + 9P7/q/T+/6r0/v+p8/7/qPP+/6jy/v+n8v3/ne79/8fEvv/t3tT/5NrU/+jcz//y3NL/QURK/5zs+/+e + 7vz/v/T9/+P6/v+N1vP/muj4/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvOb3/7T2//+W4v3/rvX//7D2//+v + 9v//rvX+/671/v+t9f7/rPT+/6v0/v+q9P7/qvP+/6nz/v+o8/7/p/L9/67Iyf/o2Mv/7Ofk//Pr4//6 + 5+D/Qk1V/53t/P+f7/z/zvb9/+j7/v+P1/P/m+n4/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvef3/7X2//+W + 4/3/r/X//7D2//+w9v//r/b//6/1//+u9f7/rfX+/6z0/v+s9P7/q/T+/6rz/v+p8/7/qPP+/53V4f/f + yLb/9/Pw////+f//8er/Rlli/5/u/P+h7/3/z/f9/+j7/v+Q2PP/m+r5/wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAvuf3/7X2//+X4/3/sPb//7H2//+x9v//sPb//6/2//+v9f//rvX+/631/v+t9f7/rPT+/6v0/v+q + 9P7/qvP+/5nk9f/awav/8+7p//Tz8f/86+b/TGJt/6Du/P+i8P3/z/f+/+n7/v+S2PT/nOv6/wAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+x9///sfb//7D2//+w9v//r/b//671/v+u + 9f7/rfX+/6z0/v+r9P7/q/T+/6Xw/f/StJ//Y1pZ/1NQTf/z3dj/eaW3/6Hw/f+j8f3/1fj+/+b7/v+U + 2fT/nOz6/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+y9///svf//7H2//+x + 9v//sPb//6/2//+v9f//rvX+/631/v+t9f7/rPT+/6v0/v/Pspz/npSM/4B4cv/VycX/g4+U/6Hu+/+l + 8f3/2/n+/+T7/v+W2fT/ne37/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sPb//7L3//+y + 9///svf//7L3//+x9///sfb//7D2//+w9v//r/b//671/v+t9f7/rfX+/6fv+//Gqpv/wLq0/3xzcP+l + mZP/sJWL/7/s9f/s/P///////+T7/v+X2vT/ne77/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X + 4/3/sPb//7L3//+y9///svf//7L3//+y9///sff//7H2//+w9v//sPb//6/2//+v9f//r/X+/7fz/f/1 + 5dz/0c7L/2heWP+rnJD/vaed/9ru8//d+v//0fj+/7/2/v+Z2vT/nu/8/wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAvuf3/7X2//+X4/3/sPb//7L3//+y9///svf//7L3//+y9///svf//7L3//+x9v//sfb//7D2//+v + 9v//uff//733/v+79Pz/5dzW/36CfP+hr7T/fJun/57h8v+k5vn/oeH3/57e9f+d4/f/nu/8lgAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAvuf3/7X2//+X4/3/sfb//7L3//+y9///svf//7P3//+z9///tPf//7P3//+y + 9///sff//7H1//+x8v3/sPD8/6/s+/+u6fn/oaqu/15xef9kjp3/f7jL9p7f896h5vm5n+j6hp7q+0Ge + 8P0PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7T3//+l7v7/svf//7L3//+y9///svf//7L2//+0 + 9P3/tfD8/7bu+/+26/r/tuj3/7Xj9f+w5vf7ruf47Kvo+c6o6fmlpur6caDw/S0AAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvOj4/bP2/v+18/3/t/H8/7nu+v+7 + 6/n/ven4/73n9/+46fj2s+n54LDq+sGu6/qXq+v7VZ/x/g8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtOv5wbzo+P24 + 6fjyter51rLr+qyw7Pp+re37QwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAD///////8AAP///////wAA////////AAD///////8AAP///////wAA///gAH//AAD/ + /4AAH/8AAP/4AAAP/wAA/8AAAAP/AAD8AAAAAf8AAMAAAAAB/wAAgAAAAAD/AACAAAAAAH8AAIAAAAAA + PwAAgAAAAAAPAACAAAAAAA8AAIAAAAAADwAAgAAAAAA/AACAAAAAAP8AAIAAAAAD/wAAgAAAAA//AACA + AAAAP/8AAIAAAAD//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf/ + /wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACA + AAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAAf//wAAgAAAB///AACAAAAH//8AAIAAAA// + /wAAgAAH////AACAAf////8AAID//////wAA////////AAAoAAAAIAAAAEAAAAABACAAAAAAAIAQAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFcaW5O3u0ynNSd4Y4AAAAGwAAABYA + AAAOAAAABgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIfH4DKGssKbaJGi5Wmxzfx4zu7/eNDr/3bL5f9o + mq2HIDA2QAAAACoAAAAcAAAADAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAACKzOUwiMznfYTN6seAzuv2es3t/4+WmP+jnpz/e6Oz/3TY9f9n + zu//T83o/2fN6P+Izeb/IDA2TAAAADUAAAAlAAAAEwAAAAYAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAis3lMIrO54CI0OvKhdDs94LS8P990vL/fNX0/3vY9f962/X/tsPH/5eXl/9z + pLb/d973/3HN8f9ayt//v6mI/4TW7P9torWcAAAAQAAAADgAAAAoAAAAEgAAAAQAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAACN0epejtLszY7T7viN1fH/itbz/4bZ9f+E3Pb/guD3/4Hi+P+A4fj/fuH4/33f9/+k + q67/kpCR/4Cvwf943vf/cc3x/2HN3//ix6T/htfs/3KpvaQAAAA8AAAAOAAAADEAAAAfAAAACwAAAAEA + AAAAAAAAAAAAAAAAAAAAmNnysJrd9f+T3vb/juH4/4zk+P+J5fn/iOX5/4bk+f+F5Pn/g+P4/4Li+P+A + 4vj/f+D3/7jEyf+UlJT/b6Cx/3re9/9wzfH/Y9Ts//X8/v+H2O3/dK3BoQAAADUAAAAxAAAALQAAACQA + AAAWAAAACAAAAAIAAAAAAAAAAAAAAACd3PT/ouv7/5Do+v+O6Pr/jef6/4vm+v+K5vn/iOX5/4fk+f+F + 5Pn/hOP5/4Lj+P+B4ff/m56h/46Sk/99uc7/fN/3/3HO8f9l1Oz/9fz+/4ja7f91scWeAAAALQAAACgA + AAAkAAAAHwAAABgAAAAPAAAABwAAAAIAAAAAAAAAAKDd9f+k7Pz/iuD7/5Hp+v+P6Pr/juf6/4zn+v+L + 5vn/ieX5/4jl+f+G5Pn/heT5/4Pi+P+/y9H/lpeX/2eZq/9+4Pj/c87x/2vW7f/1/P7/itru/3i3y5oA + AAAkAAAAHwAAABsAAAAWAAAAEgAAAA0AAAAIAAAABAAAAAEAAAAAot71/6Xs/P+L4Pz/k+r7/5Lp+v+Q + 6Pr/juj6/43n+v+L5vr/iub5/4jl+f+H5Pn/heP4/5SXmf+OkJL/hL7S/4Dh+P92zvH/cdfu//b8/v+M + 2+7/fL3QlgAAABsAAAAWAAAAEgAAAA4AAAAKAAAABgAAAAMAAAABAAAAAAAAAACl3vX/p+38/4zh/P+V + 6/v/lOr7/5Lp+/+R6fr/j+j6/47n+v+M5/r/i+b5/4nl+f+I5Pn/w9HX/5SZmf9mlqj/guL4/3fP8f92 + 2e//7/v9/47c7v9/w9iRAAAAEQAAAA0AAAAKAAAABgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAKff9f+p + 7vz/jeH8/5js+/+W6/v/ler7/5Pq+/+S6fr/kOj6/47o+v+N5/r/i+b6/4rm+f+RkZP/jZCS/4XA1v+F + 4/n/edDy/2zX7v9x2e//j9zu/4HH3HwAAAAKAAAABgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAqeD1/6ru/P+P4vz/mu38/5ns+/+X6/v/lev7/5Tq+/+S6fv/ken6/4/o+v+O5/r/jOf6/8XU2v+W + mpz/aJao/47m+f991PP/fNfx/5Pe8P+Fz+ObW42bEgAAAAMAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAACr4fb/rO/8/5Di/P+c7vz/m+38/5ns/P+Y7Pv/luv7/5Xq+/+T6vv/kun6/5Do+v+O + 6Pr/ko+R/4uPkf+Dwdj/n+r6/4bh+P9/0/L/jNbr/0xxewYAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAK7h9v+t8P3/keP8/5/v/P+d7vz/nO38/5rt/P+Z7Pv/l+v7/5Xr+/+U + 6vv/kun7/5Hp+v/F2OD/lZmZ/2uaq/+T6Pn/kef5/3zR8v+I1uv/AAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsOL2/6/x/f+R4/z/oe/9/5/v/P+e7vz/nO78/5vt/P+Z + 7Pz/mOz7/5br+/+V6vv/kun7/6G8xv+iiYH/kcXY/4/o+v+d6vv/ftHy/4fX6/8AAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACy4/b/sfL9/5Pk/P+j8P3/ofD9/6Dv/P+f + 7/z/ne78/5zt/P+a7fz/mez7/5fr+/+Ivc//l4h//7Wajf93iJH/huH6/6zt+/+A0vL/h9js/wAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALTk9v+x8v7/lOT8/6Xx/f+k + 8f3/ovD9/6Hv/f+f7/z/nu78/5zu/P+b7fz/mez8/3BPQf9lhJb/va6i/3ptZf9zz+r/uvH8/4LT8v+H + 2ez/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAteT2/7Py/v+V + 5f3/p/L9/6by/f+k8f3/o/D9/6Hw/f+g7/z/n+/8/53u/P+c7fz/k21b/5+goP+9oIn/aWpq/33b9//I + 9P3/hNPy/4ba7f8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC3 + 5fb/tfP+/5bl/f+p8/7/p/L+/6by/f+l8f3/pPH9/6Lw/f+h7/3/n+/8/57u/P/lx7P/1bab/7aOcv9h + aXD/f935/9X3/f+H1PP/htzu/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAALnl9/+39P7/l+X9/6r0/v+p8/7/qPP+/6fy/f+m8v3/pPH9/6Pw/f+h8P3/oO/8/93Ryv/r + y7T/yquV/2Jwe/9/4Pv/5Pr+/4nV8/+G3e7/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAuub3/7f0/v+Y5v3/rPT+/6v0/v+q8/7/qfP+/6fy/v+m8v3/pfH9/6Tx/f+i + 8P3/2OHj///x4//izb3/a3yI/4Hh/f/v/P//i9bz/4Xe7/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC85vf/uPT//5nm/f+u9f7/rfX+/6z0/v+q9P7/qfP+/6jz/v+n + 8v3/pvL9/6Tx/f/G3+b////3//vv5v9pgY7/g+T+//X9//+O1/P/hd/w/wAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAL3n9/+59P//meb9/6/2//+u9f7/rfX+/6z0/v+r + 9P7/qvP+/6nz/v+n8v7/pvL9/7fe6f/Zu6//t6yp/36Zp/+E6P7/+v7//5DX8/+F4PD/AAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvuf3/7r1//+a5v3/sPb//6/2//+v + 9f//rvX+/631/v+s9P7/qvT+/6nz/v+o8/7/pOX1/7iWhv9xY17/cX+K/4Hn/v/9////ktj0/4Xg8f8A + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC+5/f/uvX//5rm/f+x + 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 + AwAAgAcAAIAHAACABwAAgAcAAIAHAAD//wAA + + \ No newline at end of file diff --git a/src/Zip/Resources/ZipContentsDialog.Designer.cs b/old/src/Zip/Resources/ZipContentsDialog.Designer.cs similarity index 97% rename from src/Zip/Resources/ZipContentsDialog.Designer.cs rename to old/src/Zip/Resources/ZipContentsDialog.Designer.cs index 35173ad..b6c59d7 100644 --- a/src/Zip/Resources/ZipContentsDialog.Designer.cs +++ b/old/src/Zip/Resources/ZipContentsDialog.Designer.cs @@ -1,79 +1,79 @@ -namespace Ionic.Zip.Forms -{ - partial class ZipContentsDialog - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WinFormsSelfExtractorStub)); - this.listView1 = new System.Windows.Forms.ListView(); - this.button1 = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // listView1 - // - this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.listView1.Location = new System.Drawing.Point(12, 12); - this.listView1.Name = "listView1"; - this.listView1.Size = new System.Drawing.Size(700, 287); - this.listView1.TabIndex = 0; - this.listView1.UseCompatibleStateImageBehavior = false; - this.listView1.View = System.Windows.Forms.View.Details; - this.listView1.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listView1_ColumnClick); - // - // button1 - // - this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.button1.Location = new System.Drawing.Point(637, 305); - this.button1.Name = "button1"; - this.button1.Size = new System.Drawing.Size(75, 23); - this.button1.TabIndex = 1; - this.button1.Text = "Close"; - this.button1.UseVisualStyleBackColor = true; - this.button1.Click += new System.EventHandler(this.button1_Click); - // - // ZipContentsDialog - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(724, 340); - this.Controls.Add(this.button1); - this.Controls.Add(this.listView1); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Name = "ZipContentsDialog"; - this.Text = "Contents of the zip archive"; - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.ListView listView1; - private System.Windows.Forms.Button button1; - } +namespace Ionic.Zip.Forms +{ + partial class ZipContentsDialog + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WinFormsSelfExtractorStub)); + this.listView1 = new System.Windows.Forms.ListView(); + this.button1 = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // listView1 + // + this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.listView1.Location = new System.Drawing.Point(12, 12); + this.listView1.Name = "listView1"; + this.listView1.Size = new System.Drawing.Size(700, 287); + this.listView1.TabIndex = 0; + this.listView1.UseCompatibleStateImageBehavior = false; + this.listView1.View = System.Windows.Forms.View.Details; + this.listView1.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listView1_ColumnClick); + // + // button1 + // + this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.button1.Location = new System.Drawing.Point(637, 305); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(75, 23); + this.button1.TabIndex = 1; + this.button1.Text = "Close"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // ZipContentsDialog + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(724, 340); + this.Controls.Add(this.button1); + this.Controls.Add(this.listView1); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Name = "ZipContentsDialog"; + this.Text = "Contents of the zip archive"; + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.ListView listView1; + private System.Windows.Forms.Button button1; + } } \ No newline at end of file diff --git a/src/Zip/Resources/ZipContentsDialog.cs b/old/src/Zip/Resources/ZipContentsDialog.cs similarity index 97% rename from src/Zip/Resources/ZipContentsDialog.cs rename to old/src/Zip/Resources/ZipContentsDialog.cs index 85aa7ae..7197a71 100644 --- a/src/Zip/Resources/ZipContentsDialog.cs +++ b/old/src/Zip/Resources/ZipContentsDialog.cs @@ -1,226 +1,226 @@ -// ZipContentsDialog.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2009 Dino Chiesa -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// - -namespace Ionic.Zip.Forms -{ - using System; - using System.Collections.Generic; - using System.Windows.Forms; - using Ionic.Zip; - - public partial class ZipContentsDialog : Form - { - public ZipContentsDialog() - { - InitializeComponent(); - FixTitle(); - } - - private void FixTitle() - { - this.Text = String.Format("Contents of the zip archive (DotNetZip v{0})", - Ionic.Zip.ZipFile.LibraryVersion.ToString()); - } - - public ZipFile ZipFile - { - set - { - listView1.Clear(); - listView1.BeginUpdate(); - - string[] columnHeaders = new string[] { "name", "lastmod", "original", "ratio", "compressed", "enc?", "CRC" }; - foreach (string label in columnHeaders) - { - SortableColumnHeader ch = new SortableColumnHeader(label); - if (label != "name" && label != "lastmod") - ch.TextAlign = HorizontalAlignment.Right; - listView1.Columns.Add(ch); - } - - foreach (ZipEntry e in value) - { - ListViewItem item = new ListViewItem(e.FileName); - - string[] subitems = new string[] { - e.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), - e.UncompressedSize.ToString(), - String.Format("{0,5:F0}%", e.CompressionRatio), - e.CompressedSize.ToString(), - (e.UsesEncryption) ? "Y" : "N", - String.Format("{0:X8}", e.Crc)}; - - foreach (String s in subitems) - { - ListViewItem.ListViewSubItem subitem = new ListViewItem.ListViewSubItem(); - subitem.Text = s; - item.SubItems.Add(subitem); - } - - this.listView1.Items.Add(item); - } - - listView1.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent); - - // adjust size of the entire form - int aggWidth= 0; - for (int i = 0; i < this.listView1.Columns.Count; i++) - { - aggWidth += this.listView1.Columns[i].Width + 1; - } - // plus a fudge factor - //aggWidth += this.listView1.Columns[this.listView1.Columns.Count - 1].Width / 2 + this.listView1.Location.X * 4; - aggWidth += this.listView1.Location.X * 4 + 4; - this.Size = new System.Drawing.Size(aggWidth, this.Height); - - this.listView1.EndUpdate(); - } - } - - - - - private void button1_Click(object sender, EventArgs e) - { - this.Close(); - } - - private void listView1_ColumnClick(object sender, ColumnClickEventArgs e) - { - // Create an instance of the ColHeader class. - SortableColumnHeader clickedCol = (SortableColumnHeader)this.listView1.Columns[e.Column]; - - // Set the ascending property to sort in the opposite order. - clickedCol.SortAscending = !clickedCol.SortAscending; - - // Get the number of items in the list. - int numItems = this.listView1.Items.Count; - - // Turn off display while data is repoplulated. - this.listView1.BeginUpdate(); - - // Populate an ArrayList with a SortWrapper of each list item. - List list = new List(); - for (int i = 0; i < numItems; i++) - { - list.Add(new ItemWrapper(this.listView1.Items[i], e.Column)); - } - - if (e.Column == 2 || e.Column == 4) - list.Sort(new ItemWrapper.NumericComparer(clickedCol.SortAscending)); - else - list.Sort(new ItemWrapper.StringComparer(clickedCol.SortAscending)); - - // Clear the list, and repopulate with the sorted items. - this.listView1.Items.Clear(); - for (int i = 0; i < numItems; i++) - this.listView1.Items.Add(list[i].Item); - - // Turn display back on. - this.listView1.EndUpdate(); - } - - } - - - - // The ColHeader class is a ColumnHeader object with an - // added property for determining an ascending or descending sort. - // True specifies an ascending order, false specifies a descending order. - public class SortableColumnHeader : ColumnHeader - { - public bool SortAscending; - public SortableColumnHeader(string text) - { - this.Text = text; - this.SortAscending = true; - } - } - - - // An instance of the SortWrapper class is created for - // each item and added to the ArrayList for sorting. - public class ItemWrapper - { - internal ListViewItem Item; - internal int Column; - - // A SortWrapper requires the item and the index of the clicked column. - public ItemWrapper(ListViewItem item, int column) - { - Item = item; - Column = column; - } - - // Text property for getting the text of an item. - public string Text - { - get { return Item.SubItems[Column].Text; } - } - - // Implementation of the IComparer - public class StringComparer : IComparer - { - bool ascending; - - // Constructor requires the sort order; - // true if ascending, otherwise descending. - public StringComparer(bool asc) - { - this.ascending = asc; - } - - // Implemnentation of the IComparer:Compare - // method for comparing two objects. - public int Compare(ItemWrapper xItem, ItemWrapper yItem) - { - string xText = xItem.Item.SubItems[xItem.Column].Text; - string yText = yItem.Item.SubItems[yItem.Column].Text; - return xText.CompareTo(yText) * (this.ascending ? 1 : -1); - } - } - - public class NumericComparer : IComparer - { - bool ascending; - - // Constructor requires the sort order; - // true if ascending, otherwise descending. - public NumericComparer(bool asc) - { - this.ascending = asc; - } - - // Implemnentation of the IComparer:Compare - // method for comparing two objects. - public int Compare(ItemWrapper xItem, ItemWrapper yItem) - { - int x = 0, y = 0; - try - { - x = Int32.Parse(xItem.Item.SubItems[xItem.Column].Text); - y = Int32.Parse(yItem.Item.SubItems[yItem.Column].Text); - } - catch - { - } - return (x - y) * (this.ascending ? 1 : -1); - } - } - } - -} +// ZipContentsDialog.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2009 Dino Chiesa +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// + +namespace Ionic.Zip.Forms +{ + using System; + using System.Collections.Generic; + using System.Windows.Forms; + using Ionic.Zip; + + public partial class ZipContentsDialog : Form + { + public ZipContentsDialog() + { + InitializeComponent(); + FixTitle(); + } + + private void FixTitle() + { + this.Text = String.Format("Contents of the zip archive (DotNetZip v{0})", + Ionic.Zip.ZipFile.LibraryVersion.ToString()); + } + + public ZipFile ZipFile + { + set + { + listView1.Clear(); + listView1.BeginUpdate(); + + string[] columnHeaders = new string[] { "name", "lastmod", "original", "ratio", "compressed", "enc?", "CRC" }; + foreach (string label in columnHeaders) + { + SortableColumnHeader ch = new SortableColumnHeader(label); + if (label != "name" && label != "lastmod") + ch.TextAlign = HorizontalAlignment.Right; + listView1.Columns.Add(ch); + } + + foreach (ZipEntry e in value) + { + ListViewItem item = new ListViewItem(e.FileName); + + string[] subitems = new string[] { + e.LastModified.ToString("yyyy-MM-dd HH:mm:ss"), + e.UncompressedSize.ToString(), + String.Format("{0,5:F0}%", e.CompressionRatio), + e.CompressedSize.ToString(), + (e.UsesEncryption) ? "Y" : "N", + String.Format("{0:X8}", e.Crc)}; + + foreach (String s in subitems) + { + ListViewItem.ListViewSubItem subitem = new ListViewItem.ListViewSubItem(); + subitem.Text = s; + item.SubItems.Add(subitem); + } + + this.listView1.Items.Add(item); + } + + listView1.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent); + + // adjust size of the entire form + int aggWidth= 0; + for (int i = 0; i < this.listView1.Columns.Count; i++) + { + aggWidth += this.listView1.Columns[i].Width + 1; + } + // plus a fudge factor + //aggWidth += this.listView1.Columns[this.listView1.Columns.Count - 1].Width / 2 + this.listView1.Location.X * 4; + aggWidth += this.listView1.Location.X * 4 + 4; + this.Size = new System.Drawing.Size(aggWidth, this.Height); + + this.listView1.EndUpdate(); + } + } + + + + + private void button1_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void listView1_ColumnClick(object sender, ColumnClickEventArgs e) + { + // Create an instance of the ColHeader class. + SortableColumnHeader clickedCol = (SortableColumnHeader)this.listView1.Columns[e.Column]; + + // Set the ascending property to sort in the opposite order. + clickedCol.SortAscending = !clickedCol.SortAscending; + + // Get the number of items in the list. + int numItems = this.listView1.Items.Count; + + // Turn off display while data is repoplulated. + this.listView1.BeginUpdate(); + + // Populate an ArrayList with a SortWrapper of each list item. + List list = new List(); + for (int i = 0; i < numItems; i++) + { + list.Add(new ItemWrapper(this.listView1.Items[i], e.Column)); + } + + if (e.Column == 2 || e.Column == 4) + list.Sort(new ItemWrapper.NumericComparer(clickedCol.SortAscending)); + else + list.Sort(new ItemWrapper.StringComparer(clickedCol.SortAscending)); + + // Clear the list, and repopulate with the sorted items. + this.listView1.Items.Clear(); + for (int i = 0; i < numItems; i++) + this.listView1.Items.Add(list[i].Item); + + // Turn display back on. + this.listView1.EndUpdate(); + } + + } + + + + // The ColHeader class is a ColumnHeader object with an + // added property for determining an ascending or descending sort. + // True specifies an ascending order, false specifies a descending order. + public class SortableColumnHeader : ColumnHeader + { + public bool SortAscending; + public SortableColumnHeader(string text) + { + this.Text = text; + this.SortAscending = true; + } + } + + + // An instance of the SortWrapper class is created for + // each item and added to the ArrayList for sorting. + public class ItemWrapper + { + internal ListViewItem Item; + internal int Column; + + // A SortWrapper requires the item and the index of the clicked column. + public ItemWrapper(ListViewItem item, int column) + { + Item = item; + Column = column; + } + + // Text property for getting the text of an item. + public string Text + { + get { return Item.SubItems[Column].Text; } + } + + // Implementation of the IComparer + public class StringComparer : IComparer + { + bool ascending; + + // Constructor requires the sort order; + // true if ascending, otherwise descending. + public StringComparer(bool asc) + { + this.ascending = asc; + } + + // Implemnentation of the IComparer:Compare + // method for comparing two objects. + public int Compare(ItemWrapper xItem, ItemWrapper yItem) + { + string xText = xItem.Item.SubItems[xItem.Column].Text; + string yText = yItem.Item.SubItems[yItem.Column].Text; + return xText.CompareTo(yText) * (this.ascending ? 1 : -1); + } + } + + public class NumericComparer : IComparer + { + bool ascending; + + // Constructor requires the sort order; + // true if ascending, otherwise descending. + public NumericComparer(bool asc) + { + this.ascending = asc; + } + + // Implemnentation of the IComparer:Compare + // method for comparing two objects. + public int Compare(ItemWrapper xItem, ItemWrapper yItem) + { + int x = 0, y = 0; + try + { + x = Int32.Parse(xItem.Item.SubItems[xItem.Column].Text); + y = Int32.Parse(yItem.Item.SubItems[yItem.Column].Text); + } + catch + { + } + return (x - y) * (this.ascending ? 1 : -1); + } + } + } + +} diff --git a/src/Zip/Resources/ZipContentsDialog.resx b/old/src/Zip/Resources/ZipContentsDialog.resx similarity index 97% rename from src/Zip/Resources/ZipContentsDialog.resx rename to old/src/Zip/Resources/ZipContentsDialog.resx index ff31a6d..19dc0dd 100644 --- a/src/Zip/Resources/ZipContentsDialog.resx +++ b/old/src/Zip/Resources/ZipContentsDialog.resx @@ -1,120 +1,120 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/src/Zip/Resources/zippedFile.ico b/old/src/Zip/Resources/zippedFile.ico similarity index 100% rename from src/Zip/Resources/zippedFile.ico rename to old/src/Zip/Resources/zippedFile.ico diff --git a/src/Zip/Resources/zippedResources.zip b/old/src/Zip/Resources/zippedResources.zip similarity index 100% rename from src/Zip/Resources/zippedResources.zip rename to old/src/Zip/Resources/zippedResources.zip diff --git a/src/Zip/Zip DLL.csproj b/old/src/Zip/Zip DLL.csproj similarity index 97% rename from src/Zip/Zip DLL.csproj rename to old/src/Zip/Zip DLL.csproj index 6bbe0cd..b84a14e 100644 --- a/src/Zip/Zip DLL.csproj +++ b/old/src/Zip/Zip DLL.csproj @@ -1,134 +1,134 @@ - - - - Debug - AnyCPU - 9.0.30729 - 2.0 - {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} - Library - Properties - Ionic.Zip - DotNetZip - true - ..\Ionic.snk - - - - - 3.5 - - - - - - - - - v4.0 - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - true - full - false - bin\Debug\ - TRACE;DEBUG;AESCRYPTO;BZIP - prompt - 4 - bin\Debug\DotNetZip.xml - false - - - AllRules.ruleset - - - pdbonly - true - bin\Release\ - TRACE;AESCRYPTO;BZIP - prompt - 4 - bin\Release\DotNetZip.xml - AllRules.ruleset - - - - - - - - - - - BZip2\%(FileName) - - - Properties\SolutionInfo.cs - - - - - - - - - PasswordDialog.cs - - - - WinFormsSelfExtractorStub.cs - - - - ZipContentsDialog.cs - - - - - - - - Ionic.snk - - - - - PasswordDialog.cs - - - WinFormsSelfExtractorStub.cs - - - ZipContentsDialog.cs - - - - - - - - - ..\..\PackResources.vbs - - - + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {D3B0AD67-44D8-4B3D-BED9-CE1FD6DE2C5A} + Library + Properties + Ionic.Zip + DotNetZip + true + ..\Ionic.snk + + + + + 3.5 + + + + + + + + + v4.0 + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + + + true + full + false + bin\Debug\ + TRACE;DEBUG;AESCRYPTO;BZIP + prompt + 4 + bin\Debug\DotNetZip.xml + false + + + AllRules.ruleset + + + pdbonly + true + bin\Release\ + TRACE;AESCRYPTO;BZIP + prompt + 4 + bin\Release\DotNetZip.xml + AllRules.ruleset + + + + + + + + + + + BZip2\%(FileName) + + + Properties\SolutionInfo.cs + + + + + + + + + PasswordDialog.cs + + + + WinFormsSelfExtractorStub.cs + + + + ZipContentsDialog.cs + + + + + + + + Ionic.snk + + + + + PasswordDialog.cs + + + WinFormsSelfExtractorStub.cs + + + ZipContentsDialog.cs + + + + + + + + + ..\..\PackResources.vbs + + + \ No newline at end of file diff --git a/src/Zip/ZipFile.SaveSelfExtractor.cs b/old/src/Zip/ZipFile.SaveSelfExtractor.cs similarity index 97% rename from src/Zip/ZipFile.SaveSelfExtractor.cs rename to old/src/Zip/ZipFile.SaveSelfExtractor.cs index d1d8082..56d6e18 100644 --- a/src/Zip/ZipFile.SaveSelfExtractor.cs +++ b/old/src/Zip/ZipFile.SaveSelfExtractor.cs @@ -1,1102 +1,1102 @@ -// ZipFile.saveSelfExtractor.cs -// ------------------------------------------------------------------ -// -// Copyright (c) 2008-2011 Dino Chiesa. -// All rights reserved. -// -// This code module is part of DotNetZip, a zipfile class library. -// -// ------------------------------------------------------------------ -// -// This code is licensed under the Microsoft Public License. -// See the file License.txt for the license details. -// More info on: http://dotnetzip.codeplex.com -// -// ------------------------------------------------------------------ -// -// last saved (in emacs): -// Time-stamp: <2011-August-10 19:22:46> -// -// ------------------------------------------------------------------ -// -// This is a the source module that implements the stuff for saving to a -// self-extracting Zip archive. -// -// ZipFile is set up as a "partial class" - defined in multiple .cs source modules. -// This is one of the source modules for the ZipFile class. -// -// Here's the design: The self-extracting zip file is just a regular managed EXE -// file, with embedded resources. The managed code logic instantiates a ZipFile, and -// then extracts each entry. The embedded resources include the zip archive content, -// as well as the Zip library itself. The latter is required so that self-extracting -// can work on any machine, whether or not it has the DotNetZip library installed on -// it. -// -// What we need to do is create the animal I just described, within a method on the -// ZipFile class. This source module provides that capability. The method is -// SaveSelfExtractor(). -// -// The way the method works: it uses the programmatic interface to the csc.exe -// compiler, Microsoft.CSharp.CSharpCodeProvider, to compile "boilerplate" -// extraction logic into a new assembly. As part of that compile, we embed within -// that assembly the zip archive itself, as well as the Zip library. -// -// Therefore we need to first save to a temporary zip file, then produce the exe. -// -// There are a few twists. -// -// The Visual Studio Project structure is a little weird. There are code files -// that ARE NOT compiled during a normal build of the VS Solution. They are -// marked as embedded resources. These are the various "boilerplate" modules that -// are used in the self-extractor. These modules are: WinFormsSelfExtractorStub.cs -// WinFormsSelfExtractorStub.Designer.cs CommandLineSelfExtractorStub.cs -// PasswordDialog.cs PasswordDialog.Designer.cs -// -// At design time, if you want to modify the way the GUI looks, you have to -// mark those modules to have a "compile" build action. Then tweak em, test, -// etc. Then again mark them as "Embedded resource". -// -// ------------------------------------------------------------------ - -using System; -using System.Reflection; -using System.IO; -using System.Collections.Generic; -using System.Linq; - - -namespace Ionic.Zip -{ -#if !NO_SFX - /// - /// An enum that provides the different self-extractor flavors - /// - public enum SelfExtractorFlavor - { - /// - /// A self-extracting zip archive that runs from the console or - /// command line. - /// - ConsoleApplication = 0, - - /// - /// A self-extracting zip archive that presents a graphical user - /// interface when it is executed. - /// - WinFormsApplication, - } - - /// - /// The options for generating a self-extracting archive. - /// - public class SelfExtractorSaveOptions - { - /// - /// The type of SFX to create. - /// - public SelfExtractorFlavor Flavor - { - get; - set; - } - - /// - /// The command to run after extraction. - /// - /// - /// - /// - /// This is optional. Leave it empty (null in C# or Nothing in - /// VB) to run no command after extraction. - /// - /// - /// - /// If it is non-empty, the SFX will execute the command specified in this - /// string on the user's machine, and using the extract directory as the - /// working directory for the process, after unpacking the archive. The - /// program to execute can include a path, if you like. If you want to execute - /// a program that accepts arguments, specify the program name, followed by a - /// space, and then the arguments for the program, each separated by a space, - /// just as you would on a normal command line. Example: program.exe arg1 - /// arg2. The string prior to the first space will be taken as the - /// program name, and the string following the first space specifies the - /// arguments to the program. - /// - /// - /// - /// If you want to execute a program that has a space in the name or path of - /// the file, surround the program name in double-quotes. The first character - /// of the command line should be a double-quote character, and there must be - /// a matching double-quote following the end of the program file name. Any - /// optional arguments to the program follow that, separated by - /// spaces. Example: "c:\project files\program name.exe" arg1 arg2. - /// - /// - /// - /// If the flavor of the SFX is SelfExtractorFlavor.ConsoleApplication, - /// then the SFX starts a new process, using this string as the post-extract - /// command line. The SFX waits for the process to exit. The exit code of - /// the post-extract command line is returned as the exit code of the - /// command-line self-extractor exe. A non-zero exit code is typically used to - /// indicated a failure by the program. In the case of an SFX, a non-zero exit - /// code may indicate a failure during extraction, OR, it may indicate a - /// failure of the run-after-extract program if specified, OR, it may indicate - /// the run-after-extract program could not be fuond. There is no way to - /// distinguish these conditions from the calling shell, aside from parsing - /// the output of the SFX. If you have Quiet set to true, you may not - /// see error messages, if a problem occurs. - /// - /// - /// - /// If the flavor of the SFX is - /// SelfExtractorFlavor.WinFormsApplication, then the SFX starts a new - /// process, using this string as the post-extract command line, and using the - /// extract directory as the working directory for the process. The SFX does - /// not wait for the command to complete, and does not check the exit code of - /// the program. If the run-after-extract program cannot be fuond, a message - /// box is displayed indicating that fact. - /// - /// - /// - /// You can specify environment variables within this string, with a format like - /// %NAME%. The value of these variables will be expanded at the time - /// the SFX is run. Example: %WINDIR%\system32\xcopy.exe may expand at - /// runtime to c:\Windows\System32\xcopy.exe. - /// - /// - /// - /// By combining this with the RemoveUnpackedFilesAfterExecute - /// flag, you can create an SFX that extracts itself, runs a file that - /// was extracted, then deletes all the files that were extracted. If - /// you want it to run "invisibly" then set Flavor to - /// SelfExtractorFlavor.ConsoleApplication, and set Quiet - /// to true. The user running such an EXE will see a console window - /// appear, then disappear quickly. You may also want to specify the - /// default extract location, with DefaultExtractDirectory. - /// - /// - /// - /// If you set Flavor to - /// SelfExtractorFlavor.WinFormsApplication, and set Quiet to - /// true, then a GUI with progressbars is displayed, but it is - /// "non-interactive" - it accepts no input from the user. Instead the SFX - /// just automatically unpacks and exits. - /// - /// - /// - public String PostExtractCommandLine - { - get; - set; - } - - /// - /// The default extract directory the user will see when - /// running the self-extracting archive. - /// - /// - /// - /// - /// Passing null (or Nothing in VB) here will cause the Self Extractor to use - /// the the user's personal directory () for the default extract - /// location. - /// - /// - /// - /// This is only a default location. The actual extract location will be - /// settable on the command line when the SFX is executed. - /// - /// - /// - /// You can specify environment variables within this string, - /// with %NAME%. The value of these variables will be - /// expanded at the time the SFX is run. Example: - /// %USERPROFILE%\Documents\unpack may expand at runtime to - /// c:\users\melvin\Documents\unpack. - /// - /// - public String DefaultExtractDirectory - { - get; - set; - } - - /// - /// The name of an .ico file in the filesystem to use for the application icon - /// for the generated SFX. - /// - /// - /// - /// - /// Normally, DotNetZip will embed an "zipped folder" icon into the generated - /// SFX. If you prefer to use a different icon, you can specify it here. It - /// should be a .ico file. This file is passed as the /win32icon - /// option to the csc.exe compiler when constructing the SFX file. - /// - /// - /// - public string IconFile - { - get; - set; - } - - /// - /// Whether the ConsoleApplication SFX will be quiet during extraction. - /// - /// - /// - /// - /// This option affects the way the generated SFX runs. By default it is - /// false. When you set it to true,... - /// - /// - /// - /// - /// Flavor - /// Behavior - /// - /// - /// - /// ConsoleApplication - /// no messages will be emitted during successful - /// operation. Double-clicking the SFX in Windows - /// Explorer or as an attachment in an email will cause a console - /// window to appear briefly, before it disappears. If you run the - /// ConsoleApplication SFX from the cmd.exe prompt, it runs as a - /// normal console app; by default, because it is quiet, it displays - /// no messages to the console. If you pass the -v+ command line - /// argument to the Console SFX when you run it, you will get verbose - /// messages to the console. - /// - /// - /// - /// - /// WinFormsApplication - /// the SFX extracts automatically when the application - /// is launched, with no additional user input. - /// - /// - /// - /// - /// - /// - /// When you set it to false,... - /// - /// - /// - /// - /// Flavor - /// Behavior - /// - /// - /// - /// ConsoleApplication - /// the extractor will emit a - /// message to the console for each entry extracted. - /// - /// When double-clicking to launch the SFX, the console window will - /// remain, and the SFX will emit a message for each file as it - /// extracts. The messages fly by quickly, they won't be easily - /// readable, unless the extracted files are fairly large. - /// - /// - /// - /// - /// - /// WinFormsApplication - /// the SFX presents a forms UI and allows the user to select - /// options before extracting. - /// - /// - /// - /// - /// - /// - public bool Quiet - { - get; - set; - } - - - /// - /// Specify what the self-extractor will do when extracting an entry - /// would overwrite an existing file. - /// - /// - /// - /// The default behavvior is to Throw. - /// - /// - public Ionic.Zip.ExtractExistingFileAction ExtractExistingFile - { - get; - set; - } - - - /// - /// Whether to remove the files that have been unpacked, after executing the - /// PostExtractCommandLine. - /// - /// - /// - /// - /// If true, and if there is a - /// PostExtractCommandLine, and if the command runs successfully, - /// then the files that the SFX unpacked will be removed, afterwards. If - /// the command does not complete successfully (non-zero return code), - /// that is interpreted as a failure, and the extracted files will not be - /// removed. - /// - /// - /// - /// Setting this flag, and setting Flavor to - /// SelfExtractorFlavor.ConsoleApplication, and setting Quiet to - /// true, results in an SFX that extracts itself, runs a file that was - /// extracted, then deletes all the files that were extracted, with no - /// intervention by the user. You may also want to specify the default - /// extract location, with DefaultExtractDirectory. - /// - /// - /// - public bool RemoveUnpackedFilesAfterExecute - { - get; - set; - } - - - /// - /// The file version number to embed into the generated EXE. It will show up, for - /// example, during a mouseover in Windows Explorer. - /// - /// - public Version FileVersion - { - get; - set; - } - - /// - /// The product version to embed into the generated EXE. It will show up, for - /// example, during a mouseover in Windows Explorer. - /// - /// - /// - /// You can use any arbitrary string, but a human-readable version number is - /// recommended. For example "v1.2 alpha" or "v4.2 RC2". If you specify nothing, - /// then there is no product version embedded into the EXE. - /// - /// - public String ProductVersion - { - get; - set; - } - - /// - /// The copyright notice, if any, to embed into the generated EXE. - /// - /// - /// - /// It will show up, for example, while viewing properties of the file in - /// Windows Explorer. You can use any arbitrary string, but typically you - /// want something like "Copyright � Dino Chiesa 2011". - /// - /// - public String Copyright - { - get; - set; - } - - - /// - /// The description to embed into the generated EXE. - /// - /// - /// - /// Use any arbitrary string. This text will be displayed during a - /// mouseover in Windows Explorer. If you specify nothing, then the string - /// "DotNetZip SFX Archive" is embedded into the EXE as the description. - /// - /// - public String Description - { - get; - set; - } - - /// - /// The product name to embed into the generated EXE. - /// - /// - /// - /// Use any arbitrary string. This text will be displayed - /// while viewing properties of the EXE file in - /// Windows Explorer. - /// - /// - public String ProductName - { - get; - set; - } - - /// - /// The title to display in the Window of a GUI SFX, while it extracts. - /// - /// - /// - /// - /// By default the title show in the GUI window of a self-extractor - /// is "DotNetZip Self-extractor (http://DotNetZip.codeplex.com/)". - /// You can change that by setting this property before saving the SFX. - /// - /// - /// - /// This property has an effect only when producing a Self-extractor - /// of flavor SelfExtractorFlavor.WinFormsApplication. - /// - /// - /// - public String SfxExeWindowTitle - { - // workitem 12608 - get; - set; - } - - /// - /// Additional options for the csc.exe compiler, when producing the SFX - /// EXE. - /// - /// - public string AdditionalCompilerSwitches - { - get; set; - } - - /// - /// Version of the csc.exe compiler, if not specified then the default version - /// will be used. - /// - /// - public string CompilerVersion - { - get; set; - } - } - - - - - partial class ZipFile - { - class ExtractorSettings - { - public SelfExtractorFlavor Flavor; - public List ReferencedAssemblies; - public List CopyThroughResources; - public List ResourcesToCompile; - } - - - private static ExtractorSettings[] SettingsList = { - new ExtractorSettings() { - Flavor = SelfExtractorFlavor.WinFormsApplication, - ReferencedAssemblies= new List{ - "System.dll", "System.Windows.Forms.dll", "System.Drawing.dll"}, - CopyThroughResources = new List{ - "Ionic.Zip.WinFormsSelfExtractorStub.resources", - "Ionic.Zip.Forms.PasswordDialog.resources", - "Ionic.Zip.Forms.ZipContentsDialog.resources"}, - ResourcesToCompile = new List{ - "WinFormsSelfExtractorStub.cs", - "WinFormsSelfExtractorStub.Designer.cs", // .Designer.cs? - "PasswordDialog.cs", - "PasswordDialog.Designer.cs", //.Designer.cs" - "ZipContentsDialog.cs", - "ZipContentsDialog.Designer.cs", //.Designer.cs" - "FolderBrowserDialogEx.cs", - } - }, - new ExtractorSettings() { - Flavor = SelfExtractorFlavor.ConsoleApplication, - ReferencedAssemblies= new List { "System.dll", }, - CopyThroughResources = null, - ResourcesToCompile = new List{"CommandLineSelfExtractorStub.cs"} - } - }; - - - - //string _defaultExtractLocation; - //string _postExtractCmdLine; - // string _SetDefaultLocationCode = - // "namespace Ionic.Zip { public partial class WinFormsSelfExtractorStub { partial void _SetDefaultExtractLocation() {" + - // " txtExtractDirectory.Text = \"@@VALUE\"; } }}"; - - - - /// - /// Saves the ZipFile instance to a self-extracting zip archive. - /// - /// - /// - /// - /// - /// The generated exe image will execute on any machine that has the .NET - /// Framework 4.0 installed on it. The generated exe image is also a - /// valid ZIP file, readable with DotNetZip or another Zip library or tool - /// such as WinZip. - /// - /// - /// - /// There are two "flavors" of self-extracting archive. The - /// WinFormsApplication version will pop up a GUI and allow the - /// user to select a target directory into which to extract. There's also - /// a checkbox allowing the user to specify to overwrite existing files, - /// and another checkbox to allow the user to request that Explorer be - /// opened to see the extracted files after extraction. The other flavor - /// is ConsoleApplication. A self-extractor generated with that - /// flavor setting will run from the command line. It accepts command-line - /// options to set the overwrite behavior, and to specify the target - /// extraction directory. - /// - /// - /// - /// There are a few temporary files created during the saving to a - /// self-extracting zip. These files are created in the directory pointed - /// to by , which defaults to . These temporary files are - /// removed upon successful completion of this method. - /// - /// - /// - /// When a user runs the WinForms SFX, the user's personal directory (Environment.SpecialFolder.Personal) - /// will be used as the default extract location. If you want to set the - /// default extract location, you should use the other overload of - /// SaveSelfExtractor()/ The user who runs the SFX will have the - /// opportunity to change the extract directory before extracting. When - /// the user runs the Command-Line SFX, the user must explicitly specify - /// the directory to which to extract. The .NET Framework 4.0 is required - /// on the computer when the self-extracting archive is run. - /// - /// - /// - /// NB: This method is not available in the "Reduced" DotNetZip library. - /// - /// - /// - /// - /// - /// - /// string DirectoryPath = "c:\\Documents\\Project7"; - /// using (ZipFile zip = new ZipFile()) - /// { - /// zip.AddDirectory(DirectoryPath, System.IO.Path.GetFileName(DirectoryPath)); - /// zip.Comment = "This will be embedded into a self-extracting console-based exe"; - /// zip.SaveSelfExtractor("archive.exe", SelfExtractorFlavor.ConsoleApplication); - /// } - /// - /// - /// Dim DirectoryPath As String = "c:\Documents\Project7" - /// Using zip As New ZipFile() - /// zip.AddDirectory(DirectoryPath, System.IO.Path.GetFileName(DirectoryPath)) - /// zip.Comment = "This will be embedded into a self-extracting console-based exe" - /// zip.SaveSelfExtractor("archive.exe", SelfExtractorFlavor.ConsoleApplication) - /// End Using - /// - /// - /// - /// - /// a pathname, possibly fully qualified, to be created. Typically it - /// will end in an .exe extension. - /// - /// Indicates whether a Winforms or Console self-extractor is - /// desired. - public void SaveSelfExtractor(string exeToGenerate, SelfExtractorFlavor flavor) - { - SelfExtractorSaveOptions options = new SelfExtractorSaveOptions(); - options.Flavor = flavor; - SaveSelfExtractor(exeToGenerate, options); - } - - - - /// - /// Saves the ZipFile instance to a self-extracting zip archive, using - /// the specified save options. - /// - /// - /// - /// - /// This method saves a self extracting archive, using the specified save - /// options. These options include the flavor of the SFX, the default extract - /// directory, the icon file, and so on. See the documentation - /// for for more - /// details. - /// - /// - /// - /// The user who runs the SFX will have the opportunity to change the extract - /// directory before extracting. If at the time of extraction, the specified - /// directory does not exist, the SFX will create the directory before - /// extracting the files. - /// - /// - /// - /// - /// - /// This example saves a WinForms-based self-extracting archive EXE that - /// will use c:\ExtractHere as the default extract location. The C# code - /// shows syntax for .NET 3.0, which uses an object initializer for - /// the SelfExtractorOptions object. - /// - /// string DirectoryPath = "c:\\Documents\\Project7"; - /// using (ZipFile zip = new ZipFile()) - /// { - /// zip.AddDirectory(DirectoryPath, System.IO.Path.GetFileName(DirectoryPath)); - /// zip.Comment = "This will be embedded into a self-extracting WinForms-based exe"; - /// var options = new SelfExtractorOptions - /// { - /// Flavor = SelfExtractorFlavor.WinFormsApplication, - /// DefaultExtractDirectory = "%USERPROFILE%\\ExtractHere", - /// PostExtractCommandLine = ExeToRunAfterExtract, - /// SfxExeWindowTitle = "My Custom Window Title", - /// RemoveUnpackedFilesAfterExecute = true - /// }; - /// zip.SaveSelfExtractor("archive.exe", options); - /// } - /// - /// - /// Dim DirectoryPath As String = "c:\Documents\Project7" - /// Using zip As New ZipFile() - /// zip.AddDirectory(DirectoryPath, System.IO.Path.GetFileName(DirectoryPath)) - /// zip.Comment = "This will be embedded into a self-extracting console-based exe" - /// Dim options As New SelfExtractorOptions() - /// options.Flavor = SelfExtractorFlavor.WinFormsApplication - /// options.DefaultExtractDirectory = "%USERPROFILE%\\ExtractHere" - /// options.PostExtractCommandLine = ExeToRunAfterExtract - /// options.SfxExeWindowTitle = "My Custom Window Title" - /// options.RemoveUnpackedFilesAfterExecute = True - /// zip.SaveSelfExtractor("archive.exe", options) - /// End Using - /// - /// - /// - /// The name of the EXE to generate. - /// provides the options for creating the - /// Self-extracting archive. - public void SaveSelfExtractor(string exeToGenerate, SelfExtractorSaveOptions options) - { - // Save an SFX that is both an EXE and a ZIP. - - // Check for the case where we are re-saving a zip archive - // that was originally instantiated with a stream. In that case, - // the _name will be null. If so, we set _writestream to null, - // which insures that we'll cons up a new WriteStream (with a filesystem - // file backing it) in the Save() method. - if (_name == null) - _writestream = null; - - _SavingSfx = true; - _name = exeToGenerate; - if (Directory.Exists(_name)) - throw new ZipException("Bad Directory", new System.ArgumentException("That name specifies an existing directory. Please specify a filename.", "exeToGenerate")); - _contentsChanged = true; - _fileAlreadyExists = File.Exists(_name); - - _SaveSfxStub(exeToGenerate, options); - - Save(); - _SavingSfx = false; - } - - - - - private static void ExtractResourceToFile(Assembly a, string resourceName, string filename) - { - int n = 0; - byte[] bytes = new byte[1024]; - using (Stream instream = a.GetManifestResourceStream(resourceName)) - { - if (instream == null) - throw new ZipException(String.Format("missing resource '{0}'", resourceName)); - - using (FileStream outstream = File.OpenWrite(filename)) - { - do - { - n = instream.Read(bytes, 0, bytes.Length); - outstream.Write(bytes, 0, n); - } while (n > 0); - } - } - } - - - private void _SaveSfxStub(string exeToGenerate, SelfExtractorSaveOptions options) - { - string nameOfIconFile = null; - string stubExe = null; - string unpackedResourceDir = null; - string tmpDir = null; - try - { - if (File.Exists(exeToGenerate)) - { - if (Verbose) StatusMessageTextWriter.WriteLine("The existing file ({0}) will be overwritten.", exeToGenerate); - } - if (!exeToGenerate.EndsWith(".exe")) - { - if (Verbose) StatusMessageTextWriter.WriteLine("Warning: The generated self-extracting file will not have an .exe extension."); - } - - // workitem 10553 - tmpDir = TempFileFolder ?? Path.GetDirectoryName(exeToGenerate); - stubExe = GenerateTempPathname(tmpDir, "exe"); - - // get the Ionic.Zip assembly - Assembly a1 = typeof(ZipFile).Assembly; - - var providerOptions = new Dictionary(); - if (!string.IsNullOrEmpty(options.CompilerVersion)) - { - providerOptions.Add("CompilerVersion", options.CompilerVersion); - } - - using (var csharp = new Microsoft.CSharp.CSharpCodeProvider(providerOptions)) - { - ExtractorSettings settings = - (from x in SettingsList - where x.Flavor == options.Flavor - select x).FirstOrDefault(); - - // sanity check; should never happen - if (settings == null) - throw new BadStateException(String.Format("While saving a Self-Extracting Zip, Cannot find that flavor ({0})?", options.Flavor)); - - // This is the list of referenced assemblies. Ionic.Zip is - // needed here. Also if it is the winforms (gui) extractor, we - // need other referenced assemblies, like - // System.Windows.Forms.dll, etc. - var cp = new System.CodeDom.Compiler.CompilerParameters(); - cp.ReferencedAssemblies.Add(a1.Location); - if (settings.ReferencedAssemblies != null) - foreach (string ra in settings.ReferencedAssemblies) - cp.ReferencedAssemblies.Add(ra); - - cp.GenerateInMemory = false; - cp.GenerateExecutable = true; - cp.IncludeDebugInformation = false; - cp.CompilerOptions = ""; - - Assembly a2 = Assembly.GetExecutingAssembly(); - - // Use this to concatenate all the source code resources into a - // single module. - var sb = new System.Text.StringBuilder(); - - // In case there are compiler errors later, we allocate a source - // file name now. If errors are detected, we'll spool the source - // code as well as the errors (in comments) into that filename, - // and throw an exception with the filename. Makes it easier to - // diagnose. This should be rare; most errors happen only - // during devlpmt of DotNetZip itself, but there are rare - // occasions when they occur in other cases. - string sourceFile = GenerateTempPathname(tmpDir, "cs"); - - - // // debugging: enumerate the resources in this assembly - // Console.WriteLine("Resources in this assembly:"); - // foreach (string rsrc in a2.GetManifestResourceNames()) - // { - // Console.WriteLine(rsrc); - // } - // Console.WriteLine(); - - - // all the source code is embedded in the DLL as a zip file. - using (ZipFile zip = ZipFile.Read(a2.GetManifestResourceStream("Ionic.Zip.Resources.ZippedResources.zip"))) - { - // // debugging: enumerate the files in the embedded zip - // Console.WriteLine("Entries in the embbedded zip:"); - // foreach (ZipEntry entry in zip) - // { - // Console.WriteLine(entry.FileName); - // } - // Console.WriteLine(); - - unpackedResourceDir = GenerateTempPathname(tmpDir, "tmp"); - - if (String.IsNullOrEmpty(options.IconFile)) - { - // Use the ico file that is embedded into the Ionic.Zip - // DLL itself. To do this we must unpack the icon to - // the filesystem, in order to specify it on the cmdline - // of csc.exe. This method will remove the unpacked - // file later. - System.IO.Directory.CreateDirectory(unpackedResourceDir); - ZipEntry e = zip["zippedFile.ico"]; - // Must not extract a readonly file - it will be impossible to - // delete later. - if ((e.Attributes & FileAttributes.ReadOnly) == FileAttributes.ReadOnly) - e.Attributes ^= FileAttributes.ReadOnly; - e.Extract(unpackedResourceDir); - nameOfIconFile = Path.Combine(unpackedResourceDir, "zippedFile.ico"); - cp.CompilerOptions += String.Format("/win32icon:\"{0}\"", nameOfIconFile); - } - else - cp.CompilerOptions += String.Format("/win32icon:\"{0}\"", options.IconFile); - - cp.OutputAssembly = stubExe; - - if (options.Flavor == SelfExtractorFlavor.WinFormsApplication) - cp.CompilerOptions += " /target:winexe"; - - if (!String.IsNullOrEmpty(options.AdditionalCompilerSwitches)) - cp.CompilerOptions += " " + options.AdditionalCompilerSwitches; - - if (String.IsNullOrEmpty(cp.CompilerOptions)) - cp.CompilerOptions = null; - - if ((settings.CopyThroughResources != null) && (settings.CopyThroughResources.Count != 0)) - { - if (!Directory.Exists(unpackedResourceDir)) System.IO.Directory.CreateDirectory(unpackedResourceDir); - foreach (string re in settings.CopyThroughResources) - { - string filename = Path.Combine(unpackedResourceDir, re); - - ExtractResourceToFile(a2, re, filename); - // add the file into the target assembly as an embedded resource - cp.EmbeddedResources.Add(filename); - } - } - - // add the Ionic.Utils.Zip DLL as an embedded resource - cp.EmbeddedResources.Add(a1.Location); - - // file header - sb.Append("// " + Path.GetFileName(sourceFile) + "\n") - .Append("// --------------------------------------------\n//\n") - .Append("// This SFX source file was generated by DotNetZip ") - .Append(ZipFile.LibraryVersion.ToString()) - .Append("\n// at ") - .Append(System.DateTime.Now.ToString("yyyy MMMM dd HH:mm:ss")) - .Append("\n//\n// --------------------------------------------\n\n\n"); - - // assembly attributes - if (!String.IsNullOrEmpty(options.Description)) - sb.Append("[assembly: System.Reflection.AssemblyTitle(\"" - + options.Description.Replace("\"", "") - + "\")]\n"); - else - sb.Append("[assembly: System.Reflection.AssemblyTitle(\"DotNetZip SFX Archive\")]\n"); - - if (!String.IsNullOrEmpty(options.ProductVersion)) - sb.Append("[assembly: System.Reflection.AssemblyInformationalVersion(\"" - + options.ProductVersion.Replace("\"", "") - + "\")]\n"); - - // workitem - string copyright = - (String.IsNullOrEmpty(options.Copyright)) - ? "Extractor: Copyright � Dino Chiesa 2008-2011" - : options.Copyright.Replace("\"", ""); - - if (!String.IsNullOrEmpty(options.ProductName)) - sb.Append("[assembly: System.Reflection.AssemblyProduct(\"") - .Append(options.ProductName.Replace("\"", "")) - .Append("\")]\n"); - else - sb.Append("[assembly: System.Reflection.AssemblyProduct(\"DotNetZip\")]\n"); - - - sb.Append("[assembly: System.Reflection.AssemblyCopyright(\"" + copyright + "\")]\n") - .Append(String.Format("[assembly: System.Reflection.AssemblyVersion(\"{0}\")]\n", ZipFile.LibraryVersion.ToString())); - if (options.FileVersion != null) - sb.Append(String.Format("[assembly: System.Reflection.AssemblyFileVersion(\"{0}\")]\n", - options.FileVersion.ToString())); - - sb.Append("\n\n\n"); - - // Set the default extract location if it is available - string extractLoc = options.DefaultExtractDirectory; - if (extractLoc != null) - { - // remove double-quotes and replace slash with double-slash. - // This, because the value is going to be embedded into a - // cs file as a quoted string, and it needs to be escaped. - extractLoc = extractLoc.Replace("\"", "").Replace("\\", "\\\\"); - } - - string postExCmdLine = options.PostExtractCommandLine; - if (postExCmdLine != null) - { - postExCmdLine = postExCmdLine.Replace("\\", "\\\\"); - postExCmdLine = postExCmdLine.Replace("\"", "\\\""); - } - - - foreach (string rc in settings.ResourcesToCompile) - { - using (Stream s = zip[rc].OpenReader()) - { - if (s == null) - throw new ZipException(String.Format("missing resource '{0}'", rc)); - using (StreamReader sr = new StreamReader(s)) - { - while (sr.Peek() >= 0) - { - string line = sr.ReadLine(); - if (extractLoc != null) - line = line.Replace("@@EXTRACTLOCATION", extractLoc); - - line = line.Replace("@@REMOVE_AFTER_EXECUTE", options.RemoveUnpackedFilesAfterExecute.ToString()); - line = line.Replace("@@QUIET", options.Quiet.ToString()); - if (!String.IsNullOrEmpty(options.SfxExeWindowTitle)) - - line = line.Replace("@@SFX_EXE_WINDOW_TITLE", options.SfxExeWindowTitle); - - line = line.Replace("@@EXTRACT_EXISTING_FILE", ((int)options.ExtractExistingFile).ToString()); - - if (postExCmdLine != null) - line = line.Replace("@@POST_UNPACK_CMD_LINE", postExCmdLine); - - sb.Append(line).Append("\n"); - } - } - sb.Append("\n\n"); - } - } - } - - string LiteralSource = sb.ToString(); - -#if DEBUGSFX - // for debugging only - string sourceModule = GenerateTempPathname(tmpDir, "cs"); - using (StreamWriter sw = File.CreateText(sourceModule)) - { - sw.Write(LiteralSource); - } - Console.WriteLine("source: {0}", sourceModule); -#endif - - var cr = csharp.CompileAssemblyFromSource(cp, LiteralSource); - - - if (cr == null) - throw new SfxGenerationException("Cannot compile the extraction logic!"); - - if (Verbose) - foreach (string output in cr.Output) - StatusMessageTextWriter.WriteLine(output); - - if (cr.Errors.Count != 0) - { - using (TextWriter tw = new StreamWriter(sourceFile)) - { - // first, the source we compiled - tw.Write(LiteralSource); - - // now, append the compile errors - tw.Write("\n\n\n// ------------------------------------------------------------------\n"); - tw.Write("// Errors during compilation: \n//\n"); - string p = Path.GetFileName(sourceFile); - - foreach (System.CodeDom.Compiler.CompilerError error in cr.Errors) - { - tw.Write(String.Format("// {0}({1},{2}): {3} {4}: {5}\n//\n", - p, // 0 - error.Line, // 1 - error.Column, // 2 - error.IsWarning ? "Warning" : "error", // 3 - error.ErrorNumber, // 4 - error.ErrorText)); // 5 - } - } - throw new SfxGenerationException(String.Format("Errors compiling the extraction logic! {0}", sourceFile)); - } - - OnSaveEvent(ZipProgressEventType.Saving_AfterCompileSelfExtractor); - - // Now, copy the resulting EXE image to the _writestream. - // Because this stub exe is being saved first, the effect will be to - // concatenate the exe and the zip data together. - using (System.IO.Stream input = System.IO.File.OpenRead(stubExe)) - { - byte[] buffer = new byte[4000]; - int n = 1; - while (n != 0) - { - n = input.Read(buffer, 0, buffer.Length); - if (n != 0) - WriteStream.Write(buffer, 0, n); - } - } - } - - OnSaveEvent(ZipProgressEventType.Saving_AfterSaveTempArchive); - } - finally - { - try - { - if (Directory.Exists(unpackedResourceDir)) - { - try { Directory.Delete(unpackedResourceDir, true); } - catch (System.IO.IOException exc1) - { - StatusMessageTextWriter.WriteLine("Warning: Exception: {0}", exc1); - } - } - if (File.Exists(stubExe)) - { - try { File.Delete(stubExe); } - catch (System.IO.IOException exc1) - { - StatusMessageTextWriter.WriteLine("Warning: Exception: {0}", exc1); - } - } - } - catch (System.IO.IOException) { } - } - - return; - - } - - - - internal static string GenerateTempPathname(string dir, string extension) - { - string candidate = null; - String AppName = System.Reflection.Assembly.GetExecutingAssembly().GetName().Name; - do - { - // workitem 13475 - string uuid = System.Guid.NewGuid().ToString(); - - string Name = String.Format("{0}-{1}-{2}.{3}", - AppName, System.DateTime.Now.ToString("yyyyMMMdd-HHmmss"), - uuid, extension); - candidate = System.IO.Path.Combine(dir, Name); - } while (System.IO.File.Exists(candidate) || System.IO.Directory.Exists(candidate)); - - // The candidate path does not exist as a file or directory. - // It can now be created, as a file or directory. - return candidate; - } - - } -#endif -} +// ZipFile.saveSelfExtractor.cs +// ------------------------------------------------------------------ +// +// Copyright (c) 2008-2011 Dino Chiesa. +// All rights reserved. +// +// This code module is part of DotNetZip, a zipfile class library. +// +// ------------------------------------------------------------------ +// +// This code is licensed under the Microsoft Public License. +// See the file License.txt for the license details. +// More info on: http://dotnetzip.codeplex.com +// +// ------------------------------------------------------------------ +// +// last saved (in emacs): +// Time-stamp: <2011-August-10 19:22:46> +// +// ------------------------------------------------------------------ +// +// This is a the source module that implements the stuff for saving to a +// self-extracting Zip archive. +// +// ZipFile is set up as a "partial class" - defined in multiple .cs source modules. +// This is one of the source modules for the ZipFile class. +// +// Here's the design: The self-extracting zip file is just a regular managed EXE +// file, with embedded resources. The managed code logic instantiates a ZipFile, and +// then extracts each entry. The embedded resources include the zip archive content, +// as well as the Zip library itself. The latter is required so that self-extracting +// can work on any machine, whether or not it has the DotNetZip library installed on +// it. +// +// What we need to do is create the animal I just described, within a method on the +// ZipFile class. This source module provides that capability. The method is +// SaveSelfExtractor(). +// +// The way the method works: it uses the programmatic interface to the csc.exe +// compiler, Microsoft.CSharp.CSharpCodeProvider, to compile "boilerplate" +// extraction logic into a new assembly. As part of that compile, we embed within +// that assembly the zip archive itself, as well as the Zip library. +// +// Therefore we need to first save to a temporary zip file, then produce the exe. +// +// There are a few twists. +// +// The Visual Studio Project structure is a little weird. There are code files +// that ARE NOT compiled during a normal build of the VS Solution. They are +// marked as embedded resources. These are the various "boilerplate" modules that +// are used in the self-extractor. These modules are: WinFormsSelfExtractorStub.cs +// WinFormsSelfExtractorStub.Designer.cs CommandLineSelfExtractorStub.cs +// PasswordDialog.cs PasswordDialog.Designer.cs +// +// At design time, if you want to modify the way the GUI looks, you have to +// mark those modules to have a "compile" build action. Then tweak em, test, +// etc. Then again mark them as "Embedded resource". +// +// ------------------------------------------------------------------ + +using System; +using System.Reflection; +using System.IO; +using System.Collections.Generic; +using System.Linq; + + +namespace Ionic.Zip +{ +#if !NO_SFX + /// + /// An enum that provides the different self-extractor flavors + /// + public enum SelfExtractorFlavor + { + /// + /// A self-extracting zip archive that runs from the console or + /// command line. + /// + ConsoleApplication = 0, + + /// + /// A self-extracting zip archive that presents a graphical user + /// interface when it is executed. + /// + WinFormsApplication, + } + + /// + /// The options for generating a self-extracting archive. + /// + public class SelfExtractorSaveOptions + { + /// + /// The type of SFX to create. + /// + public SelfExtractorFlavor Flavor + { + get; + set; + } + + /// + /// The command to run after extraction. + /// + /// + /// + /// + /// This is optional. Leave it empty (null in C# or Nothing in + /// VB) to run no command after extraction. + /// + /// + /// + /// If it is non-empty, the SFX will execute the command specified in this + /// string on the user's machine, and using the extract directory as the + /// working directory for the process, after unpacking the archive. The + /// program to execute can include a path, if you like. If you want to execute + /// a program that accepts arguments, specify the program name, followed by a + /// space, and then the arguments for the program, each separated by a space, + /// just as you would on a normal command line. Example: program.exe arg1 + /// arg2. The string prior to the first space will be taken as the + /// program name, and the string following the first space specifies the + /// arguments to the program. + /// + /// + /// + /// If you want to execute a program that has a space in the name or path of + /// the file, surround the program name in double-quotes. The first character + /// of the command line should be a double-quote character, and there must be + /// a matching double-quote following the end of the program file name. Any + /// optional arguments to the program follow that, separated by + /// spaces. Example: "c:\project files\program name.exe" arg1 arg2. + /// + /// + /// + /// If the flavor of the SFX is SelfExtractorFlavor.ConsoleApplication, + /// then the SFX starts a new process, using this string as the post-extract + /// command line. The SFX waits for the process to exit. The exit code of + /// the post-extract command line is returned as the exit code of the + /// command-line self-extractor exe. A non-zero exit code is typically used to + /// indicated a failure by the program. In the case of an SFX, a non-zero exit + /// code may indicate a failure during extraction, OR, it may indicate a + /// failure of the run-after-extract program if specified, OR, it may indicate + /// the run-after-extract program could not be fuond. There is no way to + /// distinguish these conditions from the calling shell, aside from parsing + /// the output of the SFX. If you have Quiet set to true, you may not + /// see error messages, if a problem occurs. + /// + /// + /// + /// If the flavor of the SFX is + /// SelfExtractorFlavor.WinFormsApplication, then the SFX starts a new + /// process, using this string as the post-extract command line, and using the + /// extract directory as the working directory for the process. The SFX does + /// not wait for the command to complete, and does not check the exit code of + /// the program. If the run-after-extract program cannot be fuond, a message + /// box is displayed indicating that fact. + /// + /// + /// + /// You can specify environment variables within this string, with a format like + /// %NAME%. The value of these variables will be expanded at the time + /// the SFX is run. Example: %WINDIR%\system32\xcopy.exe may expand at + /// runtime to c:\Windows\System32\xcopy.exe. + /// + /// + /// + /// By combining this with the RemoveUnpackedFilesAfterExecute + /// flag, you can create an SFX that extracts itself, runs a file that + /// was extracted, then deletes all the files that were extracted. If + /// you want it to run "invisibly" then set Flavor to + /// SelfExtractorFlavor.ConsoleApplication, and set Quiet + /// to true. The user running such an EXE will see a console window + /// appear, then disappear quickly. You may also want to specify the + /// default extract location, with DefaultExtractDirectory. + /// + /// + /// + /// If you set Flavor to + /// SelfExtractorFlavor.WinFormsApplication, and set Quiet to + /// true, then a GUI with progressbars is displayed, but it is + /// "non-interactive" - it accepts no input from the user. Instead the SFX + /// just automatically unpacks and exits. + /// + /// + /// + public String PostExtractCommandLine + { + get; + set; + } + + /// + /// The default extract directory the user will see when + /// running the self-extracting archive. + /// + /// + /// + /// + /// Passing null (or Nothing in VB) here will cause the Self Extractor to use + /// the the user's personal directory () for the default extract + /// location. + /// + /// + /// + /// This is only a default location. The actual extract location will be + /// settable on the command line when the SFX is executed. + /// + /// + /// + /// You can specify environment variables within this string, + /// with %NAME%. The value of these variables will be + /// expanded at the time the SFX is run. Example: + /// %USERPROFILE%\Documents\unpack may expand at runtime to + /// c:\users\melvin\Documents\unpack. + /// + /// + public String DefaultExtractDirectory + { + get; + set; + } + + /// + /// The name of an .ico file in the filesystem to use for the application icon + /// for the generated SFX. + /// + /// + /// + /// + /// Normally, DotNetZip will embed an "zipped folder" icon into the generated + /// SFX. If you prefer to use a different icon, you can specify it here. It + /// should be a .ico file. This file is passed as the /win32icon + /// option to the csc.exe compiler when constructing the SFX file. + /// + /// + /// + public string IconFile + { + get; + set; + } + + /// + /// Whether the ConsoleApplication SFX will be quiet during extraction. + /// + /// + /// + /// + /// This option affects the way the generated SFX runs. By default it is + /// false. When you set it to true,... + /// + /// + /// + /// + /// Flavor + /// Behavior + /// + /// + /// + /// ConsoleApplication + /// no messages will be emitted during successful + /// operation. Double-clicking the SFX in Windows + /// Explorer or as an attachment in an email will cause a console + /// window to appear briefly, before it disappears. If you run the + /// ConsoleApplication SFX from the cmd.exe prompt, it runs as a + /// normal console app; by default, because it is quiet, it displays + /// no messages to the console. If you pass the -v+ command line + /// argument to the Console SFX when you run it, you will get verbose + /// messages to the console. + /// + /// + /// + /// + /// WinFormsApplication + /// the SFX extracts automatically when the application + /// is launched, with no additional user input. + /// + /// + /// + /// + /// + /// + /// When you set it to false,... + /// + /// + /// + /// + /// Flavor + /// Behavior + /// + /// + /// + /// ConsoleApplication + /// the extractor will emit a + /// message to the console for each entry extracted. + /// + /// When double-clicking to launch the SFX, the console window will + /// remain, and the SFX will emit a message for each file as it + /// extracts. The messages fly by quickly, they won't be easily + /// readable, unless the extracted files are fairly large. + /// + /// + /// + /// + /// + /// WinFormsApplication + /// the SFX presents a forms UI and allows the user to select + /// options before extracting. + /// + /// + /// + /// + /// + /// + public bool Quiet + { + get; + set; + } + + + /// + /// Specify what the self-extractor will do when extracting an entry + /// would overwrite an existing file. + /// + /// + /// + /// The default behavvior is to Throw. + /// + /// + public Ionic.Zip.ExtractExistingFileAction ExtractExistingFile + { + get; + set; + } + + + /// + /// Whether to remove the files that have been unpacked, after executing the + /// PostExtractCommandLine. + /// + /// + /// + /// + /// If true, and if there is a + /// PostExtractCommandLine, and if the command runs successfully, + /// then the files that the SFX unpacked will be removed, afterwards. If + /// the command does not complete successfully (non-zero return code), + /// that is interpreted as a failure, and the extracted files will not be + /// removed. + /// + /// + /// + /// Setting this flag, and setting Flavor to + /// SelfExtractorFlavor.ConsoleApplication, and setting Quiet to + /// true, results in an SFX that extracts itself, runs a file that was + /// extracted, then deletes all the files that were extracted, with no + /// intervention by the user. You may also want to specify the default + /// extract location, with DefaultExtractDirectory. + /// + /// + /// + public bool RemoveUnpackedFilesAfterExecute + { + get; + set; + } + + + /// + /// The file version number to embed into the generated EXE. It will show up, for + /// example, during a mouseover in Windows Explorer. + /// + /// + public Version FileVersion + { + get; + set; + } + + /// + /// The product version to embed into the generated EXE. It will show up, for + /// example, during a mouseover in Windows Explorer. + /// + /// + /// + /// You can use any arbitrary string, but a human-readable version number is + /// recommended. For example "v1.2 alpha" or "v4.2 RC2". If you specify nothing, + /// then there is no product version embedded into the EXE. + /// + /// + public String ProductVersion + { + get; + set; + } + + /// + /// The copyright notice, if any, to embed into the generated EXE. + /// + /// + /// + /// It will show up, for example, while viewing properties of the file in + /// Windows Explorer. You can use any arbitrary string, but typically you + /// want something like "Copyright � Dino Chiesa 2011". + /// + /// + public String Copyright + { + get; + set; + } + + + /// + /// The description to embed into the generated EXE. + /// + /// + /// + /// Use any arbitrary string. This text will be displayed during a + /// mouseover in Windows Explorer. If you specify nothing, then the string + /// "DotNetZip SFX Archive" is embedded into the EXE as the description. + /// + /// + public String Description + { + get; + set; + } + + /// + /// The product name to embed into the generated EXE. + /// + /// + /// + /// Use any arbitrary string. This text will be displayed + /// while viewing properties of the EXE file in + /// Windows Explorer. + /// + /// + public String ProductName + { + get; + set; + } + + /// + /// The title to display in the Window of a GUI SFX, while it extracts. + /// + /// + /// + /// + /// By default the title show in the GUI window of a self-extractor + /// is "DotNetZip Self-extractor (http://DotNetZip.codeplex.com/)". + /// You can change that by setting this property before saving the SFX. + /// + /// + /// + /// This property has an effect only when producing a Self-extractor + /// of flavor SelfExtractorFlavor.WinFormsApplication. + /// + /// + /// + public String SfxExeWindowTitle + { + // workitem 12608 + get; + set; + } + + /// + /// Additional options for the csc.exe compiler, when producing the SFX + /// EXE. + /// + /// + public string AdditionalCompilerSwitches + { + get; set; + } + + /// + /// Version of the csc.exe compiler, if not specified then the default version + /// will be used. + /// + /// + public string CompilerVersion + { + get; set; + } + } + + + + + partial class ZipFile + { + class ExtractorSettings + { + public SelfExtractorFlavor Flavor; + public List ReferencedAssemblies; + public List CopyThroughResources; + public List ResourcesToCompile; + } + + + private static ExtractorSettings[] SettingsList = { + new ExtractorSettings() { + Flavor = SelfExtractorFlavor.WinFormsApplication, + ReferencedAssemblies= new List{ + "System.dll", "System.Windows.Forms.dll", "System.Drawing.dll"}, + CopyThroughResources = new List{ + "Ionic.Zip.WinFormsSelfExtractorStub.resources", + "Ionic.Zip.Forms.PasswordDialog.resources", + "Ionic.Zip.Forms.ZipContentsDialog.resources"}, + ResourcesToCompile = new List{ + "WinFormsSelfExtractorStub.cs", + "WinFormsSelfExtractorStub.Designer.cs", // .Designer.cs? + "PasswordDialog.cs", + "PasswordDialog.Designer.cs", //.Designer.cs" + "ZipContentsDialog.cs", + "ZipContentsDialog.Designer.cs", //.Designer.cs" + "FolderBrowserDialogEx.cs", + } + }, + new ExtractorSettings() { + Flavor = SelfExtractorFlavor.ConsoleApplication, + ReferencedAssemblies= new List { "System.dll", }, + CopyThroughResources = null, + ResourcesToCompile = new List{"CommandLineSelfExtractorStub.cs"} + } + }; + + + + //string _defaultExtractLocation; + //string _postExtractCmdLine; + // string _SetDefaultLocationCode = + // "namespace Ionic.Zip { public partial class WinFormsSelfExtractorStub { partial void _SetDefaultExtractLocation() {" + + // " txtExtractDirectory.Text = \"@@VALUE\"; } }}"; + + + + /// + /// Saves the ZipFile instance to a self-extracting zip archive. + /// + /// + /// + /// + /// + /// The generated exe image will execute on any machine that has the .NET + /// Framework 4.0 installed on it. The generated exe image is also a + /// valid ZIP file, readable with DotNetZip or another Zip library or tool + /// such as WinZip. + /// + /// + /// + /// There are two "flavors" of self-extracting archive. The + /// WinFormsApplication version will pop up a GUI and allow the + /// user to select a target directory into which to extract. There's also + /// a checkbox allowing the user to specify to overwrite existing files, + /// and another checkbox to allow the user to request that Explorer be + /// opened to see the extracted files after extraction. The other flavor + /// is ConsoleApplication. A self-extractor generated with that + /// flavor setting will run from the command line. It accepts command-line + /// options to set the overwrite behavior, and to specify the target + /// extraction directory. + /// + /// + /// + /// There are a few temporary files created during the saving to a + /// self-extracting zip. These files are created in the directory pointed + /// to by , which defaults to . These temporary files are + /// removed upon successful completion of this method. + /// + /// + /// + /// When a user runs the WinForms SFX, the user's personal directory (Environment.SpecialFolder.Personal) + /// will be used as the default extract location. If you want to set the + /// default extract location, you should use the other overload of + /// SaveSelfExtractor()/ The user who runs the SFX will have the + /// opportunity to change the extract directory before extracting. When + /// the user runs the Command-Line SFX, the user must explicitly specify + /// the directory to which to extract. The .NET Framework 4.0 is required + /// on the computer when the self-extracting archive is run. + /// + /// + /// + /// NB: This method is not available in the "Reduced" DotNetZip library. + /// + /// + /// + /// + /// + /// + /// string DirectoryPath = "c:\\Documents\\Project7"; + /// using (ZipFile zip = new ZipFile()) + /// { + /// zip.AddDirectory(DirectoryPath, System.IO.Path.GetFileName(DirectoryPath)); + /// zip.Comment = "This will be embedded into a self-extracting console-based exe"; + /// zip.SaveSelfExtractor("archive.exe", SelfExtractorFlavor.ConsoleApplication); + /// } + /// + /// + /// Dim DirectoryPath As String = "c:\Documents\Project7" + /// Using zip As New ZipFile() + /// zip.AddDirectory(DirectoryPath, System.IO.Path.GetFileName(DirectoryPath)) + /// zip.Comment = "This will be embedded into a self-extracting console-based exe" + /// zip.SaveSelfExtractor("archive.exe", SelfExtractorFlavor.ConsoleApplication) + /// End Using + /// + /// + /// + /// + /// a pathname, possibly fully qualified, to be created. Typically it + /// will end in an .exe extension. + /// + /// Indicates whether a Winforms or Console self-extractor is + /// desired. + public void SaveSelfExtractor(string exeToGenerate, SelfExtractorFlavor flavor) + { + SelfExtractorSaveOptions options = new SelfExtractorSaveOptions(); + options.Flavor = flavor; + SaveSelfExtractor(exeToGenerate, options); + } + + + + /// + /// Saves the ZipFile instance to a self-extracting zip archive, using + /// the specified save options. + /// + /// + /// + /// + /// This method saves a self extracting archive, using the specified save + /// options. These options include the flavor of the SFX, the default extract + /// directory, the icon file, and so on. See the documentation + /// for for more + /// details. + /// + /// + /// + /// The user who runs the SFX will have the opportunity to change the extract + /// directory before extracting. If at the time of extraction, the specified + /// directory does not exist, the SFX will create the directory before + /// extracting the files. + /// + /// + /// + /// + /// + /// This example saves a WinForms-based self-extracting archive EXE that + /// will use c:\ExtractHere as the default extract location. The C# code + /// shows syntax for .NET 3.0, which uses an object initializer for + /// the SelfExtractorOptions object. + /// + /// string DirectoryPath = "c:\\Documents\\Project7"; + /// using (ZipFile zip = new ZipFile()) + /// { + /// zip.AddDirectory(DirectoryPath, System.IO.Path.GetFileName(DirectoryPath)); + /// zip.Comment = "This will be embedded into a self-extracting WinForms-based exe"; + /// var options = new SelfExtractorOptions + /// { + /// Flavor = SelfExtractorFlavor.WinFormsApplication, + /// DefaultExtractDirectory = "%USERPROFILE%\\ExtractHere", + /// PostExtractCommandLine = ExeToRunAfterExtract, + /// SfxExeWindowTitle = "My Custom Window Title", + /// RemoveUnpackedFilesAfterExecute = true + /// }; + /// zip.SaveSelfExtractor("archive.exe", options); + /// } + /// + /// + /// Dim DirectoryPath As String = "c:\Documents\Project7" + /// Using zip As New ZipFile() + /// zip.AddDirectory(DirectoryPath, System.IO.Path.GetFileName(DirectoryPath)) + /// zip.Comment = "This will be embedded into a self-extracting console-based exe" + /// Dim options As New SelfExtractorOptions() + /// options.Flavor = SelfExtractorFlavor.WinFormsApplication + /// options.DefaultExtractDirectory = "%USERPROFILE%\\ExtractHere" + /// options.PostExtractCommandLine = ExeToRunAfterExtract + /// options.SfxExeWindowTitle = "My Custom Window Title" + /// options.RemoveUnpackedFilesAfterExecute = True + /// zip.SaveSelfExtractor("archive.exe", options) + /// End Using + /// + /// + /// + /// The name of the EXE to generate. + /// provides the options for creating the + /// Self-extracting archive. + public void SaveSelfExtractor(string exeToGenerate, SelfExtractorSaveOptions options) + { + // Save an SFX that is both an EXE and a ZIP. + + // Check for the case where we are re-saving a zip archive + // that was originally instantiated with a stream. In that case, + // the _name will be null. If so, we set _writestream to null, + // which insures that we'll cons up a new WriteStream (with a filesystem + // file backing it) in the Save() method. + if (_name == null) + _writestream = null; + + _SavingSfx = true; + _name = exeToGenerate; + if (Directory.Exists(_name)) + throw new ZipException("Bad Directory", new System.ArgumentException("That name specifies an existing directory. Please specify a filename.", "exeToGenerate")); + _contentsChanged = true; + _fileAlreadyExists = File.Exists(_name); + + _SaveSfxStub(exeToGenerate, options); + + Save(); + _SavingSfx = false; + } + + + + + private static void ExtractResourceToFile(Assembly a, string resourceName, string filename) + { + int n = 0; + byte[] bytes = new byte[1024]; + using (Stream instream = a.GetManifestResourceStream(resourceName)) + { + if (instream == null) + throw new ZipException(String.Format("missing resource '{0}'", resourceName)); + + using (FileStream outstream = File.OpenWrite(filename)) + { + do + { + n = instream.Read(bytes, 0, bytes.Length); + outstream.Write(bytes, 0, n); + } while (n > 0); + } + } + } + + + private void _SaveSfxStub(string exeToGenerate, SelfExtractorSaveOptions options) + { + string nameOfIconFile = null; + string stubExe = null; + string unpackedResourceDir = null; + string tmpDir = null; + try + { + if (File.Exists(exeToGenerate)) + { + if (Verbose) StatusMessageTextWriter.WriteLine("The existing file ({0}) will be overwritten.", exeToGenerate); + } + if (!exeToGenerate.EndsWith(".exe")) + { + if (Verbose) StatusMessageTextWriter.WriteLine("Warning: The generated self-extracting file will not have an .exe extension."); + } + + // workitem 10553 + tmpDir = TempFileFolder ?? Path.GetDirectoryName(exeToGenerate); + stubExe = GenerateTempPathname(tmpDir, "exe"); + + // get the Ionic.Zip assembly + Assembly a1 = typeof(ZipFile).Assembly; + + var providerOptions = new Dictionary(); + if (!string.IsNullOrEmpty(options.CompilerVersion)) + { + providerOptions.Add("CompilerVersion", options.CompilerVersion); + } + + using (var csharp = new Microsoft.CSharp.CSharpCodeProvider(providerOptions)) + { + ExtractorSettings settings = + (from x in SettingsList + where x.Flavor == options.Flavor + select x).FirstOrDefault(); + + // sanity check; should never happen + if (settings == null) + throw new BadStateException(String.Format("While saving a Self-Extracting Zip, Cannot find that flavor ({0})?", options.Flavor)); + + // This is the list of referenced assemblies. Ionic.Zip is + // needed here. Also if it is the winforms (gui) extractor, we + // need other referenced assemblies, like + // System.Windows.Forms.dll, etc. + var cp = new System.CodeDom.Compiler.CompilerParameters(); + cp.ReferencedAssemblies.Add(a1.Location); + if (settings.ReferencedAssemblies != null) + foreach (string ra in settings.ReferencedAssemblies) + cp.ReferencedAssemblies.Add(ra); + + cp.GenerateInMemory = false; + cp.GenerateExecutable = true; + cp.IncludeDebugInformation = false; + cp.CompilerOptions = ""; + + Assembly a2 = Assembly.GetExecutingAssembly(); + + // Use this to concatenate all the source code resources into a + // single module. + var sb = new System.Text.StringBuilder(); + + // In case there are compiler errors later, we allocate a source + // file name now. If errors are detected, we'll spool the source + // code as well as the errors (in comments) into that filename, + // and throw an exception with the filename. Makes it easier to + // diagnose. This should be rare; most errors happen only + // during devlpmt of DotNetZip itself, but there are rare + // occasions when they occur in other cases. + string sourceFile = GenerateTempPathname(tmpDir, "cs"); + + + // // debugging: enumerate the resources in this assembly + // Console.WriteLine("Resources in this assembly:"); + // foreach (string rsrc in a2.GetManifestResourceNames()) + // { + // Console.WriteLine(rsrc); + // } + // Console.WriteLine(); + + + // all the source code is embedded in the DLL as a zip file. + using (ZipFile zip = ZipFile.Read(a2.GetManifestResourceStream("Ionic.Zip.Resources.ZippedResources.zip"))) + { + // // debugging: enumerate the files in the embedded zip + // Console.WriteLine("Entries in the embbedded zip:"); + // foreach (ZipEntry entry in zip) + // { + // Console.WriteLine(entry.FileName); + // } + // Console.WriteLine(); + + unpackedResourceDir = GenerateTempPathname(tmpDir, "tmp"); + + if (String.IsNullOrEmpty(options.IconFile)) + { + // Use the ico file that is embedded into the Ionic.Zip + // DLL itself. To do this we must unpack the icon to + // the filesystem, in order to specify it on the cmdline + // of csc.exe. This method will remove the unpacked + // file later. + System.IO.Directory.CreateDirectory(unpackedResourceDir); + ZipEntry e = zip["zippedFile.ico"]; + // Must not extract a readonly file - it will be impossible to + // delete later. + if ((e.Attributes & FileAttributes.ReadOnly) == FileAttributes.ReadOnly) + e.Attributes ^= FileAttributes.ReadOnly; + e.Extract(unpackedResourceDir); + nameOfIconFile = Path.Combine(unpackedResourceDir, "zippedFile.ico"); + cp.CompilerOptions += String.Format("/win32icon:\"{0}\"", nameOfIconFile); + } + else + cp.CompilerOptions += String.Format("/win32icon:\"{0}\"", options.IconFile); + + cp.OutputAssembly = stubExe; + + if (options.Flavor == SelfExtractorFlavor.WinFormsApplication) + cp.CompilerOptions += " /target:winexe"; + + if (!String.IsNullOrEmpty(options.AdditionalCompilerSwitches)) + cp.CompilerOptions += " " + options.AdditionalCompilerSwitches; + + if (String.IsNullOrEmpty(cp.CompilerOptions)) + cp.CompilerOptions = null; + + if ((settings.CopyThroughResources != null) && (settings.CopyThroughResources.Count != 0)) + { + if (!Directory.Exists(unpackedResourceDir)) System.IO.Directory.CreateDirectory(unpackedResourceDir); + foreach (string re in settings.CopyThroughResources) + { + string filename = Path.Combine(unpackedResourceDir, re); + + ExtractResourceToFile(a2, re, filename); + // add the file into the target assembly as an embedded resource + cp.EmbeddedResources.Add(filename); + } + } + + // add the Ionic.Utils.Zip DLL as an embedded resource + cp.EmbeddedResources.Add(a1.Location); + + // file header + sb.Append("// " + Path.GetFileName(sourceFile) + "\n") + .Append("// --------------------------------------------\n//\n") + .Append("// This SFX source file was generated by DotNetZip ") + .Append(ZipFile.LibraryVersion.ToString()) + .Append("\n// at ") + .Append(System.DateTime.Now.ToString("yyyy MMMM dd HH:mm:ss")) + .Append("\n//\n// --------------------------------------------\n\n\n"); + + // assembly attributes + if (!String.IsNullOrEmpty(options.Description)) + sb.Append("[assembly: System.Reflection.AssemblyTitle(\"" + + options.Description.Replace("\"", "") + + "\")]\n"); + else + sb.Append("[assembly: System.Reflection.AssemblyTitle(\"DotNetZip SFX Archive\")]\n"); + + if (!String.IsNullOrEmpty(options.ProductVersion)) + sb.Append("[assembly: System.Reflection.AssemblyInformationalVersion(\"" + + options.ProductVersion.Replace("\"", "") + + "\")]\n"); + + // workitem + string copyright = + (String.IsNullOrEmpty(options.Copyright)) + ? "Extractor: Copyright � Dino Chiesa 2008-2011" + : options.Copyright.Replace("\"", ""); + + if (!String.IsNullOrEmpty(options.ProductName)) + sb.Append("[assembly: System.Reflection.AssemblyProduct(\"") + .Append(options.ProductName.Replace("\"", "")) + .Append("\")]\n"); + else + sb.Append("[assembly: System.Reflection.AssemblyProduct(\"DotNetZip\")]\n"); + + + sb.Append("[assembly: System.Reflection.AssemblyCopyright(\"" + copyright + "\")]\n") + .Append(String.Format("[assembly: System.Reflection.AssemblyVersion(\"{0}\")]\n", ZipFile.LibraryVersion.ToString())); + if (options.FileVersion != null) + sb.Append(String.Format("[assembly: System.Reflection.AssemblyFileVersion(\"{0}\")]\n", + options.FileVersion.ToString())); + + sb.Append("\n\n\n"); + + // Set the default extract location if it is available + string extractLoc = options.DefaultExtractDirectory; + if (extractLoc != null) + { + // remove double-quotes and replace slash with double-slash. + // This, because the value is going to be embedded into a + // cs file as a quoted string, and it needs to be escaped. + extractLoc = extractLoc.Replace("\"", "").Replace("\\", "\\\\"); + } + + string postExCmdLine = options.PostExtractCommandLine; + if (postExCmdLine != null) + { + postExCmdLine = postExCmdLine.Replace("\\", "\\\\"); + postExCmdLine = postExCmdLine.Replace("\"", "\\\""); + } + + + foreach (string rc in settings.ResourcesToCompile) + { + using (Stream s = zip[rc].OpenReader()) + { + if (s == null) + throw new ZipException(String.Format("missing resource '{0}'", rc)); + using (StreamReader sr = new StreamReader(s)) + { + while (sr.Peek() >= 0) + { + string line = sr.ReadLine(); + if (extractLoc != null) + line = line.Replace("@@EXTRACTLOCATION", extractLoc); + + line = line.Replace("@@REMOVE_AFTER_EXECUTE", options.RemoveUnpackedFilesAfterExecute.ToString()); + line = line.Replace("@@QUIET", options.Quiet.ToString()); + if (!String.IsNullOrEmpty(options.SfxExeWindowTitle)) + + line = line.Replace("@@SFX_EXE_WINDOW_TITLE", options.SfxExeWindowTitle); + + line = line.Replace("@@EXTRACT_EXISTING_FILE", ((int)options.ExtractExistingFile).ToString()); + + if (postExCmdLine != null) + line = line.Replace("@@POST_UNPACK_CMD_LINE", postExCmdLine); + + sb.Append(line).Append("\n"); + } + } + sb.Append("\n\n"); + } + } + } + + string LiteralSource = sb.ToString(); + +#if DEBUGSFX + // for debugging only + string sourceModule = GenerateTempPathname(tmpDir, "cs"); + using (StreamWriter sw = File.CreateText(sourceModule)) + { + sw.Write(LiteralSource); + } + Console.WriteLine("source: {0}", sourceModule); +#endif + + var cr = csharp.CompileAssemblyFromSource(cp, LiteralSource); + + + if (cr == null) + throw new SfxGenerationException("Cannot compile the extraction logic!"); + + if (Verbose) + foreach (string output in cr.Output) + StatusMessageTextWriter.WriteLine(output); + + if (cr.Errors.Count != 0) + { + using (TextWriter tw = new StreamWriter(sourceFile)) + { + // first, the source we compiled + tw.Write(LiteralSource); + + // now, append the compile errors + tw.Write("\n\n\n// ------------------------------------------------------------------\n"); + tw.Write("// Errors during compilation: \n//\n"); + string p = Path.GetFileName(sourceFile); + + foreach (System.CodeDom.Compiler.CompilerError error in cr.Errors) + { + tw.Write(String.Format("// {0}({1},{2}): {3} {4}: {5}\n//\n", + p, // 0 + error.Line, // 1 + error.Column, // 2 + error.IsWarning ? "Warning" : "error", // 3 + error.ErrorNumber, // 4 + error.ErrorText)); // 5 + } + } + throw new SfxGenerationException(String.Format("Errors compiling the extraction logic! {0}", sourceFile)); + } + + OnSaveEvent(ZipProgressEventType.Saving_AfterCompileSelfExtractor); + + // Now, copy the resulting EXE image to the _writestream. + // Because this stub exe is being saved first, the effect will be to + // concatenate the exe and the zip data together. + using (System.IO.Stream input = System.IO.File.OpenRead(stubExe)) + { + byte[] buffer = new byte[4000]; + int n = 1; + while (n != 0) + { + n = input.Read(buffer, 0, buffer.Length); + if (n != 0) + WriteStream.Write(buffer, 0, n); + } + } + } + + OnSaveEvent(ZipProgressEventType.Saving_AfterSaveTempArchive); + } + finally + { + try + { + if (Directory.Exists(unpackedResourceDir)) + { + try { Directory.Delete(unpackedResourceDir, true); } + catch (System.IO.IOException exc1) + { + StatusMessageTextWriter.WriteLine("Warning: Exception: {0}", exc1); + } + } + if (File.Exists(stubExe)) + { + try { File.Delete(stubExe); } + catch (System.IO.IOException exc1) + { + StatusMessageTextWriter.WriteLine("Warning: Exception: {0}", exc1); + } + } + } + catch (System.IO.IOException) { } + } + + return; + + } + + + + internal static string GenerateTempPathname(string dir, string extension) + { + string candidate = null; + String AppName = System.Reflection.Assembly.GetExecutingAssembly().GetName().Name; + do + { + // workitem 13475 + string uuid = System.Guid.NewGuid().ToString(); + + string Name = String.Format("{0}-{1}-{2}.{3}", + AppName, System.DateTime.Now.ToString("yyyyMMMdd-HHmmss"), + uuid, extension); + candidate = System.IO.Path.Combine(dir, Name); + } while (System.IO.File.Exists(candidate) || System.IO.Directory.Exists(candidate)); + + // The candidate path does not exist as a file or directory. + // It can now be created, as a file or directory. + return candidate; + } + + } +#endif +} diff --git a/src/Zip/msbuild.flymake.xml b/old/src/Zip/msbuild.flymake.xml similarity index 100% rename from src/Zip/msbuild.flymake.xml rename to old/src/Zip/msbuild.flymake.xml diff --git a/src/ZipSrc.ps1 b/old/src/ZipSrc.ps1 similarity index 100% rename from src/ZipSrc.ps1 rename to old/src/ZipSrc.ps1 diff --git a/src/Zlib Tests/Properties/AssemblyInfo.cs b/old/src/Zlib Tests/Properties/AssemblyInfo.cs similarity index 100% rename from src/Zlib Tests/Properties/AssemblyInfo.cs rename to old/src/Zlib Tests/Properties/AssemblyInfo.cs diff --git a/src/Zlib Tests/Resources/zlibbed.file b/old/src/Zlib Tests/Resources/zlibbed.file similarity index 100% rename from src/Zlib Tests/Resources/zlibbed.file rename to old/src/Zlib Tests/Resources/zlibbed.file diff --git a/src/Zlib Tests/Zlib Tests.csproj b/old/src/Zlib Tests/Zlib Tests.csproj similarity index 100% rename from src/Zlib Tests/Zlib Tests.csproj rename to old/src/Zlib Tests/Zlib Tests.csproj diff --git a/src/Zlib Tests/ZlibUnitTest1.cs b/old/src/Zlib Tests/ZlibUnitTest1.cs similarity index 100% rename from src/Zlib Tests/ZlibUnitTest1.cs rename to old/src/Zlib Tests/ZlibUnitTest1.cs diff --git a/src/Zlib.Portable/Class1.cs b/old/src/Zlib.Portable/Class1.cs similarity index 100% rename from src/Zlib.Portable/Class1.cs rename to old/src/Zlib.Portable/Class1.cs diff --git a/src/Zlib.Portable/Properties/AssemblyInfo.cs b/old/src/Zlib.Portable/Properties/AssemblyInfo.cs similarity index 100% rename from src/Zlib.Portable/Properties/AssemblyInfo.cs rename to old/src/Zlib.Portable/Properties/AssemblyInfo.cs diff --git a/src/Zlib.Portable/Zlib.Portable.csproj b/old/src/Zlib.Portable/Zlib.Portable.csproj similarity index 100% rename from src/Zlib.Portable/Zlib.Portable.csproj rename to old/src/Zlib.Portable/Zlib.Portable.csproj diff --git a/src/Zlib/LICENSE.jzlib.txt b/old/src/Zlib/LICENSE.jzlib.txt similarity index 100% rename from src/Zlib/LICENSE.jzlib.txt rename to old/src/Zlib/LICENSE.jzlib.txt diff --git a/src/Zlib/License.zlib.txt b/old/src/Zlib/License.zlib.txt similarity index 100% rename from src/Zlib/License.zlib.txt rename to old/src/Zlib/License.zlib.txt diff --git a/src/Zlib/LocalTestRun.testrunconfig b/old/src/Zlib/LocalTestRun.testrunconfig similarity index 100% rename from src/Zlib/LocalTestRun.testrunconfig rename to old/src/Zlib/LocalTestRun.testrunconfig diff --git a/src/Zlib/Zlib DLL.csproj b/old/src/Zlib/Zlib DLL.csproj similarity index 100% rename from src/Zlib/Zlib DLL.csproj rename to old/src/Zlib/Zlib DLL.csproj diff --git a/src/Zlib/properties/AssemblyInfo.cs b/old/src/Zlib/properties/AssemblyInfo.cs similarity index 100% rename from src/Zlib/properties/AssemblyInfo.cs rename to old/src/Zlib/properties/AssemblyInfo.cs diff --git a/src/Zlib/zlib-10.vsmdi b/old/src/Zlib/zlib-10.vsmdi similarity index 100% rename from src/Zlib/zlib-10.vsmdi rename to old/src/Zlib/zlib-10.vsmdi diff --git a/src/clean.ps1 b/old/src/clean.ps1 similarity index 100% rename from src/clean.ps1 rename to old/src/clean.ps1 diff --git a/src/BZip2/BZip2 DLL.csproj b/src/BZip2/BZip2 DLL.csproj deleted file mode 100644 index b1c659a..0000000 --- a/src/BZip2/BZip2 DLL.csproj +++ /dev/null @@ -1,136 +0,0 @@ - - - - Local - 2.0 - Debug - AnyCPU - - - - - Ionic.BZip2 - ..\Ionic.snk - JScript - Grid - IE50 - false - Library - Ionic.BZip2 - false - OnBuildSuccess - - - - - 3.5 - - - {E2CE0D56-7AF8-4404-BD0C-BC562CBD74D4} - false - - - - - - - - - v4.0 - publish\ - true - Disk - false - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - - - bin\Debug\ - false - 285212672 - false - - - - - bin\Debug\Ionic.BZip2.XML - true - 4096 - false - - - false - false - false - 4 - full - prompt - AllRules.ruleset - - - bin\Release\ - false - 285212672 - false - - - - - - - true - 4096 - false - - - false - false - false - 4 - full - prompt - AllRules.ruleset - - - - mscorlib - - - System - - - - - - - - - - - - CRC32.cs - - - SolutionInfo.cs - - - - - Ionic.snk - - - - - - - - - - \ No newline at end of file diff --git a/src/BZip2/NOTICE.txt b/src/BZip2/NOTICE.txt deleted file mode 100644 index a5331f0..0000000 --- a/src/BZip2/NOTICE.txt +++ /dev/null @@ -1,5 +0,0 @@ -Apache Commons Compress -Copyright 2002-2010 The Apache Software Foundation - -This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). diff --git a/src/BZip2/Properties/AssemblyInfo.cs b/src/BZip2/Properties/AssemblyInfo.cs deleted file mode 100644 index 9473f11..0000000 Binary files a/src/BZip2/Properties/AssemblyInfo.cs and /dev/null differ diff --git a/src/Directory.Build.props b/src/Directory.Build.props new file mode 100644 index 0000000..87f06f1 --- /dev/null +++ b/src/Directory.Build.props @@ -0,0 +1,19 @@ + + + + + false + + + Origfinal Authors of IonicZip, DotNetZip and others + ProDotNetZip + ProDotNetZip NET Standard + ProDotNetZip NET Standard (fork of DotNetZip / Ionic's Zip Library) a library for handling zip archives. + 1.17.0 + 1.17.0 + 1.17.0 + 1.17.0 + + en-US + + diff --git a/src/License.BZip2.txt b/src/LICENCES/License.BZip2.txt similarity index 97% rename from src/License.BZip2.txt rename to src/LICENCES/License.BZip2.txt index 4b22b94..f8b4346 100644 --- a/src/License.BZip2.txt +++ b/src/LICENCES/License.BZip2.txt @@ -1,29 +1,29 @@ - -The managed BZIP2 code included in Ionic.BZip2.dll and Ionic.Zip.dll is -modified code, based on the bzip2 code in the Apache commons compress -library. - -The original BZip2 was created by Julian Seward, and is licensed under -the BSD license. - -The following license applies to the Apache code: ------------------------------------------------------------------------ - -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ + +The managed BZIP2 code included in Ionic.BZip2.dll and Ionic.Zip.dll is +modified code, based on the bzip2 code in the Apache commons compress +library. + +The original BZip2 was created by Julian Seward, and is licensed under +the BSD license. + +The following license applies to the Apache code: +----------------------------------------------------------------------- + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ diff --git a/src/License.Combined.rtf b/src/LICENCES/License.Combined.rtf similarity index 99% rename from src/License.Combined.rtf rename to src/LICENCES/License.Combined.rtf index c6a8562..e418545 100644 --- a/src/License.Combined.rtf +++ b/src/LICENCES/License.Combined.rtf @@ -1,275 +1,275 @@ -{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff0\deff0\stshfdbch0\stshfloch31506\stshfhich31506\stshfbi31506\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;} -{\f37\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fhimajor\f31502\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria;} -{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;} -{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f39\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\f40\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} -{\f42\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f43\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f44\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f45\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} -{\f46\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f47\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f379\fbidi \froman\fcharset238\fprq2 Cambria Math CE;}{\f380\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;} -{\f382\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f383\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f386\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;}{\f387\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese);} -{\f409\fbidi \fswiss\fcharset238\fprq2 Calibri CE;}{\f410\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\f412\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\f413\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;} -{\f416\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\f417\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} -{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} -{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} -{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} -{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} -{\fhimajor\f31528\fbidi \froman\fcharset238\fprq2 Cambria CE;}{\fhimajor\f31529\fbidi \froman\fcharset204\fprq2 Cambria Cyr;}{\fhimajor\f31531\fbidi \froman\fcharset161\fprq2 Cambria Greek;}{\fhimajor\f31532\fbidi \froman\fcharset162\fprq2 Cambria Tur;} -{\fhimajor\f31535\fbidi \froman\fcharset186\fprq2 Cambria Baltic;}{\fhimajor\f31536\fbidi \froman\fcharset163\fprq2 Cambria (Vietnamese);}{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} -{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} -{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} -{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} -{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} -{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} -{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} -{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE;} -{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;} -{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} -{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} -{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} -{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0; -\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192; -\chyperlink\ctint255\cshade255\red0\green0\blue255;}{\*\defchp \f31506\fs22 }{\*\defpap \ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa200\sl276\slmult1 -\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext0 \sqformat \spriority0 \styrsid2831265 Normal;}{\*\cs10 \additive -\ssemihidden \sunhideused \spriority1 Default Paragraph Font;}{\* -\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa200\sl276\slmult1 -\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31506\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext11 \ssemihidden \sunhideused Normal Table;}{ -\s15\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\contextualspace \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 -\sbasedon0 \snext15 \sqformat \spriority34 \styrsid12654801 List Paragraph;}{\*\cs16 \additive \rtlch\fcs1 \af0 \ltrch\fcs0 \ul\cf17 \sbasedon10 \sunhideused \styrsid12654801 Hyperlink;}}{\*\listtable{\list\listtemplateid-444059256\listhybrid{\listlevel -\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\leveltemplateid67698703\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li720\lin720 }{\listlevel\levelnfc4\levelnfcn4\leveljc0 -\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext\leveltemplateid67698713\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li1440\lin1440 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2 -\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext\leveltemplateid67698715\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0 -\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext\leveltemplateid67698703\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li2880\lin2880 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1 -\lvltentative\levelspace360\levelindent0{\leveltext\leveltemplateid67698713\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li3600\lin3600 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative -\levelspace360\levelindent0{\leveltext\leveltemplateid67698715\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace360 -\levelindent0{\leveltext\leveltemplateid67698703\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li5040\lin5040 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0 -{\leveltext\leveltemplateid67698713\'02\'07.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li5760\lin5760 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext -\leveltemplateid67698715\'02\'08.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li6480\lin6480 }{\listname ;}\listid137696069}{\list\listtemplateid1444199352\listhybrid{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0 -\levelstartat1\levelspace360\levelindent0{\leveltext\leveltemplateid67698703\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li720\lin720 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative -\levelspace360\levelindent0{\leveltext\leveltemplateid67698713\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li1440\lin1440 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace360 -\levelindent0{\leveltext\leveltemplateid67698715\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0 -{\leveltext\leveltemplateid67698703\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li2880\lin2880 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext -\leveltemplateid67698713\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li3600\lin3600 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext -\leveltemplateid67698715\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext -\leveltemplateid67698703\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li5040\lin5040 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext -\leveltemplateid67698713\'02\'07.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li5760\lin5760 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext -\leveltemplateid67698715\'02\'08.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li6480\lin6480 }{\listname ;}\listid333995038}{\list\listtemplateid-2077955012\listhybrid{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0 -\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698703\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fbias0 \fi-360\li720\lin720 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative -\levelspace0\levelindent0{\leveltext\leveltemplateid67698713\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li1440\lin1440 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace0 -\levelindent0{\leveltext\leveltemplateid67698715\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0 -{\leveltext\leveltemplateid67698703\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li2880\lin2880 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext -\leveltemplateid67698713\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li3600\lin3600 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext -\leveltemplateid67698715\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext -\leveltemplateid67698703\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li5040\lin5040 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext -\leveltemplateid67698713\'02\'07.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li5760\lin5760 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext -\leveltemplateid67698715\'02\'08.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li6480\lin6480 }{\listname ;}\listid1091706244}}{\*\listoverridetable{\listoverride\listid137696069\listoverridecount0\ls1}{\listoverride\listid1091706244 -\listoverridecount0\ls2}{\listoverride\listid333995038\listoverridecount0\ls3}}{\*\rsidtbl \rsid1395907\rsid1599071\rsid1639370\rsid2831265\rsid2840296\rsid4537929\rsid5062432\rsid5376635\rsid6358681\rsid6962690\rsid7287725\rsid7959479\rsid8155306 -\rsid8258241\rsid10224083\rsid11415624\rsid11736570\rsid12266757\rsid12654801\rsid12911876\rsid13976247\rsid14944920}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info -{\author Dino Chiesa}{\operator Dino}{\creatim\yr2008\mo7\dy3\hr11\min53}{\revtim\yr2011\mo7\dy27\hr10\min34}{\version10}{\edmins30}{\nofpages3}{\nofwords979}{\nofchars5585}{\*\company Microsoft}{\nofcharsws6551}{\vern49273}}{\*\xmlnstbl {\xmlns1 http://s -chemas.microsoft.com/office/word/2003/wordml}}\paperw12240\paperh15840\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect -\widowctrl\ftnbj\aenddoc\trackmoves0\trackformatting1\donotembedsysfont1\relyonvml0\donotembedlingdata0\grfdocevents0\validatexml1\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors1\noxlattoyen -\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1440\dgvorigin1440\dghshow1\dgvshow1 -\jexpand\viewkind1\viewscale110\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\allowfieldendsel\wrppunct -\asianbrkrule\rsidroot8258241\newtblstyruls\nogrowautofit\usenormstyforlist\noindnmbrts\felnbrelev\nocxsptable\indrlsweleven\noafcnsttbl\afelev\utinl\hwelev\spltpgpar\notcvasp\notbrkcnstfrctbl\notvatxbx\krnprsnet\cachedcolbal \nouicompat \fet0 -{\*\wgrffmtfilter 2450}\nofeaturethrottle1\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\endnhere\sectlinegrid360\sectdefaultcl\sectrsid2831265\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2 -\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6 -\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang -{\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8258241 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 -\f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0\afs28 \ltrch\fcs0 \fs28\insrsid12654801 Software }{\rtlch\fcs1 \af0\afs28 \ltrch\fcs0 \fs28\insrsid12654801\charrsid12654801 Licenses }{\rtlch\fcs1 \af0\afs28 \ltrch\fcs0 -\fs28\insrsid12654801 that apply to DotNetZip}{\rtlch\fcs1 \af0\afs28 \ltrch\fcs0 \fs28\insrsid12654801\charrsid12654801 -\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801\charrsid12654801 This software,}{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\i\insrsid12654801 t}{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\i\insrsid12654801\charrsid12654801 he}{\rtlch\fcs1 \af0 \ltrch\fcs0 -\b\i\insrsid8258241\charrsid12654801 DotNetZip}{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\i\insrsid8258241\charrsid5376635 library}{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\i\insrsid12911876 and tools}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8258241 }{\rtlch\fcs1 \af0 -\ltrch\fcs0 \insrsid12654801 is provided for your use under several }{\rtlch\fcs1 \af0 \ltrch\fcs0 \i\insrsid12654801\charrsid12654801 licenses}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8258241 . }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 - One license applies to DotNetZip, and }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid7287725 several}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 other licenses apply to work that DotNetZip derives from. To }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8258241 -use the software, you }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 must accept the}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8258241 license}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 s}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8258241 -. If you do not accept the license}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid7287725 s}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8258241 , do not use the software. -\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 The following license, the }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801\charrsid12654801 Microsoft Public License (Ms-PL)}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 ,}{\rtlch\fcs1 \af0 \ltrch\fcs0 -\insrsid12654801\charrsid12654801 }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 applies to the original intellectual property in DotNetZip: }{\rtlch\fcs1 \af0\afs28 \ltrch\fcs0 \fs28\insrsid12654801\charrsid12654801 -\par }\pard \ltrpar\ql \li360\ri0\sa80\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0\pararsid1639370 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 1. Definitions -\par }\pard \ltrpar\ql \li720\ri0\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid1639370 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 -The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. -\par A "contribution" is the original software, or any additions or changes to the software. -\par A "contributor" is any person that distributes its contribution under this license. -\par "Licensed patents" are a contributor's patent claims that read directly on its contribution. -\par }\pard \ltrpar\ql \li360\ri0\sa80\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0\pararsid1639370 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 2. Grant of Rights -\par }\pard \ltrpar\ql \li720\ri0\sa80\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid1639370 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 (A -) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivativ -e works of its contribution, and distribute its contribution or any derivative works that you create. -\par (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-ex -clusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of th}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 -\fs18\insrsid1639370\charrsid1639370 e contribution in the software.}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 -\par }\pard \ltrpar\ql \li360\ri0\sa80\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0\pararsid1639370 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 3. Conditions and Limitations -\par }\pard \ltrpar\ql \li720\ri0\sa80\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid1639370 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 (A) No Trademark License}{\rtlch\fcs1 -\af0\afs18 \ltrch\fcs0 \fs18\insrsid11736570\charrsid1639370 }{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 - This license does not grant you rights to use any contributor}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 -\fs18\insrsid5376635\charrsid1639370 \rquote s}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 name, logo, or trademarks. -\par (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. -\par (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. -\par (D) If you distribute any p -ortion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under -a license that complies with this license. -\par (E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this l -icense cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8258241 -\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid14944920 -\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\brdrt\brdrs\brdrw10\brsp20 \wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12654801 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 -\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12654801 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 The managed ZLIB code included in Ionic.Zlib.dll and Ionic.Zi -p.dll is derived from the jzlib, which is Copyright (c) 2000,2001,2002,2003 ymnk, JCraft, Inc., and is licensed under the following terms: -\par }\pard \ltrpar\ql \li360\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0\pararsid12654801 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid12654801\charrsid14944920 -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -\par {\listtext\pard\plain\ltrpar \s15 \rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \f31506\fs18\insrsid12654801\charrsid14944920 \hich\af31506\dbch\af0\loch\f31506 1.\tab}}\pard\plain \ltrpar\s15\ql \fi-360\li1080\ri0\sa200\sl276\slmult1 -\widctlpar\wrapdefault\aspalpha\aspnum\faauto\ls2\adjustright\rin0\lin1080\itap0\pararsid12654801\contextualspace \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0\afs18 -\ltrch\fcs0 \fs18\insrsid12654801\charrsid14944920 Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -\par {\listtext\pard\plain\ltrpar \s15 \rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \f31506\fs18\insrsid12654801\charrsid14944920 \hich\af31506\dbch\af0\loch\f31506 2.\tab}Redistributions in binary form must reproduce the above copyright notice, this list of conditions -and the following disclaimer in the documentation and/or other materials provided with the distribution. -\par {\listtext\pard\plain\ltrpar \s15 \rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \f31506\fs18\insrsid12654801\charrsid14944920 \hich\af31506\dbch\af0\loch\f31506 3.\tab}}\pard \ltrpar\s15\ql \fi-360\li1080\ri0\sa200\sl276\slmult1 -\widctlpar\wrapdefault\aspalpha\aspnum\faauto\ls2\adjustright\rin0\lin1080\itap0\pararsid11415624\contextualspace {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid12654801\charrsid14944920 -The names of the authors may not be used to endorse or promote products derived from this software without specific prior written permission. -\par }\pard\plain \ltrpar\ql \li360\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0\pararsid12654801 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 -{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid12654801\charrsid12654801 THIS S -OFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, INC. OR ANY CONTRIBUTORS TO THIS - -SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12654801 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 -\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\brdrt\brdrs\brdrw10\brsp20 \wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12654801 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 -\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12654801 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 The jzlib library, itself, is based - on the C-language ZLIB library, v1.1.3. The following notice and license applies to zlib: -\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid12654801 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid12654801\charrsid14944920 -ZLIB is Copyright (C) 1995-2004 Jean-loup Gailly and Mark Adler -\par The ZLIB software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. -\par Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: -\par {\listtext\pard\plain\ltrpar \s15 \rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \f31506\fs18\insrsid12654801\charrsid14944920 \hich\af31506\dbch\af0\loch\f31506 1.\tab}}\pard\plain \ltrpar\s15\ql \fi-360\li1440\ri0\sa200\sl276\slmult1 -\widctlpar\wrapdefault\aspalpha\aspnum\faauto\ls3\adjustright\rin0\lin1440\itap0\pararsid12654801\contextualspace \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0\afs18 -\ltrch\fcs0 \fs18\insrsid12654801\charrsid14944920 -The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. -\par {\listtext\pard\plain\ltrpar \s15 \rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \f31506\fs18\insrsid12654801\charrsid14944920 \hich\af31506\dbch\af0\loch\f31506 2.\tab} -Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. -\par {\listtext\pard\plain\ltrpar \s15 \rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \f31506\fs18\insrsid12654801\charrsid14944920 \hich\af31506\dbch\af0\loch\f31506 3.\tab}This notice may not be removed or altered from any source distribution. -\par }\pard\plain \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid12654801 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 -{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid12654801\charrsid14944920 Jean-loup Gailly }{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid6962690\charrsid14944920 }{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid12654801\charrsid14944920 -jloup@gzip.org\line Mark Adler}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid6962690\charrsid14944920 }{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid12654801\charrsid14944920 madler@alumni.caltech.edu}{\rtlch\fcs1 \af0 \ltrch\fcs0 -\insrsid12654801 -\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid4537929 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid4537929 -\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\brdrt\brdrs\brdrw10\brsp20 \wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid4537929 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid4537929 -\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid4537929 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid4537929 -The managed BZIP2 code included in Ionic.BZip2.dll and Ionic.Zip.dll is modified code, based on the bzip2 code in the Apache commons compress library. -\par The original BZip2 was created by Julian Seward, and is licensed under the BSD license. -\par The following license applies to the Apache code:}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid4537929 -\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid4537929 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid4537929\charrsid4537929 -Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF lice -nses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at -\par http://www.}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid4537929 apache.org/licenses/LICENSE-2.0}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid4537929\charrsid4537929 -\par Unless required by applicabl -e law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitat -ions under the License.}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid4537929 -\par }{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid7287725\charrsid4537929 -\par }{\*\themedata 504b030414000600080000002100e9de0fbfff0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb4ec3301045f748fc83e52d4a -9cb2400825e982c78ec7a27cc0c8992416c9d8b2a755fbf74cd25442a820166c2cd933f79e3be372bd1f07b5c3989ca74aaff2422b24eb1b475da5df374fd9ad -5689811a183c61a50f98f4babebc2837878049899a52a57be670674cb23d8e90721f90a4d2fa3802cb35762680fd800ecd7551dc18eb899138e3c943d7e503b6 -b01d583deee5f99824e290b4ba3f364eac4a430883b3c092d4eca8f946c916422ecab927f52ea42b89a1cd59c254f919b0e85e6535d135a8de20f20b8c12c3b0 -0c895fcf6720192de6bf3b9e89ecdbd6596cbcdd8eb28e7c365ecc4ec1ff1460f53fe813d3cc7f5b7f020000ffff0300504b030414000600080000002100a5d6 -a7e7c0000000360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4f -c7060abb0884a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b6309512 -0f88d94fbc52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462 -a1a82fe353bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f746865 -6d652f7468656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b -4b0d592c9c070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b -4757e8d3f729e245eb2b260a0238fd010000ffff0300504b03041400060008000000210096b5ade296060000501b0000160000007468656d652f7468656d652f -7468656d65312e786d6cec594f6fdb3614bf0fd87720746f6327761a07758ad8b19b2d4d1bc46e871e698996d850a240d2497d1bdae38001c3ba618715d86d87 -615b8116d8a5fb34d93a6c1dd0afb0475292c5585e9236d88aad3e2412f9e3fbff1e1fa9abd7eec70c1d1221294fda5efd72cd4324f1794093b0eddd1ef62fad -79482a9c0498f184b4bd2991deb58df7dfbb8ad755446282607d22d771db8b944ad79796a40fc3585ee62949606ecc458c15bc8a702910f808e8c66c69b9565b -5d8a314d3c94e018c8de1a8fa94fd05093f43672e23d06af89927ac06762a049136785c10607758d9053d965021d62d6f6804fc08f86e4bef210c352c144dbab -999fb7b4717509af678b985ab0b6b4ae6f7ed9ba6c4170b06c788a705430adf71bad2b5b057d03606a1ed7ebf5babd7a41cf00b0ef83a6569632cd467faddec9 -699640f6719e76b7d6ac355c7c89feca9cccad4ea7d36c65b258a206641f1b73f8b5da6a6373d9c11b90c537e7f08dce66b7bbeae00dc8e257e7f0fd2badd586 -8b37a088d1e4600ead1ddaef67d40bc898b3ed4af81ac0d76a197c86826828a24bb318f3442d8ab518dfe3a20f000d6458d104a9694ac6d88728eee2782428d6 -0cf03ac1a5193be4cbb921cd0b495fd054b5bd0f530c1931a3f7eaf9f7af9e3f45c70f9e1d3ff8e9f8e1c3e3073f5a42ceaa6d9c84e5552fbffdeccfc71fa33f -9e7ef3f2d117d57859c6fffac327bffcfc793510d26726ce8b2f9ffcf6ecc98baf3efdfdbb4715f04d814765f890c644a29be408edf3181433567125272371be -15c308d3f28acd249438c19a4b05fd9e8a1cf4cd296699771c393ac4b5e01d01e5a30a787d72cf1178108989a2159c77a2d801ee72ce3a5c545a6147f32a9979 -3849c26ae66252c6ed637c58c5bb8b13c7bfbd490a75330f4b47f16e441c31f7184e140e494214d273fc80900aedee52ead87597fa824b3e56e82e451d4c2b4d -32a423279a668bb6690c7e9956e90cfe766cb37b077538abd27a8b1cba48c80acc2a841f12e698f13a9e281c57911ce298950d7e03aba84ac8c154f8655c4f2a -f074481847bd804859b5e696007d4b4edfc150b12addbecba6b18b148a1e54d1bc81392f23b7f84137c2715a851dd0242a633f900710a218ed715505dfe56e86 -e877f0034e16bafb0e258ebb4faf06b769e888340b103d3311da9750aa9d0a1cd3e4efca31a3508f6d0c5c5c398602f8e2ebc71591f5b616e24dd893aa3261fb -44f95d843b5974bb5c04f4edafb95b7892ec1108f3f98de75dc97d5772bdff7cc95d94cf672db4b3da0a6557f70db629362d72bcb0431e53c6066acac80d699a -6409fb44d08741bdce9c0e4971624a2378cceaba830b05366b90e0ea23aaa241845368b0eb9e2612ca8c742851ca251ceccc70256d8d87265dd96361531f186c -3d9058edf2c00eafe8e1fc5c509031bb4d680e9f39a3154de0accc56ae644441edd76156d7429d995bdd88664a9dc3ad50197c38af1a0c16d684060441db0256 -5e85f3b9660d0713cc48a0ed6ef7dedc2dc60b17e92219e180643ed27acffba86e9c94c78ab90980d8a9f0913ee49d62b512b79626fb06dccee2a432bbc60276 -b9f7dec44b7904cfbca4f3f6443ab2a49c9c2c41476dafd55c6e7ac8c769db1bc399161ee314bc2e75cf8759081743be1236ec4f4d6693e5336fb672c5dc24a8 -c33585b5fb9cc24e1d4885545b58463634cc5416022cd19cacfccb4d30eb45296023fd35a458598360f8d7a4003bbaae25e331f155d9d9a5116d3bfb9a95523e -51440ca2e0088dd844ec6370bf0e55d027a012ae264c45d02f708fa6ad6da6dce29c255df9f6cae0ec38666984b372ab5334cf640b37795cc860de4ae2816e95 -b21be5ceaf8a49f90b52a51cc6ff3355f47e0237052b81f6800fd7b802239daf6d8f0b1571a8426944fdbe80c6c1d40e8816b88b8569082ab84c36ff0539d4ff -6dce591a26ade1c0a7f669880485fd484582903d284b26fa4e2156cff62e4b9265844c4495c495a9157b440e091bea1ab8aaf7760f4510eaa69a6465c0e04ec6 -9ffb9e65d028d44d4e39df9c1a52ecbd3607fee9cec7263328e5d661d3d0e4f62f44acd855ed7ab33cdf7bcb8ae889599bd5c8b3029895b6825696f6af29c239 -b75a5bb1e6345e6ee6c28117e73586c1a2214ae1be07e93fb0ff51e133fb65426fa843be0fb515c187064d0cc206a2fa926d3c902e907670048d931db4c1a449 -59d366ad93b65abe595f70a75bf03d616c2dd959fc7d4e6317cd99cbcec9c58b34766661c7d6766ca1a9c1b327531486c6f941c638c67cd22a7f75e2a37be0e8 -2db8df9f30254d30c1372581a1f51c983c80e4b71ccdd28dbf000000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468 -656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4 -350d363f2451eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d2624 -52282e3198720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe5141 -73d9850528a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100e9de0fbfff0000001c020000130000000000000000 -0000000000000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b00000000000000 -000000000000300100005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c0000000000000000000000000019 -0200007468656d652f7468656d652f7468656d654d616e616765722e786d6c504b01022d001400060008000000210096b5ade296060000501b00001600000000 -000000000000000000d60200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b01000027 -00000000000000000000000000a00900007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d0100009b0a00000000} -{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d -617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 -6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 -656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} -{\*\latentstyles\lsdstimax267\lsdlockeddef0\lsdsemihiddendef1\lsdunhideuseddef1\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4; -\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9; -\lsdpriority39 \lsdlocked0 toc 1;\lsdpriority39 \lsdlocked0 toc 2;\lsdpriority39 \lsdlocked0 toc 3;\lsdpriority39 \lsdlocked0 toc 4;\lsdpriority39 \lsdlocked0 toc 5;\lsdpriority39 \lsdlocked0 toc 6;\lsdpriority39 \lsdlocked0 toc 7; -\lsdpriority39 \lsdlocked0 toc 8;\lsdpriority39 \lsdlocked0 toc 9;\lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdpriority1 \lsdlocked0 Default Paragraph Font; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority22 \lsdlocked0 Strong;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority59 \lsdlocked0 Table Grid;\lsdunhideused0 \lsdlocked0 Placeholder Text;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;\lsdunhideused0 \lsdlocked0 Revision; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdpriority37 \lsdlocked0 Bibliography;\lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;}}{\*\datastore 010500000200000018000000 -4d73786d6c322e534158584d4c5265616465722e362e3000000000000000000000060000 -d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e5000000000000000000000000c0f9 -b4436a4ccc01feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 -000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 +{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff0\deff0\stshfdbch0\stshfloch31506\stshfhich31506\stshfbi31506\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;} +{\f37\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} +{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fhimajor\f31502\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria;} +{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} +{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;} +{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f39\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\f40\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} +{\f42\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f43\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f44\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f45\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} +{\f46\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f47\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f379\fbidi \froman\fcharset238\fprq2 Cambria Math CE;}{\f380\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;} +{\f382\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f383\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f386\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;}{\f387\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese);} +{\f409\fbidi \fswiss\fcharset238\fprq2 Calibri CE;}{\f410\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\f412\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\f413\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;} +{\f416\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\f417\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} +{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} +{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} +{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} +{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} +{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} +{\fhimajor\f31528\fbidi \froman\fcharset238\fprq2 Cambria CE;}{\fhimajor\f31529\fbidi \froman\fcharset204\fprq2 Cambria Cyr;}{\fhimajor\f31531\fbidi \froman\fcharset161\fprq2 Cambria Greek;}{\fhimajor\f31532\fbidi \froman\fcharset162\fprq2 Cambria Tur;} +{\fhimajor\f31535\fbidi \froman\fcharset186\fprq2 Cambria Baltic;}{\fhimajor\f31536\fbidi \froman\fcharset163\fprq2 Cambria (Vietnamese);}{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} +{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} +{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} +{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} +{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} +{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} +{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} +{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} +{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE;} +{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;} +{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} +{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} +{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} +{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}}{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0; +\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192; +\chyperlink\ctint255\cshade255\red0\green0\blue255;}{\*\defchp \f31506\fs22 }{\*\defpap \ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa200\sl276\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext0 \sqformat \spriority0 \styrsid2831265 Normal;}{\*\cs10 \additive +\ssemihidden \sunhideused \spriority1 Default Paragraph Font;}{\* +\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa200\sl276\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31506\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext11 \ssemihidden \sunhideused Normal Table;}{ +\s15\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\contextualspace \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 +\sbasedon0 \snext15 \sqformat \spriority34 \styrsid12654801 List Paragraph;}{\*\cs16 \additive \rtlch\fcs1 \af0 \ltrch\fcs0 \ul\cf17 \sbasedon10 \sunhideused \styrsid12654801 Hyperlink;}}{\*\listtable{\list\listtemplateid-444059256\listhybrid{\listlevel +\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace360\levelindent0{\leveltext\leveltemplateid67698703\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li720\lin720 }{\listlevel\levelnfc4\levelnfcn4\leveljc0 +\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext\leveltemplateid67698713\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li1440\lin1440 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2 +\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext\leveltemplateid67698715\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext\leveltemplateid67698703\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li2880\lin2880 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1 +\lvltentative\levelspace360\levelindent0{\leveltext\leveltemplateid67698713\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li3600\lin3600 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative +\levelspace360\levelindent0{\leveltext\leveltemplateid67698715\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace360 +\levelindent0{\leveltext\leveltemplateid67698703\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li5040\lin5040 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0 +{\leveltext\leveltemplateid67698713\'02\'07.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li5760\lin5760 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext +\leveltemplateid67698715\'02\'08.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li6480\lin6480 }{\listname ;}\listid137696069}{\list\listtemplateid1444199352\listhybrid{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace360\levelindent0{\leveltext\leveltemplateid67698703\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li720\lin720 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative +\levelspace360\levelindent0{\leveltext\leveltemplateid67698713\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li1440\lin1440 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace360 +\levelindent0{\leveltext\leveltemplateid67698715\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0 +{\leveltext\leveltemplateid67698703\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li2880\lin2880 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext +\leveltemplateid67698713\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li3600\lin3600 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext +\leveltemplateid67698715\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext +\leveltemplateid67698703\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li5040\lin5040 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext +\leveltemplateid67698713\'02\'07.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li5760\lin5760 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace360\levelindent0{\leveltext +\leveltemplateid67698715\'02\'08.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li6480\lin6480 }{\listname ;}\listid333995038}{\list\listtemplateid-2077955012\listhybrid{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0 +\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698703\'02\'00.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fbias0 \fi-360\li720\lin720 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative +\levelspace0\levelindent0{\leveltext\leveltemplateid67698713\'02\'01.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li1440\lin1440 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace0 +\levelindent0{\leveltext\leveltemplateid67698715\'02\'02.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0 +{\leveltext\leveltemplateid67698703\'02\'03.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li2880\lin2880 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext +\leveltemplateid67698713\'02\'04.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li3600\lin3600 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext +\leveltemplateid67698715\'02\'05.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li4320\lin4320 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext +\leveltemplateid67698703\'02\'06.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li5040\lin5040 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext +\leveltemplateid67698713\'02\'07.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-360\li5760\lin5760 }{\listlevel\levelnfc2\levelnfcn2\leveljc2\leveljcn2\levelfollow0\levelstartat1\lvltentative\levelspace0\levelindent0{\leveltext +\leveltemplateid67698715\'02\'08.;}{\levelnumbers\'01;}\rtlch\fcs1 \af0 \ltrch\fcs0 \fi-180\li6480\lin6480 }{\listname ;}\listid1091706244}}{\*\listoverridetable{\listoverride\listid137696069\listoverridecount0\ls1}{\listoverride\listid1091706244 +\listoverridecount0\ls2}{\listoverride\listid333995038\listoverridecount0\ls3}}{\*\rsidtbl \rsid1395907\rsid1599071\rsid1639370\rsid2831265\rsid2840296\rsid4537929\rsid5062432\rsid5376635\rsid6358681\rsid6962690\rsid7287725\rsid7959479\rsid8155306 +\rsid8258241\rsid10224083\rsid11415624\rsid11736570\rsid12266757\rsid12654801\rsid12911876\rsid13976247\rsid14944920}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info +{\author Dino Chiesa}{\operator Dino}{\creatim\yr2008\mo7\dy3\hr11\min53}{\revtim\yr2011\mo7\dy27\hr10\min34}{\version10}{\edmins30}{\nofpages3}{\nofwords979}{\nofchars5585}{\*\company Microsoft}{\nofcharsws6551}{\vern49273}}{\*\xmlnstbl {\xmlns1 http://s +chemas.microsoft.com/office/word/2003/wordml}}\paperw12240\paperh15840\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect +\widowctrl\ftnbj\aenddoc\trackmoves0\trackformatting1\donotembedsysfont1\relyonvml0\donotembedlingdata0\grfdocevents0\validatexml1\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors1\noxlattoyen +\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1440\dgvorigin1440\dghshow1\dgvshow1 +\jexpand\viewkind1\viewscale110\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\allowfieldendsel\wrppunct +\asianbrkrule\rsidroot8258241\newtblstyruls\nogrowautofit\usenormstyforlist\noindnmbrts\felnbrelev\nocxsptable\indrlsweleven\noafcnsttbl\afelev\utinl\hwelev\spltpgpar\notcvasp\notbrkcnstfrctbl\notvatxbx\krnprsnet\cachedcolbal \nouicompat \fet0 +{\*\wgrffmtfilter 2450}\nofeaturethrottle1\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\endnhere\sectlinegrid360\sectdefaultcl\sectrsid2831265\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2 +\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6 +\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang +{\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8258241 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 +\f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0\afs28 \ltrch\fcs0 \fs28\insrsid12654801 Software }{\rtlch\fcs1 \af0\afs28 \ltrch\fcs0 \fs28\insrsid12654801\charrsid12654801 Licenses }{\rtlch\fcs1 \af0\afs28 \ltrch\fcs0 +\fs28\insrsid12654801 that apply to DotNetZip}{\rtlch\fcs1 \af0\afs28 \ltrch\fcs0 \fs28\insrsid12654801\charrsid12654801 +\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801\charrsid12654801 This software,}{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\i\insrsid12654801 t}{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\i\insrsid12654801\charrsid12654801 he}{\rtlch\fcs1 \af0 \ltrch\fcs0 +\b\i\insrsid8258241\charrsid12654801 DotNetZip}{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\i\insrsid8258241\charrsid5376635 library}{\rtlch\fcs1 \af0 \ltrch\fcs0 \b\i\insrsid12911876 and tools}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8258241 }{\rtlch\fcs1 \af0 +\ltrch\fcs0 \insrsid12654801 is provided for your use under several }{\rtlch\fcs1 \af0 \ltrch\fcs0 \i\insrsid12654801\charrsid12654801 licenses}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8258241 . }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 + One license applies to DotNetZip, and }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid7287725 several}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 other licenses apply to work that DotNetZip derives from. To }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8258241 +use the software, you }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 must accept the}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8258241 license}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 s}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8258241 +. If you do not accept the license}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid7287725 s}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8258241 , do not use the software. +\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 The following license, the }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801\charrsid12654801 Microsoft Public License (Ms-PL)}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 ,}{\rtlch\fcs1 \af0 \ltrch\fcs0 +\insrsid12654801\charrsid12654801 }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 applies to the original intellectual property in DotNetZip: }{\rtlch\fcs1 \af0\afs28 \ltrch\fcs0 \fs28\insrsid12654801\charrsid12654801 +\par }\pard \ltrpar\ql \li360\ri0\sa80\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0\pararsid1639370 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 1. Definitions +\par }\pard \ltrpar\ql \li720\ri0\sa120\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid1639370 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 +The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. +\par A "contribution" is the original software, or any additions or changes to the software. +\par A "contributor" is any person that distributes its contribution under this license. +\par "Licensed patents" are a contributor's patent claims that read directly on its contribution. +\par }\pard \ltrpar\ql \li360\ri0\sa80\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0\pararsid1639370 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 2. Grant of Rights +\par }\pard \ltrpar\ql \li720\ri0\sa80\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid1639370 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 (A +) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivativ +e works of its contribution, and distribute its contribution or any derivative works that you create. +\par (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-ex +clusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of th}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 +\fs18\insrsid1639370\charrsid1639370 e contribution in the software.}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 +\par }\pard \ltrpar\ql \li360\ri0\sa80\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0\pararsid1639370 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 3. Conditions and Limitations +\par }\pard \ltrpar\ql \li720\ri0\sa80\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid1639370 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 (A) No Trademark License}{\rtlch\fcs1 +\af0\afs18 \ltrch\fcs0 \fs18\insrsid11736570\charrsid1639370 }{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 - This license does not grant you rights to use any contributor}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 +\fs18\insrsid5376635\charrsid1639370 \rquote s}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid8258241\charrsid1639370 name, logo, or trademarks. +\par (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. +\par (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. +\par (D) If you distribute any p +ortion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under +a license that complies with this license. +\par (E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this l +icense cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement.}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid8258241 +\par }{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid14944920 +\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\brdrt\brdrs\brdrw10\brsp20 \wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12654801 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 +\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12654801 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 The managed ZLIB code included in Ionic.Zlib.dll and Ionic.Zi +p.dll is derived from the jzlib, which is Copyright (c) 2000,2001,2002,2003 ymnk, JCraft, Inc., and is licensed under the following terms: +\par }\pard \ltrpar\ql \li360\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0\pararsid12654801 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid12654801\charrsid14944920 +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: +\par {\listtext\pard\plain\ltrpar \s15 \rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \f31506\fs18\insrsid12654801\charrsid14944920 \hich\af31506\dbch\af0\loch\f31506 1.\tab}}\pard\plain \ltrpar\s15\ql \fi-360\li1080\ri0\sa200\sl276\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\ls2\adjustright\rin0\lin1080\itap0\pararsid12654801\contextualspace \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0\afs18 +\ltrch\fcs0 \fs18\insrsid12654801\charrsid14944920 Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +\par {\listtext\pard\plain\ltrpar \s15 \rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \f31506\fs18\insrsid12654801\charrsid14944920 \hich\af31506\dbch\af0\loch\f31506 2.\tab}Redistributions in binary form must reproduce the above copyright notice, this list of conditions +and the following disclaimer in the documentation and/or other materials provided with the distribution. +\par {\listtext\pard\plain\ltrpar \s15 \rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \f31506\fs18\insrsid12654801\charrsid14944920 \hich\af31506\dbch\af0\loch\f31506 3.\tab}}\pard \ltrpar\s15\ql \fi-360\li1080\ri0\sa200\sl276\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\ls2\adjustright\rin0\lin1080\itap0\pararsid11415624\contextualspace {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid12654801\charrsid14944920 +The names of the authors may not be used to endorse or promote products derived from this software without specific prior written permission. +\par }\pard\plain \ltrpar\ql \li360\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0\pararsid12654801 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 +{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid12654801\charrsid12654801 THIS S +OFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, INC. OR ANY CONTRIBUTORS TO THIS + +SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12654801 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 +\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\brdrt\brdrs\brdrw10\brsp20 \wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12654801 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 +\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid12654801 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid12654801 The jzlib library, itself, is based + on the C-language ZLIB library, v1.1.3. The following notice and license applies to zlib: +\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid12654801 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid12654801\charrsid14944920 +ZLIB is Copyright (C) 1995-2004 Jean-loup Gailly and Mark Adler +\par The ZLIB software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. +\par Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: +\par {\listtext\pard\plain\ltrpar \s15 \rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \f31506\fs18\insrsid12654801\charrsid14944920 \hich\af31506\dbch\af0\loch\f31506 1.\tab}}\pard\plain \ltrpar\s15\ql \fi-360\li1440\ri0\sa200\sl276\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\ls3\adjustright\rin0\lin1440\itap0\pararsid12654801\contextualspace \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af0\afs18 +\ltrch\fcs0 \fs18\insrsid12654801\charrsid14944920 +The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. +\par {\listtext\pard\plain\ltrpar \s15 \rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \f31506\fs18\insrsid12654801\charrsid14944920 \hich\af31506\dbch\af0\loch\f31506 2.\tab} +Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. +\par {\listtext\pard\plain\ltrpar \s15 \rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \f31506\fs18\insrsid12654801\charrsid14944920 \hich\af31506\dbch\af0\loch\f31506 3.\tab}This notice may not be removed or altered from any source distribution. +\par }\pard\plain \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid12654801 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 +{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid12654801\charrsid14944920 Jean-loup Gailly }{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid6962690\charrsid14944920 }{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid12654801\charrsid14944920 +jloup@gzip.org\line Mark Adler}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid6962690\charrsid14944920 }{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid12654801\charrsid14944920 madler@alumni.caltech.edu}{\rtlch\fcs1 \af0 \ltrch\fcs0 +\insrsid12654801 +\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid4537929 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid4537929 +\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\brdrt\brdrs\brdrw10\brsp20 \wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid4537929 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid4537929 +\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid4537929 {\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid4537929 +The managed BZIP2 code included in Ionic.BZip2.dll and Ionic.Zip.dll is modified code, based on the bzip2 code in the Apache commons compress library. +\par The original BZip2 was created by Julian Seward, and is licensed under the BSD license. +\par The following license applies to the Apache code:}{\rtlch\fcs1 \af0 \ltrch\fcs0 \insrsid4537929 +\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid4537929 {\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid4537929\charrsid4537929 +Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF lice +nses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at +\par http://www.}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid4537929 apache.org/licenses/LICENSE-2.0}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid4537929\charrsid4537929 +\par Unless required by applicabl +e law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitat +ions under the License.}{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid4537929 +\par }{\rtlch\fcs1 \af0\afs18 \ltrch\fcs0 \fs18\insrsid7287725\charrsid4537929 +\par }{\*\themedata 504b030414000600080000002100e9de0fbfff0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb4ec3301045f748fc83e52d4a +9cb2400825e982c78ec7a27cc0c8992416c9d8b2a755fbf74cd25442a820166c2cd933f79e3be372bd1f07b5c3989ca74aaff2422b24eb1b475da5df374fd9ad +5689811a183c61a50f98f4babebc2837878049899a52a57be670674cb23d8e90721f90a4d2fa3802cb35762680fd800ecd7551dc18eb899138e3c943d7e503b6 +b01d583deee5f99824e290b4ba3f364eac4a430883b3c092d4eca8f946c916422ecab927f52ea42b89a1cd59c254f919b0e85e6535d135a8de20f20b8c12c3b0 +0c895fcf6720192de6bf3b9e89ecdbd6596cbcdd8eb28e7c365ecc4ec1ff1460f53fe813d3cc7f5b7f020000ffff0300504b030414000600080000002100a5d6 +a7e7c0000000360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4f +c7060abb0884a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b6309512 +0f88d94fbc52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462 +a1a82fe353bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f746865 +6d652f7468656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b +4b0d592c9c070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b +4757e8d3f729e245eb2b260a0238fd010000ffff0300504b03041400060008000000210096b5ade296060000501b0000160000007468656d652f7468656d652f +7468656d65312e786d6cec594f6fdb3614bf0fd87720746f6327761a07758ad8b19b2d4d1bc46e871e698996d850a240d2497d1bdae38001c3ba618715d86d87 +615b8116d8a5fb34d93a6c1dd0afb0475292c5585e9236d88aad3e2412f9e3fbff1e1fa9abd7eec70c1d1221294fda5efd72cd4324f1794093b0eddd1ef62fad +79482a9c0498f184b4bd2991deb58df7dfbb8ad755446282607d22d771db8b944ad79796a40fc3585ee62949606ecc458c15bc8a702910f808e8c66c69b9565b +5d8a314d3c94e018c8de1a8fa94fd05093f43672e23d06af89927ac06762a049136785c10607758d9053d965021d62d6f6804fc08f86e4bef210c352c144dbab +999fb7b4717509af678b985ab0b6b4ae6f7ed9ba6c4170b06c788a705430adf71bad2b5b057d03606a1ed7ebf5babd7a41cf00b0ef83a6569632cd467faddec9 +699640f6719e76b7d6ac355c7c89feca9cccad4ea7d36c65b258a206641f1b73f8b5da6a6373d9c11b90c537e7f08dce66b7bbeae00dc8e257e7f0fd2badd586 +8b37a088d1e4600ead1ddaef67d40bc898b3ed4af81ac0d76a197c86826828a24bb318f3442d8ab518dfe3a20f000d6458d104a9694ac6d88728eee2782428d6 +0cf03ac1a5193be4cbb921cd0b495fd054b5bd0f530c1931a3f7eaf9f7af9e3f45c70f9e1d3ff8e9f8e1c3e3073f5a42ceaa6d9c84e5552fbffdeccfc71fa33f +9e7ef3f2d117d57859c6fffac327bffcfc793510d26726ce8b2f9ffcf6ecc98baf3efdfdbb4715f04d814765f890c644a29be408edf3181433567125272371be +15c308d3f28acd249438c19a4b05fd9e8a1cf4cd296699771c393ac4b5e01d01e5a30a787d72cf1178108989a2159c77a2d801ee72ce3a5c545a6147f32a9979 +3849c26ae66252c6ed637c58c5bb8b13c7bfbd490a75330f4b47f16e441c31f7184e140e494214d273fc80900aedee52ead87597fa824b3e56e82e451d4c2b4d +32a423279a668bb6690c7e9956e90cfe766cb37b077538abd27a8b1cba48c80acc2a841f12e698f13a9e281c57911ce298950d7e03aba84ac8c154f8655c4f2a +f074481847bd804859b5e696007d4b4edfc150b12addbecba6b18b148a1e54d1bc81392f23b7f84137c2715a851dd0242a633f900710a218ed715505dfe56e86 +e877f0034e16bafb0e258ebb4faf06b769e888340b103d3311da9750aa9d0a1cd3e4efca31a3508f6d0c5c5c398602f8e2ebc71591f5b616e24dd893aa3261fb +44f95d843b5974bb5c04f4edafb95b7892ec1108f3f98de75dc97d5772bdff7cc95d94cf672db4b3da0a6557f70db629362d72bcb0431e53c6066acac80d699a +6409fb44d08741bdce9c0e4971624a2378cceaba830b05366b90e0ea23aaa241845368b0eb9e2612ca8c742851ca251ceccc70256d8d87265dd96361531f186c +3d9058edf2c00eafe8e1fc5c509031bb4d680e9f39a3154de0accc56ae644441edd76156d7429d995bdd88664a9dc3ad50197c38af1a0c16d684060441db0256 +5e85f3b9660d0713cc48a0ed6ef7dedc2dc60b17e92219e180643ed27acffba86e9c94c78ab90980d8a9f0913ee49d62b512b79626fb06dccee2a432bbc60276 +b9f7dec44b7904cfbca4f3f6443ab2a49c9c2c41476dafd55c6e7ac8c769db1bc399161ee314bc2e75cf8759081743be1236ec4f4d6693e5336fb672c5dc24a8 +c33585b5fb9cc24e1d4885545b58463634cc5416022cd19cacfccb4d30eb45296023fd35a458598360f8d7a4003bbaae25e331f155d9d9a5116d3bfb9a95523e +51440ca2e0088dd844ec6370bf0e55d027a012ae264c45d02f708fa6ad6da6dce29c255df9f6cae0ec38666984b372ab5334cf640b37795cc860de4ae2816e95 +b21be5ceaf8a49f90b52a51cc6ff3355f47e0237052b81f6800fd7b802239daf6d8f0b1571a8426944fdbe80c6c1d40e8816b88b8569082ab84c36ff0539d4ff +6dce591a26ade1c0a7f669880485fd484582903d284b26fa4e2156cff62e4b9265844c4495c495a9157b440e091bea1ab8aaf7760f4510eaa69a6465c0e04ec6 +9ffb9e65d028d44d4e39df9c1a52ecbd3607fee9cec7263328e5d661d3d0e4f62f44acd855ed7ab33cdf7bcb8ae889599bd5c8b3029895b6825696f6af29c239 +b75a5bb1e6345e6ee6c28117e73586c1a2214ae1be07e93fb0ff51e133fb65426fa843be0fb515c187064d0cc206a2fa926d3c902e907670048d931db4c1a449 +59d366ad93b65abe595f70a75bf03d616c2dd959fc7d4e6317cd99cbcec9c58b34766661c7d6766ca1a9c1b327531486c6f941c638c67cd22a7f75e2a37be0e8 +2db8df9f30254d30c1372581a1f51c983c80e4b71ccdd28dbf000000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468 +656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4 +350d363f2451eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d2624 +52282e3198720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe5141 +73d9850528a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100e9de0fbfff0000001c020000130000000000000000 +0000000000000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b00000000000000 +000000000000300100005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c0000000000000000000000000019 +0200007468656d652f7468656d652f7468656d654d616e616765722e786d6c504b01022d001400060008000000210096b5ade296060000501b00001600000000 +000000000000000000d60200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b01000027 +00000000000000000000000000a00900007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d0100009b0a00000000} +{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d +617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 +6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 +656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} +{\*\latentstyles\lsdstimax267\lsdlockeddef0\lsdsemihiddendef1\lsdunhideuseddef1\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4; +\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9; +\lsdpriority39 \lsdlocked0 toc 1;\lsdpriority39 \lsdlocked0 toc 2;\lsdpriority39 \lsdlocked0 toc 3;\lsdpriority39 \lsdlocked0 toc 4;\lsdpriority39 \lsdlocked0 toc 5;\lsdpriority39 \lsdlocked0 toc 6;\lsdpriority39 \lsdlocked0 toc 7; +\lsdpriority39 \lsdlocked0 toc 8;\lsdpriority39 \lsdlocked0 toc 9;\lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdpriority1 \lsdlocked0 Default Paragraph Font; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority22 \lsdlocked0 Strong;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority59 \lsdlocked0 Table Grid;\lsdunhideused0 \lsdlocked0 Placeholder Text;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 1; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;\lsdunhideused0 \lsdlocked0 Revision; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 1; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 3; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 3; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 3; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 4; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 4; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 4; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 5; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 5; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 6; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 6; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 6; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdpriority37 \lsdlocked0 Bibliography;\lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;}}{\*\datastore 010500000200000018000000 +4d73786d6c322e534158584d4c5265616465722e362e3000000000000000000000060000 +d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e5000000000000000000000000c0f9 +b4436a4ccc01feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000105000000000000}} \ No newline at end of file diff --git a/src/License.rtf b/src/LICENCES/License.rtf similarity index 99% rename from src/License.rtf rename to src/LICENCES/License.rtf index 27c8871..7bb8e2b 100644 --- a/src/License.rtf +++ b/src/LICENCES/License.rtf @@ -1,184 +1,184 @@ -{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff31507\deff0\stshfdbch0\stshfloch31506\stshfhich31506\stshfbi31506\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;} -{\f37\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fhimajor\f31502\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria;} -{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} -{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;} -{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f39\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\f40\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} -{\f42\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f43\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f44\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f45\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} -{\f46\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f47\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f379\fbidi \froman\fcharset238\fprq2 Cambria Math CE;}{\f380\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;} -{\f382\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f383\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f386\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;}{\f409\fbidi \fswiss\fcharset238\fprq2 Calibri CE;} -{\f410\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\f412\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\f413\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;}{\f416\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;} -{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} -{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} -{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} -{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} -{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} -{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhimajor\f31528\fbidi \froman\fcharset238\fprq2 Cambria CE;}{\fhimajor\f31529\fbidi \froman\fcharset204\fprq2 Cambria Cyr;} -{\fhimajor\f31531\fbidi \froman\fcharset161\fprq2 Cambria Greek;}{\fhimajor\f31532\fbidi \froman\fcharset162\fprq2 Cambria Tur;}{\fhimajor\f31535\fbidi \froman\fcharset186\fprq2 Cambria Baltic;} -{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} -{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} -{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} -{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} -{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} -{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} -{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} -{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE;}{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;} -{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} -{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} -{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}} -{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0; -\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}{\*\defchp \f31506\fs22 }{\*\defpap \ql \li0\ri0\sa200\sl276\slmult1 -\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs22\alang1025 -\ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext0 \sqformat \spriority0 \styrsid2831265 Normal;}{\*\cs10 \additive \ssemihidden \sunhideused \spriority1 Default Paragraph Font;}{\* -\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa200\sl276\slmult1 -\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31506\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext11 \ssemihidden \sunhideused \sqformat Normal Table;}} -{\*\rsidtbl \rsid1395907\rsid1599071\rsid2831265\rsid2840296\rsid5062432\rsid5376635\rsid6358681\rsid8155306\rsid8258241\rsid10224083\rsid11736570\rsid12266757\rsid12911876\rsid13976247}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1 -\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\author Dino Chiesa}{\operator Dino}{\creatim\yr2008\mo7\dy3\hr11\min53}{\revtim\yr2009\mo6\dy26\hr21\min16}{\version4}{\edmins5}{\nofpages2}{\nofwords409}{\nofchars2233} -{\*\company Microsoft}{\nofcharsws2637}{\vern32771}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}}\paperw12240\paperh15840\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect -\widowctrl\ftnbj\aenddoc\trackmoves1\trackformatting1\donotembedsysfont1\relyonvml0\donotembedlingdata0\grfdocevents0\validatexml1\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors1\noxlattoyen -\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1440\dgvorigin1440\dghshow1\dgvshow1 -\jexpand\viewkind1\viewscale110\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\allowfieldendsel\wrppunct -\asianbrkrule\rsidroot8258241\newtblstyruls\nogrowautofit\usenormstyforlist\noindnmbrts\felnbrelev\nocxsptable\indrlsweleven\noafcnsttbl\afelev\utinl\hwelev\spltpgpar\notcvasp\notbrkcnstfrctbl\notvatxbx\krnprsnet\cachedcolbal \nouicompat \fet0 -{\*\wgrffmtfilter 2450}\nofeaturethrottle1\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\endnhere\sectlinegrid360\sectdefaultcl\sectrsid2831265\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2 -\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6 -\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang -{\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8258241 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 -\f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af31507\afs28 \ltrch\fcs0 \fs28\insrsid8258241\charrsid5376635 Microsoft Public License (Ms-PL) -\par }{\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid8258241 This license governs use of }{\rtlch\fcs1 \af31507 \ltrch\fcs0 \b\i\insrsid8258241\charrsid5376635 the DotNetZip library}{\rtlch\fcs1 \af31507 \ltrch\fcs0 \b\i\insrsid12911876 and tools}{\rtlch\fcs1 -\af31507 \ltrch\fcs0 \insrsid8258241 ("the software"). If you use the software, you accept this license. If you do not accept the license, do not use the software. -\par 1. Definitions -\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid11736570 {\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid8258241 -The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. -\par A "contribution" is the original software, or any additions or changes to the software. -\par A "contributor" is any person that distributes its contribution under this license. -\par "Licensed patents" are a contributor's patent claims that read directly on its contribution. -\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8258241 {\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid8258241 2. Grant of Rights -\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid11736570 {\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid8258241 -(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license - to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. -\par (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations -in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works o -f the contribution in the software. -\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8258241 {\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid8258241 -\par 3. Conditions and Limitations -\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid11736570 {\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid8258241 (A) No Trademark License}{\rtlch\fcs1 \af31507 \ltrch\fcs0 -\insrsid11736570 }{\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid8258241 - This license does not grant you rights to use any contributor}{\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid5376635 \rquote s}{\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid8258241 - name, logo, or trademarks. -\par (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. -\par (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. -\par (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compi -led or object code form, you may only do so under a license that complies with this license. -\par (E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional - consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. -\par }{\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid1599071 -\par }{\*\themedata 504b030414000600080000002100828abc13fa0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb6ac3301045f785fe83d0b6d8 -72ba28a5d8cea249777d2cd20f18e4b12d6a8f843409c9df77ecb850ba082d74231062ce997b55ae8fe3a00e1893f354e9555e6885647de3a8abf4fbee29bbd7 -2a3150038327acf409935ed7d757e5ee14302999a654e99e393c18936c8f23a4dc072479697d1c81e51a3b13c07e4087e6b628ee8cf5c4489cf1c4d075f92a0b -44d7a07a83c82f308ac7b0a0f0fbf90c2480980b58abc733615aa2d210c2e02cb04430076a7ee833dfb6ce62e3ed7e14693e8317d8cd0433bf5c60f53fea2fe7 -065bd80facb647e9e25c7fc421fd2ddb526b2e9373fed4bb902e182e97b7b461e6bfad3f010000ffff0300504b030414000600080000002100a5d6a7e7c00000 -00360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4fc7060abb08 -84a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b63095120f88d94fbc -52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462a1a82fe353 -bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f7468656d652f7468 -656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b4b0d592c9c -070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b4757e8d3f7 -29e245eb2b260a0238fd010000ffff0300504b03041400060008000000210096b5ade296060000501b0000160000007468656d652f7468656d652f7468656d65 -312e786d6cec594f6fdb3614bf0fd87720746f6327761a07758ad8b19b2d4d1bc46e871e698996d850a240d2497d1bdae38001c3ba618715d86d87615b8116d8 -a5fb34d93a6c1dd0afb0475292c5585e9236d88aad3e2412f9e3fbff1e1fa9abd7eec70c1d1221294fda5efd72cd4324f1794093b0eddd1ef62fad79482a9c04 -98f184b4bd2991deb58df7dfbb8ad755446282607d22d771db8b944ad79796a40fc3585ee62949606ecc458c15bc8a702910f808e8c66c69b9565b5d8a314d3c -94e018c8de1a8fa94fd05093f43672e23d06af89927ac06762a049136785c10607758d9053d965021d62d6f6804fc08f86e4bef210c352c144dbab999fb7b471 -7509af678b985ab0b6b4ae6f7ed9ba6c4170b06c788a705430adf71bad2b5b057d03606a1ed7ebf5babd7a41cf00b0ef83a6569632cd467faddec9699640f671 -9e76b7d6ac355c7c89feca9cccad4ea7d36c65b258a206641f1b73f8b5da6a6373d9c11b90c537e7f08dce66b7bbeae00dc8e257e7f0fd2badd5868b37a088d1 -e4600ead1ddaef67d40bc898b3ed4af81ac0d76a197c86826828a24bb318f3442d8ab518dfe3a20f000d6458d104a9694ac6d88728eee2782428d60cf03ac1a5 -193be4cbb921cd0b495fd054b5bd0f530c1931a3f7eaf9f7af9e3f45c70f9e1d3ff8e9f8e1c3e3073f5a42ceaa6d9c84e5552fbffdeccfc71fa33f9e7ef3f2d1 -17d57859c6fffac327bffcfc793510d26726ce8b2f9ffcf6ecc98baf3efdfdbb4715f04d814765f890c644a29be408edf3181433567125272371be15c308d3f2 -8acd249438c19a4b05fd9e8a1cf4cd296699771c393ac4b5e01d01e5a30a787d72cf1178108989a2159c77a2d801ee72ce3a5c545a6147f32a99793849c26ae6 -6252c6ed637c58c5bb8b13c7bfbd490a75330f4b47f16e441c31f7184e140e494214d273fc80900aedee52ead87597fa824b3e56e82e451d4c2b4d32a423279a -668bb6690c7e9956e90cfe766cb37b077538abd27a8b1cba48c80acc2a841f12e698f13a9e281c57911ce298950d7e03aba84ac8c154f8655c4f2af074481847 -bd804859b5e696007d4b4edfc150b12addbecba6b18b148a1e54d1bc81392f23b7f84137c2715a851dd0242a633f900710a218ed715505dfe56e86e877f0034e -16bafb0e258ebb4faf06b769e888340b103d3311da9750aa9d0a1cd3e4efca31a3508f6d0c5c5c398602f8e2ebc71591f5b616e24dd893aa3261fb44f95d843b -5974bb5c04f4edafb95b7892ec1108f3f98de75dc97d5772bdff7cc95d94cf672db4b3da0a6557f70db629362d72bcb0431e53c6066acac80d699a6409fb44d0 -8741bdce9c0e4971624a2378cceaba830b05366b90e0ea23aaa241845368b0eb9e2612ca8c742851ca251ceccc70256d8d87265dd96361531f186c3d9058edf2 -c00eafe8e1fc5c509031bb4d680e9f39a3154de0accc56ae644441edd76156d7429d995bdd88664a9dc3ad50197c38af1a0c16d684060441db02565e85f3b966 -0d0713cc48a0ed6ef7dedc2dc60b17e92219e180643ed27acffba86e9c94c78ab90980d8a9f0913ee49d62b512b79626fb06dccee2a432bbc60276b9f7dec44b -7904cfbca4f3f6443ab2a49c9c2c41476dafd55c6e7ac8c769db1bc399161ee314bc2e75cf8759081743be1236ec4f4d6693e5336fb672c5dc24a8c33585b5fb -9cc24e1d4885545b58463634cc5416022cd19cacfccb4d30eb45296023fd35a458598360f8d7a4003bbaae25e331f155d9d9a5116d3bfb9a95523e51440ca2e0 -088dd844ec6370bf0e55d027a012ae264c45d02f708fa6ad6da6dce29c255df9f6cae0ec38666984b372ab5334cf640b37795cc860de4ae2816e95b21be5ceaf -8a49f90b52a51cc6ff3355f47e0237052b81f6800fd7b802239daf6d8f0b1571a8426944fdbe80c6c1d40e8816b88b8569082ab84c36ff0539d4ff6dce591a26 -ade1c0a7f669880485fd484582903d284b26fa4e2156cff62e4b9265844c4495c495a9157b440e091bea1ab8aaf7760f4510eaa69a6465c0e04ec69ffb9e65d0 -28d44d4e39df9c1a52ecbd3607fee9cec7263328e5d661d3d0e4f62f44acd855ed7ab33cdf7bcb8ae889599bd5c8b3029895b6825696f6af29c239b75a5bb1e6 -345e6ee6c28117e73586c1a2214ae1be07e93fb0ff51e133fb65426fa843be0fb515c187064d0cc206a2fa926d3c902e907670048d931db4c1a44959d366ad93 -b65abe595f70a75bf03d616c2dd959fc7d4e6317cd99cbcec9c58b34766661c7d6766ca1a9c1b327531486c6f941c638c67cd22a7f75e2a37be0e82db8df9f30 -254d30c1372581a1f51c983c80e4b71ccdd28dbf000000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468656d652f74 -68656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4350d363f24 -51eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d262452282e3198 -720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d9850528 -a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100828abc13fa0000001c0200001300000000000000000000000000 -000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b000000000000000000000000 -002b0100005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c00000000000000000000000000140200007468 -656d652f7468656d652f7468656d654d616e616765722e786d6c504b01022d001400060008000000210096b5ade296060000501b000016000000000000000000 -00000000d10200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b010000270000000000 -00000000000000009b0900007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000960a00000000} -{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d -617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 -6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 -656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} -{\*\latentstyles\lsdstimax267\lsdlockeddef0\lsdsemihiddendef1\lsdunhideuseddef1\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4; -\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9; -\lsdpriority39 \lsdlocked0 toc 1;\lsdpriority39 \lsdlocked0 toc 2;\lsdpriority39 \lsdlocked0 toc 3;\lsdpriority39 \lsdlocked0 toc 4;\lsdpriority39 \lsdlocked0 toc 5;\lsdpriority39 \lsdlocked0 toc 6;\lsdpriority39 \lsdlocked0 toc 7; -\lsdpriority39 \lsdlocked0 toc 8;\lsdpriority39 \lsdlocked0 toc 9;\lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdpriority1 \lsdlocked0 Default Paragraph Font; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority22 \lsdlocked0 Strong;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority59 \lsdlocked0 Table Grid;\lsdunhideused0 \lsdlocked0 Placeholder Text;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;\lsdunhideused0 \lsdlocked0 Revision; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 1; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 2; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 3; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 4; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 5; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 6; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference; -\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdpriority37 \lsdlocked0 Bibliography;\lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;}}{\*\datastore 010500000200000018000000 -4d73786d6c322e534158584d4c5265616465722e352e3000000000000000000000060000 -d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffffec69d9888b8b3d4c859eaf6cd158be0f000000000000000000000000c0fd -57f4c4f6c901feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 -000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 +{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff31507\deff0\stshfdbch0\stshfloch31506\stshfhich31506\stshfbi31506\deflang1033\deflangfe1033\themelang1033\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;} +{\f37\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} +{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fhimajor\f31502\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria;} +{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;} +{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;} +{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f39\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\f40\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} +{\f42\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f43\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f44\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f45\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} +{\f46\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f47\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f379\fbidi \froman\fcharset238\fprq2 Cambria Math CE;}{\f380\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;} +{\f382\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f383\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f386\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;}{\f409\fbidi \fswiss\fcharset238\fprq2 Calibri CE;} +{\f410\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\f412\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\f413\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;}{\f416\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;} +{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} +{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} +{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} +{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} +{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} +{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhimajor\f31528\fbidi \froman\fcharset238\fprq2 Cambria CE;}{\fhimajor\f31529\fbidi \froman\fcharset204\fprq2 Cambria Cyr;} +{\fhimajor\f31531\fbidi \froman\fcharset161\fprq2 Cambria Greek;}{\fhimajor\f31532\fbidi \froman\fcharset162\fprq2 Cambria Tur;}{\fhimajor\f31535\fbidi \froman\fcharset186\fprq2 Cambria Baltic;} +{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;} +{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);} +{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;} +{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;} +{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;} +{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} +{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} +{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);} +{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE;}{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;} +{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;} +{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);} +{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}} +{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0; +\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}{\*\defchp \f31506\fs22 }{\*\defpap \ql \li0\ri0\sa200\sl276\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31507\afs22\alang1025 +\ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext0 \sqformat \spriority0 \styrsid2831265 Normal;}{\*\cs10 \additive \ssemihidden \sunhideused \spriority1 Default Paragraph Font;}{\* +\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa200\sl276\slmult1 +\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af31506\afs22\alang1025 \ltrch\fcs0 \f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 \snext11 \ssemihidden \sunhideused \sqformat Normal Table;}} +{\*\rsidtbl \rsid1395907\rsid1599071\rsid2831265\rsid2840296\rsid5062432\rsid5376635\rsid6358681\rsid8155306\rsid8258241\rsid10224083\rsid11736570\rsid12266757\rsid12911876\rsid13976247}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1 +\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\author Dino Chiesa}{\operator Dino}{\creatim\yr2008\mo7\dy3\hr11\min53}{\revtim\yr2009\mo6\dy26\hr21\min16}{\version4}{\edmins5}{\nofpages2}{\nofwords409}{\nofchars2233} +{\*\company Microsoft}{\nofcharsws2637}{\vern32771}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}}\paperw12240\paperh15840\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect +\widowctrl\ftnbj\aenddoc\trackmoves1\trackformatting1\donotembedsysfont1\relyonvml0\donotembedlingdata0\grfdocevents0\validatexml1\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors1\noxlattoyen +\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\formshade\horzdoc\dgmargin\dghspace180\dgvspace180\dghorigin1440\dgvorigin1440\dghshow1\dgvshow1 +\jexpand\viewkind1\viewscale110\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\nobrkwrptbl\snaptogridincell\allowfieldendsel\wrppunct +\asianbrkrule\rsidroot8258241\newtblstyruls\nogrowautofit\usenormstyforlist\noindnmbrts\felnbrelev\nocxsptable\indrlsweleven\noafcnsttbl\afelev\utinl\hwelev\spltpgpar\notcvasp\notbrkcnstfrctbl\notvatxbx\krnprsnet\cachedcolbal \nouicompat \fet0 +{\*\wgrffmtfilter 2450}\nofeaturethrottle1\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\endnhere\sectlinegrid360\sectdefaultcl\sectrsid2831265\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2 +\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6 +\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang +{\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8258241 \rtlch\fcs1 \af31507\afs22\alang1025 \ltrch\fcs0 +\f31506\fs22\lang1033\langfe1033\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \af31507\afs28 \ltrch\fcs0 \fs28\insrsid8258241\charrsid5376635 Microsoft Public License (Ms-PL) +\par }{\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid8258241 This license governs use of }{\rtlch\fcs1 \af31507 \ltrch\fcs0 \b\i\insrsid8258241\charrsid5376635 the DotNetZip library}{\rtlch\fcs1 \af31507 \ltrch\fcs0 \b\i\insrsid12911876 and tools}{\rtlch\fcs1 +\af31507 \ltrch\fcs0 \insrsid8258241 ("the software"). If you use the software, you accept this license. If you do not accept the license, do not use the software. +\par 1. Definitions +\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid11736570 {\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid8258241 +The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. +\par A "contribution" is the original software, or any additions or changes to the software. +\par A "contributor" is any person that distributes its contribution under this license. +\par "Licensed patents" are a contributor's patent claims that read directly on its contribution. +\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8258241 {\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid8258241 2. Grant of Rights +\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid11736570 {\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid8258241 +(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license + to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. +\par (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations +in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works o +f the contribution in the software. +\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid8258241 {\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid8258241 +\par 3. Conditions and Limitations +\par }\pard \ltrpar\ql \li720\ri0\sa200\sl276\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0\pararsid11736570 {\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid8258241 (A) No Trademark License}{\rtlch\fcs1 \af31507 \ltrch\fcs0 +\insrsid11736570 }{\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid8258241 - This license does not grant you rights to use any contributor}{\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid5376635 \rquote s}{\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid8258241 + name, logo, or trademarks. +\par (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. +\par (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. +\par (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compi +led or object code form, you may only do so under a license that complies with this license. +\par (E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional + consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. +\par }{\rtlch\fcs1 \af31507 \ltrch\fcs0 \insrsid1599071 +\par }{\*\themedata 504b030414000600080000002100828abc13fa0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb6ac3301045f785fe83d0b6d8 +72ba28a5d8cea249777d2cd20f18e4b12d6a8f843409c9df77ecb850ba082d74231062ce997b55ae8fe3a00e1893f354e9555e6885647de3a8abf4fbee29bbd7 +2a3150038327acf409935ed7d757e5ee14302999a654e99e393c18936c8f23a4dc072479697d1c81e51a3b13c07e4087e6b628ee8cf5c4489cf1c4d075f92a0b +44d7a07a83c82f308ac7b0a0f0fbf90c2480980b58abc733615aa2d210c2e02cb04430076a7ee833dfb6ce62e3ed7e14693e8317d8cd0433bf5c60f53fea2fe7 +065bd80facb647e9e25c7fc421fd2ddb526b2e9373fed4bb902e182e97b7b461e6bfad3f010000ffff0300504b030414000600080000002100a5d6a7e7c00000 +00360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4fc7060abb08 +84a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b63095120f88d94fbc +52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462a1a82fe353 +bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f7468656d652f7468 +656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b4b0d592c9c +070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b4757e8d3f7 +29e245eb2b260a0238fd010000ffff0300504b03041400060008000000210096b5ade296060000501b0000160000007468656d652f7468656d652f7468656d65 +312e786d6cec594f6fdb3614bf0fd87720746f6327761a07758ad8b19b2d4d1bc46e871e698996d850a240d2497d1bdae38001c3ba618715d86d87615b8116d8 +a5fb34d93a6c1dd0afb0475292c5585e9236d88aad3e2412f9e3fbff1e1fa9abd7eec70c1d1221294fda5efd72cd4324f1794093b0eddd1ef62fad79482a9c04 +98f184b4bd2991deb58df7dfbb8ad755446282607d22d771db8b944ad79796a40fc3585ee62949606ecc458c15bc8a702910f808e8c66c69b9565b5d8a314d3c +94e018c8de1a8fa94fd05093f43672e23d06af89927ac06762a049136785c10607758d9053d965021d62d6f6804fc08f86e4bef210c352c144dbab999fb7b471 +7509af678b985ab0b6b4ae6f7ed9ba6c4170b06c788a705430adf71bad2b5b057d03606a1ed7ebf5babd7a41cf00b0ef83a6569632cd467faddec9699640f671 +9e76b7d6ac355c7c89feca9cccad4ea7d36c65b258a206641f1b73f8b5da6a6373d9c11b90c537e7f08dce66b7bbeae00dc8e257e7f0fd2badd5868b37a088d1 +e4600ead1ddaef67d40bc898b3ed4af81ac0d76a197c86826828a24bb318f3442d8ab518dfe3a20f000d6458d104a9694ac6d88728eee2782428d60cf03ac1a5 +193be4cbb921cd0b495fd054b5bd0f530c1931a3f7eaf9f7af9e3f45c70f9e1d3ff8e9f8e1c3e3073f5a42ceaa6d9c84e5552fbffdeccfc71fa33f9e7ef3f2d1 +17d57859c6fffac327bffcfc793510d26726ce8b2f9ffcf6ecc98baf3efdfdbb4715f04d814765f890c644a29be408edf3181433567125272371be15c308d3f2 +8acd249438c19a4b05fd9e8a1cf4cd296699771c393ac4b5e01d01e5a30a787d72cf1178108989a2159c77a2d801ee72ce3a5c545a6147f32a99793849c26ae6 +6252c6ed637c58c5bb8b13c7bfbd490a75330f4b47f16e441c31f7184e140e494214d273fc80900aedee52ead87597fa824b3e56e82e451d4c2b4d32a423279a +668bb6690c7e9956e90cfe766cb37b077538abd27a8b1cba48c80acc2a841f12e698f13a9e281c57911ce298950d7e03aba84ac8c154f8655c4f2af074481847 +bd804859b5e696007d4b4edfc150b12addbecba6b18b148a1e54d1bc81392f23b7f84137c2715a851dd0242a633f900710a218ed715505dfe56e86e877f0034e +16bafb0e258ebb4faf06b769e888340b103d3311da9750aa9d0a1cd3e4efca31a3508f6d0c5c5c398602f8e2ebc71591f5b616e24dd893aa3261fb44f95d843b +5974bb5c04f4edafb95b7892ec1108f3f98de75dc97d5772bdff7cc95d94cf672db4b3da0a6557f70db629362d72bcb0431e53c6066acac80d699a6409fb44d0 +8741bdce9c0e4971624a2378cceaba830b05366b90e0ea23aaa241845368b0eb9e2612ca8c742851ca251ceccc70256d8d87265dd96361531f186c3d9058edf2 +c00eafe8e1fc5c509031bb4d680e9f39a3154de0accc56ae644441edd76156d7429d995bdd88664a9dc3ad50197c38af1a0c16d684060441db02565e85f3b966 +0d0713cc48a0ed6ef7dedc2dc60b17e92219e180643ed27acffba86e9c94c78ab90980d8a9f0913ee49d62b512b79626fb06dccee2a432bbc60276b9f7dec44b +7904cfbca4f3f6443ab2a49c9c2c41476dafd55c6e7ac8c769db1bc399161ee314bc2e75cf8759081743be1236ec4f4d6693e5336fb672c5dc24a8c33585b5fb +9cc24e1d4885545b58463634cc5416022cd19cacfccb4d30eb45296023fd35a458598360f8d7a4003bbaae25e331f155d9d9a5116d3bfb9a95523e51440ca2e0 +088dd844ec6370bf0e55d027a012ae264c45d02f708fa6ad6da6dce29c255df9f6cae0ec38666984b372ab5334cf640b37795cc860de4ae2816e95b21be5ceaf +8a49f90b52a51cc6ff3355f47e0237052b81f6800fd7b802239daf6d8f0b1571a8426944fdbe80c6c1d40e8816b88b8569082ab84c36ff0539d4ff6dce591a26 +ade1c0a7f669880485fd484582903d284b26fa4e2156cff62e4b9265844c4495c495a9157b440e091bea1ab8aaf7760f4510eaa69a6465c0e04ec69ffb9e65d0 +28d44d4e39df9c1a52ecbd3607fee9cec7263328e5d661d3d0e4f62f44acd855ed7ab33cdf7bcb8ae889599bd5c8b3029895b6825696f6af29c239b75a5bb1e6 +345e6ee6c28117e73586c1a2214ae1be07e93fb0ff51e133fb65426fa843be0fb515c187064d0cc206a2fa926d3c902e907670048d931db4c1a44959d366ad93 +b65abe595f70a75bf03d616c2dd959fc7d4e6317cd99cbcec9c58b34766661c7d6766ca1a9c1b327531486c6f941c638c67cd22a7f75e2a37be0e82db8df9f30 +254d30c1372581a1f51c983c80e4b71ccdd28dbf000000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468656d652f74 +68656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4350d363f24 +51eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d262452282e3198 +720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d9850528 +a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100828abc13fa0000001c0200001300000000000000000000000000 +000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b000000000000000000000000 +002b0100005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c00000000000000000000000000140200007468 +656d652f7468656d652f7468656d654d616e616765722e786d6c504b01022d001400060008000000210096b5ade296060000501b000016000000000000000000 +00000000d10200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b010000270000000000 +00000000000000009b0900007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000960a00000000} +{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d +617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169 +6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363 +656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e} +{\*\latentstyles\lsdstimax267\lsdlockeddef0\lsdsemihiddendef1\lsdunhideuseddef1\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4; +\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9; +\lsdpriority39 \lsdlocked0 toc 1;\lsdpriority39 \lsdlocked0 toc 2;\lsdpriority39 \lsdlocked0 toc 3;\lsdpriority39 \lsdlocked0 toc 4;\lsdpriority39 \lsdlocked0 toc 5;\lsdpriority39 \lsdlocked0 toc 6;\lsdpriority39 \lsdlocked0 toc 7; +\lsdpriority39 \lsdlocked0 toc 8;\lsdpriority39 \lsdlocked0 toc 9;\lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdpriority1 \lsdlocked0 Default Paragraph Font; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority22 \lsdlocked0 Strong;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority59 \lsdlocked0 Table Grid;\lsdunhideused0 \lsdlocked0 Placeholder Text;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 1; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;\lsdunhideused0 \lsdlocked0 Revision; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 1; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 2; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 3; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 3; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 3; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 4; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 4; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 4; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 5; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 5; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 5; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdsemihidden0 \lsdunhideused0 \lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority61 \lsdlocked0 Light List Accent 6; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority62 \lsdlocked0 Light Grid Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority66 \lsdlocked0 Medium List 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority70 \lsdlocked0 Dark List Accent 6; +\lsdsemihidden0 \lsdunhideused0 \lsdpriority71 \lsdlocked0 Colorful Shading Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdsemihidden0 \lsdunhideused0 \lsdpriority73 \lsdlocked0 Colorful Grid Accent 6; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference; +\lsdsemihidden0 \lsdunhideused0 \lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdpriority37 \lsdlocked0 Bibliography;\lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;}}{\*\datastore 010500000200000018000000 +4d73786d6c322e534158584d4c5265616465722e352e3000000000000000000000060000 +d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff +ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffffec69d9888b8b3d4c859eaf6cd158be0f000000000000000000000000c0fd +57f4c4f6c901feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 +00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 +000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000105000000000000}} \ No newline at end of file diff --git a/src/License.zlib.txt b/src/LICENCES/License.zlib.txt similarity index 97% rename from src/License.zlib.txt rename to src/LICENCES/License.zlib.txt index 94a4dc6..801e941 100644 --- a/src/License.zlib.txt +++ b/src/LICENCES/License.zlib.txt @@ -1,70 +1,70 @@ - -The following licenses govern use of the accompanying software, the -DotNetZip library ("the software"). If you use the software, you accept -these licenses. If you do not accept the license, do not use the software. - -The managed ZLIB code included in Ionic.Zlib.dll and Ionic.Zip.dll is -modified code, based on jzlib. - - - -The following notice applies to jzlib: ------------------------------------------------------------------------ - -Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright -notice, this list of conditions and the following disclaimer in -the documentation and/or other materials provided with the distribution. - -3. The names of the authors may not be used to endorse or promote products -derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, -INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, -OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ------------------------------------------------------------------------ - -jzlib is based on zlib-1.1.3. - -The following notice applies to zlib: - ------------------------------------------------------------------------ - -Copyright (C) 1995-2004 Jean-loup Gailly and Mark Adler - - The ZLIB software is provided 'as-is', without any express or implied - warranty. In no event will the authors be held liable for any damages - arising from the use of this software. - - Permission is granted to anyone to use this software for any purpose, - including commercial applications, and to alter it and redistribute it - freely, subject to the following restrictions: - - 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. - 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. - 3. This notice may not be removed or altered from any source distribution. - - Jean-loup Gailly jloup@gzip.org - Mark Adler madler@alumni.caltech.edu - - ------------------------------------------------------------------------ + +The following licenses govern use of the accompanying software, the +DotNetZip library ("the software"). If you use the software, you accept +these licenses. If you do not accept the license, do not use the software. + +The managed ZLIB code included in Ionic.Zlib.dll and Ionic.Zip.dll is +modified code, based on jzlib. + + + +The following notice applies to jzlib: +----------------------------------------------------------------------- + +Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in +the documentation and/or other materials provided with the distribution. + +3. The names of the authors may not be used to endorse or promote products +derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, +INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, +OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +----------------------------------------------------------------------- + +jzlib is based on zlib-1.1.3. + +The following notice applies to zlib: + +----------------------------------------------------------------------- + +Copyright (C) 1995-2004 Jean-loup Gailly and Mark Adler + + The ZLIB software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly jloup@gzip.org + Mark Adler madler@alumni.caltech.edu + + +----------------------------------------------------------------------- diff --git a/src/ProDotNetZipNetStandard.csproj b/src/ProDotNetZipNetStandard.csproj new file mode 100644 index 0000000..dde080f --- /dev/null +++ b/src/ProDotNetZipNetStandard.csproj @@ -0,0 +1,36 @@ + + + + netstandard2.0 + ProDotNetZip + ProDotNetZip + Ionic.Zip + Library + true + + + + true + + + + AESCRYPTO;BZIP + true + Ionic.snk + false + + + + + + + + + diff --git a/src/Zip.Shared/Zip.Shared.projitems b/src/Zip.Shared/Zip.Shared.projitems deleted file mode 100644 index 8bee7cb..0000000 --- a/src/Zip.Shared/Zip.Shared.projitems +++ /dev/null @@ -1,53 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - true - 7949fe94-56f9-4cc4-ba24-b9c3b3cdf325 - - - Zip.Shared - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Zip.Shared/Zip.Shared.shproj b/src/Zip.Shared/Zip.Shared.shproj deleted file mode 100644 index 3131bd8..0000000 --- a/src/Zip.Shared/Zip.Shared.shproj +++ /dev/null @@ -1,13 +0,0 @@ - - - - 7949fe94-56f9-4cc4-ba24-b9c3b3cdf325 - 14.0 - - - - - - - - diff --git a/src/Zip.Shared/project.json b/src/Zip.Shared/project.json deleted file mode 100644 index 77927d9..0000000 --- a/src/Zip.Shared/project.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "version": "1.0.0-*", - "description": "Zip.NetCore Class Library", - "authors": [ "Piotr" ], - "tags": [ "" ], - "projectUrl": "", - "licenseUrl": "", - "dependencies": { - "Zlib.Portable": "1.0.0.0" - }, - - "frameworks": { - "dnx451": { - "frameworkAssemblies": { - "System.Runtime": "4.0.10.0", - "System.IO": "4.0.0.0" - } - } - } -} diff --git a/src/Zip.Shared/project.lock.json b/src/Zip.Shared/project.lock.json deleted file mode 100644 index 0bd633c..0000000 --- a/src/Zip.Shared/project.lock.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "locked": false, - "version": 2, - "targets": { - "DNX,Version=v4.5.1": { - "Zlib.Portable/1.0.0": { - "type": "project" - } - } - }, - "libraries": { - "Zlib.Portable/1.0.0": { - "type": "project", - "msbuildProject": "../Zlib.Portable/Zlib.Portable.csproj" - } - }, - "projectFileDependencyGroups": { - "": [ - "Zlib.Portable >= 1.0.0" - ], - "DNX,Version=v4.5.1": [ - "System.IO >= 4.0.0", - "System.Runtime >= 4.0.10" - ] - }, - "tools": {}, - "projectFileToolGroups": {} -} \ No newline at end of file diff --git a/src/Zip.Shared/ComHelper.cs b/src/Zip/ComHelper.cs similarity index 100% rename from src/Zip.Shared/ComHelper.cs rename to src/Zip/ComHelper.cs diff --git a/src/Zip.Shared/Deflate64/BlockType.cs b/src/Zip/Deflate64/BlockType.cs similarity index 100% rename from src/Zip.Shared/Deflate64/BlockType.cs rename to src/Zip/Deflate64/BlockType.cs diff --git a/src/Zip.Shared/Deflate64/Deflate64Stream.cs b/src/Zip/Deflate64/Deflate64Stream.cs similarity index 100% rename from src/Zip.Shared/Deflate64/Deflate64Stream.cs rename to src/Zip/Deflate64/Deflate64Stream.cs diff --git a/src/Zip.Shared/Deflate64/FileFormats.cs b/src/Zip/Deflate64/FileFormats.cs similarity index 100% rename from src/Zip.Shared/Deflate64/FileFormats.cs rename to src/Zip/Deflate64/FileFormats.cs diff --git a/src/Zip.Shared/Deflate64/HuffmanTree.cs b/src/Zip/Deflate64/HuffmanTree.cs similarity index 100% rename from src/Zip.Shared/Deflate64/HuffmanTree.cs rename to src/Zip/Deflate64/HuffmanTree.cs diff --git a/src/Zip.Shared/Deflate64/InflaterManaged.cs b/src/Zip/Deflate64/InflaterManaged.cs similarity index 100% rename from src/Zip.Shared/Deflate64/InflaterManaged.cs rename to src/Zip/Deflate64/InflaterManaged.cs diff --git a/src/Zip.Shared/Deflate64/InflaterState.cs b/src/Zip/Deflate64/InflaterState.cs similarity index 100% rename from src/Zip.Shared/Deflate64/InflaterState.cs rename to src/Zip/Deflate64/InflaterState.cs diff --git a/src/Zip.Shared/Deflate64/InputBuffer.cs b/src/Zip/Deflate64/InputBuffer.cs similarity index 100% rename from src/Zip.Shared/Deflate64/InputBuffer.cs rename to src/Zip/Deflate64/InputBuffer.cs diff --git a/src/Zip.Shared/Deflate64/MatchState.cs b/src/Zip/Deflate64/MatchState.cs similarity index 100% rename from src/Zip.Shared/Deflate64/MatchState.cs rename to src/Zip/Deflate64/MatchState.cs diff --git a/src/Zip.Shared/Deflate64/OutputWindow.cs b/src/Zip/Deflate64/OutputWindow.cs similarity index 100% rename from src/Zip.Shared/Deflate64/OutputWindow.cs rename to src/Zip/Deflate64/OutputWindow.cs diff --git a/src/Zip.Shared/EncryptionAlgorithm.cs b/src/Zip/EncryptionAlgorithm.cs similarity index 100% rename from src/Zip.Shared/EncryptionAlgorithm.cs rename to src/Zip/EncryptionAlgorithm.cs diff --git a/src/Zip.Shared/Events.cs b/src/Zip/Events.cs similarity index 100% rename from src/Zip.Shared/Events.cs rename to src/Zip/Events.cs diff --git a/src/Zip.Shared/Exceptions.cs b/src/Zip/Exceptions.cs similarity index 100% rename from src/Zip.Shared/Exceptions.cs rename to src/Zip/Exceptions.cs diff --git a/src/Zip.Shared/ExtractExistingFileAction.cs b/src/Zip/ExtractExistingFileAction.cs similarity index 100% rename from src/Zip.Shared/ExtractExistingFileAction.cs rename to src/Zip/ExtractExistingFileAction.cs diff --git a/src/Zip.Shared/FileSelector.cs b/src/Zip/FileSelector.cs similarity index 100% rename from src/Zip.Shared/FileSelector.cs rename to src/Zip/FileSelector.cs diff --git a/src/Zip.Shared/OffsetStream.cs b/src/Zip/OffsetStream.cs similarity index 100% rename from src/Zip.Shared/OffsetStream.cs rename to src/Zip/OffsetStream.cs diff --git a/src/Zip.Shared/Shared.cs b/src/Zip/Shared.cs similarity index 100% rename from src/Zip.Shared/Shared.cs rename to src/Zip/Shared.cs diff --git a/src/Zip.Shared/WinZipAes.cs b/src/Zip/WinZipAes.cs similarity index 100% rename from src/Zip.Shared/WinZipAes.cs rename to src/Zip/WinZipAes.cs diff --git a/src/Zip.Shared/ZipConstants.cs b/src/Zip/ZipConstants.cs similarity index 100% rename from src/Zip.Shared/ZipConstants.cs rename to src/Zip/ZipConstants.cs diff --git a/src/Zip.Shared/ZipCrypto.cs b/src/Zip/ZipCrypto.cs similarity index 100% rename from src/Zip.Shared/ZipCrypto.cs rename to src/Zip/ZipCrypto.cs diff --git a/src/Zip.Shared/ZipDirEntry.cs b/src/Zip/ZipDirEntry.cs similarity index 100% rename from src/Zip.Shared/ZipDirEntry.cs rename to src/Zip/ZipDirEntry.cs diff --git a/src/Zip.Shared/ZipEntry.Extract.cs b/src/Zip/ZipEntry.Extract.cs similarity index 100% rename from src/Zip.Shared/ZipEntry.Extract.cs rename to src/Zip/ZipEntry.Extract.cs diff --git a/src/Zip.Shared/ZipEntry.Read.cs b/src/Zip/ZipEntry.Read.cs similarity index 100% rename from src/Zip.Shared/ZipEntry.Read.cs rename to src/Zip/ZipEntry.Read.cs diff --git a/src/Zip.Shared/ZipEntry.Write.cs b/src/Zip/ZipEntry.Write.cs similarity index 100% rename from src/Zip.Shared/ZipEntry.Write.cs rename to src/Zip/ZipEntry.Write.cs diff --git a/src/Zip.Shared/ZipEntry.cs b/src/Zip/ZipEntry.cs similarity index 100% rename from src/Zip.Shared/ZipEntry.cs rename to src/Zip/ZipEntry.cs diff --git a/src/Zip.Shared/ZipEntrySource.cs b/src/Zip/ZipEntrySource.cs similarity index 100% rename from src/Zip.Shared/ZipEntrySource.cs rename to src/Zip/ZipEntrySource.cs diff --git a/src/Zip.Shared/ZipErrorAction.cs b/src/Zip/ZipErrorAction.cs similarity index 100% rename from src/Zip.Shared/ZipErrorAction.cs rename to src/Zip/ZipErrorAction.cs diff --git a/src/Zip.Shared/ZipFile.AddUpdate.cs b/src/Zip/ZipFile.AddUpdate.cs similarity index 100% rename from src/Zip.Shared/ZipFile.AddUpdate.cs rename to src/Zip/ZipFile.AddUpdate.cs diff --git a/src/Zip.Shared/ZipFile.Check.cs b/src/Zip/ZipFile.Check.cs similarity index 100% rename from src/Zip.Shared/ZipFile.Check.cs rename to src/Zip/ZipFile.Check.cs diff --git a/src/Zip.Shared/ZipFile.Events.cs b/src/Zip/ZipFile.Events.cs similarity index 100% rename from src/Zip.Shared/ZipFile.Events.cs rename to src/Zip/ZipFile.Events.cs diff --git a/src/Zip.Shared/ZipFile.Extract.cs b/src/Zip/ZipFile.Extract.cs similarity index 100% rename from src/Zip.Shared/ZipFile.Extract.cs rename to src/Zip/ZipFile.Extract.cs diff --git a/src/Zip.Shared/ZipFile.Read.cs b/src/Zip/ZipFile.Read.cs similarity index 100% rename from src/Zip.Shared/ZipFile.Read.cs rename to src/Zip/ZipFile.Read.cs diff --git a/src/Zip.Shared/ZipFile.Save.cs b/src/Zip/ZipFile.Save.cs similarity index 100% rename from src/Zip.Shared/ZipFile.Save.cs rename to src/Zip/ZipFile.Save.cs diff --git a/src/Zip.Shared/ZipFile.Selector.cs b/src/Zip/ZipFile.Selector.cs similarity index 100% rename from src/Zip.Shared/ZipFile.Selector.cs rename to src/Zip/ZipFile.Selector.cs diff --git a/src/Zip.Shared/ZipFile.Static.cs b/src/Zip/ZipFile.Static.cs similarity index 100% rename from src/Zip.Shared/ZipFile.Static.cs rename to src/Zip/ZipFile.Static.cs diff --git a/src/Zip.Shared/ZipFile.cs b/src/Zip/ZipFile.cs similarity index 100% rename from src/Zip.Shared/ZipFile.cs rename to src/Zip/ZipFile.cs diff --git a/src/Zip.Shared/ZipFile.x-IEnumerable.cs b/src/Zip/ZipFile.x-IEnumerable.cs similarity index 100% rename from src/Zip.Shared/ZipFile.x-IEnumerable.cs rename to src/Zip/ZipFile.x-IEnumerable.cs diff --git a/src/Zip.Shared/ZipInputStream.cs b/src/Zip/ZipInputStream.cs similarity index 100% rename from src/Zip.Shared/ZipInputStream.cs rename to src/Zip/ZipInputStream.cs diff --git a/src/Zip.Shared/ZipOutputStream.cs b/src/Zip/ZipOutputStream.cs similarity index 100% rename from src/Zip.Shared/ZipOutputStream.cs rename to src/Zip/ZipOutputStream.cs diff --git a/src/Zip.Shared/ZipSegmentedStream.cs b/src/Zip/ZipSegmentedStream.cs similarity index 100% rename from src/Zip.Shared/ZipSegmentedStream.cs rename to src/Zip/ZipSegmentedStream.cs diff --git a/src/Zlib.Shared/Zlib.Shared.projitems b/src/Zlib.Shared/Zlib.Shared.projitems deleted file mode 100644 index 5834625..0000000 --- a/src/Zlib.Shared/Zlib.Shared.projitems +++ /dev/null @@ -1,26 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - true - c6b960da-45d1-4d38-8697-05c0ba439503 - - - Zlib.Shared - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Zlib.Shared/Zlib.Shared.shproj b/src/Zlib.Shared/Zlib.Shared.shproj deleted file mode 100644 index 00f9393..0000000 --- a/src/Zlib.Shared/Zlib.Shared.shproj +++ /dev/null @@ -1,13 +0,0 @@ - - - - c6b960da-45d1-4d38-8697-05c0ba439503 - 14.0 - - - - - - - - diff --git a/src/Zlib.Shared/CRC32.cs b/src/Zlib/CRC32.cs similarity index 100% rename from src/Zlib.Shared/CRC32.cs rename to src/Zlib/CRC32.cs diff --git a/src/Zlib.Shared/Deflate.cs b/src/Zlib/Deflate.cs similarity index 100% rename from src/Zlib.Shared/Deflate.cs rename to src/Zlib/Deflate.cs diff --git a/src/Zlib.Shared/DeflateStream.cs b/src/Zlib/DeflateStream.cs similarity index 100% rename from src/Zlib.Shared/DeflateStream.cs rename to src/Zlib/DeflateStream.cs diff --git a/src/Zlib.Shared/GZipStream.cs b/src/Zlib/GZipStream.cs similarity index 100% rename from src/Zlib.Shared/GZipStream.cs rename to src/Zlib/GZipStream.cs diff --git a/src/Zlib.Shared/InfTree.cs b/src/Zlib/InfTree.cs similarity index 100% rename from src/Zlib.Shared/InfTree.cs rename to src/Zlib/InfTree.cs diff --git a/src/Zlib.Shared/Inflate.cs b/src/Zlib/Inflate.cs similarity index 100% rename from src/Zlib.Shared/Inflate.cs rename to src/Zlib/Inflate.cs diff --git a/src/Zlib.Shared/ParallelDeflateOutputStream.cs b/src/Zlib/ParallelDeflateOutputStream.cs similarity index 100% rename from src/Zlib.Shared/ParallelDeflateOutputStream.cs rename to src/Zlib/ParallelDeflateOutputStream.cs diff --git a/src/Zlib.Shared/Tree.cs b/src/Zlib/Tree.cs similarity index 100% rename from src/Zlib.Shared/Tree.cs rename to src/Zlib/Tree.cs diff --git a/src/Zlib.Shared/Zlib.cs b/src/Zlib/Zlib.cs similarity index 100% rename from src/Zlib.Shared/Zlib.cs rename to src/Zlib/Zlib.cs diff --git a/src/Zlib.Shared/ZlibBaseStream.cs b/src/Zlib/ZlibBaseStream.cs similarity index 100% rename from src/Zlib.Shared/ZlibBaseStream.cs rename to src/Zlib/ZlibBaseStream.cs diff --git a/src/Zlib.Shared/ZlibCodec.cs b/src/Zlib/ZlibCodec.cs similarity index 100% rename from src/Zlib.Shared/ZlibCodec.cs rename to src/Zlib/ZlibCodec.cs diff --git a/src/Zlib.Shared/ZlibConstants.cs b/src/Zlib/ZlibConstants.cs similarity index 100% rename from src/Zlib.Shared/ZlibConstants.cs rename to src/Zlib/ZlibConstants.cs diff --git a/src/Zlib.Shared/ZlibStream.cs b/src/Zlib/ZlibStream.cs similarity index 100% rename from src/Zlib.Shared/ZlibStream.cs rename to src/Zlib/ZlibStream.cs diff --git a/test/ProDotNetZipNetStandardTest.csproj b/test/ProDotNetZipNetStandardTest.csproj new file mode 100644 index 0000000..e960d19 --- /dev/null +++ b/test/ProDotNetZipNetStandardTest.csproj @@ -0,0 +1,26 @@ + + + + netstandard2.0 + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + + + +